
@import url('animate.css');

@font-face {
    font-family: 'titillium_webbold';
    src: url('../fonts/TitilliumWeb-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/****** LAYOUT *******/
.fw-card {
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

small.text-muted {
    display: block;
    line-height: 1.0;
    padding-top: 0.25rem;
}

body {
    display: grid;
    grid-template-areas: "menu conteudo";
    grid-template-columns: 240px auto;
}

.right-panel {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "header "
        "main";
}

.row-compact {
    margin-right: 0;
    margin-left: 0;
}

    .row-compact [class^="col"] {
        padding-left: 0;
        padding-right: 0;
    }

@media (min-width: 575.99px) {
    #frmSite {
        /*height: calc(100vh - 100px - 70px);*/
        overflow: auto;
    }
}

/****** LAYOUT *******/

#frmSite {
    grid-area: main;
}

footer {
    /*grid-area: footer;*/
    font-size: 12px
}

.footer {
    padding: 10px 20px;
}

.gaugejs-wrap {
    position: relative;
    margin: 0 auto;
}

    .gaugejs-wrap canvas.gaugejs {
        width: 100% !important;
        height: auto !important;
    }

    .gaugejs-wrap i, .gaugejs-wrap.sparkline .value {
        top: 50%;
        display: block;
        width: 100%;
        text-align: center;
    }

    .gaugejs-wrap i {
        position: absolute;
        left: 0;
        z-index: 1000;
        margin-top: -15px;
        font-size: 30px;
    }

    .gaugejs-wrap.type-2 .value {
        display: block;
        margin-top: -85px;
    }

    .gaugejs-wrap.type-2 label {
        display: block;
        margin-top: -10px;
        font-size: 10px;
        font-weight: 600;
        color: #9da0a8;
        text-transform: uppercase;
    }

    .gaugejs-wrap.sparkline {
        position: relative;
    }

        .gaugejs-wrap.sparkline .value {
            position: absolute;
            margin-top: -5px;
            font-size: 10px;
            line-height: 10px;
        }

.switch.switch-default {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 24px;
    background-color: transparent;
    cursor: pointer;
}

    .switch.switch-default .switch-input {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .switch.switch-default .switch-label {
        position: relative;
        display: block;
        height: inherit;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 2px;
        transition: opacity background .15s ease-out;
    }

    .switch.switch-default .switch-input:checked ~ .switch-label::before {
        opacity: 0;
    }

    .switch.switch-default .switch-input:checked ~ .switch-label::after {
        opacity: 1;
    }

    .switch.switch-default .switch-handle {
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 1px;
        transition: left .15s ease-out;
    }

    .switch.switch-default .switch-input:checked ~ .switch-handle {
        left: 18px;
    }

    .switch.switch-default.switch-lg {
        width: 48px;
        height: 28px;
    }

        .switch.switch-default.switch-lg .switch-label {
            font-size: 12px;
        }

        .switch.switch-default.switch-lg .switch-handle {
            width: 24px;
            height: 24px;
        }

        .switch.switch-default.switch-lg .switch-input:checked ~ .switch-handle {
            left: 22px;
        }

    .switch.switch-default.switch-sm {
        width: 32px;
        height: 20px;
    }

        .switch.switch-default.switch-sm .switch-label {
            font-size: 8px;
        }

        .switch.switch-default.switch-sm .switch-handle {
            width: 16px;
            height: 16px;
        }

        .switch.switch-default.switch-sm .switch-input:checked ~ .switch-handle {
            left: 14px;
        }

    .switch.switch-default.switch-xs {
        width: 24px;
        height: 16px;
    }

        .switch.switch-default.switch-xs .switch-label {
            font-size: 7px;
        }

        .switch.switch-default.switch-xs .switch-handle {
            width: 12px;
            height: 12px;
        }

        .switch.switch-default.switch-xs .switch-input:checked ~ .switch-handle {
            left: 10px;
        }

.switch.switch-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 48px;
    height: 24px;
    background-color: transparent;
    cursor: pointer;
}

    .switch.switch-text .switch-input {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .switch.switch-text .switch-label {
        position: relative;
        display: block;
        height: inherit;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 2px;
        transition: opacity background .15s ease-out;
    }

        .switch.switch-text .switch-label::before,
        .switch.switch-text .switch-label::after {
            position: absolute;
            top: 50%;
            width: 50%;
            margin-top: -.5em;
            line-height: 1;
            text-align: center;
            transition: inherit;
        }

        .switch.switch-text .switch-label::before {
            right: 1px;
            color: #e9ecef;
            content: attr(data-off);
        }

        .switch.switch-text .switch-label::after {
            left: 1px;
            color: #fff;
            content: attr(data-on);
            opacity: 0;
        }

    .switch.switch-text .switch-input:checked ~ .switch-label::before {
        opacity: 0;
    }

    .switch.switch-text .switch-input:checked ~ .switch-label::after {
        opacity: 1;
    }

    .switch.switch-text .switch-handle {
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 1px;
        transition: left .15s ease-out;
    }

    .switch.switch-text .switch-input:checked ~ .switch-handle {
        left: 26px;
    }

    .switch.switch-text.switch-lg {
        width: 56px;
        height: 28px;
    }

        .switch.switch-text.switch-lg .switch-label {
            font-size: 12px;
        }

        .switch.switch-text.switch-lg .switch-handle {
            width: 24px;
            height: 24px;
        }

        .switch.switch-text.switch-lg .switch-input:checked ~ .switch-handle {
            left: 30px;
        }

    .switch.switch-text.switch-sm {
        width: 40px;
        height: 20px;
    }

        .switch.switch-text.switch-sm .switch-label {
            font-size: 8px;
        }

        .switch.switch-text.switch-sm .switch-handle {
            width: 16px;
            height: 16px;
        }

        .switch.switch-text.switch-sm .switch-input:checked ~ .switch-handle {
            left: 22px;
        }

    .switch.switch-text.switch-xs {
        width: 32px;
        height: 16px;
    }

        .switch.switch-text.switch-xs .switch-label {
            font-size: 7px;
        }

        .switch.switch-text.switch-xs .switch-handle {
            width: 12px;
            height: 12px;
        }

        .switch.switch-text.switch-xs .switch-input:checked ~ .switch-handle {
            left: 18px;
        }

.switch.switch-icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 48px;
    height: 24px;
    background-color: transparent;
    cursor: pointer;
}

    .switch.switch-icon .switch-input {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .switch.switch-icon .switch-label {
        position: relative;
        display: block;
        height: inherit;
        font-family: FontAwesome;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 2px;
        transition: opacity background .15s ease-out;
    }

        .switch.switch-icon .switch-label::before,
        .switch.switch-icon .switch-label::after {
            position: absolute;
            top: 50%;
            width: 50%;
            margin-top: -.5em;
            line-height: 1;
            text-align: center;
            transition: inherit;
        }

        .switch.switch-icon .switch-label::before {
            right: 1px;
            color: #e9ecef;
            content: attr(data-off);
        }

        .switch.switch-icon .switch-label::after {
            left: 1px;
            color: #fff;
            content: attr(data-on);
            opacity: 0;
        }

    .switch.switch-icon .switch-input:checked ~ .switch-label::before {
        opacity: 0;
    }

    .switch.switch-icon .switch-input:checked ~ .switch-label::after {
        opacity: 1;
    }

    .switch.switch-icon .switch-handle {
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 1px;
        transition: left .15s ease-out;
    }

    .switch.switch-icon .switch-input:checked ~ .switch-handle {
        left: 26px;
    }

    .switch.switch-icon.switch-lg {
        width: 56px;
        height: 28px;
    }

        .switch.switch-icon.switch-lg .switch-label {
            font-size: 12px;
        }

        .switch.switch-icon.switch-lg .switch-handle {
            width: 24px;
            height: 24px;
        }

        .switch.switch-icon.switch-lg .switch-input:checked ~ .switch-handle {
            left: 30px;
        }

    .switch.switch-icon.switch-sm {
        width: 40px;
        height: 20px;
    }

        .switch.switch-icon.switch-sm .switch-label {
            font-size: 8px;
        }

        .switch.switch-icon.switch-sm .switch-handle {
            width: 16px;
            height: 16px;
        }

        .switch.switch-icon.switch-sm .switch-input:checked ~ .switch-handle {
            left: 22px;
        }

    .switch.switch-icon.switch-xs {
        width: 32px;
        height: 16px;
    }

        .switch.switch-icon.switch-xs .switch-label {
            font-size: 7px;
        }

        .switch.switch-icon.switch-xs .switch-handle {
            width: 12px;
            height: 12px;
        }

        .switch.switch-icon.switch-xs .switch-input:checked ~ .switch-handle {
            left: 18px;
        }

.switch.switch-3d {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 24px;
    background-color: transparent;
    cursor: pointer;
}

    .switch.switch-3d .switch-input {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .switch.switch-3d .switch-label {
        position: relative;
        display: block;
        height: inherit;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 2px;
        transition: opacity background .15s ease-out;
    }

    .switch.switch-3d .switch-input:checked ~ .switch-label::before {
        opacity: 0;
    }

    .switch.switch-3d .switch-input:checked ~ .switch-label::after {
        opacity: 1;
    }

    .switch.switch-3d .switch-handle {
        position: absolute;
        top: 0;
        left: 0;
        width: 24px;
        height: 24px;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 1px;
        transition: left .15s ease-out;
        border: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .switch.switch-3d .switch-input:checked ~ .switch-handle {
        left: 16px;
    }

    .switch.switch-3d.switch-lg {
        width: 48px;
        height: 28px;
    }

        .switch.switch-3d.switch-lg .switch-label {
            font-size: 12px;
        }

        .switch.switch-3d.switch-lg .switch-handle {
            width: 28px;
            height: 28px;
        }

        .switch.switch-3d.switch-lg .switch-input:checked ~ .switch-handle {
            left: 20px;
        }

    .switch.switch-3d.switch-sm {
        width: 32px;
        height: 20px;
    }

        .switch.switch-3d.switch-sm .switch-label {
            font-size: 8px;
        }

        .switch.switch-3d.switch-sm .switch-handle {
            width: 20px;
            height: 20px;
        }

        .switch.switch-3d.switch-sm .switch-input:checked ~ .switch-handle {
            left: 12px;
        }

    .switch.switch-3d.switch-xs {
        width: 24px;
        height: 16px;
    }

        .switch.switch-3d.switch-xs .switch-label {
            font-size: 7px;
        }

        .switch.switch-3d.switch-xs .switch-handle {
            width: 16px;
            height: 16px;
        }

        .switch.switch-3d.switch-xs .switch-input:checked ~ .switch-handle {
            left: 8px;
        }

    .switch-pill .switch-label, .switch.switch-3d .switch-label,
    .switch-pill .switch-handle,
    .switch.switch-3d .switch-handle {
        border-radius: 50em !important;
    }

        .switch-pill .switch-label::before, .switch.switch-3d .switch-label::before {
            right: 2px !important;
        }

        .switch-pill .switch-label::after, .switch.switch-3d .switch-label::after {
            left: 2px !important;
        }

.switch-primary > .switch-input:checked ~ .switch-label {
    background: #007bff !important;
    border-color: #0062cc;
}

.switch-primary > .switch-input:checked ~ .switch-handle {
    border-color: #0062cc;
}

.switch-primary-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #007bff;
}

    .switch-primary-outline > .switch-input:checked ~ .switch-label::after {
        color: #007bff;
    }

.switch-primary-outline > .switch-input:checked ~ .switch-handle {
    border-color: #007bff;
}

.switch-primary-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #007bff;
}

    .switch-primary-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #007bff;
    }

.switch-primary-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #007bff !important;
    border-color: #007bff;
}

.switch-secondary > .switch-input:checked ~ .switch-label {
    background: #868e96 !important;
    border-color: #6c757d;
}

.switch-secondary > .switch-input:checked ~ .switch-handle {
    border-color: #6c757d;
}

.switch-secondary-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #868e96;
}

    .switch-secondary-outline > .switch-input:checked ~ .switch-label::after {
        color: #868e96;
    }

.switch-secondary-outline > .switch-input:checked ~ .switch-handle {
    border-color: #868e96;
}

.switch-secondary-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #868e96;
}

    .switch-secondary-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #868e96;
    }

.switch-secondary-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #868e96 !important;
    border-color: #868e96;
}

.switch-success > .switch-input:checked ~ .switch-label {
    background: #28a745 !important;
    border-color: #1e7e34;
}

.switch-success > .switch-input:checked ~ .switch-handle {
    border-color: #1e7e34;
}

.switch-success-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #28a745;
}

    .switch-success-outline > .switch-input:checked ~ .switch-label::after {
        color: #28a745;
    }

.switch-success-outline > .switch-input:checked ~ .switch-handle {
    border-color: #28a745;
}

.switch-success-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #28a745;
}

    .switch-success-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #28a745;
    }

.switch-success-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #28a745 !important;
    border-color: #28a745;
}

.switch-info > .switch-input:checked ~ .switch-label {
    background: #17a2b8 !important;
    border-color: #117a8b;
}

.switch-info > .switch-input:checked ~ .switch-handle {
    border-color: #117a8b;
}

.switch-info-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #17a2b8;
}

    .switch-info-outline > .switch-input:checked ~ .switch-label::after {
        color: #17a2b8;
    }

.switch-info-outline > .switch-input:checked ~ .switch-handle {
    border-color: #17a2b8;
}

.switch-info-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #17a2b8;
}

    .switch-info-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #17a2b8;
    }

.switch-info-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #17a2b8 !important;
    border-color: #17a2b8;
}

.switch-warning > .switch-input:checked ~ .switch-label {
    background: #ffc107 !important;
    border-color: #d39e00;
}

.switch-warning > .switch-input:checked ~ .switch-handle {
    border-color: #d39e00;
}

.switch-warning-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #ffc107;
}

    .switch-warning-outline > .switch-input:checked ~ .switch-label::after {
        color: #ffc107;
    }

.switch-warning-outline > .switch-input:checked ~ .switch-handle {
    border-color: #ffc107;
}

.switch-warning-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #ffc107;
}

    .switch-warning-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #ffc107;
    }

.switch-warning-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #ffc107 !important;
    border-color: #ffc107;
}

.switch-danger > .switch-input:checked ~ .switch-label {
    background: #dc3545 !important;
    border-color: #bd2130;
}

.switch-danger > .switch-input:checked ~ .switch-handle {
    border-color: #bd2130;
}

