/* All */
body {
    font-family: Barlow;
    height: 100%;
    width: 100%;
}
p.small {
    font-size: 16px;
}
ul {
    list-style: none;
}
ol {
    list-style: decimal;
}
a,
a:hover,
a:focus,
a:active,
a.active {
    color: #6c757d;
}
label {
    font-weight: 400;
}

/* Modals */
.modal-body p {
    font-size: 14px;
}
.general p.small {
    font-size: 11px;
}
.modal .btn {
    width: auto;
    padding: 20px 60px;
}
.modal-content {
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    border-radius: 0;
    border: 2px solid #30D436;
}
.card {
    border:none;
    background-color: #ececec;
    color:#909090;
}


/* Selects */
select:not([multiple]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
	background: transparent url('/static/img/arrow_drop_down_black.svg') no-repeat right;
    background-position-x: 98%;
}

select:not([multiple]):focus {
    background: transparent url('/static/img/arrow_drop_up_black.svg') no-repeat right;
    background-position-x: 97%;
}

.selected {
    color: #555555 !important;
}
.unselected {
    color: #999999 !important;
}
#gender, #education {
    color: #999999;
}


/* Checkout */
.checkout {
    display: block;
    overflow-x:hidden;
    height: 100%;
}
#no-param {
    padding-top: 1em;
}
#no-param h3 {
    margin-bottom: 15px;
}
#no-param .btn-wrapper {
    text-align: center;
}
input[type=checkbox], input[type=radio]{
    vertical-align: 2px;
}


/* Check coverage */
.check-coverage {
    width: 100%;
    height: 100%;
    background: #ececec;
    background-size: cover;
    position: fixed;

}

.check-coverage-wrapper {
    position: relative;
    margin-top: 30px;
}

.check-coverage .check-number{
    color: #535353 !important;
    margin-left: 56%;
    margin-top: 5px;
}
.check-number .text-check{
    float: right;
    margin: -3px 0px 0px 8px;

}

.check-coverage .form-group {
    margin-top: 10px;
}

.check-coverage .form p {
    text-align: center;
    margin: 20px auto;
}

.check-coverage .message {
    display: none;
}

.check-coverage .message p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 150px;
}

.check-coverage .message .btn {
    font-size: 18px;
    font-weight: 700;
    max-width: 400px;
    margin-top: -120px;
    margin-bottom: 100px;
}
.coverage-box{
    padding: 30px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
@media only screen and (max-width:561px){
    .check-coverage {
        width: 100%;
        height: 100%;
        background: #ececec;
        background-size: cover;
        position: fixed;
    
    }
    .check-coverage-wrapper {
        position: relative;
        margin-top: 0;
    }
    .check-coverage .check-number{
        color: #535353 !important;
        margin-left: 17px;
        margin-top: 5px;
    }

}
@media only screen and (min-width:562px) and (max-width:767px) {
    .check-coverage .check-number{
        color: #535353 !important;
        margin-left: 17px;
        margin-top: 5px;
    }

    .check-coverage .message .btn {
        max-width: 400px;
        margin-top: -20px;
        margin-bottom: 40px;
    }

}
@media only screen and (min-width:768px) and (max-width:992px) {
    .check-coverage .check-number{
        color: #535353 !important;
        margin-left: 57%;
        margin-top: 5px;
    }    
}

/* Navbar */
.navbar {
    background-color: #fff;
    border-top: 5px solid #8f26e5;
    margin-bottom: 20px;
    height: 65px;
}
.navbar .container > div {
    display: inline-block;
}
.navbar-brand {
    height: 55px;
    padding-top: 15px;
}
.navbar-brand img {
    height: 50px;
}
#navbar-security {
    height: 35px;
    line-height: 35px;
    background: url("../img/padlock.png") no-repeat center left;
    padding-left: 30px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}
@media only screen and (max-width: 480px) {
    #navbar-security {
        font-size: 12px;
    }
}

.top-header{
    margin: 0px;
    padding: 18px;
}

.top-header-color{
    background-color: #ececec;
}

