/*

CSS Virtual Airlines

COLOR CORPORATIVO
#0d1a36;

*/

@import url("font_va.css");

body {
	font-family: CustomFontVA, Arial, Helvetica, sans-serif;
	background-color: #ffffff;
	background: url('../images/background.png') no-repeat center center fixed;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	/* -webkit-background-size: cover; */
	/* -moz-background-size: cover; */
	/* -o-background-size: cover; */
}

#navigation-bar {
	height: 110px;
}

.blink {
	animation: blinking 1.5s infinite;
}
@keyframes blinking {
	  0% { opacity: 0.3; }
	 20% { opacity: 1; }
	 80% { opacity: 1; }
	100% { opacity: 0.3; }
}

.dropdown-menu.show {
	max-height: 85vh;
	overflow-y: auto;
}

.navbar {
	box-shadow: 0 0 5px rgba(0,0,0,0.8);
}

.card {
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.not-allowed {
	cursor: not-allowed;
}

.bg-light {
    background-color: #f0f0f0!important;
}
.radio_stream {
	margin: 0px;
	padding: 0px;
	/* background-color: #0d1b36; */
}
		
.carousel-caption {
	background-color: rgba(0,0,0,0.5);
	border-radius: 10px;
	width: 700px;
	height: 100px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
	visibility: visible;
}

.dropdown-divider {
	border-top: 1px solid #cccccc;
}

.bg_menu {
	background-color: #0d1b36;
}

.bg_footer {
	background-color: #0d1b36;
}

.strip {
	height: 10px;
	background: rgb(29,39,49);
	background: radial-gradient(circle, rgba(29,39,49,1) 0%, rgba(9,94,121,1) 50%, rgba(23,186,239,1) 100%);
}

.certification {
    position: fixed;
    bottom: 15px;
    left: 5px;
    opacity: 1;
}

.cal_today {
	border: 5px solid #0d1b36 !important;
}

.cal_not_today {
	border: 1px solid rgba(13,27,54,0.2) !important;
}

/****************************************************/
/*                     INTRO                        */
/****************************************************/

.intro_footer {
	z-index: 999999;
	position: fixed;
	bottom: 25px;
	width: 100%;
	overflow: hidding;
	cursor: pointer;
}

.intro  {
	z-index: 999998;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	-background: #0d1b36;
	overflow: hidding;
	cursor: pointer;
}

.intro img {
	z-index: 999997;
	max-width: 90%;
	max-height: 90%;
	/*
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	*/
}

.video_mask  {
	z-index: 999996;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background: #0d1b36;
	overflow: hidding;
	opacity: 0.75;
}

.intro_video {
	z-index: 999995;
	/*
	position: fixed;
	right: 0px;
	bottom: 0px;
	min-width: 100%;
	min-height: 100%;
	*/
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro_background  {
	z-index: 999994;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background: #0d1b36;
	overflow: hidding;
}

/****************************************************/

@media (max-width: 768px) {
	
	body {
		background-size:cover;
	}
	
	#navigation-bar {
		height: 90px;
	}
	
	.navbar-brand img {
		height: 65px;
	}
	
	.dropdown-menu.show {
		max-height: 39vh;
		overflow-y: auto;
	}
	
	.certification img {
		width: 25%;
		height: auto;
	}
		
}