/* 
--------------------------
- 1.1 Default CSS
--------------------------
*/

/*google font*/

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900|Poppins:100,300,400,500,600,700,800,900');
/* Your default CSS. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: 0;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
}


/*--------------------------
   Padding top
---------------------------*/
.pt--0 {
    padding-top: 0
}

.pt--10 {
    padding-top: 10px
}

.pt--15 {
    padding-top: 15px
}

.pt--20 {
    padding-top: 20px
}

.pt--30 {
    padding-top: 30px
}

.pt--40 {
    padding-top: 40px
}

.pt--50 {
    padding-top: 50px
}

.pt--60 {
    padding-top: 60px
}

.pt--70 {
    padding-top: 70px
}

.pt--80 {
    padding-top: 80px
}

.pt--90 {
    padding-top: 90px
}

.pt--100 {
    padding-top: 100px
}

.pt--110 {
    padding-top: 110px
}

.pt--120 {
    padding-top: 120px
}

.pt--130 {
    padding-top: 130px
}

.pt--140 {
    padding-top: 140px
}

.pt--150 {
    padding-top: 150px
}

.pt--160 {
    padding-top: 160px
}

.pt--170 {
    padding-top: 170px
}

.pt--180 {
    padding-top: 180px
}

.pt--190 {
    padding-top: 190px
}

/*------------------------
   Padding bottom
---------------------------*/

.pb--0 {
    padding-bottom: 0
}

.pb--10 {
    padding-bottom: 10px
}

.pb--15 {
    padding-bottom: 15px
}

.pb--20 {
    padding-bottom: 20px
}

.pb--30 {
    padding-bottom: 30px
}

.pb--40 {
    padding-bottom: 40px
}

.pb--50 {
    padding-bottom: 50px
}

.pb--60 {
    padding-bottom: 60px
}

.pb--70 {
    padding-bottom: 70px
}

.pb--80 {
    padding-bottom: 80px
}

.pb--90 {
    padding-bottom: 90px
}

.pb--100 {
    padding-bottom: 100px
}

.pb--110 {
    padding-bottom: 110px
}

.pb--120 {
    padding-bottom: 120px
}

.pb--130 {
    padding-bottom: 130px
}

.pb--140 {
    padding-bottom: 140px
}

.pb--150 {
    padding-bottom: 150px
}

.pb--160 {
    padding-bottom: 160px
}

.pb--170 {
    padding-bottom: 170px
}

.pb--180 {
    padding-bottom: 180px
}

.pb--190 {
    padding-bottom: 190px
}

/*------------------------------
   Page section padding 
-------------------------------*/

.ptb--0 {
    padding: 0
}

.ptb--10 {
    padding: 10px 0
}

.ptb--20 {
    padding: 20px 0
}

.ptb--30 {
    padding: 30px 0
}

.ptb--40 {
    padding: 40px 0
}

.ptb--50 {
    padding: 50px 0
}

.ptb--60 {
    padding: 60px 0
}

.ptb--70 {
    padding: 70px 0
}

.ptb--80 {
    padding: 80px 0
}

.ptb--90 {
    padding: 90px 0
}

.ptb--100 {
    padding: 100px 0
}

.ptb--110 {
    padding: 110px 0
}

.ptb--120 {
    padding: 120px 0
}

.ptb--130 {
    padding: 130px 0
}

.ptb--140 {
    padding: 140px 0
}

.ptb--150 {
    padding: 150px 0
}

.ptb--160 {
    padding: 160px 0
}

.ptb--170 {
    padding: 170px 0
}

.ptb--180 {
    padding: 180px 0
}

/*------------------------------
   Page section padding left
-------------------------------*/

.pl--0 {
    padding-left: 0px;
}

.pl--10 {
    padding-left: 10px;
}

.pl--20 {
    padding-left: 20px;
}

.pl--30 {
    padding-left: 30px;
}

.pl--40 {
    padding-left: 40px;
}

.pl--50 {
    padding-left: 50px;
}

.pl--60 {
    padding-left: 60px;
}

.pl--70 {
    padding-left: 70px;
}

.pl--80 {
    padding-left: 80px;
}

.pl--90 {
    padding-left: 90px;
}

.pl--100 {
    padding-left: 100px;
}

.pl--110 {
    padding-left: 110px;
}

/*------------------------------
   Page section padding right
-------------------------------*/

.pr--0 {
    padding-right: 0px;
}

.pr--10 {
    padding-right: 10px;
}

.pr--20 {
    padding-right: 20px;
}

.pr--30 {
    padding-right: 30px;
}

.pr--40 {
    padding-right: 40px;
}

.pr--50 {
    padding-right: 50px;
}

.pr--60 {
    padding-right: 60px;
}

.pr--70 {
    padding-right: 70px;
}

.pr--80 {
    padding-right: 80px;
}

.pr--90 {
    padding-right: 90px;
}