.switch-danger-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #dc3545;
}

    .switch-danger-outline > .switch-input:checked ~ .switch-label::after {
        color: #dc3545;
    }

.switch-danger-outline > .switch-input:checked ~ .switch-handle {
    border-color: #dc3545;
}

.switch-danger-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #dc3545;
}

    .switch-danger-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #dc3545;
    }

.switch-danger-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #dc3545 !important;
    border-color: #dc3545;
}

.switch-light > .switch-input:checked ~ .switch-label {
    background: #f8f9fa !important;
    border-color: #dae0e5;
}

.switch-light > .switch-input:checked ~ .switch-handle {
    border-color: #dae0e5;
}

.switch-light-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #f8f9fa;
}

    .switch-light-outline > .switch-input:checked ~ .switch-label::after {
        color: #f8f9fa;
    }

.switch-light-outline > .switch-input:checked ~ .switch-handle {
    border-color: #f8f9fa;
}

.switch-light-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #f8f9fa;
}

    .switch-light-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #f8f9fa;
    }

.switch-light-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #f8f9fa !important;
    border-color: #f8f9fa;
}

.switch-dark > .switch-input:checked ~ .switch-label {
    background: #343a40 !important;
    border-color: #1d2124;
}

.switch-dark > .switch-input:checked ~ .switch-handle {
    border-color: #1d2124;
}

.switch-dark-outline > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #343a40;
}

    .switch-dark-outline > .switch-input:checked ~ .switch-label::after {
        color: #343a40;
    }

.switch-dark-outline > .switch-input:checked ~ .switch-handle {
    border-color: #343a40;
}

.switch-dark-outline-alt > .switch-input:checked ~ .switch-label {
    background: #fff !important;
    border-color: #343a40;
}

    .switch-dark-outline-alt > .switch-input:checked ~ .switch-label::after {
        color: #343a40;
    }

.switch-dark-outline-alt > .switch-input:checked ~ .switch-handle {
    background: #343a40 !important;
    border-color: #343a40;
}

.social-box {
    min-height: 160px;
    margin-bottom: 1.5rem;
    text-align: center;
    background: #fff;
}

    .social-box i {
        display: block;
        margin: -1px -1px 0;
        font-size: 40px;
        line-height: 90px;
        background: #e9ecef;
    }

    .social-box .chart-wrapper {
        height: 90px;
        margin: -90px 0 0;
    }

        .social-box .chart-wrapper canvas {
            width: 100% !important;
            height: 90px !important;
        }

    .social-box ul {
        padding: 10px 0;
        list-style: none;
    }

        .social-box ul li {
            display: block;
            float: left;
            width: 50%;
            padding-top: 10px;
            font-size: 18px;
        }

            .social-box ul li:first-child {
                border-right: 1px solid #c2cfd6;
            }

            .social-box ul li strong {
                display: block;
                font-size: 20px;
            }

            .social-box ul li span {
                font-size: 18px;
                font-weight: 500;
                color: #949CA0;
                text-transform: uppercase;
            }

    .social-box.facebook i {
        color: #fff;
        background: #3b5998;
    }

    .social-box.twitter i {
        color: #fff;
        background: #00aced;
    }

    .social-box.linkedin i {
        color: #fff;
        background: #4875b4;
    }

    .social-box.google-plus i {
        color: #fff;
        background: #d34836;
    }

