/* CSS Reset - https://www.joshwcomeau.com/css/custom-css-reset/ */

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* End of CSS Reset*/

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Lato.woff2) format('woff2');
}

html {
	--music-link-height: 62px;
}

body {
	padding: 20px;
	padding-top: 53px;

	font-family: "Lato", helvetica, arial, sans;
	color: white;
}

main {
	max-width: 660px;
	margin-left: auto;
	margin-right: auto;

	/* create new stacking context and position it on top of the background image */
	position: relative;
	z-index: 2;
}

footer{
	margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
	font-size:10px;
	text-align: center;
	padding: 10px;
}

footer a{
	color:#fff;
}

.background {
  position: fixed;
  inset: -50%;
  background-color: #000000;
}

.background img {
  position: absolute;
  inset: 0px;
  margin: auto;

  min-width: 55%;
  min-height: 55%;

  filter: blur(35px);
  opacity: .3;
}

header {
	margin-bottom: 20px;

	border-radius: 10px;
	background-color: #333333;
	
	text-align: center;
	position: relative;
	padding-bottom: 27px;
}

header img {
	max-width: 170px;
	max-height: 170px;
	border-radius: 10px;
	display: inline-block;

	box-shadow: 0px 0px 25px hsl(0deg 0% 0% / 0.35);

	transform: translateY(-28px);
}
header ul{
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding:0;
	margin-top: 20px;
}
header ul li a{
	display: block;
    padding: 10px;
    box-sizing: border-box;
    background: #00000075;
    border-radius: 100px;
	height:auto;
}
header ul li a:hover{
	background: #000000ba;
}
header ul li a img{
	width: 20px;
    height: 20px;
	max-height: 20px;
	position:static;
    border-radius: 3px;
    opacity: .9;
    display: block;
	transform:none;
}
h1 {
	display: block;
	margin-top: -9px;

	font-family: helvetica, arial, sans;
	font-size: 34px;
}

h2 {
	margin-top: -6px;

	font-size: 19px;
	font-weight: 400;
}

ul {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 20px;

	list-style-type: none;
	padding: 0;
	padding-bottom: 50px;
}

ul li a {
	display: flex;
	align-items: center;
	height: var(--music-link-height);
	padding-left: 82px;

	border-radius: 10px;
	color: white;
	box-shadow: 0px 0px 25px hsl(0deg 0% 0% / 0.35);

	background-color: hsl(0deg 100% 100% / 0.17);
	background-image: url('../images/caret-right-solid.png');
	background-repeat: no-repeat;
	background-position: center right 20px;

	text-decoration: none;
	font-size: 18px;
	font-weight: 400;

	position: relative;

	/* force rounded corners for music stores logos */
	overflow: hidden;
}

ul li a:hover {
	background-color: hsl(0deg 0% 100% / 0.35);
}

ul li a img {
	max-height: var(--music-link-height);
	position: absolute;
	top: 0;
	left: 0;

	box-shadow: 0px 0px 5px black;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkboxSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.checkboxSlider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .checkboxSlider {
  background-color: #64c633;
}

input:focus + .checkboxSlider {
  box-shadow: 0 0 1px #64c633;
}

input:checked + .checkboxSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* round sliders */
.checkboxSlider.round {
  border-radius: 34px;
}

.checkboxSlider.round:before {
  border-radius: 50%;
}


/* COOKIE PAGE */

.cookieClose {
  text-decoration: none;
  float: right;
}

.cookieDialog {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1010;
  width: 100%;
  display: none;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.cookieIn {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cookieBox h2 {
  margin: 10px 40px 15px 0;
}

.cookieBox {
  background: #000;
  color:#fff;
  padding: 15px 30px;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  position: relative;
  display:flex;
  gap:10px;
}
.cookieBox a{
	color:#64c633;
}
.cookieDialog td {
  padding-right: 20px;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.cookieSelection{
	display:flex;
	margin:10px 0;
}
.cookieSelect{
	display:flex;
	gap: 15px;
	align-items: center;
	margin-right:50px;
}

/* cookie page - buttons */

.cookieNoticeButton.gray {
  color: #000;
  background: #fff;
  border: 0;
}

.cookieNoticeButton.gray:hover {
  color: #000;
  background: #f0f0f0;
}

.cookieNoticeButton.green {
  color: #000;
  background: #64c633;
  border: 0;
}

.cookieNoticeButton.green:hover {
  background: #6fe434;
}

.buttonbar{
	display:flex;
	gap: 10px;
	flex-direction: column;
	justify-content: flex-end;

}
.mobile{
	display:none;
}
.desktop{
	display:block;
}
.video {
    display: flex;
    justify-content: center;
	margin-bottom: 20px;
}
.video iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
	border-radius: 10px;
}

@media screen and (max-width: 750px) {
	header{
		background: transparent;
		margin-bottom: 0;
		padding-bottom: 20px;
	}

	h1 {
		margin-top: -20px;
	}

	h2 {
		margin-bottom: 4px;
	}
	.cookieBox {
		display:block;
	}
	.mobile{
		display:block;
	}
	.desktop{
		display:none;
	}
}