@font-face {
    font-family: 'rajdhaniBold';
    src: url('./fonts/rajdhani-semibold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


html, body{
	font-size: 18px;
	margin: 0;
	padding: 0;
}

body{
	 font-family: 'rajdhaniBold';
	 background-color: #000;
	 color: #fff;
}
*{
	box-sizing: border-box;
}
img, svg {
    vertical-align: middle;
}

.main{
	position: relative;
	width: 100vw;
	max-width: 100%;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	min-height: 500px;
}

.video_container{
	position: relative;
	width: 100vw;
	max-width: 100%;
	height: 100dvh;
	padding-bottom: 15vh;
	min-height: 500px;
}

#video_player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
#sound_btn{
	position: absolute;
	z-index: 2;
	right: 25px;
	top: 25px;
	cursor: pointer;
	width: 25px;
}
#sound_btn img{
	position: relative;
	width: 100%;
	height: auto;
}
#sound_btn #volume{
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}
#sound_btn.on #volume{
	display: block;
}
#sound_btn.on #mute{
	display: none;
}

#tickets_container{
	position: absolute;
	bottom: 15.5vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.orange_btn{
	position: relative;
	border-radius: 2px;
	width: 19vw;
	min-width: 280px;
	background-color: #fa8e03;
	text-transform: uppercase;
	transition: all 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
}
.orange_btn:hover{
	background-color: #ffae44;
}
.orange_btn a{
	display: inline-block;
	padding: 1vh 20px;
	text-decoration: none;
	color: #fff;
	width: 100%;
    text-align: center;
    font-size: 34px;
    line-height: 34px;
}

.disclaimer{
	font-size: 0.7rem;
	margin-top: 5px;
	width: 19vw;
	min-width: 280px;
	text-align: center;
}

.pleca_container{
	background-color: #006DAE;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	
}
.pleca{
	position: relative;
    padding: 10px;
    height: 14vh;
}
.pleca img{
	width: auto;
	height: 100%;
}

@media(max-width:768px){
	.pleca{
	    height: 8vh;
	}

}

@media(max-width:600px){
	#tickets_container{
		bottom: 11.5vh;
	}
	.orange_btn a{
		font-size: 28px;
		line-height: 28px;
	}
	#sound_btn{
		width: 20px;
	}
}
@media(max-height:400px){
	#tickets_container{
		bottom: 40px;;
	}
	.disclaimer{
		font-size: 0.5rem;
	}
	.orange_btn a{
    font-size: 22px;
    line-height: 24px;
	}
	.pleca{
		height: 9vh;
		padding: 3px;
	}
}

