@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Circular';
    src: url('../fonts/CircularStd-Book.woff2') format('woff2'),
        url('../fonts/CircularStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CircularBlack';
    src: url('../fonts/CircularStd-Black.woff2') format('woff2'),
        url('../fonts/CircularStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'CircularBold';
    src: url('../fonts/CircularStd-Bold.woff2') format('woff2'),
        url('../fonts/CircularStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CircularMedium';
    src: url('../fonts/CircularStd-Medium.woff2') format('woff2'),
        url('../fonts/CircularStd-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

.indicador {
    display: none;
}

/* ADORNOS TEXTO */
.pontofinal:after {
    content: '.';
}

.circular {
	font-family: 'Circular';
}

.marck {
	font-family: 'Marck Script', cursive;
}

.montserrat {
	font-family: 'Montserrat';
}

.prompt {
	font-family: 'Prompt', sans-serif;
}


.apufoutline {
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: white;
	color: transparent;
	/* text-shadow: -1px 1px 0 #FFF, 1px 1px 0 #FFF, 1px -1px 0 #FFF, -1px -1px 0 #FFF; */
}

/* fontes e tamanhos texto */
h1, h2, h3, h4, h5, h6, .subtitle1, .subtitle2 {
	font-family: 'Circular';
}

span, p, body, .body1, .body2, .caption, .overline, a, input {
	font-family: Arial, sans-serif;
}

button, .button, .btn {
	font-size: 15px;
	font-family: 'Circular';
	font-weight: bold;
	text-transform: uppercase;
}

.subtitle1 {
	font-size: 12px;
}

.subtitle2 {
	font-size: 11px;
}

.body1 {
	font-size: 18px;
}

body, .body2 {
	font-size: 14px;
}

.caption {
	font-size: 12px;
}



/* font weight */

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}


.bold {
	font-family: 'CircularBold';
}




/* Cores texto */

.corprincipal {
    color: #171D20 !important;
}

.corsecundaria {
    color: #FFFFFF !important;
}

.corterciaria {
    color: #1a99d6 !important;
}

.branco {
    color: white;
}

.preto {
    color:black;
}

.cinzaescuro {
	color: #4d4e4e;
}

.cinza {
    color: #999999;
}

.cinzaclaro {
	color: #b3b1b3;
}

.cornomeagenda {
	color: #4f8fdb;
}




/* Cores fundo */

.bgcorprincipal {
    background-color: #171D20;
}

.bgcorsecundaria {
    background-color: #FFFFFF;
}

.bgcorterciaria {
    background-color: #1a99d6;
}

.bgbranco {
    background-color: white;
}

.bgpreto {
    background-color: black;
}

.bgcinzaescuro {
	background-color: #4d4e4e; 
}

.bgcinza {
    background-color: #999999;
}

.bgcinzaclaro {
	background-color: #cccccc;
}

.bgoverlay {
    background-color: rgba(0,18,47,0.95); /* #001b37 */
}

.bgoverlaylight {
    background-color: rgba(0,0,0,0.7); 
}

.bgoverlaywhite {
    background-color: rgba(255,255,255,0.85);
}

.bglogin {
	background-color: #00122f;
}

.bgcinzaagenda {
	background-color: #3A4145;
}

.bgdegrade {
	background-color: #171D20;
	background: linear-gradient(180deg, #282D30 0%, #181D1F 140%); 
}

.bgtransparentcorprincipal {
	background-color: transparent;
	background: linear-gradient(175deg, rgba(255,0,0,0) 50%, #171D20 50%);
}






/* borders para despiste de posições */
.bred {
    border:solid 1px red;
}

.bgreen {
    border:solid 1px green;
}

.bcyan {
   border:solid 1px cyan; 
}

.byellow {
    border:solid 1px yellow;
}

.bwhite {
	border:solid 1px white;
}

.bblack {
	border:solid 1px black;
}




/* estrutura */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #171D20;
	color: white;
	font-family: Arial, sans-serif;
}



/* fundos */
.fundocentradopreenchido {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}



/* medias */
/*
.videocontainer {
	position: relative;
	padding-top: 56.25%;
}

.videointro {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}
*/



.videocontainer {
	position: relative;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%; 
	
	overflow: hidden;
}
.videointro {
	/* Make video to at least 100% wide and tall */
	min-width: 100%; 
	min-height: 100%; 

	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: 100%;

	object-fit: fill;
	/* Center the video */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	
}





.videooverlay {
	position: absolute;
	bottom: 0;
	background: transparent; /*rgba(0, 0, 0, 0.5);*/
	color: #f1f1f1;
	width: 100%;
	height: 100%;
}

.barralogo {
	height: 100px;
}

.logobarra {
	height: 75px;
}


/* caroussel */
.butonprev {
	margin-left: -20px;
	width: 30px;
}

.butonnest {
	margin-right: -20px;
	width: 30px;
}

.logosamsung {
	margin-top:15px;
	height: 70px;
}

.logomitsubishi {
	height: 120px;
}

.videobe {
	width: 90%;
	max-width: 1280px;
}


.fundosamsung {
	background-image: url("../media/imagens/fundo_samsung_v.jpg");
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.blocosamsung25 {
	background-color: rgba(0,0,0,0.65);
	width: 350px;
	height: 330px;
}

.bodysamsung25 {
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 24px;
}

.captionsamsung25 {
	font-size: 10px;
}

.logomhcsamsung25 {
	height: 110px;
}

.logosamsung25 {
	height: 50px;
}

.logossamsung25 {
	height: 40px;
}

.acertobtnsamsung25 {
	padding-top: 38px;
}

.perfilblackcontainer {
	
	border-top-left-radius: 14px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 14px;
	border-bottom-right-radius: 0px;
}

.perfilwhitecontainer {
	
	border-top-left-radius: 0px;
	border-bottom-left-radius: 14px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 14px;
}

@media (min-width: 576px) {
	.barralogo {
		height: 100px;
	}

	.logobarra {
		height: 75px;
	}
	
	.butonprev {
		margin-left: -20px;
		width: 30px;
	}

	.butonnest {
		margin-right: -20px;
		width: 30px;
	}
	
	.fundosamsung {
		background-image: url("../media/imagens/fundo_samsung_v.jpg");
	}
	
	.blocosamsung25 {
		background-color: rgba(0,0,0,0.65);
		width: 450px;
		height: 350px;
	}
	
	.bodysamsung25 {
		font-size: 14px;
		letter-spacing: 2px;
		line-height: 24px;
	}

	.captionsamsung25 {
		font-size: 10px;
	}
	
	.logomhcsamsung25 {
		height: 120px;
	}
	
	.logosamsung25 {
		height: 50px;
	}
	
	.logossamsung25 {
		height: 40px;
	}
	
	.acertobtnsamsung25 {
		padding-top: 38px;
	}
	
	.perfilblackcontainer {
		
		border-top-left-radius: 14px;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 14px;
		border-bottom-right-radius: 0px;
	}

	.perfilwhitecontainer {
		
		border-top-left-radius: 0px;
		border-bottom-left-radius: 14px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 14px;
	}
}

@media (min-width: 768px) {
	.barralogo {
		height: 150px;
	}

	.logobarra {
		height: 100px;
	}
	
	.butonprev {
		margin-left: -50px;
		width: 40px;
	}

	.butonnest {
		margin-right: -50px;
		width: 40px;
	}
	
	.fundosamsung {
		background-image: url("../media/imagens/fundo_samsung_v.jpg");
	}
	
	.blocosamsung25 {
		background-color: rgba(0,0,0,0.65);
		width: 500px;
		height: 350px;
	}
	
	.bodysamsung25 {
		font-size: 18px;
		letter-spacing: 3px;
		line-height: 30px;
	}

	.captionsamsung25 {
		font-size: 10px;
	}
	
	.logomhcsamsung25 {
		height: 120px;
	}
	
	.logosamsung25 {
		height: 50px;
	}
	
	.logossamsung25 {
		height: 40px;
	}
	
	.acertobtnsamsung25 {
		padding-top: 38px;
	}
	
	.perfilblackcontainer {
		
		border-top-left-radius: 14px;
		border-bottom-left-radius: 14px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.perfilwhitecontainer {
		
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 14px;
		border-bottom-right-radius: 14px;
	}
}

@media (min-width: 992px) {
	.barralogo {
		height: 150px;
	}

	.logobarra {
		height: 100px;
	}
	
	.butonprev {
		margin-left: -50px;
		width: 40px;
	}

	.butonnest {
		margin-right: -50px;
		width: 40px;
	}
	
	.fundosamsung {
		background-image: url("../media/imagens/fundo_samsung_h.jpg");
	}
	
	.blocosamsung25 {
		background-color: rgba(0,0,0,0.65);
		width: 500px;
		height: 350px;
	}
	
	.bodysamsung25 {
		font-size: 18px;
		letter-spacing: 3px;
		line-height: 30px;
	}

	.captionsamsung25 {
		font-size: 10px;
	}
	
	.logomhcsamsung25 {
		height: 120px;
	}
	
	.logosamsung25 {
		height: 50px;
	}
	
	.logossamsung25 {
		height: 40px;
	}
	
	.acertobtnsamsung25 {
		padding-top: 38px;
	}
	
	.perfilblackcontainer {
		
		border-top-left-radius: 14px;
		border-bottom-left-radius: 14px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.perfilwhitecontainer {
		
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 14px;
		border-bottom-right-radius: 14px;
	}
}

@media (min-width: 1200px) {
    .barralogo {
		height: 150px;
	}

	.logobarra {
		height: 100px;
	}
	
	.butonprev {
		margin-left: -50px;
		width: 40px;
	}

	.butonnest {
		margin-right: -50px;
		width: 40px;
	}
	
	.fundosamsung {
		background-image: url("../media/imagens/fundo_samsung_h.jpg");
	}
	
	.blocosamsung25 {
		background-color: rgba(0,0,0,0.65);
		width: 600px;
		height: 360px;
	}
	
	.bodysamsung25 {
		font-size: 18px;
		letter-spacing: 3px;
		line-height: 30px;
	}

	.captionsamsung25 {
		font-size: 10px;
	}
	
	.logomhcsamsung25 {
		height: 120px;
	}
	
	.logosamsung25 {
		height: 50px;
	}
	
	.logossamsung25 {
		height: 40px;
	}
	
	.acertobtnsamsung25 {
		padding-top: 27px;
	}
	
	.perfilblackcontainer {
		
		border-top-left-radius: 14px;
		border-bottom-left-radius: 14px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.perfilwhitecontainer {
		
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		border-top-right-radius: 14px;
		border-bottom-right-radius: 14px;
	}
}



/* input */
.ipt {
	border:solid 1px #171D20;
	font-size: 14px;
    color: #171D20;
    border-radius: 0px;
    text-align: center;
    box-shadow: none;
	background-color: transparent;
}

.ipt:focus{
    color: #171D20;
	background-color: transparent;
}

.ipt::placeholder  {
	color: #171D20;
}

.ipt:-ms-input-placeholder  {
	color: #171D20;
}

.ipt::-ms-input-placeholder  {
	color: #171D20;
}

.form-control {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}




.iptrenova {
	border:solid 1px #171D20;
	font-size: 14px;
    color: #171D20;
    border-radius: 0px;
    text-align: left;
    box-shadow: none;
	background-color: transparent;
}

.iptrenova:focus{
    color: #171D20;
	background-color: transparent;
}

.iptrenova::placeholder  {
	color: lightgrey;
}

.iptrenova:-ms-input-placeholder  {
	color: lightgrey;
}

.iptrenova::-ms-input-placeholder  {
	color: lightgrey;
}


.iptsamsung25 {
	border:solid 1px rgba(255,255,255,0.25);
	font-size: 14px;
    color: white;
    border-radius: 0px;
    text-align: left;
    box-shadow: none;
	background-color: rgba(255,255,255,0.25);
	height:35px;
}

.iptsamsung25:focus{
    color: white;
	background-color: rgba(255,255,255,0.25);
	box-shadow: none;
	outline: none;
}

.iptsamsung25::placeholder  {
	color: lightgrey;
}

.iptsamsung25:-ms-input-placeholder  {
	color: lightgrey;
}

.iptsamsung25::-ms-input-placeholder  {
	color: lightgrey;
}




.iptplanob {
	border:solid 1px #171D20;
	font-size: 14px;
    color: #171D20;
    border-radius: 0px;
    text-align: center;
    box-shadow: none;
	background-color: transparent;
}

.iptplanob:focus{
    color: #171D20;
	background-color: transparent;
}

.iptplanob::placeholder  {
	color: #AAAAAA;
}

.iptplanob:-ms-input-placeholder  {
	color: #AAAAAA;
}

.iptplanob::-ms-input-placeholder  {
	color: #AAAAAA;
}



.iptroda {
	border:solid 1px #171D20;
	font-size: 14px;
    color: #171D20;
    border-radius: 0px;
    text-align: center;
    box-shadow: none;
	background-color: rgba(255,255,255,1);
}

.iptroda:focus{
    color: #171D20;
	background-color: rgba(255,255,255,1);
}

.iptroda::placeholder  {
	color: #AAAAAA;
}

.iptroda:-ms-input-placeholder  {
	color: #AAAAAA;
}

.iptroda::-ms-input-placeholder  {
	color: #AAAAAA;
}







/* links */
.linkprincipal:link {
	color: #FFFFFF !important;
	text-decoration: underline;
}

.linkprincipal:visited {
	color: #FFFFFF !important;
}

.linkprincipal:hover {
	color: #FFFFFF !important;
    text-decoration: none;
}

.linkprincipal.active, .linkprincipal:active {
	color: #FFFFFF !important;
    text-decoration: underline;
}



.linksecundario:link {
	color: #FFFFFF !important;
	text-decoration: none;
}

.linksecundario:visited {
	color: #FFFFFF !important;
}

.linksecundario:hover {
	color: #FFFFFF !important;
    text-decoration: none;
}

.linksecundario.active, .linksecundario:active {
	color: #FFFFFF !important;
    text-decoration: none;
}



.linkterciario:link {
	color: #171D20 !important;
	text-decoration: underline;
}

.linkterciario:visited {
	color: #171D20 !important;
}

.linkterciario:hover {
	color: #171D20 !important;
    text-decoration: none;
}

.linkterciario.active, .linksecundario:active {
	color: #171D20 !important;
    text-decoration: none;
}


.linklocalizacao {
	color: #FFFFFF !important;
	text-decoration: none;
}

.linklocalizacao:visited {
	color: #FFFFFF !important;
}

.linklocalizacao:hover {
	color: #FFFFFF !important;
    text-decoration: underline;
}

.linklocalizacao.active, .linklocalizacao:active {
	color: #FFFFFF !important;
    text-decoration: none;
}




.linklocalizacaoamarelo {
	color: #E8F23A !important;
	text-decoration: underline;
}

.linklocalizacaoamarelo:visited {
	color: #E8F23A !important;
}

.linklocalizacaoamarelo:hover {
	color: #E8F23A !important;
    text-decoration: underline;
}

.linklocalizacaoamarelo.active, .linklocalizacaoamarelo:active {
	color: #E8F23A !important;
    text-decoration: underline;
}








/* botoes */
.btnprincipal {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    min-height: 60px;
    border-radius:30px;
    min-width: 250px;
}

.btnprincipal:hover {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnprincipal:focus, .btnprincipal.focus {
    outline: 0;
    box-shadow: none;
}

.btnprincipal.disabled, .btnprincipal:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnprincipal:not(:disabled):not(.disabled):active, .btnprincipal:not(:disabled):not(.disabled).active,
.show > .btnprincipal.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnprincipal:not(:disabled):not(.disabled):active:focus, .btnprincipal:not(:disabled):not(.disabled).active:focus,
.show > .btnprincipal.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}









.btnprincipalinvertido {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
    min-height: 60px;
    border-radius:30px;
    min-width: 250px;
}

.btnprincipalinvertido:hover {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
}

.btnprincipalinvertido:focus, .btnprincipalinvertido.focus {
    outline: 0;
    box-shadow: none;
}

.btnprincipalinvertido.disabled, .btnprincipalinvertido:disabled {
    color: #FFFFFF;
    background-color: #222226;
    border-color: #222226;
}

.btnprincipalinvertido:not(:disabled):not(.disabled):active, .btnprincipalinvertido:not(:disabled):not(.disabled).active,
.show > .btnprincipalinvertido.dropdown-toggle {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
}

.btnprincipalinvertido:not(:disabled):not(.disabled):active:focus, .btnprincipalinvertido:not(:disabled):not(.disabled).active:focus,
.show > .btnprincipalinvertido.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}




.btnsecundario {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    border-radius:0px;
    min-width: 120px;
}

.btnsecundario:hover {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
}

.btnsecundario:focus, .btnsecundario.focus {
    outline: 0;
    box-shadow: none;
}

.btnsecundario.disabled, .btnsecundario:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #003152;
}

.btnsecundario:not(:disabled):not(.disabled):active, .btnsecundario:not(:disabled):not(.disabled).active,
.show > .btnsecundario.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
}

.btnsecundario:not(:disabled):not(.disabled):active:focus, .btnsecundario:not(:disabled):not(.disabled).active:focus,
.show > .btnsecundario.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}




.btnsecundarioinvertido {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
    
    border-radius:0px;
    min-width: 120px;
}

.btnsecundarioinvertido:hover {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
}

.btnsecundarioinvertido:focus, .btnsecundarioinvertido.focus {
    outline: 0;
    box-shadow: none;
}

.btnsecundarioinvertido.disabled, .btnsecundarioinvertido:disabled {
    color: #fff;
    background-color: #003152;
    border-color: #003152;
}

.btnsecundarioinvertido:not(:disabled):not(.disabled):active, .btnsecundarioinvertido:not(:disabled):not(.disabled).active,
.show > .btnsecundarioinvertido.dropdown-toggle {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
}

.btnsecundarioinvertido:not(:disabled):not(.disabled):active:focus, .btnsecundarioinvertido:not(:disabled):not(.disabled).active:focus,
.show > .btnsecundarioinvertido.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}






.btnterciario {
    color: #1a99d6;
    background-color: #FFFFFF;
    border-color: #1a99d6;
    
    border-radius:0px;
    min-width: 120px;
}

.btnterciario:hover {
    color: #FFFFFF;
    background-color: #1a99d6;
    border-color: #FFFFFF;
}

.btnterciario:focus, .btnterciario.focus {
    outline: 0;
    box-shadow: none;
}

.btnterciario.disabled, .btnterciario:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #003152;
}

.btnterciario:not(:disabled):not(.disabled):active, .btnterciario:not(:disabled):not(.disabled).active,
.show > .btnterciario.dropdown-toggle {
    color: #FFFFFF;
    background-color: #1a99d6;
    border-color: #FFFFFF;
}

.btnterciario:not(:disabled):not(.disabled):active:focus, .btnterciario:not(:disabled):not(.disabled).active:focus,
.show > .btnterciario.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}



.btnterciarioinvertido {
    color: #FFFFFF;
    background-color: #1a99d6;
    border-color: #1a99d6;
    
    border-radius:0px;
    min-width: 120px;
}

.btnterciarioinvertido:hover {
    color: #1a99d6;
    background-color: #FFFFFF;
    border-color: #1a99d6;
}

.btnterciarioinvertido:focus, .btnterciarioinvertido.focus {
    outline: 0;
    box-shadow: none;
}

.btnterciarioinvertido.disabled, .btnterciarioinvertido:disabled {
    color: #fff;
    background-color: #003152;
    border-color: #003152;
}

.btnterciarioinvertido:not(:disabled):not(.disabled):active, .btnterciarioinvertido:not(:disabled):not(.disabled).active,
.show > .btnterciarioinvertido.dropdown-toggle {
    color: #1a99d6;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btnterciarioinvertido:not(:disabled):not(.disabled):active:focus, .btnterciarioinvertido:not(:disabled):not(.disabled).active:focus,
.show > .btnterciarioinvertido.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}




.btnlogin {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
    min-height: 40px;
    border-radius:0px;
    min-width: 100%;
}

.btnlogin:hover {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
}

.btnlogin:focus, .btnlogin.focus {
    outline: 0;
    box-shadow: none;
}

.btnlogin.disabled, .btnlogin:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #003152;
}

