@font-face {
    font-family: 'Montserrat';
    src:  url('/fonts/montserrat-v14-latin-regular.woff2') format('woff2'),
                url('/fonts/montserrat-v14-latin-regular.woff') format('woff');
}


:root {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
}

html, body {
}
body {
    background: #fff;
    padding: 0;
    margin: 0;
}

main{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /*overflow: hidden;*/
    /*background-color: rgb(239 239 239);*/

    background-image: url(../../imgs/background-2.jpg);
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}



button.red{
    background-color: #dc4343;
}

button.green{
    background-color: #6aab1f;
}



.swiper-container{
    overflow-y: scroll;
}



main > section{
    position: absolute;
    overflow: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

main > section .section-body{
    text-align: justify;
}

main > section.hide{
    display: none;
}

.header {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    background-color: #ffffff;
    height: 60px!important;
    overflow: hidden;
    z-index: 10;
    border-bottom: 1px solid #fffffe;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.centerVerticalHorizontal{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#header_logo{
    width: 100%;
    text-align: center;
    height: 100%;
    vertical-align: middle;
    font-size: 2rem;
    line-height: 4rem;
    color: #fff;
}
.header img.logo{
    height: 36px;
    margin: 12px;
}



#sidebarMenu {
    z-index: 20;
    height: 100%;
    position: fixed;
    left: 0;
    width: 250px;
    margin-top: 60px;
    transform: translateX(-250px);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(180deg, #fff 0%, #c5c6ca 100%);
}

#sidebarMenu .menu-logo{
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 31px;
}

#sidebarMenu .menu-logo img{
    height: 34px;
}

#sidebarMenu ul{
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    position: absolute;
    left: 0;
    top: 70px;
    right: 0;
    bottom: 0;
    overflow: scroll;
}
#sidebarMenu ul li{
    list-style: none;
    color: #b11e29;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(235, 107, 45, 0.1);
    font-size: 1.1rem;
}
#sidebarMenu ul li.account{
    height: 26px;
}
#sidebarMenu ul li.account > div{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 9px;
    text-align: center;
}
#sidebarMenu ul li.account .userSefile{
    background-image: url('/imgs/avatar.png');
    background-position: center;
    background-repeat: repeat;
    width: 100px;
    height: 100px;
    background-size: cover;
    border-radius: 50%;
    margin: auto;
}
#sidebarMenu ul li.account div{
    text-align:left;
    line-height: 150%;
    font-size: 0.7rem;
}
#sidebarMenu ul li.account .codeID{
    color: #2b2a29;
    display: contents;
}
#sidebarMenu ul li.account .profileType{
    color: #2b2a29;
    display: contents;
}
#sidebarMenu ul li.account .name{
    color: #2b2a29;
    display: contents;
}
#sidebarMenu ul li.account .document{
    color: #2b2a29;
    display: contents;
}
#sidebarMenu ul li span{
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.50);
}
/*
#sidebarMenu ul li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}*/
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    background-color: rgb(255 255 255 / 0.8);
    padding: 12px 10px;
    width: 40px;
    height: 38px;
    border-radius: 5px;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    top: 1rem;
    left: 1rem;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #2b2a29;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}














.section-header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    /*z-index: 2;*/
}
.section-body{
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    bottom: 0;
    /*z-index: 2;*/
    overflow: auto;
}

.section-body .boxContainer{
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 10px 10px;
}

.section-header .arrow-left {
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 9px 0px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 38px;
    cursor: pointer;
    top: 10px;
    left: 10px;
    transition: all 0.3s ease 0s;
    padding: 2px;
    border-radius: 5px;
}






main section button{
    background-color: rgb(177 30 41);
    color: #fff;
    display: inline-block;
    position: relative;
    border: 0;
    vertical-align: middle;
    font-size: 0.9rem;
    line-height: 1.7rem;
    text-decoration: none;
    overflow: visible;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 7px;
    padding: 0.7rem 2rem;
    min-height: 2.572em;
    outline: 0;
}


main section button.disabled{
    background-color: #c0c0c0;
}

main section button.payment_error{
     background-color: #888888;
}
main section button.payment_execute{
     background-color: #8BC34A;
}



main section h1{
    color: #b11e29;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1.5rem 0 0 4rem;
}

main section h2{
    color: #b11e29;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    margin: 1rem 0;
}