.horizontal-bars {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .horizontal-bars li {
        position: relative;
        height: 40px;
        line-height: 40px;
        vertical-align: middle;
    }

        .horizontal-bars li .title {
            width: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #868e96;
            vertical-align: middle;
        }

        .horizontal-bars li .bars {
            position: absolute;
            top: 15px;
            width: 100%;
            padding-left: 100px;
        }

            .horizontal-bars li .bars .progress:first-child {
                margin-bottom: 2px;
            }

        .horizontal-bars li.legend {
            text-align: center;
        }

            .horizontal-bars li.legend .badge {
                display: inline-block;
                width: 8px;
                height: 8px;
                padding: 0;
            }

        .horizontal-bars li.divider {
            height: 40px;
        }

            .horizontal-bars li.divider i {
                margin: 0 !important;
            }

    .horizontal-bars.type-2 li {
        overflow: hidden;
    }

        .horizontal-bars.type-2 li i {
            display: inline-block;
            margin-right: 1rem;
            margin-left: 5px;
            font-size: 18px;
            line-height: 40px;
        }

        .horizontal-bars.type-2 li .title {
            display: inline-block;
            width: auto;
            margin-top: -9px;
            font-size: 1rem;
            font-weight: normal;
            line-height: 40px;
            color: #212529;
        }

        .horizontal-bars.type-2 li .value {
            float: right;
            font-weight: 600;
        }

        .horizontal-bars.type-2 li .bars {
            position: absolute;
            top: auto;
            bottom: 0;
            padding: 0;
        }

.icons-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .icons-list li {
        position: relative;
        height: 40px;
        vertical-align: middle;
    }

        .icons-list li i {
            display: block;
            float: left;
            width: 35px !important;
            height: 35px !important;
            margin: 2px;
            line-height: 35px !important;
            text-align: center;
        }

        .icons-list li .desc {
            height: 40px;
            margin-left: 50px;
            border-bottom: 1px solid #e9ecef;
        }

            .icons-list li .desc .title {
                padding: 2px 0 0;
                margin: 0;
            }

            .icons-list li .desc small {
                display: block;
                margin-top: -4px;
                color: #868e96;
            }

        .icons-list li .value {
            position: absolute;
            top: 2px;
            right: 45px;
            text-align: right;
        }

            .icons-list li .value strong {
                display: block;
                margin-top: -3px;
            }

        .icons-list li .actions {
            position: absolute;
            top: -4px;
            right: 10px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
        }

            .icons-list li .actions i {
                float: none;
                width: auto;
                height: auto;
                padding: 0;
                margin: 0;
                line-height: normal;
            }

        .icons-list li.divider {
            height: 40px;
        }

            .icons-list li.divider i {
                width: auto;
                height: auto;
                margin: 2px 0 0;
                font-size: 18px;
            }

.bg-flat-color-1 {
    background: #20a8d8;
}

.bg-flat-color-2 {
    background: #63c2de;
}

.bg-flat-color-3 {
    background: #ffc107;
}

.bg-flat-color-4 {
    background: #f86c6b;
}

.bg-flat-color-5 {
    background: #4dbd74;
}

.transition {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body {
    background: #f1f1f1;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    width: 100%;
}

label.pergunta-plano-estendido {
    margin-bottom: 0;
    line-height: 1;
}

.mesagem-plano-estendido {
    margin-top: -.4em;
}

    .mesagem-plano-estendido label {
        font-size: 15px !important;
        color: blue !important;
    }

div[class*="col-"] {
    float: left;
}

p:focus {
    border: none;
    outline: 0;
}

a, button {
    text-decoration: none;
    outline: none !important;
    color: #878787;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    a:hover,
    a:focus {
        text-decoration: none;
        color: #000;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
ol {
    padding-left: 0;
}

.btn:focus,
button:focus {
    box-shadow: none !important;
    outline: 0;
}

.btn,
button,
input,
textarea {
    box-shadow: none;
    outline: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

/* Global Styles */
/* Main Styles */
.basix-container {
    display: table;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

aside.left-panel {
    background: var(--barra-lateral-backcolor) !important;
    grid-area: menu;
    height: 100vh;
    /*padding: 0 25px;*/
    vertical-align: top;
    width: 240px;
    transition: width 0.3s ease;
    overflow: auto;
}

.navbar {
    border-radius: 0;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

    .navbar .navbar-header {
        float: none;
        text-align: center;
        width: 100%;
    }

    .navbar .navbar-brand {
        border-bottom: 1px solid var(--menu-lateral-textcolor);
        color: #f1f2f7 !important;
        font-size: 22px;
        float: none;
        line-height: 50px;
        margin: 0;
        text-align: left;
        text-transform: capitalize;
        display: block;
        min-height: 69px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        .navbar .navbar-brand span {
            font-weight: 600;
        }

        .navbar .navbar-brand img {
            max-width: 120px;
        }

        .navbar .navbar-brand.hidden {
            display: none;
        }

    .navbar .menu-title {
        border-bottom: 1px solid var(--menu-lateral-textcolor);
        color: var(--menu-lateral-textcolor) !important;
        clear: both;
        display: block;
        font-size: 1rem;
        line-height: 50px;
        padding: 15px 0 0 0;
        width: 100%;
        padding: 0px;
        font-size: 1.4rem;
    }

    .navbar .navbar-nav {
        float: none;
        position: relative;
    }

        .navbar .navbar-nav li {
            width: 100%;
            transition: 0.2s;
        }

            .navbar .navbar-nav li:hover {
                width: 100%;
                transform: scale(1.1)
            }

                .navbar .navbar-nav li.active .menu-icon, .navbar .navbar-nav li:hover .toggle_nav_button:before,
                .navbar .navbar-nav li .toggle_nav_button.nav-open:before {
                    color: #fff !important;
                }

            .navbar .navbar-nav li .dropdown-toggle:after {
                display: none;
            }

            .navbar .navbar-nav li > a {
                background: none !important;
                color: var(--submenu-lateral-textcolor) !important;
                display: inline-block;
                font-size: 1rem;
                line-height: 30px;
                padding: 0px;
                position: relative;
                width: 100%;
            }

                .navbar .navbar-nav li > a i {
                    font-size: 1.1rem;
                }

                .navbar .navbar-nav li > a:hover, .navbar .navbar-nav li > a:hover .menu-icon {
                    color: #fff !important;
                }

                .navbar .navbar-nav li > a .menu-icon {
                    color: var(--menu-lateral-textcolor) !important;
                    float: left;
                    margin-top: 8px;
                    width: 30px;
                    text-align: left;
                    z-index: 9;
                }

                .navbar .navbar-nav li > a .menu-title-text {
                    font-size: 1.16rem;
                }

                .navbar .navbar-nav li > a .badge {
                    border-radius: 0;
                    font-weight: 600;
                    float: right;
                    margin: 6px 0 0 0;
                    padding: 0.4em 0.5em;
                }

            .navbar .navbar-nav li.menu-item-has-children {
                position: relative;
            }

                .navbar .navbar-nav li.menu-item-has-children a {
                    line-height: 30px;
                }

                    .navbar .navbar-nav li.menu-item-has-children a:before {
                        content: "\f105";
                        color: #c8c9ce;
                        font-family: 'Fontawesome';
                        font-size: 1.3rem;
                        position: absolute;
                        top: 10px;
                        right: 0;
                        text-align: right;
                        -webkit-transition: all .25s ease;
                        -moz-transition: all .25s ease;
                        -ms-transition: all .25s ease;
                        -o-transition: all .25s ease;
                        transition: all .25s ease;
                    }

                    .navbar .navbar-nav li.menu-item-has-children a:hover:before {
                        color: #fff;
                    }

                .navbar .navbar-nav li.menu-item-has-children .sub-menu {
                    background: var(--barra-lateral-backcolor);
                    border: none;
                    box-shadow: none;
                    overflow-y: hidden;
                    padding: 0 0 0 35px;
                }

                    .navbar .navbar-nav li.menu-item-has-children .sub-menu li {
                        position: relative;
                    }

                    .navbar .navbar-nav li.menu-item-has-children .sub-menu i {
                        color: var(--menu-lateral-textcolor) !important;
                        float: left;
                        padding: 0;
                        position: absolute;
                        left: 0;
                        font-size: 1.16rem;
                        top: 9px;
                    }

                        .navbar .navbar-nav li.menu-item-has-children .sub-menu i > a:hover {
                            color: #FFF;
                        }

                    .navbar .navbar-nav li.menu-item-has-children .sub-menu a {
                        padding: 2px 0 2px 30px;
                    }

                        .navbar .navbar-nav li.menu-item-has-children .sub-menu a:before {
                            content: '';
                            display: none;
                        }

                        .navbar .navbar-nav li.menu-item-has-children .sub-menu a .menu-icon {
                            top: 13px;
                            text-align: left;
                            width: 25px;
                        }

                .navbar .navbar-nav li.menu-item-has-children.show a:before {
                    content: "\f107";
                }

                .navbar .navbar-nav li.menu-item-has-children.show .sub-menu {
                    max-height: 1000px;
                    opacity: 1;
                    position: static !important;
                }

        .navbar .navbar-nav > .active > a,
        .navbar .navbar-nav > .active > a:focus,
        .navbar .navbar-nav > .active > a:hover {
            color: #d7d9e3 !important;
        }

.navbar-nav li span.count {
    background: #a9d86e;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    float: right;
    height: 20px;
    width: 20px;
    line-height: 20px;
    margin-right: 15px;
    text-align: center;
}

body.open .navbar .navbar-brand.hidden {
    display: block;
}

.open aside.left-panel {
    max-width: 70px;
    width: 70px;
}

    .open aside.left-panel .navbar .navbar-brand {
        display: none;
    }

        .open aside.left-panel .navbar .navbar-brand.hidden {
            display: flex !important;
            justify-content: center;
            align-items: center;
            padding-left: 0;
            padding-right: 0;
            text-align: center;
        }

            .open aside.left-panel .navbar .navbar-brand.hidden img {
                max-width: 30px;
                margin: 0 auto;
            }

        .open aside.left-panel .navbar .navbar-brand.d-md-none {
            display: block !important;
            margin: 13px 0 0;
            min-height: 67px;
            padding: 0;
            text-align: center;
        }

    .open aside.left-panel .navbar .navbar-nav:before {
        display: none !important;
    }

    .open aside.left-panel .navbar .navbar-nav li {
        position: relative;
    }

        .open aside.left-panel .navbar .navbar-nav li a {
            font-size: 0;
            z-index: 0;
            transition: none;
        }

            .open aside.left-panel .navbar .navbar-nav li a .menu-icon {
                font-size: 20px;
                z-index: -1;
                width: inherit;
            }

            .open aside.left-panel .navbar .navbar-nav li a .menu-title-text {
                font-size: 0;
            }

            .open aside.left-panel .navbar .navbar-nav li a .badge {
                display: none;
            }

        .open aside.left-panel .navbar .navbar-nav li > a {
            max-width: 60px;
            padding-left: 0;
        }

        .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children {
            overflow: hidden;
        }

            .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children a:before {
                content: '';
                display: none;
            }

            .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children ul {
                padding-left: 0;
            }

            .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu {
                display: block;
                left: inherit;
                right: -180px;
                top: 0;
            }

                .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu li a {
                    display: block;
                    font-size: 1.16rem;
                    max-width: inherit;
                    padding: 2px 15px 2px 25px;
                    width: 100%;
                }

                    .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children .sub-menu li a .menu-icon {
                        text-align: center;
                    }

            .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children.show {
                overflow: visible;
            }

                .open aside.left-panel .navbar .navbar-nav li.menu-item-has-children.show .sub-menu {
                    position: absolute !important;
                }

        .open aside.left-panel .navbar .navbar-nav li span.count {
            display: none;
            margin-right: 5px;
            z-index: 1;
        }

        .open aside.left-panel .navbar .navbar-nav li.active a:after {
            content: '';
            display: none;
        }

    .open aside.left-panel .navbar .navbar-nav .menu-title {
        font-size: 0;
        line-height: 0;
        opacity: 0;
        padding: 0;
    }

/* Right panel */
.right-panel {
    grid-area: conteudo;
    padding-left: 0 !important;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

    .right-panel .breadcrumbs {
        background-color: var(--titulo-backcolor);
        color: var(--titulo-textcolor);
        display: inline-block;
        margin-top: 5px;
        padding: 0 5px;
        width: 100%;
    }

        .right-panel .breadcrumbs .col-lg-8 .page-header {
            float: left;
        }

    .right-panel .page-header {
        min-height: 50px;
        margin: 0px;
        border-bottom: 0px;
    }

        .right-panel .page-header h1 {
            font-size: 1.3rem;
            padding: 15px 0;
        }

        .right-panel .page-header .breadcrumb {
            margin: 0px;
            padding: 13.5px 0;
            background: #fff;
            text-transform: capitalize;
        }

            .right-panel .page-header .breadcrumb > li + li:before {
                padding: 0 5px;
                color: #ccc;
                content: "/\00a0";
            }

    .right-panel header.header {
        background: #fff;
        clear: both;
        padding: 7px 20px 5px 20px;
        width: 100%;
        height: 100px;
        grid-area: header;
        z-index: 200;
    }

footer hr {
    margin: 0;
}

.open .right-panel {
    margin-left: -210px;
}

.header {
    /*position: fixed;
    z-index: 1000;*/
}

header.fixed-top {
    background: #fff;
    padding: 20px;
}

.header-menu .col-sm-7 {
    position: inherit;
}

.header-menu span {
    font-size: .8rem;
    margin-left: 5px;
}

.header-menu .empresa {
    color: #4800ff;
}

.info-formando {
    padding: 5px !important;
}

@media (max-width: 768px) {
    .header-menu .col-ms-8 {
        max-width: 75%;
    }
}

@media (max-width: 768px) {
    .header-menu .info {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .right_col {
        padding: 0px;
    }
}

.menutoggle {
    background: #e74c3c;
    border-radius: 50%;
    color: #fff !important;
    cursor: pointer;
    font-size: 11px;
    height: 43px;
    line-height: 44px;
    margin: -2px 20px -40px -40px;
    text-align: center;
    width: 43px;
}

.open .menutoggle i:before {
    content: "\f0a4";
}

.search-trigger {
    background: transparent;
    border: none;
    color: #2A3F54;
    cursor: pointer;
    font-size: 1.3rem;
    height: 41px;
    width: 43px;
    line-height: 38px;
}

header .form-inline {
    background: #263238;
    display: none;
    height: 70px;
    margin: 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
}

    header .form-inline .search-form {
        height: 100%;
        max-width: 1025px;
        margin: 0 auto;
        position: relative;
    }

        header .form-inline .search-form input[type="text"] {
            background: #263238;
            border: none;
            border-radius: 0;
            box-shadow: none;
            color: #d3d3d3;
            font-size: 1.3rem;
            height: inherit;
            margin-right: 0 !important;
            padding: 10px 36px 10px 15px;
            width: 100%;
        }

            header .form-inline .search-form input[type="text"].active,
            header .form-inline .search-form input[type="text"]:focus {
                border-color: rgba(0, 0, 0, 0.125);
                outline: 0;
            }

        header .form-inline .search-form button {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.3rem;
            position: absolute;
            right: 15px;
            top: 50%;
            margin-top: -14px !important;
        }

            header .form-inline .search-form button:active,
            header .form-inline .search-form button:focus,
            header .form-inline .search-form button:visited,
            header .form-inline .search-form .btn-outline-success:hover {
                background: transparent;
                border: none !important;
                box-shadow: none;
                outline: 0 !important;
            }

        header .form-inline .search-form.close {
            display: none;
        }

.header-left.open .form-inline {
    display: block;
}

.header-left .dropdown {
    display: inline-block;
}

    .header-left .dropdown .dropdown-toggle {
        background: transparent;
        border: none;
        color: #2A3F54;
        font-size: 1.3rem;
    }

        .header-left .dropdown .dropdown-toggle:after {
            display: none;
        }

        .header-left .dropdown .dropdown-toggle .count {
            border-radius: 50%;
            color: #fff;
            font-size: 11px;
            height: 15px;
            width: 15px;
            line-height: 15px;
            right: 0;
            top: 0;
            position: absolute;
        }

        .header-left .dropdown .dropdown-toggle:active, .header-left .dropdown .dropdown-toggle:focus, .header-left .dropdown .dropdown-toggle:visited {
            background: none !important;
            border-color: transparent !important;
            color: #2A3F54 !important;
        }

    .header-left .dropdown .dropdown-menu {
        background: #fff;
        border: none;
        border-radius: 0;
        box-shadow: none;
        top: 49px !important;
    }

        .header-left .dropdown .dropdown-menu p {
            font-size: 1.25rem;
            margin: 0;
            padding: 5px 15px;
        }

        .header-left .dropdown .dropdown-menu .dropdown-item {
            color: #2A3F54;
            font-size: 13px;
            padding: 10px 15px 3px;
            text-overflow: ellipsis;
        }

            .header-left .dropdown .dropdown-menu .dropdown-item .photo {
                float: left;
                margin-right: 15px;
                width: 25px;
            }

            .header-left .dropdown .dropdown-menu .dropdown-item .message .name {
                margin-top: -5px;
            }

            .header-left .dropdown .dropdown-menu .dropdown-item .message .time {
                font-size: 11px;
            }

            .header-left .dropdown .dropdown-menu .dropdown-item .message p {
                clear: both;
                font-size: 1.16rem;
                margin: 0;
                padding: 0;
                text-overflow: ellipsis;
            }

            .header-left .dropdown .dropdown-menu .dropdown-item:hover {
                background: transparent;
            }

.dropdown-menu {
    border-radius: 0;
    transform: none !important;
}

.for-notification .dropdown-menu .dropdown-item {
    padding: 5px 15px !important;
    text-overflow: ellipsis;
}

    .for-notification .dropdown-menu .dropdown-item i {
        float: left;
        font-size: 1.16rem;
        margin: 5px 5px 0 0;
        text-align: left;
        width: 20px;
    }

    .for-notification .dropdown-menu .dropdown-item p {
        padding: 0 !important;
        text-overflow: ellipsis;
    }

.user-area {
    float: right;
    padding-right: 0;
    position: relative;
}

    .user-area .user-menu {
        background: #fff;
        border: none;
        left: inherit !important;
        left: 0;
        top: 55px !important;
        margin: 0;
        max-width: 150px;
        padding: 5px 10px;
        position: absolute;
        width: 100%;
        z-index: 999;
        min-width: 150px;
        border: 1px solid #C0C0C0;
    }

        .user-area .user-menu .nav-link {
            color: #2A3F54;
            display: block;
            font-size: 1.16rem;
            line-height: 22px;
            padding: 5px 0;
        }

    .user-area .user-avatar {
        float: right;
        margin-top: 15px;
        width: 64px;
        margin-right: 5px;
    }

    .user-area .user-info .name {
        color: #8c8c8c;
        font-size: 1.16rem;
        position: relative;
        text-transform: uppercase;
    }

    .user-area .count {
        background: #d9534f;
        border-radius: 50%;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        float: right;
        height: 20px;
        width: 20px;
        line-height: 20px;
        text-align: center;
    }

    .user-area .dropdown-toggle:after {
        display: none;
    }

#menuToggle2 {
    padding-left: 25px;
}

#language-select {
    color: #f1f2f7;
    float: right;
    margin: 7px 20px 0 0;
    max-width: 80px;
}

    #language-select:focus, #language-select:visited {
        border: none;
        outline: 0;
    }

    #language-select .dropdown-toggle::after {
        display: none;
    }

    #language-select .dropdown-menu {
        background: #fff;
        border: none;
        border-radius: 0;
        left: -8px !important;
        min-width: inherit;
        padding: 0 5px;
        top: 46px !important;
    }

        #language-select .dropdown-menu .dropdown-item {
            margin-right: 0;
            max-width: 25px;
            padding: 0;
        }

            #language-select .dropdown-menu .dropdown-item:hover {
                background: #fff;
            }

            #language-select .dropdown-menu .dropdown-item .flag-icon {
                margin-right: 0;
                width: 25px;
            }

.notification-show + .dropdown-menu,
.message-show + .dropdown-menu,
.language-show + .dropdown-menu {
    display: block;
}

.content {
    float: left;
    padding: 0 20px;
    width: 100%;
}

.breadcrumbs {
    margin-top: 0;
}

/* Tabs */
.nav-tabs a.active {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.nav-tabs .dropdown .dropdown-menu {
    top: 100% !important;
}

.custom-tab .nav-tabs > a.active, .custom-tab .nav-tabs > .active > a:focus, .custom-tab .nav-tabs > li.active > a:hover {
    border-color: transparent transparent;
    color: #ff2e44;
    position: relative;
}

    .custom-tab .nav-tabs > a.active > a:after, .custom-tab .nav-tabs > li.active > a:focus:after, .custom-tab .nav-tabs > li.active > a:hover:after {
        background: #ff2e44;
        bottom: -1px;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 999;
    }

.card .card-header .card-actions {
    float: right;
}

    .card .card-header .card-actions [class*="btn"] {
        border-left: 1px solid rgba(120, 130, 140, 0.4);
        color: #878787;
        display: inline-block;
        font-size: 1.3rem;
        float: left;
        padding: 0 7px;
        width: inherit;
        text-align: center;
    }

.social-buttons .card-body p button {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.social-buttons .only-icon .card-body p button {
    padding: 0;
}

.social-buttons .social i {
    padding: 0 10px;
    width: inherit !important;
}

.social-buttons .only-text p button {
    padding: 0 .5rem;
}

.buttons button {
    margin: 2px 0;
}

/* Ribons */
.corner-ribon {
    text-align: center;
    width: 71px;
    height: 71px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

    .corner-ribon i {
        padding: 10px 0 0 35px;
        color: #fff;
    }

.black-ribon {
    background: url("../../images/twitter_corner_black.png") no-repeat;
}

.blue-ribon {
    background: url("../../images/twitter_corner_blue.png") no-repeat;
}

.twt-feed .wtt-mark {
    color: rgba(255, 255, 255, 0.15);
    font-size: 160px;
    position: absolute;
    top: 10px;
    left: 40%;
}

.twt-feed {
    -webkit-border-radius: 4px 4px 0 0;
    color: #FFFFFF;
    padding: 40px 10px 10px;
    position: relative;
    min-height: 170px;
}

.weather-category {
    padding: 15px 0;
    color: #74829C;
}

    .weather-category ul li {
        width: 32%;
        text-align: center;
        border-right: 1px solid #e6e6e6;
        display: inline-block;
    }

.twt-feed.blue-bg {
    background: #58C9F3;
}

.twt-category {
    display: inline-block;
    margin-bottom: 11px;
    margin-top: 10px;
    width: 100%;
}

    .twt-category ul li {
        color: #bdbdbd;
        font-size: 13px;
    }

.twt-footer {
    padding: 12px 15px;
}

    .twt-footer, .twt-footer a {
        color: #d2d2d2;
    }

/* Button Reset */
.btn, .button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    transition: all .15s ease-in-out;
    border-radius: 0;
    cursor: pointer;
    border-radius: 7px;
    margin: 2px 0;
}

/* Icons */
.icon-section {
    margin: 0 0 3em;
    clear: both;
    overflow: hidden;
}

.icon-container {
    width: 240px;
    padding: .7em 0;
    float: left;
    position: relative;
    text-align: left;
}

    .icon-container [class^="ti-"],
    .icon-container [class*=" ti-"] {
        color: #000;
        position: absolute;
        margin-top: 3px;
        transition: .3s;
    }

    .icon-container:hover [class^="ti-"],
    .icon-container:hover [class*=" ti-"] {
        font-size: 2.2em;
        margin-top: -5px;
    }

    .icon-container:hover .icon-name {
        color: #000;
    }

.icon-name {
    color: #aaa;
    margin-left: 35px;
    font-size: 1.16rem;
    transition: .3s;
}

.icon-container:hover .icon-name {
    margin-left: 45px;
}

.fontawesome-icon-list .page-header {
    border-bottom: 1px solid #C9CDD7;
    padding-bottom: 9px;
    margin: 30px 0px 27px 0px;
}

.fontawesome-icon-list h2 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 300;
}

.fontawesome-icon-list i {
    font-size: 1.3rem;
    padding-right: 10px;
}

.social-box i {
    line-height: 110px;
}

.social-box ul {
    display: inline-block;
    margin: 7px 0 0;
    padding: 10px;
    width: 100%;
}

    .social-box ul li {
        color: #949CA0;
        font-size: 1.16rem;
        font-weight: 700;
        padding: 0 10px 0 0;
        text-align: right;
    }

        .social-box ul li:last-child {
            padding-left: 10px;
            padding-right: 0;
            text-align: left;
        }

        .social-box ul li span {
            font-size: 1.16rem;
        }

.login-logo {
    text-align: center;
    margin-bottom: 15px;
}

    .login-logo span {
        color: #ffffff;
        font-size: 24px;
    }

.login-content {
    max-width: 540px;
    margin: 8vh auto;
}

.login-form {
    background: #ffffff;
    padding: 30px 30px 20px;
    border-radius: 2px;
}

    .login-form h4 {
        color: #878787;
        text-align: center;
        margin-bottom: 50px;
    }

    .login-form .checkbox {
        color: #878787;
    }

        .login-form .checkbox label {
            text-transform: none;
        }

    .login-form .btn {
        width: 100%;
        text-transform: uppercase;
        font-size: 1.16rem;
        padding: 15px;
        border: 0px;
    }

    .login-form label {
        color: #878787;
        text-transform: uppercase;
    }

        .login-form label a {
            color: #ff2e44;
        }

.social-login-content {
    margin: 0px -30px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 30px 0px;
    background: #fcfcfc;
}

.social-button {
    padding: 0 30px;
}

    .social-button .facebook {
        background: #3b5998;
        color: #fff;
    }

        .social-button .facebook:hover {
            background: #344e86;
        }

    .social-button .twitter {
        background: #00aced;
        color: #fff;
    }

        .social-button .twitter:hover {
            background: #0099d4;
        }

    .social-button i {
        padding: 19px;
    }

.register-link a {
    color: #ff2e44;
}

.cpu-load {
    width: 100%;
    height: 272px;
    font-size: 1.16rem;
    line-height: 1.2em;
}

.cpu-load-data-content {
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
}

.cpu-load-data {
    margin-bottom: 30px;
}

    .cpu-load-data li {
        display: inline-block;
        width: 32.5%;
        text-align: center;
        border-right: 1px solid #e7e7e7;
    }

        .cpu-load-data li:last-child {
            border-right: 0px;
        }

.nestable-cart {
    overflow: hidden;
}

/* Forms */
.input-group-addon {
    background-color: transparent;
    border-left: 0;
}

.input-group-addon, .input-group-btn {
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #495057;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
}

.flotTip {
    background: #252525;
    border: 1px solid #252525;
    padding: 5px 15px;
    color: #ffffff;
}

.flot-container {
    box-sizing: border-box;
    width: 100%;
    height: 275px;
    padding: 20px 15px 15px;
    margin: 15px auto 30px;
    background: transparent;
}

.flot-pie-container {
    height: 275px;
}

.flotBar-container {
    height: 275px;
}

.flot-line {
    width: 100%;
    height: 100%;
    font-size: 1.16rem;
    line-height: 1.2em;
}

.legend table {
    border-spacing: 5px;
}

#chart1,
#flotBar,
#flotCurve {
    width: 100%;
    height: 275px;
}

.morris-hover {
    position: absolute;
    z-index: 1;
}

    .morris-hover.morris-default-style .morris-hover-row-label {
        font-weight: bold;
        margin: 0.25em 0;
    }

    .morris-hover.morris-default-style .morris-hover-point {
        white-space: nowrap;
        margin: 0.1em 0;
    }

    .morris-hover.morris-default-style {
        border-radius: 2px;
        padding: 10px 12px;
        color: #666;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        color: #fff !important;
    }

.morris-hover-point {
    color: rgba(255, 255, 255, 0.8) !important;
}

#morris-bar-chart {
    height: 285px;
}

.map, .vmap {
    width: 100%;
    height: 400px;
}

.btn-toolbar {
    float: left !important;
}

    .btn-toolbar .btn-outline-secondary:not([disabled]):not(.disabled):active,
    .btn-toolbar .btn-outline-secondary:not([disabled]):not(.disabled).active,
    .btn-toolbar .show > .btn-outline-secondary.dropdown-toggle {
        background-color: #212529;
        border-color: #212529;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #fff;
    }

    .btn-toolbar .btn-outline-secondary:hover {
        background-color: #212529;
        border-color: #212529;
        color: #fff;
    }

/*    Widget One
---------------------------*/
.dib {
    display: inline-block;
}

.stat-widget-one .stat-icon {
    vertical-align: top;
}

    .stat-widget-one .stat-icon i {
        font-size: 30px;
        border-width: 3px;
        border-style: solid;
        border-radius: 100px;
        padding: 15px;
        font-weight: 900;
        display: inline-block;
    }

.stat-widget-one .stat-content {
    margin-left: 30px;
    margin-top: 7px;
}

.stat-widget-one .stat-text {
    font-size: 1.16rem;
    color: #868e96;
}

.stat-widget-one .stat-digit {
    font-size: 24px;
    color: #373757;
}

/*    Widget Two
---------------------------*/
.stat-widget-two {
    text-align: center;
}

    .stat-widget-two .stat-digit {
        font-size: 1.75rem;
        font-weight: 500;
        color: #373757;
    }

        .stat-widget-two .stat-digit i {
            font-size: 18px;
            margin-right: 5px;
        }

    .stat-widget-two .stat-text {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: #868e96;
    }

    .stat-widget-two .progress {
        height: 8px;
        margin-bottom: 0;
        margin-top: 20px;
        box-shadow: none;
    }

    .stat-widget-two .progress-bar {
        box-shadow: none;
    }

/*    Widget Three
---------------------------*/
.stat-widget-three .stat-icon {
    display: inline-block;
    padding: 33px;
    position: absolute;
    line-height: 21px;
}

    .stat-widget-three .stat-icon i {
        font-size: 30px;
        color: #ffffff;
    }

.stat-widget-three .stat-content {
    text-align: center;
    padding: 15px;
    margin-left: 90px;
}

.stat-widget-three .stat-digit {
    font-size: 30px;
}

.stat-widget-three .stat-text {
    padding-top: 4px;
}

.home-widget-three .stat-icon {
    line-height: 19px;
    padding: 27px;
}

.home-widget-three .stat-digit {
    font-size: 24px;
    font-weight: 300;
    color: #373757;
}

.home-widget-three .stat-content {
    text-align: center;
    margin-left: 60px;
    padding: 13px;
}

.stat-widget-four {
    position: relative;
}

    .stat-widget-four .stat-icon {
        display: inline-block;
        position: absolute;
        top: 5px;
    }

    .stat-widget-four i {
        display: block;
        font-size: 36px;
    }

    .stat-widget-four .stat-content {
        margin-left: 40px;
        text-align: center;
    }

    .stat-widget-four .stat-heading {
        font-size: 20px;
    }

.stat-widget-five .stat-icon {
    border-radius: 100px;
    display: inline-block;
    position: absolute;
}

.stat-widget-five i {
    border-radius: 100px;
    display: block;
    font-size: 36px;
    padding: 30px;
}

.stat-widget-five .stat-content {
    margin-left: 100px;
    padding: 24px 0;
    position: relative;
    text-align: right;
    vertical-align: middle;
}

.stat-widget-five .stat-heading {
    text-align: right;
    padding-left: 80px;
    font-size: 20px;
    font-weight: 200;
}

.stat-widget-six {
    position: relative;
}

    .stat-widget-six .stat-icon {
        display: inline-block;
        position: absolute;
        top: 5px;
    }

    .stat-widget-six i {
        display: block;
        font-size: 36px;
    }

    .stat-widget-six .stat-content {
        margin-left: 40px;
        text-align: center;
    }

    .stat-widget-six .stat-heading {
        font-size: 1.3rem;
        font-weight: 300;
    }

    .stat-widget-six .stat-text {
        font-size: 12px;
        padding-top: 4px;
    }

.stat-widget-seven .stat-heading {
    text-align: center;
}

.stat-widget-seven .gradient-circle {
    text-align: center;
    position: relative;
    margin: 30px auto;
    display: inline-block;
    width: 100%;
}

    .stat-widget-seven .gradient-circle i {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        top: 35px;
        font-size: 30px;
    }

.stat-widget-seven .stat-footer {
    text-align: center;
    margin-top: 30px;
}

    .stat-widget-seven .stat-footer .stat-count {
        padding-left: 5px;
    }

.stat-widget-seven .count-header {
    color: #252525;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
}

.stat-widget-seven .stat-count {
    font-size: 18px;
    font-weight: 400;
    color: #252525;
}

.stat-widget-seven .analytic-arrow {
    position: relative;
}

    .stat-widget-seven .analytic-arrow i {
        font-size: 12px;
    }

/* Stat widget Eight
--------------------------- */
.stat-widget-eight {
    padding: 15px;
}

    .stat-widget-eight .header-title {
        font-size: 20px;
        font-weight: 300;
    }

    .stat-widget-eight .ti-more-alt {
        color: #878787;
        cursor: pointer;
        left: -5px;
        position: absolute;
        transform: rotate(90deg);
    }

    .stat-widget-eight .stat-content {
        margin-top: 50px;
    }

        .stat-widget-eight .stat-content .ti-arrow-up {
            font-size: 30px;
            color: #28a745;
        }

        .stat-widget-eight .stat-content .stat-digit {
            font-size: 24px;
            font-weight: 300;
            margin-left: 15px;
        }

        .stat-widget-eight .stat-content .progress-stats {
            color: #aaadb2;
            font-weight: 400;
            position: relative;
            top: 10px;
        }

    .stat-widget-eight .progress {
        margin-bottom: 0;
        margin-top: 30px;
        height: 7px;
        background: #f1f1f1;
        box-shadow: none;
    }

.stat-widget-nine .all-like {
    float: right;
}

.stat-widget-nine .stat-icon i {
    font-size: 22px;
}

.stat-widget-nine .stat-text {
    font-size: 1.16rem;
}

.stat-widget-nine .stat-digit {
    font-size: 1.16rem;
}

.stat-widget-nine .like-count {
    font-size: 30px;
}

.horizontal {
    position: relative;
}

    .horizontal:before {
        background: #ffffff;
        bottom: 0;
        content: "";
        height: 38px;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        width: 1px;
    }

.widget-ten span i {
    color: #ffffff;
    opacity: 0.5;
}

.widget-ten h5 {
    color: #ffffff;
}

.widget-ten p {
    color: #ffffff !important;
    opacity: 0.75;
}

/* Mixed Styles */
.badges h1, .badges h2, .badges h3, .badges h4, .badges h5, .badges h6 {
    margin: 5px 0;
}

.vue-lists ul, .vue-lists ol {
    padding-left: 30px;
}

.card .dropdown.float-right .dropdown-menu {
    left: inherit !important;
    right: 0 !important;
    top: 93% !important;
}

.dataTables_paginate .pagination {
    border-radius: 0;
}

    .dataTables_paginate .pagination li {
        border-radius: 0 !important;
    }

        .dataTables_paginate .pagination li a {
            border-radius: 0 !important;
            color: #2A3F54;
        }

        .dataTables_paginate .pagination li.active a {
            background: #2A3F54;
            border-color: #2A3F54;
            color: #fff;
        }

        .dataTables_paginate .pagination li:hover a {
            background: #2A3F54;
            border-color: #2A3F54;
            color: #fff;
        }

@media (max-width: 1368px) {
    .content {
        padding: 0 15px;
    }

    .twt-category {
        margin-bottom: 0;
    }

    .twt-feed {
        max-height: 155px;
    }

        .twt-feed img {
            height: 75px;
            width: 75px;
        }

    .stat-widget-one .stat-content {
        margin-left: 15px;
    }

    .badges button {
        margin: 2px 0;
    }
}

@media (max-width: 1024px) {
    .navbar .navbar-nav li.menu-item-has-children .sub-menu {
        padding: 0 0 0 30px;
    }

        .navbar .navbar-nav li.menu-item-has-children .sub-menu a {
            padding: 2px 0 2px 25px;
        }

    .card .card-header {
        position: relative;
    }

        .card .card-header strong {
            display: block;
        }

        .card .card-header small {
            float: left;
        }

        .card .card-header .card-actions {
            right: 0;
            top: .75rem;
            position: absolute;
        }
}

@media (max-width: 992px) {
    [class*="col"].no-padding {
        flex: none;
    }
}

@media (min-width: 575.99px) {

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--barra-lateral-backcolor) !important;
    }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
}