.btnlogin:not(:disabled):not(.disabled):active, .btnlogin:not(:disabled):not(.disabled).active,
.show > .btnlogin.dropdown-toggle {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
}

.btnlogin:not(:disabled):not(.disabled):active:focus, .btnlogin:not(:disabled):not(.disabled).active:focus,
.show > .btnlogin.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}






.btnrenovar {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    /*height: 40px;*/
    border-radius:20px;
    min-width: 160px;
	/*line-height: 40px;*/
}

.btnrenovar:hover {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
}

.btnrenovar:focus, .btnrenovar.focus {
    outline: 0;
    box-shadow: none;
}

.btnrenovar.disabled, .btnrenovar:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnrenovar:not(:disabled):not(.disabled):active, .btnrenovar:not(:disabled):not(.disabled).active,
.show > .btnrenovar.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnrenovar:not(:disabled):not(.disabled):active:focus, .btnrenovar:not(:disabled):not(.disabled).active:focus,
.show > .btnrenovar.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}




.btnrtsummer {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    /*height: 40px;*/
    border-radius:20px;
    min-width: 160px;
	/*line-height: 40px;*/
	text-decoration: underline;
	text-transform: none;
}

.btnrtsummer:hover {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btnrtsummer:focus, .btnrtsummer.focus {
    outline: 0;
    box-shadow: none;
}

.btnrtsummer.disabled, .btnrtsummer:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnrtsummer:not(:disabled):not(.disabled):active, .btnrtsummer:not(:disabled):not(.disabled).active,
.show > .btnrtsummer.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnrtsummer:not(:disabled):not(.disabled):active:focus, .btnrtsummer:not(:disabled):not(.disabled).active:focus,
.show > .btnrtsummer.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}