.pr--100 {
    padding-right: 100px;
}

.pr--110 {
    padding-right: 110px;
}

/* Colors */

:root {
    --primary-color: #4336FB;
}

@keyframes popin{
    0%{
        opacity: 0;
        transform: scale(0);
    }
    1%{
        opacity: 0.1;
        transform: scale(0);
    }
    99%{
        opacity: 0;
        transform: scale(2);
    }
    100%{
        opacity: 0;
        transform: scale(0);
    }
}

.box-info-item-dotted, .bordered-destaque-dotted {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #bababa !important;
    border-left: 3px solid #bababa !important;
}

.border-red {
    border-color: red!important;
}

.border-orange {
    border-color: orange!important;
}

.text-home {
    color: #2d0442!important;
    font-size: 22px;
    font-weight: bold;
}

.center-vertical {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 15%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-vertical-rigth {
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.icon-country {
    max-width: 24px;
    border-radius: 100%;
    box-shadow: 2px 2px #bab9b9;
}

.faixa-home {
    background-color: #173563!important;
    padding: 10px 0!important;
    color: #FFF!important;
}

.label-login {
    font-size: 18px!important;
    color: #495055!important;
    font-weight: bold;
}

.input-login {
    border-radius: 8px!important;
    border: solid #495055 1px!important;
    color: #495055!important;
}

.btn-login {
    text-transform: uppercase!important;
    font-weight: bold!important;
    background-color: #c5252b!important;
    border-radius: 8px!important;
    color: #FFF!important;
}

.btn-criar-conta {
    text-transform: uppercase!important;
    font-weight: bold!important;
    background-color: #b5c6d3!important;
    border-radius: 8px!important;
    color: #FFF!important;
}

.list-circle {
    padding-left: 60px!important;
    list-style-type: square!important;
}

.bg-gray {
    background-color: #f5f5f5!important;
}

.text-side-icon {
    width: 85%;
    float: left;
}

.icon-side-text {
    width: 15%;
    float: right;
}

.texto-padrao {
    color: #5b5b5b;
    font-size: 17px;
    font-weight: bold;
}

.text-user-id {
    color: #3379b7;
    font-size: 11px;
    font-weight: bold;
}

.icon-user {
    color: #5b5b5b;
}

.fs-14 {
    font-size: 14px!important;
}

.text-anuidades-aberto {
    color: #495055;
    font-size: 18px;
    font-weight: bold;
}

.box-gray {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 10px;
}

.text-box-gray {
    color: #495055;
    font-size: 16px;
    font-weight: bold;
}

.msg-anuidades-aberto {
    color: #495055;
    font-size: 16px;
}

.modal-body {
    border-radius: 20px!important;
}

.faixa-smart-wizard {
    height: 80px;
    background-color: #f5f5f5;
    width: 100%;
    position: absolute;
}

.input-default {
    border: 2px solid #A9A9A9;
    border-radius: 20px;
}

span.select2-selection {
    border: 2px solid #A9A9A9!important;
    border-radius: 20px!important;
    padding-top: 0.5rem!important;
    height: auto!important;
}

span.select2-selection__rendered {
    margin-left: 5px!important;
}

.button-default {
    border-radius: 20px;
    font-weight: bold;
    display: block;
    width: 100%;
    color: #FFF;
}

.button-blue, .button-blue:hover {
    background-color: #014085;
    color: #FFF;
}

.button-red, .button-red:hover {
    background-color: #ff3300;
    color: #FFF;
}

.legend-form {
    font-size: 14px;
    margin-bottom: 0;
}

.link-recuperacao-senha {
    text-align: center;
    color: #FF0000;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: underline;
}

/* Estilos para campos de entrada e selects com label flutuante */
.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label-group input,
.form-label-group select,
.form-label-group label {
    height: 2.9rem;
    padding: .75rem;
}

.form-label-group label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    line-height: 1.5;
    pointer-events: none;
    cursor: text;
    transition: all .1s ease-in-out;
    font-size: 16px;
    color: #A6A6A6!important;
}

.form-label-group input::-webkit-input-placeholder,
.form-label-group select::-webkit-input-placeholder {
    color: transparent;
}

.form-label-group input::-moz-placeholder,
.form-label-group select::-moz-placeholder {
    color: transparent;
}

.form-label-group input:-ms-input-placeholder,
.form-label-group select:-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::-ms-input-placeholder,
.form-label-group select::-ms-input-placeholder {
    color: transparent;
}

.form-label-group input::placeholder,
.form-label-group select::placeholder {
    color: transparent;
}

.form-label-group input:not(:-moz-placeholder-shown),
.form-label-group select:not(:-moz-placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.form-label-group input:not(:-ms-input-placeholder),
.form-label-group select:not(:-ms-input-placeholder) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.form-label-group input:not(:placeholder-shown),
.form-label-group select:not(:placeholder-shown) {
    padding-top: 0.25rem;
    padding-bottom: .25rem;
}

.form-label-group input:not(:-moz-placeholder-shown) ~ label,
.form-label-group select:not(:-moz-placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input:not(:-ms-input-placeholder) ~ label,
.form-label-group select:not(:-ms-input-placeholder) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input:not(:placeholder-shown) ~ label,
.form-label-group select:not(:placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.form-label-group input:-webkit-autofill ~ label,
.form-label-group select:-webkit-autofill ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

/* Fallback para Edge */
@supports (-ms-ime-align: auto) {
    .form-label-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .form-label-group label {
        position: static;
    }

    .form-label-group input::-ms-input-placeholder,
    .form-label-group select::-ms-input-placeholder {
        color: #777;
    }
}

.bootbox-close-button, .bootbox-close-button:hover, .bootbox-close-button:focus {
    color: #FFF!important;
    opacity: unset!important;
}

select[disabled=disabled], input[disabled=disabled] {
    cursor: not-allowed!important;
}

.cursor-pointer {
    cursor: pointer!important;
}

/* FUNKY */
.funkyradio label:not(.simple) {
    /*min-width: 400px;*/
    width: 100%;
    border-radius: 3px;
    border: 1px solid #D1D3D4;
    font-weight: normal;
}
.funkyradio input[type="radio"]:empty {
    display: none;
}
.funkyradio input[type="radio"]:empty ~ label {
    position: relative;
    line-height: 2.5em;
    text-indent: 3.25em;
    margin-top: 0.2em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.funkyradio input[type="radio"]:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content:'';
    width: 2.5em;
    background: #D1D3D4;
    border-radius: 3px 0 0 3px;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before {
    content:'\2717';
    text-indent: .9em;
    color: #C2C2C2;
}

.funkyradio input[type="radio"]:hover:not(:checked) ~ label {
    color: #888;
}
.funkyradio input[type="radio"]:checked ~ label:before {
    content:'\2717';
    text-indent: .9em;
    color: #333;
    background-color: #ccc;
}

.funkyradio input[type="radio"]:checked ~ label {
    color: #777;
}

.funkyradio input[type="radio"]:focus ~ label:before {
    box-shadow: 0 0 0 3px #999;
}

/* SUCCESS */
.funkyradio-success input[type="radio"]:checked ~ label:before, .funkyradio-success input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #00c851;
}
.funkyradio-success input[type="radio"]:checked ~ label, .funkyradio-success input[type="checkbox"]:checked ~ label {
    background-color: #d9f7e5;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.faixa-loja-virtual {
    background-color: #efefef;
    padding: 15px 0;
}

.faixa-loja-virtual h1 {
    text-align: center;
    color: #2d7a88;
    font-size: 30px!important;
}

.lato-bold {
    font-weight: bold;
    font-family: 'lato', sans-serif;
}

.lato {
    font-family: 'lato', sans-serif; !important;
}

.pagination-button {
    cursor: pointer;
    align-items: center;
    display: flex;
}

.page-of {
    font-size: 24px;
    color: grey;
    font-family: 'lato', sans-serif;
}

.page-number {
    background-color: #dadada;
    padding: 0px 10px;
    border-radius: 5px;
    font-family: 'lato', sans-serif;
    font-weight: bold;
}

.page-number, .total-pages {
    font-weight: bold;
    font-size: 24px;
    color: grey;
    margin: 0 18px;
}
.pagination li {
    display: inline-block;
    margin: 5px;
    background-color: #ff3600;
    border: 1px solid #ff3600;
    border-radius: 5px;
}

.pagination li a {
    padding: 25px 15px;
}

.pagination .active {
    background-color: #fff;
    color: #ff3600;
    font-size: 20px;
}

.pagination .pagination-previous,
.pagination .pagination-next {
    background-color: #ff3600;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #ff3600;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    font-size: 20px;
}

.pagination li:not(.active) a,
.pagination .pagination-previous:not(.active) a,
.pagination .pagination-next:not(.active) a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.pagination-container {
    text-align: center;
}

.frameExterno {
    border: 2px solid #003E89!important;
    width: 90% !important;
    border-radius: 20px!important;
    margin-bottom: 5%;
}

.btn-rounded-right {
    border-radius: 0 15px 15px 0;
}

.border-radius-30 {
    border-radius: 30px!important;
}

/*Classes padrões*/
.box-default {
    background: linear-gradient(to bottom, #efefef 200px, #FFFFFF 0%);
    margin-bottom: 60px;
}

.title-default, .title-default:hover {
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
}

.color-default, .title-default, .title-default:hover {
    color: #2d7a88;
}

.color-default, .title-default, .title-default:hover {
    color: #2d7a88;
}

.box-title-default {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.button-green, .button-green:hover {
    background-color: #51a800;
    color: #FFF;
}