﻿/*==================================================
  Radios and Checkboxes
==================================================== */
.radio-custom,
.checkbox-custom {
  background-color: transparent;
  color: inherit;
}
/* hide default input */
.radio-custom input,
.checkbox-custom input {
  display: none;
}
.checkbox-custom label:empty,
.radio-custom label:empty {
  padding-left: 10px;
}
/* radio container */
.radio-custom label {
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  margin-right: 15px;
  margin-bottom: 5px;
}
/* radio border */
.radio-custom label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 64px;
  width: 20px;
  height: 20px;
  border: 2px solid #666;
}
/* check radio icon */
.radio-custom input[type=radio]:checked + label:after,
.radio-custom input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 64px;
  width: 10px;
  height: 10px;
  color: #666;
  background-color: #666;
}
/* alt style - square */
.radio-custom.square label:before {
  border-radius: 2px;
}
.radio-custom.square input[type=radio]:checked + label:after,
.radio-custom.square input[type=checkbox]:checked + label:after {
  border-radius: 2px;
}
/* checkbox container */
.checkbox-custom label {
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  margin-right: 15px;
  margin-bottom: 5px;
}
/* checkbox border */
.checkbox-custom label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 21px;
  background-color: #FFF;
  border: 1px solid #666;
  border-width: 2px;
  border-radius: 2px;
}
/* checked state icon */
.checkbox-custom input[type=checkbox]:checked + label:after,
.checkbox-custom input[type=radio]:checked + label:after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f00c";
  font-size: 12px;
  top: 4px;
  left: 4px;
  width: 0;
  height: 0;
  transform: rotate(-13deg);
}
/* alt style - filled bg ".fill" */
.checkbox-custom.fill label {
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.checkbox-custom.fill label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  width: 22px;
  height: 21px;
  background-color: #666;
}
.checkbox-custom.fill input[type=checkbox]:checked + label:after,
.checkbox-custom.fill input[type=radio]:checked + label:after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f00c";
  font-size: 12px;
  top: 3px;
  left: 3px;
  width: 0;
  height: 0;
  color: #fff !important;
  transform: rotate(-13deg);
}

/*
    ###############################################################################
    TURMA PRESENCIAL CONTROL
    ###############################################################################
*/

.turmasPresenciaisToSelect {
    overflow-x: hidden;
	overflow-y: hidden;
	vertical-align: middle;
	background-color: rgba(51, 51, 51, 0.90);
	position:fixed;
	width: 100%;
	top:0;
	height: 100%;
	min-height: 100%;
	z-index: 99999999;
    display: none;

}

.turmasPresenciaisToSelect #panel {
    opacity:1.0;
    -moz-opacity: 1.0;
    filter: alpha(opacity=100);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    padding: 20px;  
    background: #EFEFEF;
    color: #666666;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}



.turmasPresenciaisToSelect #panel #titulo {
    background-color: #B30000;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.2em;
     -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


.turmasPresenciaisToSelect #panel #btfechar {
    position: relative;
    height: 30px;
    width: 30px;
    cursor: pointer;
    float: right;
    top: -33px;
    color: #fff;
}

.turmasPresenciaisToSelect #panel #info {
    width: 100%;
    height: 90%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    overflow-x: hidden;
    overflow-y: initial;
    margin-top: 20px;
    
}

.turmasPresenciaisToSelect #panel #info #obs {
    
}

.turmasPresenciaisToSelect #panel #info #itensTurmasPresenciaisToSelect{
    padding-top: 20px;
}

.divAvisoTurmasPresenciaisIndisponiveis {
    border: 1px dashed rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align:center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (max-width: 768px) {

    .turmasPresenciaisToSelect #panel {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        padding: 20px;
        background: #EFEFEF;
        color: #666666;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }

    .section-title-black h4 {
        padding-bottom: 0px;
    }

    .section-white {
        padding: 30px 0px 30px 0px;
    }

    .section-checkout {
        padding: 20px 0px 0px 0px;
    }

    .nav-tabs > li {
        width: 100%;
        border-bottom: 1px solid #ececec;
    }

    #content {
        padding: 0 15px;
    }

    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
        background-color: #5b78c9;
        color: #ffffff;
        border-bottom-color: transparent;
    }
}


@media screen and (min-width: 770px) and (max-width: 2000px) {

    .turmasPresenciaisToSelect #panel {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 90%;
        padding: 20px;
        background: #EFEFEF;
        color: #666666;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }
}



.tituloTurmaPresencia {
    display: block;
    text-align: center;
    color: #808080;
    background-color: #EFEFEF;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
    font-size: 1.2em;
}

.tituloTurmaPresencia div {
    display: inline-block;
}

.datasTurmaPresencia {
    display: block;
    width: 100%;
    text-align: center;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    font-size: 1.2em;
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
    color: #808080;
}

.headerDiasSemanaTurmaPresencial {
    position:relative;
    display: table;
    width: 90%;
    left: 5%;
    height: 30px;
    background-color: #EFEFEF;
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
    border-bottom: 1px dashed #dedede;
    table-layout: fixed;
}

.itemheaderDiasSemanaTurmaPresencial {
    display: table-cell;
    color: #808080;
    height: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-left: 1px solid #fff;
}


