html {
	overflow: hidden;
	color: white;
	font-size: calc(4px + 2vh);
	background-color: black;

	/* Block text selection */
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
}

img  {
	width: 94%;
	padding: 0 3%;
}

#lower_outer{
	max-width: 1920px;
	min-width: 720px;
	
	position: absolute;
	width: 100%;
	bottom: 10%;
	display: flex;
	justify-content: center;
}

#start_btn  {
	margin: auto;
	cursor: pointer;
	
	transition: 300ms;
	transition-property: transform, opacity;
}

#start  {
	padding: 10px 20px;
	
	/* background-color: rgb(90,90,90); */
	color: white;
	
	/* text-shadow: 2px 2px 2px black, 2px -2px 2px black, -2px 2px 2px black, -2px -2px 2px black; */
	text-decoration: none;
	border-radius: 12px;
	
	transition: 300ms linear;
	transition-property: background-color, text-shadow;
}

#start:hover  {
	background-color: rgb(60,60,60);
}

#start_btn:hover {
	transform: scale(1.1);
}

#start_btn:active {
	transform: scale(1);
}

#head  {
	position: absolute;
	width: 100%;
	max-width: 1920px;
	min-width: 720px;
	top: 40%;
	opacity: 0;
	
	text-align: center;
	font-size: calc(12px + 6.5vh);
	cursor: default;
	white-space: nowrap;
}

#imp_dse_container {
	position: absolute;
	width: 100%;
	max-width: 1900px;
	pointer-events: none;
	margin-top: 1%;
	margin-right: 2%;
	opacity: 0;
}

#imp_dse_link {
	float: right;
	pointer-events: none;
	cursor: pointer;
	color: #cccccc;
	font-size: small;
	text-transform: uppercase;
	transition: 300ms;
	transition-property: color;
}

#imp_dse_link:hover {
	color: white;
}

#mobile-body {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 15%;
	width: 100%;
}

#mobile-body > p  {
	padding: 0 3%;
	text-align: center;
}

#mobile  {
	flex-direction: column;
	font-size: calc(2em - 1.8vh);
}

#mobile > #head  {
	position: fixed;
	background-color: black;
	z-index: 999;
	overflow: hidden;
	margin-top: 0;
}

#warning  {
	background-color: rgb(255,242,0);
	color: black;
	border-radius: 2vw 2vw 2vw 2vw;
	display: inline-flex;
	padding: 0 1vw;
}

#warning_icon  {
	max-width: 20%;
}

#message  {
	margin-left: 1vw;
}

#imp_dse_mobile {
	margin-top: 3vw;
	margin-bottom: 3vw;
	padding: 2vw;
	display: flex;
}

#imp_dse_link_mobile {
	width: 100%;
	text-align: center;
	pointer-events: all;
	color: #cccccc;
}

#arrow_container_next, #arrow_container_prev {
	display: flex;
	justify-content: center;
	width: 10%;
}

#arrow_container_next {
	margin-left: 10%;
}

#arrow_container_prev {
	margin-right: 10%;
}

#ico_arrow_left, #ico_arrow_right  {
	cursor: pointer;
	opacity: 0.7;
	height: 20%;
	margin: auto;
	
	transition-duration: 300ms;
	transition-property: opacity, transform;
}

#ico_arrow_left:hover, #ico_arrow_right:hover {
	opacity: 1;
	transform: scale(1.1);
}

#ico_arrow_left:active, #ico_arrow_right:active {
	transform: scale(1);
}

#carousel-outer {
	max-width: 1920px;
	min-width: 720px;
	
	top: 25%;
	position: absolute;
	margin: 0 auto;
	width: 80vw;
	height: 40vh;
	display: flex;
	flex-direction: row;
}

#carousel  {
	display: block;
	position: relative;
	width: 80%;
}

#slider  {
	position: relative;
	transition-delay: 1s;
	text-align: center;
	padding: 10px 10%;
}

#fade_overlay {
	z-index: 100;
	position: absolute;
	width: 100%;
	height: 100%;

	opacity: 0;
	pointer-events: none;
	background: black;
}

#cookie_overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;

	opacity: 0;
	pointer-events: none;
}

#cookie_container {
	margin: auto;
	display: flex;
	justify-content: center;
	width: 30vw;
	max-width: 1920px;
	min-width: 720px;
	max-height: 1000px;
	padding: 50px;
	border-radius: 20px;
	/* background: rgb(120,120,120); */
}

#cookie_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#cookie_header {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 30px;
}

#cookie_message {
	text-align: center;
	margin-bottom: 30px;
	font-size: calc(1px + 2vh);
}

#cookie_accept {
	margin: auto;
	padding: 5px;
	background: rgb(60,60,60);
	border-radius: 12px;
	opacity: 0.8;

	transition: 300ms;
	transition-property: transform, opacity;
	cursor: pointer;
}

#cookie_accept div {
	margin: 0 20px;
}

#cookie_accept:hover {
	opacity: 1;
	transform: scale(1.1);
}

#cookie_accept:active {
	transform: scale(1);
}

.inactive {
	opacity: 0.3 !important;
	transform: scale(1) !important;
	cursor: default !important;
	pointer-events: none !important;
}

.overlay-elements-bg {
	background-color: rgb(100,100,100);
}

@keyframes start-animation  {
	0%   {opacity: 1; top: 40%;}
	50%  {opacity: 1; top: 40%;}
	100% {opacity: 1; top: 5%;}
}

@keyframes start-animation-mobile  {
	0%   {opacity: 0; top: 40%;}
	50%  {opacity: 1; top: 40%;}
	100% {opacity: 1; top: 0%;}
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@keyframes fadeOut {
	0% {opacity: 1}
	100% {opacity: 0}
}

@keyframes growSize {
	0% {transform: scale(0.1)}
	100% {transform: scale(1)}
}

@keyframes bounce_soft_invert {
	0% {transform: scale(1);}
	50% {transform: scale(0.9);}
	100% {transform: scale(1);}
}