/*Preto: 191919*/
/*Amarelo: FFCD00*/
/*Branco: FFFFFF*/
/*Fonte: 20pt*/
body{
	/*font-family: 'visby_cfthin';*/
	/*font-family: 'visby_cfregular';*/
	font-family: 'visby_cfmedium';
/*	font-family: 'visby_cflight';
	font-family: 'visby_cfextra_bold';*/
}	
strong{
	font-family: 'visby_cfextra_bold';
}	

/* width of the entire scrollbar */
.modal::-webkit-scrollbar ,
body::-webkit-scrollbar {
  width: 12px;              
}


/* color of the tracking area */
.modal::-webkit-scrollbar-track,
body::-webkit-scrollbar-track{

  /*// background: #f1f1f1      */
  background: #282828;    
} 


/* color of the scroll thumb */
.modal::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb{
  /* color of the scroll thumb */
  background-color: #FFCD00;  
  /* roundness of the scroll thumb */
  border-radius: 0px;
  /* creates padding around scroll thumb */
  /*border: 3px solid orange;  */
} 





.modal{
	/*opacity: 0;*/
	/*top: -100%;*/
	right: 0;
	/*bottom: -100%;*/
	/*visibility: hidden;*/
/*	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;*/
	/*opacity: 0; */
    transition: all 1000ms ease-in-out;
}
.modal.show{
	/*display: block;*/
	/*visibility: visible;*/
	/*opacity: 1;*/
	/*top: 0;*/
	/*bottom: 0;*/
	/*right: 0;*/
	/*opacity: 1; */
    /*transform: translateZ(0);*/
    /*background: black;*/
    background-color: rgba(254, 254, 254, 0.88);
    /*transition: all 1000ms ease-in-out;*/
    background-image: url('../img/quiz-bg.png');
	background-position: center;
	background-size: cover;

	/*transition: opacity 450ms  ease-in-out;*/
}
.modal .modal-dialog{
    /*transform: translate(330px,190px);*/
    display: none;
}
.modal.show .modal-dialog{
	min-height: 100%;
	height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px auto;
    padding: 33px 9px;
}
.modal iframe{
    max-width: 600px;
    width: 100%;
    min-width: 100%;
    min-height: 430px;
}
.modal .modal-content{
	background-color: #191919;
	color: #fff;
	box-shadow: -0.5em -0.4rem 0rem #FFCD00!important;
	height: 100%;
}
.modal .modal-content .modal-header{
	border-bottom: 1px solid #FFCD00;
	text-align: center;
}
.modal .modal-content .modal-footer{
	/*border-bottom: 1px solid #FFCD00;*/
	border-top: none;
}
.modal .btn-close{
	background: transparent!important;
	width: auto;height: auto;
}
.modal .btn-close:after{
	content:'';
	display: inline-block;
	content: "\00d7"; /* This will render the 'X' */
	color: #fff;
	font-size: 3rem;
	line-height: 2.5rem;
}




/*OVERLAY QUE APARECE NA TRANSIÇÂO*/
.modal-backdrop.show{
	opacity: .9;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop {
/*    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;*/
    background-color: #fff;
    transition: all 300ms ease-in-out;
}





#alerta{
	display: none;
	opacity: 0;
	position: absolute;
	/*top: -300px;*/
	left: calc(50% - 250px);
	top: calc(50% - 150px);
	/*background: #fff;*/
	/*background: rgba(255, 216, 0, 0.85);*/
	background: rgba(255, 188, 0,  0.95);

	max-width: 500px;
	width: 100%;

	height: 0;
	padding: 30px;

	border-radius: 3px;
	color: #000;
	display: flex;
    align-items: flex-start;
    /*justify-content: space-between;*/
    /*justify-content: space-around;*/
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;

    transition: all 400ms ease-in-out;
	font-size: 0;
	z-index: -1;
}
#alerta.show{
	display: flex;
	height: 300px;
    /*height: 40%;*/
	/*top: calc(50% - 215px);*/
	opacity: 1;
	font-size: 16px;
    line-height: 18px;
	z-index: 1;
}
#alerta h3{
	opacity: 0;
	font-size: 0;
}
#alerta.show h3{
	opacity: 1;
	font-size: 28px;

}
#alerta #btn-close-alerta{
	position: absolute;
    top: 33px;
    right: 33px;
}
#alerta #tente-novamente.show{
	display: block;
}
#alerta #tente-novamente{
	display: none;
	background-color: transparent;
	border: 2px solid #000;
	color: #000;
	font-size: 600;
	transition: all 400ms ease-in-out;
}
#alerta #tente-novamente:hover{
	background-color: #fff;
	color: #000;
	border-color: transparent;

}