@media (max-width: 575.99px) {
    body {
        display: block;
    }

    aside.left-panel {
        display: block;
        height: auto;
        min-height: inherit;
        padding: 0 15px;
        width: 100%;
        position: fixed;
        z-index: 200;
        max-height: calc(100vh - 50px); /*vh - sizeof(navbar-header)*/
        overflow-y: auto;
    }

        aside.left-panel .navbar {
            margin-bottom: 0;
        }

            aside.left-panel .navbar .navbar-header {
                height: 50px;
            }

            aside.left-panel .navbar .navbar-brand {
                border-bottom: none;
                display: inline-block;
                float: left;
                line-height: 1;
                margin-top: 11px;
                min-height: inherit;
            }

                aside.left-panel .navbar .navbar-brand.hidden {
                    display: none;
                }

            aside.left-panel .navbar .navbar-toggler {
                float: right;
                margin-top: 8px;
            }

            aside.left-panel .navbar .navbar-nav li > a {
                padding: 3px 0;
            }

            aside.left-panel .navbar .navbar-nav li.menu-item-has-children a:before {
                top: 5px;
            }

            aside.left-panel .navbar .menu-title {
                line-height: 30px;
                padding: 0;
            }

    .menutoggle {
        display: none;
    }

    .right-panel {
        display: block;
    }

        .right-panel header.header {
            padding: 5px 10px 1px 5px;
            display: inline-block;
            margin-top: 45px;
        }

            .right-panel header.header div[class*="col"] {
                padding: 0;
            }

            .right-panel header.header .col-sm-7 {
                float: left;
            }

            .right-panel header.header .col-sm-5 {
                float: right;
            }

        .right-panel .breadcrumbs {
            padding: 10px 15px;
        }

            .right-panel .breadcrumbs div[class*="col"] {
                padding: 0;
            }

            .right-panel .breadcrumbs .page-header {
                min-height: inherit;
                padding: 0;
            }

                .right-panel .breadcrumbs .page-header h1 {
                    padding: 5px 0;
                }

                .right-panel .breadcrumbs .page-header.float-right {
                    float: left;
                    text-align: left;
                    width: 100%;
                }

                    .right-panel .breadcrumbs .page-header.float-right .breadcrumb {
                        padding: 0;
                    }

        .right-panel .content {
            padding: 0 10px;
        }

            .right-panel .content .card .card-title {
                margin-bottom: 0;
            }

            .right-panel .content .card .card-footer {
                padding: 15px 5px;
            }

                .right-panel .content .card .card-footer ul {
                    margin: 0;
                }

                    .right-panel .content .card .card-footer ul li {
                        float: left;
                        margin: 5px 0;
                        padding: 0 10px;
                        width: 33.33%;
                    }

            .right-panel .content div[class*="col"] {
                padding: 0;
            }

            .right-panel .content .row div[class*="col"] {
                padding: 0 10px;
            }

            .right-panel .content .nav-tabs .nav-link,
            .right-panel .content .nav-pills .nav-link {
                padding: .5rem;
            }

            .right-panel .content .tab-content.pl-3 {
                padding-left: 0 !important;
            }

            .right-panel .content #bootstrap-data-table_wrapper {
                font-size: 1.16rem;
                padding: 0;
            }

                .right-panel .content #bootstrap-data-table_wrapper div[class*="col"] {
                    padding: 0;
                }

                .right-panel .content #bootstrap-data-table_wrapper .table td, .right-panel .content #bootstrap-data-table_wrapper .table th {
                    padding: 5px;
                }
}