.btnreceita {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #171D20;
    border-radius:20px;
	width: 60px;
	max-width: 100%;
	font-size: 11px;
}

.btnreceita:hover {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
}

.btnreceita:focus, .btnreceita.focus {
    outline: 0;
    box-shadow: none;
}

.btnreceita.disabled, .btnreceita:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnreceita:not(:disabled):not(.disabled):active, .btnreceita:not(:disabled):not(.disabled).active,
.show > .btnreceita.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
}

.btnreceita:not(:disabled):not(.disabled):active:focus, .btnreceita:not(:disabled):not(.disabled).active:focus,
.show > .btnreceita.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}





.btnsamsung25 {
    color: #FFFFFF;
    background-color: #1B2BA2;
    border-color: #1B2BA2;
    height: 35px;
    border-radius:0px;
	font-size: 14px;
}

.btnsamsung25:hover {
    color: #1B2BA2;
    background-color: #FFFFFF;
    border-color: #1B2BA2;
}

.btnsamsung25:focus, .btnsamsung25.focus {
    outline: 0;
    box-shadow: none;
}

.btnsamsung25.disabled, .btnsamsung25:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #003152;
}

.btnsamsung25:not(:disabled):not(.disabled):active, .btnsamsung25:not(:disabled):not(.disabled).active,
.show > .btnsamsung25.dropdown-toggle {
    color: #1B2BA2;
    background-color: #FFFFFF;
    border-color: #1B2BA2;
}