/* Loaders */
.container-table {
    display: table;
}
.vertical-center-row {
    display: table-cell;
    vertical-align: middle;
}
#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background: center no-repeat rgba(255, 255, 255, 0.7);
}
#loader i {
    font-size: 5em;
}
#loader span {
    font-size: 5em;
}
#loader span, #cep-loader span {
    color: #FED831;
    -webkit-animation: spin 1500ms infinite linear;
    animation: spin 1500ms infinite linear;
}
#cep-loader {
    height: 800px;
    margin-left: 18%;
    position: relative;
    width: 60%;
}
#cep-loader span {
    font-size: 18px;
    position: relative;
    top: 3px;
}
@media only screen and (max-width: 600px) {
    #cep-loader {
        height: 600px;
        margin-left: 18%;
        position: relative;
        width: 60%;
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* Panels */
.panel-body{
    margin-top: 50px;
}

.panel-heading{
    text-align: center;
    padding: 15px 0px;
    border-bottom: 1px solid #bdbdb3;
    width: 100%;
}

.panel-cep .panel-heading {
    text-align: center;
}

.details-plan{
    background: #282828;
    border-radius: 10px;
    margin: 0 0 20px 17px;
    max-width: 93%;
    padding-top: 20px;
}

@media only screen and (min-width: 992px) {
    .panel-primary .panel-body .form-group {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 480px) {
    .panel-body {
        padding: 60px 20px;
        margin-top: 0;
    }
}

/* Prices */
#price-container {
    margin-bottom: 10px;
    line-height: initial;
}
#price-container .price {
    font-size: 28px;
    font-weight: 900;
}
.price-hidden {
    display:none; 
    color: white; 
    flex: none; 
    max-width: 100%; 
    opacity: 0; 
    margin-bottom: -25px;
}

/* Forms */
fieldset {
    margin-bottom: 50px;
}
legend {
    font-size: 26px;
    font-weight: 900;
    color: #30D436;
    text-transform: uppercase;
    margin-bottom: 40px;
    border: 0;
}
label {
    font-size: 16px;
    color: #333;
}
.form-group {
    margin-bottom: 16px;
}
.form-control,
.form-control:focus,
.form-control:hover {
    box-shadow: none;
}
.form-control:active,
.form-control:focus {
    border: 1px solid #30D436;
}
.form-control {
    font-size: 16px;
    height: calc(2.25rem + 30px);
    /* padding-left: 20px;
    padding-right: 20px; */
    padding: 10px 20px 0 21px;
    background: #ffffff;
    border-radius: 4px;
    border: 2px solid #e9e9e9;
}

.form h3{
    text-align: center;
}

.has-error .info-block {
    margin-bottom: 0;
}
.help-block {
    color: #FA0D25 !important;
    margin-bottom: 0;
}
.inline-help {
    display: inline;
    margin-left: 5px;
}
@media only screen and (max-width: 992px) {
    .inline-help {
        display: block;
        margin-left: 0;
    }
    .radio-inline.radio-inline {
        width: 100%;
        margin: 7px 0;
    }
    .boleto-increase-control {
        margin-top: 0;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 561px){
    .container h3,p{
        text-align: left !important;
    }
}
.error-msg {
    color: #FA0D25 !important;
}
#cep-error {
    color: #FA0D25 !important;
}
input[type="radio"] + label::after {
    background-color: #f0ad4e !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}
input[type=number] {
    -moz-appearance: textfield !important;
}


/* Plans Onlines */
.list-plans-online{
    display: -ms-flexbox;
    display: flex;
    justify-content: space-evenly;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: -20px;
    padding-left: 0;
    margin-bottom: 0;
}

.list-plans-online-item{
    background-color: #282828;
    border: solid 1px #282828;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 20px;
    padding: .75rem 1.25rem;
    text-align: center !important;
    width: 160px;
    height: 90%; 
}

.list-plans-online-item span{
    color: #21D625;
    font-weight: 700;
}

.list-plans-online-item p{     
    font-size: 16px;
    
}

.list-plans-online-item p:first-child{
    color: white;
}

.list-plans-online-item p:last-child{
    font-size: 16px;
    margin-top: -20px;
    color: #CCCCCC;
}

.info-installation{
    color: white; 
    display: flex; 
    flex: auto; 
    max-width: 90%; 
    margin: -10px 0 15px 0;
}

@media only screen and (max-width: 430px){ 
    .list-plans-online-item{
        background-color: #282828;
        border: solid 1px #282828;
        border-radius: 10px;
        color: white;
        cursor: pointer;
        font-size: 17px;
        padding: .75rem 1.25rem;
        text-align: center !important;
        width: 115px;
        height: 110px; 
    }
    .list-plans-online-item p:last-child{
        font-size: 14px;
        margin-top: -20px;
        color: #CCCCCC;
    }
}

/* Buttons */
button {
    padding: 1rem 2.86rem;
    font-size: 1.12rem;
    background-color: #FED831;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px !important;;
    border: none !important;
    color: #000;
    font-weight: bold;
    margin-bottom: 80px;
}

button:hover, button:active{
    background: #F6DA47;
}

button:hover, button:active, button:focus{
    border-radius: 0px !important;;
    border: none !important;
    outline:none !important;
}
.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 0;
    border: none;
}
.btn:hover,
.btn-success.active.focus,
.btn-success:active.focus,
.btn-success:active:hover {
    color: #000 !important;
    border: 2px solid #F6DA47;
    background-color: #F6DA47;
}
.btn-white {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 0;
    color: #000 !important;
    background: #FED831;
    border: 2px solid #FED831;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}
.btn-white:hover {
    color: #000 !important;
    border: 2px solid #fff;
    background-color: #F6DA47;
}
.btn-inactive {
    pointer-events: none;
    cursor: not-allowed;
    color: #535353 !important;
    background-color: #CCCCCC !important;
    border: 2px solid #CCCCCC !important;
}
#coverage-btn{
    border-radius: 0px;
    background: #FED831;
    border: none;
    color:#000;
    font-size: 18px;
    padding: 1.2rem 1rem;
    width: 300px;
}
#coverage-btn:active, #coverage-btn:hover, #coverage-btn:focus{
    border: none;
    background: #F6DA47;
}
#confirm-btn{
    border-radius: 0px;
    background: #FED831;
    border: none;
}