.right_col {
    padding: 0 10px;
}

.logo-empresa {
    margin: 15px;
}

/* Estilos personalizados para a barra de navegação de abas */
.tab-nav-pills {
    display: flex;
    flex-wrap: nowrap; /* Impede que os itens da nave quebrem para a linha de baixo */
    overflow-x: auto; /* Permite scroll horizontal se necessário */
    scrollbar-width: none; /* Para Firefox */
    -webkit-overflow-scrolling: touch; /* Permite um deslizar mais suave em iOS */
}

.tab-nav-item {
    margin-right: 10px; /* Espaço entre os itens */
}

.tab-nav-link {
    font-size: 1.4rem;
    padding: 10px 20px; /* Mantém o mesmo padding do .page-titulo */
    background-color: lightgrey; /* Cor de fundo definida como cinza claro */
    color: black; /* Cor do texto definida como preto */
    vertical-align: middle; /* Alinhamento vertical */
    white-space: nowrap; /* Impede que o texto quebre na linha */
    flex: 0 0 auto; /* Evita que o item cresça ou encolha */
}

@media (max-width: 768px) {
    .tab-nav-link {
        font-size: 1.4rem;
        white-space: normal; /* Permite que o texto quebre conforme necessário em telas pequenas */
    }
}

.table {
    font-size: 14px;
}

    .table thead, .table tbody th {
        background-color: var(--table-head-backcolor);
        color: var(--table-head-textcolor);
    }

.table-striped tbody tr {
    background-color: var(--table-row-color);
}

    .table-striped tbody tr:nth-of-type(odd) {
        background-color: var(--table-row-odd-color);
    }

.table tbody tr td, .table thead tr th, .table tbody tr td, .table tbody tr th, .table tfoot tr th, .table tfoot tr td {
    padding: 6px 2px;
    font-weight: 500;
    border-top: 1px solid var(--table-border-color) !important;
    border-bottom: 1px solid var(--table-border-color) !important;
    font-size: 1rem
}

.table thead tr th {
    padding: 8px 2px;
}

.table a:hover {
    color: blue !important;
    text-decoration: underline;
}

.table-resumo td {
    font-size: 1.3rem;
    font-weight: 700 !important;
    padding: 3px 0px;
}

.table-group {
    font-size: 1.2rem;
    padding: 10px 10px 10px 10px;
    text-align: left;
    color: var(--main-textcolor);
    background-color: var(--main-backcolor);
    margin-bottom: 4px;
}

#divExtrato {
    font-size: 1rem;
}

.page-titulo {
    font-size: 1.4rem;
    padding: 10px 20px;
    background-color: var(--main-backcolor);
    color: var(--main-textcolor);
    vertical-align: middle;
    border-radius: 5px;
}

.page-descricao {
    font-size: 19px;
    padding: 20px 20px;
    text-align: center;
    vertical-align: middle;
    background-color: var(--descricao-backcolor);
    color: var(--descricao-textcolor);
}

    .page-descricao img {
        vertical-align: middle;
        height: 48px;
    }

.page-detalhe {
    font-size: 19px;
    padding: 20px 20px;
    text-align: center;
    vertical-align: middle;
    background-color: #ffcccc;
}

    .page-detalhe a {
        color: #0645AD;
    }

        .page-detalhe a:hover {
            color: #0B0080;
        }

/*.page-conteudo {
    margin: 40px 0px 20px 0px;
}*/

.page-conteudo-enquete-votar {
    background-color: #f1f1f1;
    padding: 40px 0px 20px 0px;
}

.page-rodape {
    font-size: 1.25rem;
    padding: 10px 10px 10px 10px;
    text-align: center;
    color: var(--main-textcolor);
    background-color: var(--main-backcolor);
}

.page-mensagem {
    background-color: #cecece;
    color: #000;
    padding: 1em;
    text-align: center;
    font-size: 1.16rem;
    border-radius: 5px;
    margin: 1em auto !important;
    width: 90%;
}

    .page-mensagem.alerta {
        background-color: #ff4c4c !important;
    }

    .page-mensagem .erro {
        font-size: 1.0rem;
    }


@media (min-width: 1024px) {
    .page-mensagem {
        margin: 0px 20px;
    }
}

.msg-informacao {
}

.msg-aviso {
}

.titulo-publicacao {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: normal;
    color: #333333;
    text-decoration: none;
}

.texto-publicacao {
    font-size: 1rem;
    text-align: justify;
    text-decoration: none;
    color: black;
}

.legenda-formandos {
    font-size: 1.16rem;
}

.bola {
    border-radius: 50%;
    height: 13px;
    width: 13px;
    margin: 3px;
    display: inline-block;
}

.verde {
    background-color: green;
}

.vermelha {
    background-color: red;
}

.text-green {
    color: green;
}

.text-red {
    color: red;
}

.presidente {
    color: #344dc8;
}

#imgLogo {
    padding-right: 10px;
    max-width: 210px;
    margin-bottom: 5px;
    max-height: 70px;
}

@media (max-width: 800px) {
    .logo-cliente {
        display: none;
    }
}


#imgPronet {
    /*background-color: white;*/
    padding: 7px;
    border-radius: 5px;
    width: 60px;
    filter: brightness(1000%);
}

@media (max-width: 575.99px) {
    #imgPronet {
        position: absolute;
        height: 40px;
        margin: -5px;
        width: 40px;
    }
}

.card {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border-color: var(--main-backcolor);
    font-size: 1.1rem;
}

    .card h4 {
        font-size: 1.1rem;
    }

    .card .user-header .media img {
        border: 5px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        -webkit-border-radius: 50%;
    }

    .card .card-header {
        background-color: var(--main-backcolor) !important;
        color: var(--main-textcolor) !important;
        border-color: var(--main-backcolor) !important;
    }

        .card .card-header .card-actions button {
            display: block;
            float: left;
            width: 50px;
            padding: .75rem 0;
            margin: 0 !important;
            color: #fff;
            outline: 0;
            text-align: center;
            background: transparent;
            border: 0;
            border-left: 1px solid rgba(120, 130, 140, 0.4);
        }

    .card .card-footer {
        padding: 0.65rem 1.25rem;
        background-color: #f0f3f5;
        border-top: 1px solid var(--main-backcolor);
    }

        .card .card-footer ul li {
            display: table-cell;
            padding: 0 1rem;
            text-align: center;
        }

.mensagem {
    text-align: center;
    font-size: 1.3rem;
    color: var(--main-textcolor);
    padding: 15px 15px 15px 15px;
    background-color: var(--main-backcolor);
    border-radius: 12px 0px 12px 0px;
    margin: 50px 20px;
}

    .mensagem a {
        color: blue;
    }

.btn {
    font-size: 1.2rem;
}

.btn-salvar {
    color: var(--button-salvar-text-color) !important;
    background-color: var(--button-salvar-back-color);
    border-color: var(--button-salvar-back-color);
}

    .btn-salvar:hover {
        color: var(--button-salvar-text-color);
        background-color: var(--button-salvar-back-color-hover);
        border-color: var(--button-salvar-back-color-hover);
    }

.mdc-button.btn-salvar {
    color: var(--button-salvar-text-color);
    background-color: var(--button-salvar-back-color);
    border-color: var(--button-salvar-back-color);
}

.mdc-button--raised.btn-salvar:not(:disabled) {
    color: var(--button-salvar-text-color);
    background-color: var(--button-salvar-back-color);
    border-color: var(--button-salvar-back-color);
}

.mdc-button--outlined.btn-salvar:not(:disabled) {
    color: var(--button-salvar-back-color);
    background-color: var(--button-salvar-text-color);
    border-color: var(--button-salvar-back-color);
}

.btn-salvar.focus, .btn-salvar:focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
}

.btn-salvar.disabled, .btn-salvar:disabled {
    background-color: var(--button-salvar-back-color) !important;
    border-color: var(--button-salvar-back-color) !important;
}

.btn-salvar.hidden {
    display: none;
}

.btn-salvar:not([disabled]):not(.disabled).active, .btn-salvar:not([disabled]):not(.disabled):active, .show > .btn-salvar.dropdown-toggle {
    color: var(--button-salvar-text-color) !important;
    background-color: var(--button-salvar-back-color-hover) !important;
    border-color: var(--button-salvar-back-color-hover) !important;
}

    .btn-salvar:not([disabled]):not(.disabled).active:focus, .btn-salvar:not([disabled]):not(.disabled):active:focus, .show > .btn-salvar.dropdown-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    }

.btn-cancel {
    color: var(--button-cancelar-text-color) !important;
    background-color: var(--button-cancelar-back-color) !important;
    border-color: var(--button-cancelar-back-color) !important;
}

    .btn-cancel:hover {
        color: var(--button-cancelar-text-color) !important;
        background-color: var(--button-cancelar-back-color-hover) !important;
        border-color: var(--button-cancelar-back-color-hover) !important;
    }

.mdc-button.btn-cancel {
    color: var(--button-salvar-text-color);
    background-color: var(--button-salvar-back-color);
    border-color: var(--button-salvar-back-color);
}

.mdc-button--raised.btn-cancel:not(:disabled) {
    color: var(--button-cancelar-text-color);
    background-color: var(--button-cancelar-back-color);
    border-color: var(--button-cancelar-back-color);
}

.mdc-button--outlined.btn-cancel:not(:disabled) {
    color: var(--button-cancelar-back-color);
    background-color: var(--button-cancelar-text-color);
    border-color: var(--button-cancelar-back-color);
}

.btn-cancel.focus, .btn-cancel:focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
}

.btn-cancel.disabled, .btn-cancel:disabled {
    background-color: var(--button-cancelar-back-color) !important;
    border-color: var(--button-cancelar-back-color) !important;
}

.btn-cancel:not([disabled]):not(.disabled).active, .btn-cancel:not([disabled]):not(.disabled):active, .show > .btn-cancel.dropdown-toggle {
    color: var(--button-cancelar-text-color) !important;
    background-color: var(--button-cancelar-back-color-hover) !important;
    border-color: var(--button-cancelar-back-color-hover) !important;
}

    .btn-cancel:not([disabled]):not(.disabled).active:focus, .btn-cancel:not([disabled]):not(.disabled):active:focus, .show > .btn-cancel.dropdown-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    }

.modal-dialog {
    margin-top: 20em !important;
}

    .modal-dialog.group {
        margin-top: 2em !important;
    }

    .modal-dialog .modal-header {
        font-size: 1.3rem;
    }

    .modal-dialog .modal-body {
        font-size: 1.1rem;
    }

.menu-principal .imagem {
    padding: 5px;
}

.menu-principal tr td {
    text-align: justify;
    width: 64px;
    border-bottom: solid;
    border-bottom-width: 5px;
    text-align: justify;
    vertical-align: middle;
}

.menu-principal .icon .imagem {
    height: 64px;
}

.menu-principal .description {
    width: 100%;
    border-color: #808080;
    padding: 5px;
}

    .menu-principal .description a {
        color: #191919;
        transition: all .6s;
    }

        .menu-principal .description a:hover,
        .menu-principal .description .Texto p:hover {
            color: blue;
        }

    .menu-principal .description .Titulo {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .menu-principal .description .Texto {
        font-size: 1.05rem;
    }

        .menu-principal .description .Texto p {
            font-size: 1.05rem;
            line-height: 18px;
            color: black;
            margin-bottom: 5px;
            transition: all .6s;
        }

.modal-header {
    background-color: var(--main-backcolor);
    color: var(--main-textcolor);
}

    .modal-header .modal-title {
        font-size: 1.16rem;
        margin: 0 auto;
    }

.modal-body h2 {
    font-size: 1em;
    font-weight: 600;
    margin: 20px auto;
    text-align: center;
}

.modal-body p {
    text-align: justify;
    font-size: 1.3rem;
    line-height: 1.3;
    color: #000000;
}

.modal-footer {
    background-color: #ebebeb;
}

#ContentPlaceHolderSite_pnlOpçõesDePacotes {
    background: #fdfdfd;
}

.radio-list {
    margin: 0 auto;
    padding: 20px;
}

    .radio-list label {
        min-width: 250px;
        width: auto;
        border-radius: 3px;
        font-size: 1rem;
    }

    .radio-list input:empty {
        margin-left: -999px;
    }

        .radio-list input:empty ~ label {
            position: relative;
            float: left;
            line-height: 2.5em;
            text-indent: 3.25em;
            margin: 10px 20px;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: white;
        }

            .radio-list input:empty ~ label:before {
                position: absolute;
                display: block;
                top: 0;
                bottom: 0;
                left: 0;
                content: '';
                width: 2.5em;
                height: 2.5em;
                background-color: #d9d9d9;
                border-radius: 3px 0 0 3px;
            }

    /* toggle hover */
    .radio-list input:hover:not(:checked) ~ label:before {
        content: '\2714';
        text-indent: .9em;
        color: #fff;
    }

    .radio-list input:hover:not(:checked) ~ label {
        color: #888;
    }

    /* toggle on */
    .radio-list input:checked ~ label:before {
        content: '\2714';
        text-indent: .9em;
        color: white;
        background-color: var(--main-backcolor);
    }

    .radio-list input:checked ~ label {
        color: #777;
    }

    /* radio focus */
    .radio-list input:focus ~ label:before {
        box-shadow: 0 0 0 3px #999;
    }

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
        color: #333;
        background-color: #ebebeb;
        border-color: #adadad;
    }

    .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
        background-image: none;
    }

    .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
        background-color: #fff;
        border-color: #ccc;
    }

.contrato {
    font-size: 22px;
}

.badge {
    padding: 10px;
    white-space: normal;
}

.badge-titulo {
    color: var(--titulo-textcolor);
    background-color: var(--titulo-backcolor);
    width: 320px;
    height: 120px;
}

    .badge-titulo:hover {
        box-shadow: 0px 0px 20px rgba(73, 78, 92, 0.35);
    }