#signin_phoneCountry{
    font-size: 1rem;
    text-align: center;
    border-radius: 6px;
    border: 0;
    padding: 10px;
    width: 80%;
    background-color: #fff;
    height: 3rem;
}
#signin_phoneNumber{
    font-size: 1.5rem;
    text-align: center;
    border-radius: 6px;
    border: 0;
    padding: 10px;
    width: 80%;
    background-color: #fff;
    margin-top: 1rem;
}

#signin_PINcode{
    font-size: 1.5rem;
    text-align: center;
    border-radius: 6px;
    border: 0;
    padding: 10px;
    width: 80%;
    background-color: #fff;
    margin-top: 1rem;
    letter-spacing: 0.4rem;
}

#signin_step_1, #signin_step_2, #signin_step_3{
    text-align: center;
}

















#signin .button {
    box-shadow:inset 0px 1px 0px 0px #bbdaf7;
    background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
    background-color:#79bbff;
    border-radius:6px;
    border:1px solid #84bbf3;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #528ecc;
}
#signin .button:hover {
    background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
    background-color:#378de5;
}
#signin .button:active {
    position:relative;
    top:1px;
}


#como-funciona h1{
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #869212;
}
#como-funciona p{
    font-size: 0.8rem;
    color: #636361;
}


#signout button {
    box-shadow:inset 0px 1px 0px 0px #f5978e;
    background:linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
    background-color:#f24537;
    border-radius:6px;
    border:1px solid #d02718;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #810e05;
}
#signout button:hover {
    background:linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
    background-color:#c62d1f;
}
#signout button:active {
    position:relative;
    top:1px;
}






.boxContainer{
    background-color:#fff;
    padding:1rem;
    font-size:0.75rem;
    line-height:1.25rem;
    letter-spacing: 0.03333em;
    color:#9e9e9e;
    border-radius:10px;
}











