:root {
	--rem-base: 62.5%;
}

*::-webkit-media-controls-panel {
	display: none!important;
	-webkit-appearance: none;
}

/* Old shadow dom for play button */



@keyframes stroke-in {
0% {
	transform: translate3d(-101%,0,0)
}

to {
	transform: translateZ(0)
}
}
@keyframes stroke-out {
0% {
	transform: translateZ(0)
}

to {
	transform: translate3d(102%,0,0)
}
}

html {
	font-size: var(--rem-base);
}

body {
	font-size: 1.6rem;
}




body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: "slnt" 0;
	-webkit-font-smoothing: antialiased;
	background-color: #f5f4f5;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	padding-left: 4.8rem;
	padding-right: 4.8rem;
	box-sizing: border-box;
}

@media screen and (max-width: 536px) {
	.container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

#wrapper {
	position: relative;
	height: 100vh; 
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	min-height: 0;
	z-index: 100;
}

#main-header {
	width: 100%;
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	flex-grow: 0 !important;
}

.menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu ul li {
	display: inline-block;
}

.menu-left li {
	margin-right: 1.6rem;
}

.btn-link {
	color: #fff;
	text-transform: uppercase;
	font-size: 1.4rem;
	font-weight: 400;
	opacity: 1;
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-decoration: none;
	padding-bottom: .4rem;
}

.btn-link::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform: translateX(calc(-100% - .1rem));
	-webkit-animation: .25s cubic-bezier(0.28,0.44,0.49,1) 0s stroke-out forwards;
	animation: .25s cubic-bezier(0.28,0.44,0.49,1) 0s stroke-out forwards;
}

.btn-link:hover::before {
	opacity: 1;
	-webkit-animation: .25s cubic-bezier(0.28,0.44,0.49,1) 0s stroke-in forwards;
	animation: .25s cubic-bezier(0.28,0.44,0.49,1) 0s stroke-in forwards
}

.btn-outlined {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.4rem;
	font-weight: 400;
	border: 1px solid #fff;
	padding: .8rem 2.4rem;
	transition: all .3s cubic-bezier(0.28,0.44,0.49,1) 0s;
}

.btn-outlined:hover {
	background-color: #fff;
	color: #000;
}

#main-header #logo {
	width: 8rem;
	margin: 0 auto;
	/*	position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);*/
}

@media screen and (max-width: 536px) {
	#main-header {
		height: auto;
	}
	
	#main-header #logo {
		top: 9.6rem;
	}
	
	.menu-left {
		margin-top: .8rem;
	}
	
	.menu-left ul {
		flex: 1;
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
}

/* @group VIDEO */



.hero-video video{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

#unmute{
	margin-bottom: 24px;
}
#main-header, #footer{
	z-index: 1;
}


#vinyl-preorder {
	/*	position: absolute;
	left: 0;
	bottom: 0;*/
	z-index: 1000;
	padding: 32px;
	display: flex;
	gap: 32px;
	/*	background-color: rgba(0, 0, 0, 0.5);*/
	justify-content: center;
	align-items: center;
}

#vinyl-preorder img {
	max-width: 300px;
	width: 100%;
}

.preorder-text {
	color: #fff;
	font-size: 3.2rem;
	max-width: 100%;
	text-align: center;
	margin-top: 2.4rem;
	margin-bottom: 2.4rem;
	line-height: 0.9;
}

.preorder-text p {
	margin-top: 0;
	margin-bottom: 0;
}

.preorder-text small {
	font-size: 1.4rem;
	text-transform: uppercase;
	margin-top: -1.2rem;
}

.preorder-text .btn {
	display: block;
	text-align: center;
	max-width: 160px;
	margin: 0 auto;
	background-color: #000;
	color: #fff;
	padding: 1.2rem 2.4rem;
	font-size: 1.8rem;
	margin-top: 1.6rem;
}

/* @end */

/* @group COUNTDOWN */

#countdown-wrapper {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	text-align: center;
	width: 100%;
	transform: translateY(-50%);
}

#countdown {
	font-family: "Inter", sans-serif;
	/*	background-color: #000;*/
	color: #fff;
	padding: 8px 12px;
	font-size: 8vmin;
	display: inline-flex;
	justify-content: center;
	gap: 0;
	margin: 0 auto;
}

#countdown-text {
	margin-right: 2px;
}

#countdown-numbers {
	text-align: left;
	display: flex;
	gap: 0;
}

.countdown-number {
	min-width: 10.2vmin;
	display: inline-block;
	text-align: center;
	margin: 0;
}

/* @end */

/* @group FOOTER */

#footer {
	/*	position: absolute;
	z-index: 100;
	bottom: 0;
	left: 0;*/
	width: 100%;
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column-reverse;
	gap: .8rem;
	justify-content: center;
	align-items: center;
	flex-grow: 0;
}

#copyright {
	font-size: 1rem;
	opacity: .4;
}

#social svg {
	width: 2.4rem;
	height: 2.4rem;
}

#social ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#social ul li {
	display: inline-block;
	margin-left: .4rem;
}

#social ul li a {
	transition: all .3s;
	opacity: 1;
}

#social ul li a:hover {
	opacity: .6;
}

svg path {
	fill: #fff;
}

#social ul li a svg path {
	fill: #fff !important;
}

/* @end */

#modal-signup {
	min-width: 40vw;
	border-radius: .8rem;
}

#modal-signup form {
	max-width: 100% !important;
}

@media screen and (max-width: 536px) {
	#vinyl-preorder {
		display: block;
		padding: 20px;
		justify-content: center;
	}
	
	#vinyl-preorder img {
		max-width: 240px;
		width: 100%;
	}
	
	.preorder-text {
		margin-top: 16px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		max-width: 100%;
		font-size: 24px;
	}
	
	.preorder-text .btn {
		margin-left: auto;
		margin-right: auto;
	}
}