.contrato .badge .div-icon {
    width: 80px;
    flex: 0 0 25%;
    max-width: 25%;
    float: left;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

    .contrato .badge .div-icon img {
        width: 65px;
    }

.contrato .badge .div-text {
    margin-top: 8px;
    flex: 0 0 75%;
    max-width: 75%;
    float: left;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 1.1rem;
}

    .contrato .badge .div-text .contrato {
        font-size: 11px;
    }


.header-menu .col-ms-8 {
    max-width: 75%;
}

@media (min-width: 575.99px) {
    .progress-content {
        margin-left: -30px;
    }
}

@media (max-width: 575.99px) {
    .progress-content {
        margin-left: -150px;
    }
}

.progress-content {
    width: 300px;
    position: fixed;
    left: 50%;
    top: 50%;
    background: var(--barra-lateral-backcolor) !important;
}

.progress-bar {
    padding: 15px 15px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, .2);
}

    .progress-bar progress {
        background-color: #f3f3f3;
        border: 0;
        width: 80%;
        height: 18px;
        border-radius: 9px;
    }

        .progress-bar progress::-webkit-progress-bar {
            background-color: #f3f3f3;
            border-radius: 9px;
        }

        .progress-bar progress::-webkit-progress-value {
            background: var(--menu-lateral-textcolor);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdeb8e', endColorstr='#a5c956',GradientType=0 );
            border-radius: 9px;
        }

        .progress-bar progress::-moz-progress-bar {
            background: var(--menu-lateral-textcolor);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdeb8e', endColorstr='#a5c956',GradientType=0 );
            border-radius: 9px;
        }

    .progress-bar .progress-value {
        padding: 0px 5px;
        line-height: 20px;
        margin-left: 5px;
        font-size: .8em;
        color: var(--submenu-lateral-textcolor) !important;
        height: 18px;
        float: right;
    }

.hidden {
    display: none;
}

.notificacao-publicacao {
    position: relative;
    bottom: 35px;
    left: 35px;
    background: red;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: white;
    margin-bottom: -19px;
    padding-top: 3px;
}

.pacotes fieldset {
    display: block;
    -webkit-margin-start: 2px;
    -webkit-margin-end: 2px;
    -webkit-padding-before: 0.35em;
    -webkit-padding-start: 0.75em;
    -webkit-padding-end: 0.75em;
    -webkit-padding-after: 0.625em;
    min-width: -webkit-min-content;
    border-width: 2px;
    border-style: groove;
    border-color: var(--main-backcolor) !important;
    border-image: initial;
}

    .pacotes fieldset legend {
        width: auto;
        display: block;
        -webkit-padding-start: 2px;
        -webkit-padding-end: 2px;
        border-width: initial;
        border-style: none;
        border-color: initial;
        border-image: initial;
        padding: 2px 2px 2px 2px;
        font-size: 1.16rem;
        font-weight: normal;
        vertical-align: middle;
        text-align: left;
        -webkit-border-radius: 4px 4px 4px 4px;
        border-radius: 4px 4px 4px 4px;
        text-transform: none;
    }

.radio-list input {
    display: none;
}

.pacotes table {
    width: 100%;
}


    .pacotes table label {
        width: 95%;
    }

.aspNetDisabled label {
    background: #efefef !important;
    cursor: no-drop !important;
}


.totalizador {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.container-pagination {
    text-align: center;
}

    .container-pagination .pagination {
        display: inline-flex;
    }

        .container-pagination .pagination li a {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.428571429;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

            .container-pagination .pagination li a.active {
                color: var(--main-textcolor);
                cursor: default;
                background-color: var(--main-backcolor);
                border-color: var(--main-backcolor);
            }


.chk-fatura {
    width: 30px;
}

.mensagem-atencao {
    color: #000;
    background-color: #cce4fe;
    padding: 18px;
    text-align: center;
    font-size: 18px;
    margin: 10px 0px 10px 0px;
    border-radius: 5px;
}

.foto {
    text-align: center;
    font-size: 10px;
}

    .foto label {
        height: 29px;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.container .formulario {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    border-radius: 15px;
}

@media (max-width: 500px) {
    .container .formulario {
        padding: 0px;
    }
}

.parcelas-info {
    display: block; /* Assegura que a informação de parcelas apareça em uma nova linha */
    color: #666; /* Cor cinza para menor destaque que o label principal */
    font-size: 0.999rem; /* Um tamanho de fonte ligeiramente menor */
    margin-left: 3.8rem; /* Deslocamento para a direita */
    position: relative; /* Posicionamento relativo para uso de z-index */
    z-index: 2; /* Garante que o span fique por cima dos outros elementos */
    margin-bottom: -0.8rem;
}

.pacote-item {
    background-color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
}

    .pacote-item label {
        padding: 12px 60px;
        width: 100%;
        display: block;
        text-align: left;
        color: #3C454C;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: color 200ms ease-in;
        overflow: hidden;
        margin-bottom: -0.8rem;
    }

        .pacote-item label:hover {
            font-size: 1.30rem;
            background-color: var(--descricao-backcolor);
        }

        .pacote-item label:before {
            width: 100%;
            height: 10px;
            border-radius: 50%;
            content: '';
            background-color: var(--descricao-backcolor);
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
            opacity: 0;
            z-index: -1;
        }

    .pacote-item.disabled > label:before {
        background-color: #f1f1f1;
    }

    .pacote-item label:after {
        width: 32px;
        height: 32px;
        content: '';
        border: 2px solid #D1D7DC;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
        */ background-repeat: no-repeat;
        background-position: 2px 3px;
        border-radius: 50%;
        z-index: 2;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        transition: all 200ms ease-in;
    }

    .pacote-item input:checked ~ label {
        color: var(--descricao-textcolor);
    }

        .pacote-item input:checked ~ label:before {
            transform: translate(-50%, -50%) scale3d(120, 100, 1);
            opacity: 1;
        }

        .pacote-item input:checked ~ label:after {
            background-color: limegreen;
            border-color: limegreen;
        }

    .pacote-item input {
        width: 32px;
        height: 32px;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        visibility: hidden;
    }

.resumo-financeiro {
    margin-top: 25px;
}

    .resumo-financeiro .detalhe {
        display: flex;
        justify-content: space-between;
        padding: 4px 10px;
        font-size: 1.2rem;
        line-height: 22px;
    }

        .resumo-financeiro .detalhe:nth-child(odd) {
            background: var(--table-row-odd-color);
        }

        .resumo-financeiro .detalhe.destacado {
            background: var(--main-backcolor);
            color: var(--main-textcolor);
        }

        .resumo-financeiro .detalhe .valor {
            font-size: 1.25rem;
        }


.form-group label {
    font-size: 1.1rem;
}

#brand {
    margin-left: -15px;
    height: 35px;
}

.termo-contratual {
    background-color: rgba(0,0,0,0.8);
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 300;
    position: fixed;
}


.data-formatura p {
    margin-bottom: 0;
}

.termo-contratual .group {
    width: 90vw;
    margin: 20px auto;
    height: 95vh;
    padding: 5px;
    background: #f1f1f1;
}


.termo-contratual .termos {
    height: 85%;
}

.termo-contratual .aceite {
    text-align: center;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    padding: 3px 19px 0px;
}

    .termo-contratual .aceite .buttons button {
        margin-left: 5px;
    }

        .termo-contratual .aceite .buttons button.selected {
            color: var(--button-salvar-text-color);
            background-color: var(--button-salvar-back-color);
            border-color: var(--button-salvar-back-color);
        }

    .termo-contratual .aceite input {
        transform: scale(2);
        margin-right: 10px;
    }

.termo-contratual .rodape {
    margin: 10px;
}

@media (max-width: 577px) {

    .termo-contratual .termos {
        height: 70%;
    }


    .card-body {
        padding: 1.25rem 0.25rem;
    }

    label {
        line-height: 22px;
    }
}

#toast {
    background-color: #2B62CD;
    color: #fff;
    position: absolute;
    bottom: 15px;
    right: 20px;
    padding: 10px 30px;
    min-width: 200px;
    border-radius: 5px;
    font-size: 1.2rem;
}

@media (max-width: 500px) {
    #toast {
        left: 20px;
        position: fixed;
    }
}

.fa-icon {
    font-size: 50px;
    text-align: center !important;
}

    .fa-icon a span {
        margin: 0px 8px;
        color: var(--barra-lateral-backcolor) !important;
        transition: 0.2s
    }

        .fa-icon a span:hover {
            transform: scale(1.1);
        }

.notification-alert {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #0009;
    z-index: 999999;
    top: 0;
    left: 0;
}

    .notification-alert .container {
        max-height: 90vh;
        bottom: 50px;
        max-width: 800px;
        margin: 20px auto;
        background: #fff;
        padding: 10px;
        display: grid;
        grid-template-rows: auto 1fr auto;
        gap: 15px;
    }

        .notification-alert .container .titulo {
            text-align: center;
        }

        .notification-alert .container .texto {
            padding: 20px;
            overflow-y: scroll;
            font-size: 1rem;
        }

    .notification-alert .actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 10px;
        gap: 10px;
    }

        .notification-alert .actions i {
            margin: 0px 5px;
        }

@media (max-width: 500px) {
    .notification-alert .container {
        max-width: 90vw;
    }

        .notification-alert .container .titulo h2 {
            font-size: 20px;
        }

        .notification-alert .container .texto {
            padding: 0px;
        }
}

.get-photo-alert {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #000E;
    z-index: 1000000;
    top: 0;
    left: 0;
}

    .get-photo-alert .container {
        height: 65vh;
        bottom: 50px;
        max-width: 410px;
        margin: 20px auto;
        background: white;
        padding: 10px;
        display: grid;
        grid-template-rows: auto 1fr auto;
        gap: 15px;
        top: 50%;
        left: 50%;
        margin-top: -35vh;
        margin-left: -170px;
        position: fixed;
    }

        .get-photo-alert .container #foto-inicio,
        .get-photo-alert .container #foto-upload,
        .get-photo-alert .container #foto-camera,
        .get-photo-alert .container .step-title {
            text-align: center;
        }

    .get-photo-alert .close {
        color: white;
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .get-photo-alert .container .camera {
        margin: 40px auto 10px;
    }

    .get-photo-alert .footer-actions {
        position: absolute;
        right: 0px;
        left: 0px;
        bottom: 15px;
    }

    .get-photo-alert .actions {
        margin: 10px auto;
        gap: 10px;
        text-align: center;
    }

        .get-photo-alert .actions #upload-photo {
            margin-left: 10px;
        }

        .get-photo-alert .actions i {
            margin: 0px 5px;
        }

#foto-inicio .avatar {
    margin-top: 20px;
}

#documento-rg .rg,
#documento-cpf .cpf {
    display: flex;
    margin-top: 80px;
    gap: 5px
}

    #documento-rg .rg .rg-foto,
    #documento-cpf .cpf .cpf-foto {
        height: 100px;
    }

@media (max-width: 500px) {
    .get-photo-alert .container {
        max-width: 90vw;
        height: 95vh;
        margin-top: -50vh;
        margin-left: -45vw;
    }

        .get-photo-alert .container .titulo h2 {
            font-size: 20px;
        }

        .get-photo-alert .container .texto {
            padding: 0px;
        }

    #foto-inicio .avatar {
        margin-top: 80px;
    }

    #foto-camera,
    #foto-camera-rg,
    #foto-camera-cpf,
    .camera {
        display: flex;
        flex-direction: column;
    }

        #foto-camera .close,
        .camera .close {
            text-align: right;
            margin-right: 24px;
        }

    #foto-upload .dropzone {
        margin: 0 auto;
    }

    #documento-rg .rg .rg-foto,
    #documento-cpf .cpf .cpf-foto {
        height: 85px;
    }
}

#crop-camera,
#crop-camera-rg,
#crop-camera-rg-verso,
#crop-camera-cpf,
#crop-camera-cpf-verso {
    text-align: center;
}

.tooltip {
    z-index: 999999;
}

@keyframes swing-icon {
    0%, 100% {
        transform: rotate(-10deg);
        // Aumentado de -5deg para -10deg
    }

    50% {
        transform: rotate(10deg);
        // Aumentado de 5deg para 10deg
    }
}

.tooltip-content {
    display: none;
    position: absolute;
    width: 300px;
    background-color: #ffffff;
    color: #333333;
    text-align: left;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #cccccc;
    z-index: 1000;
}

.tooltip-trigger {
    cursor: help;
    color: #007BFF;
    display: inline-block; /* Evita que o layout ao redor seja afetado */
    animation: swing-icon 1.5s ease-in-out infinite; /* Aplica a animação */
}



/* POLÍTICA DE PRIVACIDADE */

#LGPD {
    margin-bottom: 2em;
}

    #LGPD h3.politica {
        margin: 2em 0 1em;
        text-align: center;
    }

        #LGPD h3.politica span {
            margin-top: 2em;
        }

    #LGPD h4,
    #LGPD h5 {
        font-weight: 500;
        margin-bottom: .5em;
    }

    #LGPD h6 {
        margin: 1em auto 0.25em;
        font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    #LGPD h4,
    #LGPD h5,
    #LGPD h6 {
        color: #000;
    }

    #LGPD ul {
        margin-left: 1.5em;
    }

        #LGPD p,
        #LGPD ul,
        #LGPD ul li {
            text-align: justify;
            font-size: 16px;
        }


/* TABELAS */

.titulo {
    padding: 8px 4px;
    font-weight: 500;
    border-top: 1px solid var(--table-border-color) !important;
    border-bottom: 1px solid var(--table-border-color) !important;
    font-size: 1rem;
    color: var(--table-head-textcolor);
    background-color: #fff;
}
.titulo-agenda {
    padding: 8px 4px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--table-head-textcolor);
    background-color: #fff;
}

.titulo-sem-borda {
    font-weight: 500;
    border-top: 0px solid var(--table-border-color) !important;
    border-bottom: 0px solid var(--table-border-color) !important;
    font-size: 1rem;
    color: var(--table-head-textcolor);
    background-color: #fff;
    font-weight: 600;
}

.titulo-renegociacao {
    padding: 8px 4px;
    font-weight: 500;
    border-top: 1px solid var(--table-border-color) !important;
    /*border-bottom: 1px solid var(--table-border-color) !important;*/
    font-size: 1rem;
    color: var(--table-head-textcolor);
    background-color: #fff;
}