.alertBox {
    padding: 20px;
    background-color: #868686;
    color: white;
    z-index: 1000;
    position: fixed;
    /* width: 100%; */
    bottom: 0;
    right: 0;
}
.alertBox .closebtn{
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.alertBox .closebtn:hover {
    color: black;
}

.alertBox.error{
    background-color: #f44336;
}
.alertBox.success{
    background-color: #4CAF50;
}
.alertBox.info{
    background-color: #2196F3;
}
.alertBox.warning{
    background-color: #ff9800;
}





.panelBox{
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    padding: 1rem;
}

.panelCheckingSystem{
    margin: 1rem;
    text-align: center;
}








section.splashscreen{
    background-image: url(../../imgs/splashscreen.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


section.parceiros .section-body ul.lista{
    list-style: none;
    margin: 0;
    padding: 1rem;
}
section.parceiros .section-body ul.lista li{
    text-align: center;
}

section.faq .section-body .boxContainer{
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
}

section.signup .section-body .boxContainer{
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
}


section.termosDeUso .section-body .boxContainer{
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
}

section.politicaDePrivacidade .section-body .boxContainer{
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
}






section.account .section-footer{
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    height: 50px;
    text-align: center;
}

section.account .section-body div.item{
    position: relative;
    left: 0;
    right: 0;
    height: 30%;
    overflow: hidden;
    width: 100%;

    background-image: url();
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 10px;
}



/*
section.account .section-header{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    z-index: 99;
}
*/
/*
section.account .section-header .arrow-left{
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 9px 0px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 38px;
    cursor: pointer;
    top: 10px;
    left: 10px;
    transition: all 0.3s ease 0s;
    padding: 2px;
    border-radius: 5px;
}
*/

section.account .section-body{
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    top: 65px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255)
}

section.account .section-footer{
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    text-align: center;
}

section.account .section-body input[type="text"], section.account .section-body input[type="number"]{
    width: 100%;
    font-size: 1rem;
    padding: 5px;
    border: 0;
    border-bottom: 2px solid #cccccc;
}

section.account .section-body select{
    width: 100%;
    font-size: 1rem;
    padding: 5px;
    border: 0;
    border-bottom: 2px solid #cccccc;
}

section.account .section-body textarea{
    width: 100%;
    font-size: 1rem;
    padding: 5px;
    border: 0;
    border-bottom: 2px solid #cccccc;
    margin: 0px;
    min-height: 200px;
    font-family: Montserrat, sans-serif;
    line-height: 150%;
    font-size: 0.9rem;
}

section.account .section-body .inputField{
    position: absolute;
    top: 2rem;
    left: 10px;
    right: 10px;
}

section.account .section-buttons{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    text-align: center;
}


section.account .section-header .name{
    color: #b11e29;
    text-transform: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    position: absolute;
    left: 43px;
    top: 6px;
    height: 36px;
}

section.account .main .good_photo{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


section.account .section-header .address{
    font-size: 0.7rem;
    position: absolute;
    height: 20px;
    left: 43px;
    top: 19px;
}



section.account .buttonContainer{
    text-align: right;
}



section.account .infoPanel{
    padding: 1rem;
}

section.account .controls button{
    margin: 0 0 10px 0;
    width: 100%;
}



section.account .infoPanel ul.fichaCadastral{
    list-style: none;
    margin: 0;
    padding: 0;
}

section.account .infoPanel ul.fichaCadastral li.separator{
    border-bottom: 1px solid #f1f1f1;
}

section.account .infoPanel ul.fichaCadastral li{
    padding: 0.5rem 0;
    min-height: 2rem;
}

section.account .infoPanel ul.fichaCadastral li button{
    margin-top: 10px;
    width: 100%
}

section.account .infoPanel ul.fichaCadastral li p{
    margin: 0;
    font-size: 0.8rem;
    line-height: 140%;
}

section.account .infoPanel ul.fichaCadastral li p.label{
    font-size: 0.6rem;
    margin: 0 0 2px 0;
    color: #a9a9a9;
}

section.account .infoPanel ul.fichaCadastral li p.description{
    max-height:50px;
    overflow: hidden;
    white-space: pre-wrap;
}

section.account .infoPanel ul.fichaCadastral li span{

}















section.signup .section-header{
}
section.signup .section-body{
    bottom: 5rem;
}
section.signup .section-footer{
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    height: 50px;
    text-align: center;
}
section.signup .btn-back{
    padding: 12px 21px;
    border-radius: 24px;
    background-color: #fff;
}
section.signup .btn-back img {
    width: 20px;
    height: 20px;
}
section.signup input{
    width: 100%;
    border: 1px solid #2b2a29;
    padding: 0.5rem;
    border-radius: 4px;
}

















section.signin{
    background-repeat: repeat;
    min-height: 100%;
    background-size: contain;
}


section.signin .phoneCountry{
    padding: 10px;
    height: 3rem;
    font-size: 1rem;
}
section.signin .phoneNumber{
}

section.signin .pincode{
    letter-spacing: 0.4rem;
}

.btn-small{
    font-size: 0.7rem;
    padding: 9px 10px;
}

section.signin input, section.signin select{
    width: 100%;
    border: 1px solid #2b2a29;
    border: 0;
    padding: 10px;
    padding: 0.5rem;
    border-radius: 4px;

    font-size: 1.5rem;
    text-align: center;
    border-radius: 6px;
}
section.signin .formInput button{
    width: 100%;
}
section.signin .formInput{
    width: 100%;
    margin-bottom:1rem;
}

section.signin .section-header{
}
section.signin .section-body{
    position: absolute;
    top: 51px;
    left: 1rem;
    right: 1rem;
    bottom: 5rem;
    overflow: auto;
}
section.signin .section-body .boxContainer{
    background-color: transparent;
    color: rgb(43, 42, 41);
}
section.signin .section-footer{
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    height: 50px;
    text-align: center;
}

section.signin .step .btn-back{
    padding: 12px 21px;
    border-radius: 24px;
    background-color: #fff;
}
section.signin .step .btn-back img {
    width: 20px;
    height: 20px;
}












section.ajuda .section-body{
    text-align: center;
}
section.ajuda .section-body a{
    text-decoration: none;
    color: #b11e29;
}
section.ajuda .app-version{
    position: fixed;
    bottom: 2px;
    right: 4px;
    font-size: 10px;
}



section.comoFunciona .section-body{
    /*text-align: left;*/
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 180%;
}
section.comoFunciona .section-body a{
    text-decoration: none;
    color: #b11e29;
}




section.onboarding .section-body{
    top: 0;
    bottom: 2rem;
}
section.onboarding .section-body h1{
    margin: 0;
    text-align:center;
    font-size: 1.5rem;
    text-transform: none;
}
section.onboarding .section-body h2{
    margin: 0;
    text-align:center;
    text-transform: none;
}
section.onboarding .section-body .container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 20px;
}

section.onboarding .section-footer{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 5;
}
section.onboarding .section-footer .btn-back{
    left: 10px;
    bottom: 10px;
    position: absolute;
}
section.onboarding .section-footer .btn-next{
    right: 10px;
    bottom: 10px;
    position: absolute;
}
section.onboarding .section-footer .btn-start{
    right: 15px;
    bottom: 0px;
    position: absolute;
}
















.sidebar.left{
    z-index: 20;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0
    bottom: 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform 250ms ease-in-out;
    /*
    background: linear-gradient(180deg, #fff 0%, #9c9c9c 100%);
    border-radius: 6px 0 0 6px;
    */
    left: 0;
    background-color: transparent;

}
.sidebar.left.show{
    transform: translateX(0);
}
.sidebar .wrapper{
    position: absolute;
    right: 0;
    width: 70%;
    top: 0;
    bottom: 0;
    border-radius: 6px 0 0 6px;
    background: linear-gradient(180deg, #fff 0%, #c5c5ca 100%);
}
.sidebar.left .wrapper div{
    padding: 1rem;
}
.sidebar.left .wrapper label{
}
.sidebar.left .wrapper input, .sidebar.left .wrapper select{
    width: 100%;
    padding: 5px;
    margin: 5px 0 0;
}
.sidebar.left .wrapper .section-footer{
    position: absolute;
    bottom: 10px;
    text-align: center;
    left: 0;
    right: 0;
}



section.notificacoes .section-body{
    
}

section.notificacoes .section-body ul.list{
    list-style: none;
    padding: 0 1rem;
}

section.notificacoes .section-body ul.list li{
    margin-bottom: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

section.notificacoes .section-body ul.list li span.date{
}

section.notificacoes .section-body ul.list li span.message{
    color: #848181;
    margin-left: 10px;
    display: block;
}


section.senhaParaResgate{

}

section.senhaParaResgate .section-body{
    
}
section.senhaParaResgate .section-body > div{
    padding: 0 1rem;
}


section.senhaDoApp{

}

section.senhaDoApp .section-body{
    
}
section.senhaDoApp .section-body > div{
    padding: 0 1rem;
}


section.aprovacaoDeResgate{

}

section.aprovacaoDeResgate .section-body{
    
}
section.aprovacaoDeResgate .swiper-container .section-body > div{
    padding: 0 1rem;
}


section.pagamentoAvulso{

}

section.pagamentoAvulso .section-body{
    
}
section.pagamentoAvulso .section-body > div{
    padding: 0 1rem;
}


section.pagamentoMensal{

}

section.pagamentoMensal .section-body{
    
}
section.pagamentoMensal .section-body > div{
    padding: 0 1rem;
}

















section.pagamento{
    display: block;
    /*margin-top: 50px;*/
}
section.pagamento form#creditCard{
    width: 300px;
    padding: 0;
    display: block;
    margin: auto;
}
section.pagamento form#creditCard input{
    width: 100%;
    font-size: 1rem;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #c0c0c0;
}
section.pagamento form#creditCard .card_expiry{
    width: 5rem;
}
section.pagamento form#creditCard .card_cvc{
    width: 5rem;
}