.btnsamsung25:not(:disabled):not(.disabled):active:focus, .btnsamsung25:not(:disabled):not(.disabled).active:focus,
.show > .btnsamsung25.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}





.btnbootcamp {
    color: #FFFFFF;
    background-color: transparent;
    border-color: #FFFFFF;
    min-height: 50px;
    border-radius:25px;
    min-width: 250px;
	letter-spacing: 2px;
}

.btnbootcamp:hover {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btnbootcamp:focus, .btnbootcamp.focus {
    outline: 0;
    box-shadow: none;
}

.btnbootcamp.disabled, .btnbootcamp:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnbootcamp:not(:disabled):not(.disabled):active, .btnbootcamp:not(:disabled):not(.disabled).active,
.show > .btnbootcamp.dropdown-toggle {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btnbootcamp:not(:disabled):not(.disabled):active:focus, .btnbootcamp:not(:disabled):not(.disabled).active:focus,
.show > .btnbootcamp.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}




.btnpopupbootcamp {
    color: #171D20;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    min-height: 40px;
    border-radius:20px;
    min-width: 250px;
}

.btnpopupbootcamp:hover {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnpopupbootcamp:focus, .btnpopupbootcamp.focus {
    outline: 0;
    box-shadow: none;
}

.btnpopupbootcamp.disabled, .btnpopupbootcamp:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnpopupbootcamp:not(:disabled):not(.disabled):active, .btnpopupbootcamp:not(:disabled):not(.disabled).active,
.show > .btnpopupbootcamp.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnpopupbootcamp:not(:disabled):not(.disabled):active:focus, .btnpopupbootcamp:not(:disabled):not(.disabled).active:focus,
.show > .btnpopupbootcamp.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}





.btnmaterial {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #171D20;
    min-height: 40px;
    border-radius:20px;
    width: auto;
}

.btnmaterial:hover {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnmaterial:focus, .btnmaterial.focus {
    outline: 0;
    box-shadow: none;
}

.btnmaterial.disabled, .btnmaterial:disabled {
    color: #FFFFFF;
    background-color: #003152;
    border-color: #FFFFFF;
}

.btnmaterial:not(:disabled):not(.disabled):active, .btnmaterial:not(:disabled):not(.disabled).active,
.show > .btnmaterial.dropdown-toggle {
    color: #FFFFFF;
    background-color: #171D20;
    border-color: #FFFFFF;
}

.btnmaterial:not(:disabled):not(.disabled):active:focus, .btnmaterial:not(:disabled):not(.disabled).active:focus,
.show > .btnmaterial.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}










/* icone animado */
.iconerodar {
	width: 40px;
	height: 40px;
	background: transparent;
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
    -webkit-animation:cog 1s linear infinite;
    -moz-animation:cog 1s linear infinite;
    animation:cog 1s linear infinite;  
}
@-moz-keyframes cog { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes cog { 100% { -webkit-transform: rotate(360deg); } }
@keyframes cog { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }



.dropdown-toggle:after {
	content: none;
}





/* nav tabs da agenda */
.nav-tabs {
	border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
	margin-bottom: -1px;
}

.nav-tabs .nav-link {
	border: 1px solid #dee2e6;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	color: white;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
	border-color: #e9ecef #e9ecef #dee2e6;
	color: #171D20;
	text-decoration: underline;
	background-color: white;
}

.nav-tabs .nav-link.disabled {
	color: #6c757d;
	background-color: transparent;
	border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: #171D20;
	background-color: white;
	border-color: #dee2e6 #dee2e6 #fff;
	text-decoration: none;
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}




/* reticencias nos testemunhos */
.overflow {
	/*--max-lines: 3;*/
	position: relative;
	/*max-height: calc(var(--lh) * var(--max-lines));*/
	overflow: hidden;
	padding-right: 1rem; /* space for ellipsis */
}
.overflow::before {
	position: absolute;
	content: "...";
	/*   inset-block-end: 0;
	inset-inline-end: 0; */
	bottom: 0;
	right: 0;
}
.overflow::after {
	content: "";
	position: absolute;
	/*   inset-inline-end: 0; */
	right: 0;
	width: 1rem;
	height: 1rem;
}



/* stripe */

.stripeform {
	width: 30vw;
	min-width: 100%;
	align-self: center;
	box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
	0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
	border-radius: 7px;
	padding: 30px;
}

.hidden {
	display:none;
}

.stripecard {
  border-radius: 4px 4px 0 0 ;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 44px;
  width: 100%;
  background: white;
}

.result-message {
  line-height: 22px;
  font-size: 16px;
}


.stripebtn {
	background: #171D20;
	color: #ffffff;
	border-radius: 0 0 4px 4px;
	border: 0;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: block;
	transition: all 0.2s ease;
	box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
	width: 100%;
	margin-top: 5px;
}

.stripebtn:hover {
  filter: contrast(115%);
}
.stripebtn:disabled {
  opacity: 0.5;
  cursor: default;
}

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/* flip dos desafios */
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 55px;
	text-align: center;
	transition: transform 0.4s;
	transform-style: preserve-3d;
}

.virou {
	transform: rotateY(180deg) rotateX(0deg);
}

.ficavirada {
	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    /*-webkit-transform: translate3d(0,0,0);*/
    visibility:visible;
}
.flip-card-back {
	transform: rotateY(180deg) rotateX(0deg);
}