.titulo-noticia {
    padding: 8px 4px;
    font-weight: 500;
    border-top: 1px solid var(--table-border-color) !important;
    font-size: 1rem;
    color: var(--table-head-textcolor);
    background-color: #fff;
}

.texto {
    padding: 8px 4px;
    font-weight: 500;
    border-bottom: 1px solid var(--table-border-color);
    font-size: 1rem;
    height: auto;
}
.texto-agenda {
    padding: 8px 4px;
    font-weight: 500;
    font-size: 1rem;
    height: auto;
}
.texto-meus-pedidos {
    padding: 8px 4px;
    font-weight: 500;
    border-bottom: none;
    font-size: 1rem;
    height: auto;
}

.texto-sem-borda {
    padding: 8px 4px;
    font-weight: 500;
    border-bottom: 0px solid var(--table-border-color) !important;
    font-size: 1rem;
    height: auto;
}



.texto-renegociacao {
    padding: 8px 4px;
    font-weight: 500;
    font-size: 1rem;
    height: 100%;
}

.texto-noticia {
    padding: 8px 4px;
    font-weight: 500;
    border-top: 1px solid var(--table-border-color);
    font-size: 1rem;
    height: 100%;
}

.card-agenda {

display:flex;

}


@media screen and (max-width: 986px) {
    .texto:before, .texto-noticia:before, .texto-agenda:before {
        margin-bottom: 3px;
        content: attr(data-title);
        min-width: 110px;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        color: var(--table-head-textcolor);
        display: block;
    }

    .texto-agendaevento:before {
        margin-bottom: 3px;
        content: attr(data-title);
        min-width: 150px;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        color: var(--table-head-textcolor);
        display: block;
    }

    .plinha-evento-mobile {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .slinha-evento-mobile {
        display: flex;
        width: 100%;
    }

    .tlinha-evento-mobile {
        display: flex;
        width: 100%;
        flex-direction:column;
    }



    .titulo, .titulo-agenda,
    .titulo-noticia {
        display: none;
    }

    .texto {
        border-bottom: 0px;
        padding: 2px 4px;
    }

    .texto-noticia {
        border-top: 0px;
        padding: 2px 4px;
    }
}

.tbody .texto-container div {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.tbody .texto-container:nth-of-type(odd) {
    background-color: var(--table-row-odd-color) !important;
}

.texto-container:nth-of-type(odd) {
    background-color: var(--table-row-odd-color) !important;
}

.footer {
    display: none;
}

/* MENU MOBILE */

.nav-bottom-mobile {
    display: none;
}



@media screen and (max-width: 986px) {
   /* .btn {
        font-size: 14px;
    }*/

    /*.cards.cards-default {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        background-color: #f1f1f1;
        margin: 0 auto;
    }

    .cards-default .card {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-decoration: none;
        font-family: Arial;
        margin: 0.5em;
        transition: all .7s;
        width: 340px;
        height: 120px;
        border-radius: 5px;
        cursor: pointer;
        border: 1pt solid #fff;
        flex-direction: row;
        filter: drop-shadow(2px 2px 4px #00000040);
    }

    .card-default:hover .card-title {
        color: #fff;
    }*/

    .cards-mobile .card-mobile > div.texto.text-right {
        text-align: left !important;
    }

    .cards-mobile .card-mobile {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-family: Arial;
        margin: 0.5em 1em;
        transition: all .7s;
        /*width: 90%;*/
        /*min-height: 200px;*/
        border-radius: 5px;
        border: 1pt solid #fff;
        /*max-width: 90%;*/
        flex-direction: column;
        filter: drop-shadow(2px 2px 4px #00000040);
    }
    .cards-mobile .card-agenda {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-decoration: none;
        color: #000;
        font-family: Arial;
        margin: 0.5em 1em;
        transition: all .7s;
        width: 93%;
        min-height: 250px;
        border-radius: 5px;
        border: 1pt solid #fff;
        max-width: 93%;
        flex-direction: column;
        border: 1px solid var(--table-border-color);
    }

    .cards-mobile .card-mobile-horizontal {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none;
        color: #000;
        font-family: Arial;
        margin: 0.5em 1em;
        transition: all .7s;
        width: 90%;
        min-height: 250px;
        flex-direction: row;
        border-radius: 5px;
        border: 1pt solid #fff;
        max-width: 90%;
        height: 0 !important;
        min-height: 70px !important;
    }

    .texto-contrato {
        padding: 8px 4px;
        font-weight: 500;
        font-size: 1rem;
        height: auto;
    }

    .container-cards-mobile {
        background-color: #f1f1f1 !important;
        padding-bottom: .5em;
    }

    .container-cards-mobile-white {
        background-color: #fff !important;
        padding-bottom: .5em;
    }

    .nav-bottom-mobile {
        font-size: 18px;
        background: white;
        padding: 0.5em;
        flex-flow: row nowrap;
        box-shadow: 0 3px 8px rgba(0,0,0,.1);
        align-self: flex-end;
        align-items: flex-end;
        align-content: flex-end;
        z-index: 10000;
        position: fixed;
        bottom: 0;
        /* And if you want the div to be full-width: */
        left: 0;
        right: 0;
        display: flex;
    }

    .nav-item-bottom-mobile {
        flex: 1 1 25%;
        border-radius: 25px;
        padding: .5rem 1rem;
        white-space: nowrap;
        transition: all 500ms ease-in-out;
        overflow: hidden;
        cursor: pointer;
    }

        .nav-item-bottom-mobile i {
            font-size: 30px;
        }

        .nav-item-bottom-mobile .title {
            display: inline-block;
            color: #000;
            vertical-align: super;
            margin-left: 4px;
        }

        .nav-item-bottom-mobile.active {
            flex: 0.000000001 0.00000001 100px;
        }

            .nav-item-bottom-mobile.active .title {
                color: inherit;
            }

        .nav-item-bottom-mobile[data-color="#{$color}"].active {
            color: var(--table-head-textcolor);
            fill: var(--table-head-textcolor) !important;
            background: rgba(var(--table-head-textcolor), .3);
        }


    *[class^="icon-"] {
        height: 40px;
        width: 40px;
    }

    .nav-item-bottom-mobile span a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .titulo-menu-mobile {
        font-size: 14px;
        margin-top: .5em;
    }

    footer {
        padding-bottom: 8em;
    }

    .btn-convites-mobile {
        width: 120px;
    }

    .fundo-cinza {
        background-color: #f1f1f1;
    }
}

/* TELA DE COMPRAS */

.cards.cards-default.cards-compras {
    display: flex;
    align-items: flex-start !important;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f1f1f1;
    margin: 0 auto;
}

.card.card-compras {
    border-radius: 6px !important;
    box-shadow: 0 4px 10px #00000008, 0 0 2px #0000000f, 0 2px 6px #0000001f !important;
    padding: 1.5rem !important;
    min-height: 410px !important;
}

    .card.card-compras.card-renegociacao {
        flex-wrap: unset !important;
        width: 300px !important;
        min-height: 275px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: auto !important;
    }

.card.card-mensagem {
    flex-wrap: unset !important;
    width: 100% !important;
    min-height: 310px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
}

.texto-produto-compra:before {
    margin-bottom: 3px;
    content: attr(data-title);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--table-head-textcolor);
    display: block;
}

.texto-meus-pedidos:before {
    margin-bottom: 3px;
    content: attr(data-title);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--table-head-textcolor);
    display: block;
}
.texto-meus-pedidos-lista p {
    margin-bottom: 3px;
    content: attr(data-title);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--table-head-textcolor);
    display: block;
}

.card.card-compras .idServico {
    padding-right: 1em !important;
}


.produto-info {
    padding-left: .5em;
}

.topo-produto-info {
    display: flex;
    flex-grow: 1;
}

    .topo-produto-info .descrServico {
        word-break: normal;
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #111827;
    }

.valor-unitario-produto-info {
    font-size: 1.2em;
    color: var(--button-salvar-back-color);
}

.base-produto-info {
    display: flex;
    align-items: end;
}

    .base-produto-info div input:nth-child(1),
    .base-produto-info div input:nth-child(2) {
        margin-right: .5em;
    }

    .base-produto-info:nth-child(3) {
        font-size: 1.25em;
    }

        .base-produto-info:nth-child(3)::before {
            text-align: right;
        }

.image-produto {
    height: 160px;
    margin-bottom: .5em;
}

.card-pedidos:hover,
.card-pedidos:active,
.card-pedidos:hover .texto-meus-pedidos::before,
.card-pedidos:active .texto-meus-pedidos::before,
.card-pedidos:hover .texto-meus-pedidos::before,
.card-pedidos:active .texto-meus-pedidos::before,
.card-pedidos:hover .texto-meus-pedidos,
.card-pedidos:active .texto-meus-pedidos {
    color: white;
}

@media screen and (max-width: 986px) {

    .cards.cards-default.cards-compras {
        align-items: center !important;
    }
}

    /* TEXTAREA WHATSAPP */

    .mensagem-whats {
        overflow: auto;
        resize: none;
    }

        .mensagem-whats:focus {
            outline: none !important;
            border: 1px solid var(--table-row-odd-color) !important;
            box-shadow: 0 0 10px #cecece;
        }

    .manutencao-imagem {
        width: 50%;
        height: auto;
        margin: 0 auto;
        text-align: center;
        display: flex;
    }

    .manutencao-info {
        text-align: justify;
        width: 100%;
        font-size: 1.25em;
        padding: 0.5em 2em;
        font-weight: bold;
        line-height: 1.5;
    }

    .card-fatura-evento {
        width: 100%;
        display: flex;
        color: #000;
        transition: ease .7s;
    }

    @media screen and (max-width: 986px) {
        .manutencao-imagem {
            width: 100%;
        }

        .card-fatura-evento {
            width: auto !important;
        }
    }

    .card-adesoes {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-decoration: none;
        color: #000;
        font-family: Arial;
        margin: 1em 0 !important;
        transition: all .7s;
        width: 100% !important;
        height: auto !important;
        min-width: 180px !important;
        min-height: 180px !important;
        border-radius: 5px;
        cursor: pointer;
        border: 1pt solid #fff;
        flex-direction: row;
    }



    .card-fatura-evento:hover {
        box-shadow: 0 0.5em 0.5em -0.4em var(--main-backcolor);
        transform: translateY(-0.25em);
        background-color: var(--main-backcolor);
        border-color: var(--main-backcolor);
        color: #fff !important;
    }

    .card-adesoes-valores {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: auto;
    }

        .card-adesoes-valores h5 {
            color: var(--main-backcolor);
        }

    .card-adesoes-meta {
        margin-right: 0.5em !important;
    }

        .card-adesoes-meta span,
        .card-adesoes-falta span {
            font-size: 4em;
            font-weight: bold;
        }

    .card-adesoes-meta,
    .card-adesoes-falta {
        flex-direction: column !important;
    }

    .cards-adesoes-valores {
        display: flex;
    }

    @media screen and (min-width: 986px) {


        .card-adesoes-tabela {
            min-width: 102% !important;
        }
    }


    /* CIRCULOS CHART 4 */

    .circulos {
        display: none;
    }


    @media screen and (max-width: 985px) {
        .circulos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1em;
        }

        .circulo-redondo-chart4 {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 8px;
        }

        #circulo1 {
            background-color: #ffd166;
        }

        #circulo2 {
            background-color: #06d6a0;
        }

        #circulo3 {
            background-color: #ef476f;
        }

        #circulo4 {
            background-color: rgba(254,176,25,1);
        }
    }


    .texto-container:nth-of-type(odd),
    .card-modal-fatura:nth-of-type(odd) {
        background-color: var(--table-row-odd-color) !important;
    }

    .texto-container:nth-of-type(odd),
    .card-modal-fatura:nth-of-type(odd) {
        background-color: #f7f7f7 !important;
    }

    @media screen and (min-width: 986px) {
        .texto-dir-desk {
            text-align: right;
        }

        .texto-esq-desk {
            text-align: left;
        }
    }

    @media screen and (max-width: 985px) {
        .texto-dir-desk,
        .texto-esq-desk {
            text-align: left;
        }

        #totalContratado,
        #totalVencer,
        #totalQuitado,
        #totalAtraso,
        #totalPendente {
            background-color: white;
            padding: 1em;
            text-align: center;
            font-size: 1.5em;
            margin: .5em 1em;
            border-radius: 5px;
        }

        .titulo-total-fatura {
            display: none;
        }
    }

    #lblTipoAgendamento {
        font-weight: 700;
    }

    #cbxDataAgendamento,
    #cbxHoraAgendamento {
        min-width: 160px;
        text-align: center;
        margin: 0 auto;
        font-weight: 700;
        height: 50px;
    }

    @media screen and (min-width: 986px) {
        .text-right-desk {
            text-align: right;
        }
    }

    .container-card-enquete {
        background-color: #fff;
        width: 360px;
        padding: 2em;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        border-radius: 10px;
    }

        .container-card-enquete table tbody tr td label {
            border: 1px solid #cecece;
        }

    .cards-desktop .card-desktop {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #000;
        font-family: Arial;
        margin: 0.5em 1em;
        transition: all .7s;
        width: 90%;
        min-height: 250px;
        border-radius: 5px;
        border: 1pt solid #fff;
        max-width: 90%;
    }

    .texto-desktop {
        border-bottom: 0px;
        padding: 2px 4px;
        font-weight: 500;
        border-bottom: 1px solid var(--table-border-color);
        font-size: 1rem;
        height: auto;
    }


/* TELA MEUS PEDIDOS */


.card.card-pedidos {
    flex-wrap: unset !important;
    width: 230px !important;
    min-height: 200px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
}

.card-pedidos:hover > .texto-meus-pedidos::before,
.card-pedidos:active > .texto-meus-pedidos::before {
    color: white !important;
}
/* TELA FOTOS */