section.extrato .boxBalance{
    font-size: 0.8rem;
    line-height: 200%;
    color: #000000;
    margin: 0;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    width: 50%;
    text-align: center;
    margin-right: 5px;
}
section.extrato .boxBalance span{
    font-size: 1.1rem;
}
section.extrato table.lista{
}
section.extrato table.lista tbody{
    font-size: 0.8rem;
    line-height: 200%;
}
section.extrato table.lista tbody tr.debt{
    color: #ff0000;
}
section.extrato table.lista tbody tr td:last-child{
    text-align: right;
}




section.paymentAvulso .paymentValue ul.value{
    list-style: none;
    padding: 0 1rem;
}

section.paymentAvulso .paymentValue ul.value li{
    margin: 1rem 0;
    border: 1px solid #dbdbdb;
    background-color: #fff;
    border-radius: 10px;
    line-height: 3rem;
    padding: 0 1rem;
}

section.paymentAvulso .creditCardData{
    padding: 1rem;
}

section.paymentAvulso .creditCardData p{
    margin: 0.5rem 0;
}

section.paymentAvulso .creditCardData input{
    font-size: 1.1rem;
    padding: 0.3rem;
    border-radius: 5px;
    border: 1px solid #c0c0c0;
}

section.paymentAvulso .creditCardData input.card_number{
    width: 100%;
}

section.paymentAvulso .creditCardData input.card_name{
    width: 100%;
}

section.paymentAvulso .creditCardData input.card_expiry{
    width: 6rem;
}