#confirm-btn .glyphicon {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

@media only screen and (max-width:561px) {
    button {
        padding: 1rem 2.86rem;
        font-size: 1.12rem;
        background-color: #FED831;
        cursor: pointer;
        text-decoration: none;
        border-radius: 4px !important;;
        border: none !important;
        color: #000;
        width: 100%;
        font-weight: bold;
        margin-bottom: 80px;
    }

    #coverage-btn{
        border-radius: 0px;
        background: #ffcb08;
        border: none;
        color:#000;
        font-size: 18px;
        padding: 1.2rem 1rem;
        width: 100%;
    }
}

/* Toast message */
#toast {
    top: 15px;
    height: 20px;
    z-index: 9999;
}
#toast > div {
    padding: 15px 20px;
    min-height: 20px;
    text-align: center;
    border: none;
    border-radius: 0;
    color: #fff;
    background: #30D436;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
#toast .error-toast {
    color: #ffffff;
    background: #FA0D25;
}

.footer {
    height: 50px;
    bottom: 0;
    width: 100%;
    background-color: #282828;
    color: #fff;
    text-align: center;
    padding: 12px 0px;
    opacity: 1;
}


.input-wrapper {
    position: relative;
}

.error-input input{
    border: solid 2px #F7162F !important;
    color: #F7162F !important;
}

.error-input select{
    border: solid 2px #F7162F !important;
    color: #F7162F !important;
}

.input-wrapper::after {
    display: inline-block;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-exclamation-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    position: absolute; 
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.text-error{
    position: absolute;
    left: 22px;
    font-size: 13px;
    color: #F7162F;
    top: 7%;
}

.text-instalation{
    flex: none; 
    max-width: 100%; 
    height: 40px;
}

@media (min-width: 768px){
    .footer-custom {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
    }
    
}
@media only screen and (max-width:767px) {
    .footer {
        height: 50px;
        bottom: 0;
        width: 100%;
        background-color: #282828;
        color: #fff;
        text-align: center;
        padding: 12px 0px;
        opacity: 1;
        right: 1px;
    }
}

/* Oi formater  */
.oi-color{
    color: #535353;
}

.oi-color span{
    color:#30D436;
}

.oi-background{
    background-color: #282828;
    position: fixed;
    height: 100%;
    right: 0;
}
.oi-img{
    height: 32px;
}

.font-23{
    font-size: 23px;
    font-weight: 700;
}

.font-28{
    font-size: 28px;
    font-weight: 700;
}

#collapseServices small{
    color:white;
}

/* Success page */
.success .panel {
    margin-top: 1em;
}
.success h1 {
    font-size: 26px;
    font-weight: 900;
    color: #8f26e5;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.success p {
    color: #333;
    font-size: 18px;
    font-weight: 300;
}

/* Line Horizontal */
.line-horizontal{
    width: 70%;
    margin-top: 30px;
    margin-bottom: 30px;
    border-width: 2px;
}
.line-horizontal-shopping{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border-width: 2px;
}
@media only screen and (max-width: 992px) {
    .line-horizontal{
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
        border-width: 2px;  
    }
}

/* Transition text input */
.label-call{
    position: absolute;
    color: #535353;
    top: 20px;
    left: 37px !important;
    bottom: 20;
    z-index: 2;
    width: 100%;
    cursor: text;
    transition: 0.2s ease all;
    text-align: initial;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

label{
    position: absolute;
    color: #535353;
    top: 20px;
    left: 28px;
    bottom: 20;
    z-index: 2;
    width: 100%;
    cursor: text;
    transition: 0.2s ease all;
    text-align: initial;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

.form-control:focus ~ .animated-label,
input:not(:placeholder-shown):not(:focus) + label,
input:not(:placeholder-shown):not(:focus) + .label-call{
    top: 10px;
    opacity: 1;
    color: #535353;
    font-size: 10px;
    font-weight: 300;
}

#dob::placeholder{
    opacity: 0;
}

#dob:focus::placeholder{
    opacity: 1;
    color: #747272;
}

.ui-datepicker { 
    z-index:999 !important; 
}