main{
	/*background: yellow;*/
	/*height: 100vh;*/
	/*color: #fff;*/
	background-image: url('../img/quiz-bg.png');
	background-position: center;
	background-size: cover;
}
main .container{
	min-height: 100vh;
	/*padding: 15% 0;*/
}
main .row{
    padding: 55px 0 40px;
	/*height: 90%;*/
}

p#tentativasqnt{
	height: 50px;
}

ul.dicas{
	list-style: auto;
	padding-left: 1rem;
}
ul.dicas li{
	/*display: none;*/
	/*font-size: 16px;*/
}
ul.dicas li.aos-animate{
	/*font-size: 0px;*/
	/*display: block;*/
}
input[type=text]{
	border: 1px solid transparent;
	/*border: none;*/
	border-radius: 3px;
	outline: none;
	margin-bottom: 15px;
    background-color: #e1e0e0;
    padding: 15px;
    height: 89px;
    width: 100%;
    /*max-width: 303px;*/
    max-width: 420px;
	/*font-size: 3.9rem;*/
	font-size: 3.15rem;
    letter-spacing: 1.33rem;
    text-transform: uppercase;
    text-align: center;
}
input[type=text]::placeholder{
	color: red;
}
input[type=text]::selection{
	background: #dbdbdb;
	color: #fff;

}
input[type=text]:focus{
	/*background: #000;*/
	background: #FFCD00;
	color: #fff;
}
/*input.warning:focus-visible{*/
input.warning{
    border: 1px solid red;
}
input[type=submit]{
    border: none;
    outline: none;
    color: #000;
    background-color: #FFCD00;
    padding: 10px 51px;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
	transition: all 400ms ease-in-out;
}
input[type=submit]:hover{
	/*background-color: #e7bb00;*/
	background-color: #f1b901;
	border-color: #fff06f;
	color: #fff;
}
input[type=submit]:disabled{
	background-color: #dddddd;
}
form img{
	max-width: 160px;
}
.play-video{
	/*display: none;*/
	opacity: 0;
	font-size: 0;
	transition: all 400ms ease-in-out;
	background-color: #FFCD00;
	border-color: #fff06f;
}
.liberar-dica{
	transition: all 400ms ease-in-out;
	background-color: #FFCD00;
	border-color: #fff06f;
}
.liberar-dica:hover,
.play-video:hover{
	background-color: #f1b901;
	border-color: #fff06f;
}
.liberar-dica:focus,
.play-video:focus{
	background-color: #f1b901;
	border-color: #fff06f;	
	box-shadow: 0 0 0 0.25rem rgba(254, 208, 1, 0.55);
}
.play-video.show{
	/*display: block;*/
	opacity: 1;
	font-size: 16px;
}



/*social*/
.social-icons {
  list-style: none;
  display: table;
  margin: 9px auto 0 !important;
  padding-left: 0;
}
.social-icons li {
  display: inline-block;
  float: left;
  padding: 0;
  margin-right: 9px;
}
.social-icons li:last-child {
  margin-right: 0;
}
.social-icons li a {
  font-size: 20px;
  display: block;
  text-align: center;
  /*border-radius: 3px;*/
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #444;
  color: #FFCD00;
  transition: 0.3s;
}
.social-icons li a:hover {
  background: #FFCD00;
  transform: scale(1.15);
  color: #444;
}
.social-icons li a i {
  line-height: 40px !important;
}
/*.social-icons.vertical {
  width: 40px;
}
.social-icons.vertical li {
  margin-bottom: 5px;
}
.social-icons.vertical li:last-child {
  margin-right: 0;
}
.social-icons.vertical li a {
  background: #444;
  color: #ddd;
}
.social-icons.vertical li a:hover {
  background: #fc7d15;
  color: #fff;
  transform: scale(1.15);
}*/
span#numerotentativas{
	color: #FFCD00;
	font-weight: 800;
	font-size: 20px;
}




@media(max-width: 768px){
	main .row{}
	main .row .col-md-12{
		order: 1;
	}
	main .row .col-md-6{
		order: 3;
	}
	main .row .col-md-6:last-child{
		order: 2;
	}
	input[type=text]{
		max-width: 100%;
	}
	input[type=submit]{
		min-width: 50%;		
	}
}
@media(max-width: 576px){
	#alerta{
		left: 0;
		max-width: 100%;
	}
	#alerta.show{
		/*height: 111vh;*/
		/*top: 0;*/
	}
	#alerta:after{
		/*content:'';
	    background: rgba(255, 188, 0, 0.95);
		height: 100vh;
		width: 100%;
		position: absolute;
		bottom: 0;*/
	}
}