section.paymentAvulso .creditCardData input.card_cvc{
    width: 6rem;
}






section.paymentMensal .paymentValue ul.value{
    list-style: none;
    padding: 0 1rem;
}

section.paymentMensal .paymentValue ul.value li{
    margin: 1rem 0;
    border: 1px solid #dbdbdb;
    background-color: #fff;
    border-radius: 10px;
    line-height: 3rem;
    padding: 0 1rem;
}

section.paymentMensal .creditCardData{
    padding: 1rem;
}

section.paymentMensal .creditCardData p{
    margin: 0.5rem 0;
}

section.paymentMensal .creditCardData input{
    font-size: 1.1rem;
    padding: 0.3rem;
    border-radius: 5px;
    border: 1px solid #c0c0c0;
}

section.paymentMensal .creditCardData input.card_number{
    width: 100%;
}

section.paymentMensal .creditCardData input.card_name{
    width: 100%;
}

section.paymentMensal .creditCardData input.card_expiry{
    width: 6rem;
}

section.paymentMensal .creditCardData input.card_cvc{
    width: 6rem;
}







section.subscriptions .changeValue ul.value{
    list-style: none;
    padding: 0 1rem;
}

section.subscriptions .changeValue ul.value li{
    margin: 1rem 0;
    border: 1px solid #dbdbdb;
    background-color: #fff;
    border-radius: 10px;
    line-height: 3rem;
    padding: 0 1rem;
}

section.subscriptions .creditCardData{
    padding: 1rem;
}

section.subscriptions .creditCardData p{
    margin: 0.5rem 0;
}

section.subscriptions .creditCardData input{
    font-size: 1.1rem;
    padding: 0.3rem;
    border-radius: 5px;
    border: 1px solid #c0c0c0;
}

section.subscriptions .creditCardData input.card_number{
    width: 100%;
}

section.subscriptions .creditCardData input.card_name{
    width: 100%;
}

section.subscriptions .creditCardData input.card_expiry{
    width: 6rem;
}

section.subscriptions .creditCardData input.card_cvc{
    width: 6rem;
}












section.paymentAvulso .paymentCard ul.list{
    list-style: none;
    padding: 0;
}

section.paymentAvulso .paymentCard  ul.list li{
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    position: relative;
}

section.paymentAvulso .paymentCard  ul.list li button.select{
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.3rem 1rem;
    font-size: 0.6rem;
}

section.paymentAvulso .paymentCard  ul.list li p{
    margin: 0;
    line-height: 1.2rem;
}




section.paymentMensal .paymentCard ul.list{
    list-style: none;
    padding: 0;
}

section.paymentMensal .paymentCard  ul.list li{
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    position: relative;
}

section.paymentMensal .paymentCard  ul.list li button.select{
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.3rem 1rem;
    font-size: 0.6rem;
}

section.paymentMensal .paymentCard  ul.list li p{
    margin: 0;
    line-height: 1.2rem;
}






section.subscriptions .swiper-slide.main .panelPersonal ul{
    list-style: none;
    padding: 0;
}

section.subscriptions .swiper-slide.main .panelPersonal ul li{
    margin-bottom: 1rem;
    text-align: center;
}

section.subscriptions .swiper-slide.main .panelPersonal ul li button{
    width: 14rem;
}


section.subscriptions .changeCard ul.list{
    list-style: none;
    padding: 0;
}

section.subscriptions .changeCard  ul.list li{
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    position: relative;
}

section.subscriptions .changeCard  ul.list li button.select{
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.3rem 1rem;
    font-size: 0.6rem;
}

section.subscriptions .changeCard  ul.list li p{
    margin: 0;
    line-height: 1.2rem;
}





section.creditCards .list ul.list{
    list-style: none;
    padding: 0;
}

section.creditCards .list  ul.list li{
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    position: relative;
}

section.creditCards .list  ul.list li button.delete{
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.3rem 1rem;
    font-size: 0.6rem;
}

section.creditCards .list  ul.list li p{
    margin: 0;
    line-height: 1.2rem;
}

section.creditCards form.creditCard{
    width: 300px;
    padding: 0;
    display: block;
    margin: auto;
}
section.creditCards form.creditCard input{
    width: 100%;
    font-size: 1rem;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #c0c0c0;
}
section.creditCards form.creditCard .card_expiry{
    width: 5rem;
}
section.creditCards form.creditCard .card_cvc{
    width: 5rem;
}