.infoDiasSemanaTurmaPresencial {
   position:relative;
    display: table;
    width: 90%;
    left: 5%;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
    table-layout: fixed;
    border-bottom: 1px dashed #dedede;
}
    

.itemInfoDiasSemanaTurmaPresencial {
    display: table-cell;
    color: #808080;
    height: 30px;
    text-align: center;
    height: 30px;
    border: 1px solid #ffffff;
}



.infoTurmaPresencial{
    display: block;
    border: 1px solid #333333;
}

.infoValorTurmaPresencial {
    position:relative;
    display: block;
    width: 90%;
    left: 5%;
    height: 100px;
}

.valorPagamentoAVista{
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: #D73B37;
    border-right: 1px dashed #dedede;
    font-size: 2.0em;
}

.taxaMatriculaTurmaPresencial {
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: #D73B37;
    border-right: 1px dashed #dedede;
    font-size: 2.0em;
}

.infoParcelasMatriculaTurmaPresencial {
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: #D73B37;
    border-right: 1px dashed #dedede;
    font-size: 2.0em;
}

.botoesMatriculaTurmaPresencial {
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: #D73B37;
    width: 80%;
}

.btMatriculaTurmaPresencial {
   font-size: 1.0em;
   background-color: #D73B37;
   color: #fff;
   padding-top: 10px;
   padding-right: 20px;
   padding-left: 20px;
   padding-bottom: 10px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   cursor: pointer;
}

.btMatriculaTurmaPresencialSemVagas {
   font-size: 1.2em;
   background-color: #999999;
   color: #fff;
   padding-top: 10px;
   padding-right: 20px;
   padding-left: 20px;
   padding-bottom: 10px;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   cursor: pointer;
}


.tituloInfoPagamento {
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
}

.tituloInfoPagamentoBotaoMatricula {
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    width: 80%;
}

.labelFormaPagamento{
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    color: #999999;
    font-size: 1.0em;
}

.ddlFormasPagamento
{
    border: 1px solid #dedede;
    font-size: .8em;
    height: 40px;
    color: #808080;
    padding-top: 5px;
    padding-bottom: 5px;
}

.btMatriculaTurmaPresencial:hover {

}

.divisaoInfoTurmaPresencial {
    height: 50px;
}

.divInfoObservacoesTurmaPresencial {
    width: 100%;
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    border-top: 1px dashed #dedede;
    border-bottom: 1px dashed #dedede;
    background-color: #dedede;
}

.divInfoCursoSemTurmaDisponivel{
    color: red;
}

.itemTUrmaPresencialToSelect{
    width: 100%;
}

.imgContainerAulaDemonstracao{
    height: auto;
    width: 240px;
    padding: 5px;
}

.pAulaDemonstracao{
    width: 240px;
}

.cursorPointer{
    cursor: pointer;
}

.alignCenter{
    text-align: center;
}

.divImgContainer{
    width: 240px;
    float:left;
}

#tabAulasDemonstracao{
    overflow: hidden;
}

.displayInline {
    display: inline;
}

.whatsapPanel{
    position: fixed;
    left: 10px;
    top: 90%;
    width: 54px;
    height: 54px;
    background-image: url(/images/whatsapp_icon.png);
    cursor: pointer;

    -moz-border-radius:35px;
	-webkit-border-radius:35px;
	border-radius: 35px;
}

.whatsapPanel:hover{
      position: fixed;
    left: 10px;
    top: 90%;
    width: 54px;
    height: 54px;
    background-image: url(/images/whatsapp_icon_hover.png);
    -moz-box-shadow: 3px 2px 2px #666;
    	-webkit-box-shadow: 3px 2px 2px #666;
	box-shadow: 3px 2px 2px #666;

	 -moz-border-radius:35px;
	-webkit-border-radius:35px;
	border-radius: 35px;
}


@media screen and (max-width: 992px) {
    .whatsapPanel {
        top: 75%;
    }
    .whatsapPanel:hover {
        top: 75% !important;
    }
}

.grecaptcha-badge {
    display: none;
}

.w-480p .modal-dialog {
    max-width: 572px !important;
}

.compreAgora {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999999;
}
    .compreAgora .precoProduto {
        background-color: #f6f6f6;
        font-size: 1em;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .compreAgora .btAddCarrinho {
        background-color: #fee600 !important;
        border-color: #fee600 !important;
        font-size: 1.0em !important;
        border-radius: 0px !important;
    }

#buscaControl {
    padding: 3px 5px !important;
}

#txtInfoBuscar {
    border-radius: 0 !important;
}

.fix-search-mobile-tablet {
    top: 50px !important;
}

ul.social li {
    height: 40px !important;
}

#txtInfoBuscar:parent {
    padding: 0 !important;
}

.testi-item {
    max-width: 1080px !important;
}

.iconRemoverItemCarrinho {
    color: red !important
}

.divContentProduto {
    display: flex;
    align-items: center;
}

.div-continuar-comprando {
    background-color: #5b78c9;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 8px;
}

.continuar-comprando {
    color: white;
    font-size: 19px
}

.continuar-comprando:hover {
    font-weight: bold;
    color: white
}

@media (max-width: 600px) {
    .modal-dialog {
        width: 100%;
        margin: 30px auto;
    }
}