.card.card-fotos {
    flex-wrap: unset !important;
    width: 300px !important;
    min-height: 140px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
    filter: drop-shadow(2px 2px 2px #00000040);
}

.card-fotos:hover > .texto-meus-pedidos::before,
.card-fotos:active > .texto-meus-pedidos::before {
    color: white !important;
}

/* CARTAO */

.form fieldset {
    border: none;
    padding: 0;
    padding: 10px 0;
    position: relative;
    clear: both;
}

    .form fieldset.fieldset-expiration {
        float: left;
        width: 60%;
    }

        .form fieldset.fieldset-expiration .select {
            width: 84px;
            margin-right: 12px;
            float: left;
        }

    .form fieldset.fieldset-ccv {
        clear: none;
        float: right;
        width: 86px;
    }

    .form fieldset label {
        display: block;
        text-transform: uppercase;
        font-size: 11px;
        color: rgba(0, 0, 0, 0.6);
        margin-bottom: 5px;
        font-weight: bold;
        text-align: left;
    }

    .form fieldset input,
    .form fieldset .select {
        width: 100%;
        color: #333333;
        padding: 10px;
        border-radius: 5px;
        font-size: 15px;
        outline: none !important;
        border: 1px solid rgba(0, 0, 0, 0.3);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
    }

        .form fieldset input.input-cart-number,
        .form fieldset .select.input-cart-number {
            width: 100%;
            display: inline-block;
            margin-right: 8px;
        }

            .form fieldset input.input-cart-number:last-child,
            .form fieldset .select.input-cart-number:last-child {
                margin-right: 0;
            }

    .form fieldset .select {
        position: relative;
    }

        .form fieldset .select::after {
            content: "";
            border-top: 8px solid #222;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            position: absolute;
            z-index: 2;
            top: 18px;
            right: 10px;
            pointer-events: none;
        }

        .form fieldset .select select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            position: absolute;
            padding: 0;
            border: none;
            width: 100%;
            outline: none !important;
            top: 11px;
            left: 6px;
            background: none;
        }

            .form fieldset .select select :-moz-focusring {
                color: transparent;
                text-shadow: 0 0 0 #000;
            }

.form button {
    width: 100%;
    outline: none !important;
    background: linear-gradient(180deg, #49a09b, #3d8291);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 90px;
}

    .form button .fa {
        margin-right: 6px;
    }

.checkout {
    margin: 150px auto 30px;
    position: relative;
    width: 460px;
    background: white;
    border-radius: 15px;
    padding: 160px 45px 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.credit-card-box {
    perspective: 1000px;
    width: 400px;
    height: 280px;
    position: absolute;
    top: -112px;
    left: 50%;
    transform: translateX(-50%);
}

    .credit-card-box:hover .flip, .credit-card-box.hover .flip {
        transform: rotateY(180deg);
    }

    .credit-card-box .front,
    .credit-card-box .back {
        width: 400px;
        height: 250px;
        border-radius: 15px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        background: linear-gradient(135deg, #bd6772, #53223f);
        position: absolute;
        color: #fff;
        text-align: left;
        top: 0;
        left: 0;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    }

        .credit-card-box .front::before,
        .credit-card-box .back::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url("http://cdn.flaticon.com/svg/44/44386.svg") no-repeat center;
            background-size: cover;
            opacity: 0.05;
        }

    .credit-card-box .flip {
        transition: 0.6s;
        transform-style: preserve-3d;
        position: relative;
    }

    .credit-card-box .logo {
        position: absolute;
        top: 9px;
        right: 20px;
        width: 60px;
    }

        .credit-card-box .logo svg {
            width: 100%;
            height: auto;
            fill: #fff;
        }

    .credit-card-box .front {
        z-index: 2;
        transform: rotateY(0deg);
    }

    .credit-card-box .back {
        transform: rotateY(180deg);
    }

        .credit-card-box .back .logo {
            top: 185px;
        }

    .credit-card-box .chip {
        position: absolute;
        width: 60px;
        height: 45px;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #ddccf0 0%, #d1e9f5 44%, #f8ece7 100%);
        border-radius: 8px;
    }

        .credit-card-box .chip::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            border: 4px solid rgba(128, 128, 128, 0.1);
            width: 80%;
            height: 70%;
            border-radius: 5px;
        }

    .credit-card-box .strip {
        background: linear-gradient(135deg, #404040, #1a1a1a);
        position: absolute;
        width: 100%;
        height: 50px;
        top: 30px;
        left: 0;
    }

    .credit-card-box .number {
        position: absolute;
        margin: 0 auto;
        top: 103px;
        left: 19px;
        font-size: 35px;
    }

    .credit-card-box label {
        font-size: 10px;
        letter-spacing: 1px;
        text-shadow: none;
        text-transform: uppercase;
        font-weight: normal;
        opacity: 0.5;
        display: block;
        margin-bottom: 3px;
    }


    .credit-card-box .card-holder,
    .credit-card-box .card-expiration-date {
        position: absolute;
        margin: 0 auto;
        top: 180px;
        left: 19px;
        font-size: 22px;
        text-transform: capitalize;
    }

    .credit-card-box .card-expiration-date {
        text-align: right;
        left: auto;
        right: 20px;
    }

    .credit-card-box .ccv {
        height: 36px;
        background: #fff;
        width: 91%;
        border-radius: 5px;
        top: 110px;
        left: 0;
        right: 0;
        position: absolute;
        margin: 0 auto;
        color: #000;
        text-align: right;
        padding: 10px;
    }

        .credit-card-box .ccv label {
            margin: -25px 0px 14px;
            color: #fff;
        }


@media (max-width: 600px) {
    /*Big smartphones [426px -> 600px]*/
    .credit-card-box {
        display: none;
    }

    .checkout {
        margin: auto;
        position: relative;
        width: auto;
        background: inherit;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        margin-bottom: 7em;
    }


    .input-card-ccv {
        width: 40px;
    }

    .form fieldset.fieldset-expiration {
        float: left;
        width: 50%;
    }

    .mensagem-aviso {
        padding: 10px 0px 10px 0px;
    }

    .form fieldset.fieldset-ccv {
        clear: none;
        float: left;
        width: 50%;
    }

    .form fieldset input,
    .form fieldset input.input-cart-number {
        width: 100%;
    }

        .form fieldset input.input-cart-number {
            margin-right: 0;
        }
}

.form-group-espacamento {
    margin-bottom: 0.5rem;
}

.form-group-espacamento input,
.form-group-espacamento select {
    font-size: 1.5em;
}

@-webkit-keyframes pulseMore {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.125, 1.125, 1.125);
        transform: scale3d(1.125, 1.125, 1.125);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulseMore {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.125, 1.125, 1.125);
        transform: scale3d(1.125, 1.125, 1.125);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.blink {
    animation: pulseMore .99s infinite alternate !important;
    -webkit-animation: pulseMore .99s infinite alternate !important;
}

@keyframes blink {
    0% {
        opacity: 1 !important;
        display: block;
    }

    50% {
        opacity: 0 !important;
        display: hidden;
    }

    100% {
        opacity: 1 !important;
        display: block;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1 !important;
    }

    50% {
        opacity: 0 !important;
    }

    100% {
        opacity: 1 !important;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* EFEITO INPUT GOOGLE */

input {
    background: #fff;
}


.input-box {
    position: relative;
    margin: 10px 0;
}

    .input-box .input-label {
        position: absolute;
        color: #80868b;
        font-size: 16px;
        font-weight: 400;
        max-width: calc(100% - (2 * 8px));
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        left: 26px;
        top: 13px;
        padding: 0 8px;
        transition: 250ms;
        user-select: none;
        pointer-events: none;
    }

        .input-box .input-label svg {
            position: relative;
            width: 15px;
            height: 15px;
            top: 2px;
            transition: 250ms;
        }

    .input-box .input-1 {
        box-sizing: border-box;
        height: 50px;
        width: 100%;
        border-radius: 4px;
        color: #202124;
        border: 1px solid #dadce0;
        padding: 13px 15px;
        transition: 250ms;
    }

        .input-box .input-1:focus {
            outline: none !important;
            border: 2px solid var(--main-backcolor) !important;
            transition: 250ms;
        }
        
        .input-box .input-2 {
        box-sizing: border-box;
        height: 50px;
        width: 100%;
        color: #202124;
        padding: 13px 15px;
        transition: 250ms;
    }

        .input-box .input-2:focus {
            outline: none !important;
            transition: 250ms;
        } 
        .input-box .input-3 {
        box-sizing: border-box;
        height: 50px;
        width: 100%;
        color: #202124;
        padding: 3px 15px;
        transition: 250ms;
    }

        .input-box .input-3:focus {
            outline: none !important;
            transition: 250ms;
        }

    .input-box.active-grey .input-label {
        color: #80868b;
        top: -11px;
        background: #fff;
        font-size: 15px;
        transition: 250ms;
    }

       
    .input-box.focus .input-label,
    .input-box.active .input-label {
        color: #000;
        top: -8px;
        background: #fff;
        font-size: 16px;
        transition: 250ms;
    }

@media (min-width: 575.99px) {
    .input-troca-senha {
        max-width: 400px;
    }
}


/* Menu lateral */

.menu-lateral li {
    display: block;
    transition: transform 0.3s ease, background-color 0.3s ease-in-out;
    width: 100%;
    background-color: var(--barra-lateral-backcolor);
    color: var(--menu-lateral-textcolor) !important;
}
    .menu-lateral li a {
        display: block;
        padding: 2px 0px;
        transition: transform 0.3s ease, background-color 0.3s ease-in-out;
        width: 100%;
        background-color: var(--barra-lateral-backcolor);
        color: var(--submenu-lateral-textcolor) !important;
    }

        .menu-lateral li a:hover,
        .menu-lateral li a:focus,
        .menu-lateral li a:active,
        .menu-lateral li a.active {
            filter: saturate(150%);
            transform: scale(1.05);
        }

.menu-lateral a i {
    margin: 0 1.125rem;
    text-align: center;
    min-width: 23px;
    max-width: 23px;
    color: var(--menu-lateral-textcolor) !important;
}
.menu-lateral a {
    padding: 0 20px;
    font-size: 1.25em;
}

    .menu-lateral hr {
        border: 1px solid #dfdfdf;
        margin: 20px 0;
    }

.before-claro::before {
    color: #fff;
}

.before-escuro::before {
    color: #000;
}

.gallery {
    position: relative;
    width: 200px;
    height: 200px;
    margin-top: 10px;
}

.photo-frame {
    position: absolute;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

    .photo-frame:nth-child(1) {
        top: 0;
        left: 0;
    }

    .photo-frame:nth-child(2) {
        top: 10px;
        left: 10px;
    }

    .photo-frame:nth-child(3) {
        top: 20px;
        left: 20px;
    }

    .photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.cards.cards-default {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f1f1f1;
    margin: 0 auto;
}

.cards-default .card {
    background-color: #fff;
    padding: 0.5em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-decoration: none;
    font-family: Arial;
    margin: 0.5em;
    transition: all .7s;
    width: 340px;
    height: 120px;
    border-radius: 5px;
    cursor: pointer;
    border: 1pt solid #fff;
    flex-direction: row;
    filter: drop-shadow(2px 2px 4px #00000040);
}

.cards-default .card-image {
    margin: auto 0.5em;
    width: 80px;
}

    .cards-default .card-image span {
        opacity: 0.2;
        font-size: 50px;
        margin: auto 0.25em;
    }

.cards-default .card-text-content {
    display: flex;
    flex-direction: column;
    word-break: normal;
    text-align: left;
    align-items: flex-start;
}

.cards-default .card-title {
    font-weight: 700;
    word-break: normal;
    font-size: 16px;
    margin: 1em 0 .5em 0;
    padding: 0;
    line-height: 1;
}

.card-default:hover .card-title {
}

.cards-default .card-text {
    width: 200px;
    word-break: break-word;
    font-weight: 400;
    font-size: 11px;
    line-height: 12px;
}

.cards-default .raise:hover,
.cards-default .raise:focus {
    box-shadow: 0 0.5em 0.5em -0.4em var(--main-backcolor);
    transform: translateY(-0.25em);
    background-color: var(--main-backcolor);
    border-color: var(--main-backcolor);
}

.cards-default .raise-white:hover,
.cards-default .raise-white:focus {
    box-shadow: 0 0.5em 0.5em -0.4em var(--main-backcolor);
    transform: translateY(-0.25em);
    background-color: #fff;
    border-color: #fff;
}

.cards-default .raise:hover .card-text,
.cards-default .raise:focus .card-text,
.cards-default .raise:hover .card-title,
.cards-default .raise:focus .card-title,
.cards-default .raise:hover .card-image span,
.cards-default .raise:focus .card-image span {
    opacity: 1;
}

@media only screen and (max-width: 768px) {

    .cards-default.cards {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        margin: 1em auto;
    }

    .cards-default .card-title {
        font-weight: 700;
        word-break: normal;
        font-size: 14px;
        margin: 0;
        padding: 0;
    }

    .cards-default .card-text {
        display: none;
    }

    .cards-default .card-image {
        width: 50px;
    }

        .cards-default .card-image span {
            opacity: 0.2;
            font-size: 30px;
            margin: 0;
        }

    .cards-default .card {
        background-color: #fff;
        padding: 0.5em;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none;
        font-family: Arial;
        margin: .5em 1em;
        transition: all .7s;
        width: 90%;
        height: 50px;
        border-radius: 5px;
        cursor: pointer;
        border: 1pt solid #fff;
        max-width: 90%;
    }

    .card-mobile-horizontal {
        max-width: 100% !important;
        height: 0 !important;
        min-height: 70px !important;
    }

    .card-adesoes {
        max-width: 100% !important;
    }

    .cards-default .card-text-content,
    .cards-default .card-image {
        padding: 0 .5em;
    }


    .cards-default .raise:hover,
    .cards-default .raise:focus,
    .card-valor:hover,
    .card-valor:focus,
    .raise:hover,
    .raise:focus, .raise:active {
        box-shadow: 0 0.5em 0.5em -0.4em var(--main-backcolor);
        transform: translateY(-0.25em);
        background-color: var(--main-backcolor);
        border-color: var(--main-backcolor);
    }

        .cards-default .raise:hover .card-text,
        .cards-default .raise:focus .card-text,
        .cards-default .raise:active .card-text,
        .cards-default .raise:hover .card-title,
        .cards-default .raise:focus .card-title,
        .cards-default .raise:active .card-title,
        .cards-default .raise:hover .card-image span,
        .cards-default .raise:focus .card-image span,
        .cards-default .raise:active .card-image span,
        .raise:hover .titulo-menu-mobile,
        .raise:focus .titulo-menu-mobile,
        .raise:hover .menu-icon,
        .raise:focus .menu-icon {
            opacity: 1;
        }

    .cards-default .raise-white:hover,
    .cards-default .raise-white:focus {
        box-shadow: 0 0.5em 0.5em -0.4em var(--main-backcolor);
        transform: translateY(-0.25em);
        background-color: #fff;
        border-color: #fff;
    }
}