﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

main {
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    width: 100%;
}

.container {
    width: 100%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .container .card1 {
        position: relative;
        padding: 5px;
        bottom: 5px;
        width: 130px;
        background: rgba(135,206,250, 0.2);
        margin: 10px;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.5s;
        text-align: center;
    }

    .container .card2 {
        position: relative;
        padding: 5px;
        bottom: 5px;
        width: 130px;
        background: rgba(255,255,0, 0.2);
        margin: 10px;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.5s;
        text-align: center;
    }

    .container .card3 {
        position: relative;
        padding: 5px;
        bottom: 5px;
        width: 130px;
        background: rgba(255,0,0, 0.2);
        margin: 10px;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.5s;
        text-align: center;
    }

    .container .card1 h1 {
        transition: 0.5s;
        color: #4682B4;
        font-weight: 300;
        font-size: 40px;
        margin: 10px 0 0 0;
    }

    .container .card2 h1 {
        transition: 0.5s;
        color: #FFA500;
        font-weight: 300;
        font-size: 40px;
        margin: 10px 0 0 0;
    }

    .container .card3 h1 {
        transition: 0.5s;
        color: #8B0000;
        font-weight: 300;
        font-size: 40px;
        margin: 10px 0 0 0;
    }

    .container .card .content {
        padding: 2px;
        text-align: center;
    }

    .container .card1 .content p {
        transition: 0.5s;
        color: #4682B4;
        font-weight: 200;
        font-size: 16px;
        margin: 10px 0 15px 0;
    }

    .container .card2 .content p {
        transition: 0.5s;
        color: #FFA500;
        font-weight: 200;
        font-size: 16px;
        margin: 10px 0 15px 0;
    }

    .container .card3 .content p {
        transition: 0.5s;
        color: #8B0000;
        font-weight: 200;
        font-size: 16px;
        margin: 10px 0 15px 0;
    }

#legenda {
    display: none;
}

.info:hover {
    cursor: pointer;
}

    .info:hover .legenda {
        display: block;
        font-size: 1.2em;
        padding: 10px 0;
        background: #111;
        filter: alpha(opacity=75);
        opacity: .75;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /*--IE 8 Transparency--*/
        color: #fff;
        position: absolute;
        bottom: 11px;
        left: 11px;
        padding: 10px;
        margin: 0;
        width: 615px;
        border-top: 1px solid #999;
    }

table tbody .selected {
    background-color: #CDCDCD;
}


.formSearchHome .select2-search {
    background-color: #808080;
}

    .formSearchHome .select2-search input {
        background-color: #808080;
    }

.formSearchHome .select2-results {
    background-color: #808080;
}

.login-box {
    background: #ffffff;
    border-radius: 5px;
    padding: 5px;
}

.mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile {
        display: inline;
    }

    .desktop {
        display: none;
    }

    #formSearchHome {
        max-width: 250px;
    }

    .dt-buttons {
        padding-bottom: 5px;
    }
}


.loading-spinner {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: none;
}

    .loading-spinner.active {
        display: block;
    }

#hourglass { /* centraliza no meio da tela */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
}

.toasts-top-right {
    width: 300px;
    margin-top: 10px;
    margin-right: 10px;
}

/* Time Line*/
.cbp_tmtimeline {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative
}

    .cbp_tmtimeline:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #eee;
        left: 20%;
        margin-left: -6px
    }

    .cbp_tmtimeline > li {
        position: relative
    }

        .cbp_tmtimeline > li:first-child .cbp_tmtime span.large {
            color: #444;
            font-size: 17px !important;
            font-weight: 700
        }

        .cbp_tmtimeline > li:first-child .cbp_tmicon {
            background: #fff;
            color: #666
        }

        .cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
            color: #444;
            font-size: 13px
        }

        .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
            background: #f0f1f3
        }

            .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
                border-right-color: #f0f1f3
            }

        .cbp_tmtimeline > li .empty span {
            color: #777
        }

        .cbp_tmtimeline > li .cbp_tmtime {
            display: block;
            width: 23%;
            padding-right: 70px;
            position: absolute
        }

            .cbp_tmtimeline > li .cbp_tmtime span {
                display: block;
                text-align: right
            }

                .cbp_tmtimeline > li .cbp_tmtime span:first-child {
                    font-size: 15px;
                    color: #3d4c5a;
                    font-weight: 700
                }

                .cbp_tmtimeline > li .cbp_tmtime span:last-child {
                    font-size: 14px;
                    color: #444
                }

        .cbp_tmtimeline > li .cbp_tmlabel {
            margin: 0 0 15px 25%;
            background: #f0f1f3;
            padding: 1.2em;
            position: relative;
            border-radius: 5px
        }

            .cbp_tmtimeline > li .cbp_tmlabel:after {
                right: 100%;
                border: solid transparent;
                content: " ";
                height: 0;
                width: 0;
                position: absolute;
                pointer-events: none;
                border-right-color: #f0f1f3;
                border-width: 10px;
                top: 10px
            }

            .cbp_tmtimeline > li .cbp_tmlabel blockquote {
                font-size: 14px
            }

            .cbp_tmtimeline > li .cbp_tmlabel .map-checkin {
                border: 5px solid rgba(235, 235, 235, 0.2);
                -moz-box-shadow: 0px 0px 0px 1px #ebebeb;
                -webkit-box-shadow: 0px 0px 0px 1px #ebebeb;
                box-shadow: 0px 0px 0px 1px #ebebeb;
                background: #fff !important
            }

            .cbp_tmtimeline > li .cbp_tmlabel h2 {
                margin: 0px;
                padding: 0 0 10px 0;
                line-height: 26px;
                font-size: 16px;
                font-weight: normal
            }

                .cbp_tmtimeline > li .cbp_tmlabel h2 a {
                    font-size: 15px;
                }

                    .cbp_tmtimeline > li .cbp_tmlabel h2 a:hover {
                        text-decoration: none;
                        cursor: auto;
                    }

                .cbp_tmtimeline > li .cbp_tmlabel h2 span {
                    font-size: 15px
                }

            .cbp_tmtimeline > li .cbp_tmlabel p {
                margin: 0px !important;
                color: #444
            }

        .cbp_tmtimeline > li .cbp_tmicon {
            width: 40px;
            height: 40px;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            font-size: 1.4em;
            line-height: 40px;
            -webkit-font-smoothing: antialiased;
            position: absolute;
            color: #fff;
            background: #46a4da;
            border-radius: 50%;
            box-shadow: 0 0 0 5px #f5f5f6;
            text-align: center;
            left: 20%;
            top: 0;
            margin: 0 0 0 -25px
        }

@media screen and (max-width: 992px) and (min-width: 768px) {
    .cbp_tmtimeline > li .cbp_tmtime {
        padding-right: 60px
    }
}

@media screen and (max-width: 65.375em) {
    .cbp_tmtimeline > li .cbp_tmtime span:last-child {
        font-size: 12px
    }
}

@media screen and (max-width: 47.2em) {
    .cbp_tmtimeline:before {
        display: none
    }

    .cbp_tmtimeline > li .cbp_tmtime {
        width: 100%;
        position: relative;
        padding: 0 0 20px 0
    }

        .cbp_tmtimeline > li .cbp_tmtime span {
            text-align: left
        }

    .cbp_tmtimeline > li .cbp_tmlabel {
        margin: 0 0 30px 0;
        padding: 1em;
        font-weight: 400;
        font-size: 95%
    }

        .cbp_tmtimeline > li .cbp_tmlabel:after {
            right: auto;
            left: 20px;
            border-right-color: transparent;
            border-bottom-color: #f5f5f6;
            top: -20px
        }

    .cbp_tmtimeline > li .cbp_tmicon {
        position: relative;
        float: right;
        left: auto;
        margin: -64px 5px 0 0px
    }

    .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
        border-right-color: transparent;
        border-bottom-color: #f5f5f6
    }
}

.bg-green {
    background-color: #50d38a !important;
    color: #fff;
}

.bg-blush {
    background-color: #ff758e !important;
    color: #fff;
}

.bg-orange {
    background-color: #ffc323 !important;
    color: #fff;
}

.bg-info {
    background-color: #2CA8FF !important;
}

.uppercase {
    text-transform: uppercase;
}


element.style {
}

.cbp_tmtimeline > li .cbp_tmlabel p {
    margin: 0px !important;
    color: #444;
}

blockquote p:last-child {
    margin-bottom: 0;
}

.blockquote {
    font-size: 14px;
    margin: .2em .2rem
}

.blockquote-blue {
    border-left-color: #007bff;
}

.blockquote-orange {
    border-left-color: orange;
}

.blockquote-red {
    border-left-color: red;
}

#table-reporting_length {
    display: none;
}

#table-reporting_filter {
    display: none;
}

#table-reporting thead {
    display: none;
}

svg:not(:root).svg-inline--fa {
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
}

.svg-inline--fa.fa-w-16 {
    width: 1em;
}

svg:not(:root) {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 2em;
    overflow: visible;
    vertical-align: -0.125em;
}

#svg-country {
    background: #ffffff;
}

    #svg-country path {
        stroke: #ffffff;
        fill: #0094d9;
        stroke-width: 1;
        -webkit-tap-highlight-color: #ffffff;
        stroke-linejoin: round;
        stroke-width: 1;
    }

    #svg-country .disable {
        fill-opacity: 9;
        opacity: 5;
        stroke-opacity: 1;
    }

    #svg-country .enable {
        fill: rgb(9, 9, 240);
        fill-opacity: 1;
        cursor: pointer;
        opacity: 1;
    }

#label-country {
    border-radius: 5px;
    box-shadow: 3px 3px 4px rgba(0,0,0,.5);
    z-index: 1000000;
    background-color: white;
    padding: .6em;
    opacity: 0.9;
    font: 12px/1.5 Verdana, Arial, Helvetica, sans-serif;
    color: black;
}

#label-country-code {
    float: left;
    font-weight: bold;
}


#svg-map {
    background: #FFF;
}

    #svg-map .land {
        fill: rgb(79, 240, 47);
    }

    #svg-map path {
        cursor: pointer;
        fill-opacity: 1;
        stroke: white;
        stroke-opacity: 1;
        stroke-width: 1;
    }

    #svg-map .nordeste {
        fill: #8B4513
    }

    #svg-map .norte {
        fill: #66CDAA
    }

    #svg-map .centro_oeste {
        fill: #E9967A
    }

    #svg-map .sudeste {
        fill: #0094d9
    }

    #svg-map .sul {
        fill: #32CD32
    }

    #svg-map text {
        fill: #fff;
        font: 12px Arial-BoldMT, sans-serif;
        cursor: pointer
    }

    #svg-map a {
        text-decoration: none
    }

        #svg-map a:hover {
            cursor: pointer;
            text-decoration: none
        }

            #svg-map a:hover path {
                fill: #003399 !important
            }

    #svg-map .circle {
        fill: #66ccff
    }

.modal-lgg {
    max-width: 96%;
}

#aceiteTermo {
    background: url(img/bg-termo.jpg) no-repeat;
}

#aceiteTermoDevolucao {
    background: url(img/bg-termo.jpg) no-repeat;
}

#aceiteChecklist {
    background: url(img/bg-checklist.jpg) no-repeat;
}

/*######################### ACEITE TERMO #################################*/

#aceiteTermo {
    background: url(../img/bg-termo.jpg) no-repeat;
    background-size: cover
}

    #aceiteTermo h2 {
        color: white;
    }

        #aceiteTermo h2 a {
            display: inline-block;
            padding-bottom: 50px;
            color: white;
        }

#aceiteTermoDevolucao {
    background: url(../img/bg-termo.jpg) no-repeat;
    background-size: cover
}

    #aceiteTermoDevolucao h2 {
        color: white;
    }

        #aceiteTermoDevolucao h2 a {
            display: inline-block;
            padding-bottom: 50px;
            color: white;
        }

#aceiteChecklist {
    background: url(../img/bg-checklist.jpg) no-repeat;
    background-size: cover
}

    #aceiteChecklist h2 {
        color: white;
    }

        #aceiteChecklist h2 a {
            display: inline-block;
            padding-bottom: 50px;
            color: white;
        }

#results_container table {
    width: 100%;
    margin: 0px;
    padding: 0px;
}

#results_container tr:nth-child(odd) {
    background-color: #d4d4d4;
}

#results_container tr:nth-child(even) {
    background-color: #e9e9e9;
}

#results_container td {
    vertical-align: middle;
    border-width: 0px 1px 1px 0px;
    text-align: left;
    padding: 7px;
    font-size: 0.95em;
    font-family: "Poppins";
    font-weight: normal;
    color: #323232;
}

#results_container tr:last-child td {
    border-width: 0px 1px 0px 0px;
}

#results_container tr td:last-child {
    border-width: 0px 0px 1px 0px;
}

#results_container tr:last-child td:last-child {
    border-width: 0px 0px 0px 0px;
}

#results_container thead tr th {
    background-color: #004358;
    border: 0px solid #ffffff;
    text-align: left;
    padding: 7px;
    border-width: 0px 0px 1px 1px;
    font-size: 1em;
    font-family: "Poppins";
    font-weight: bold;
    color: #ffffff;
}


/** Botão da pesquisa **/
.fab {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

    .fab button:focus {
        outline: none;
    }

    .fab button.main {
        cursor: pointer;
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 30px;
        right: 10px;
        bottom: 0;
        z-index: 20;
        border: none;
        outline: none;
        background-color: #343a40;
        box-shadow: 0 3px 8px rgba(0,0,0,.5);
        font-size: 24px;
        color: white;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }

        .fab button.main i {
            font-size: 1.5em;
        }

    /*
.fab button.main:before {
    content: '💬';
}
 */

    .fab div {
        position: absolute;
        right: 0;
        padding: 0;
        padding-right: 5px;
        margin: 0;
        list-style: none;
        z-index: 10;
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        transition: .2s ease-out;
    }

.modal-msg {
    min-width: 330px;
}

#mgs-title {
    padding: 20px 20px 0 20px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-align: center;
}

#div-msg-content {
    padding-left: 10px;
}


.fab div div {
    display: flex;
    justify-content: flex-start;
    position: relative;
    opacity: 0;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    transition: .3s ease-out;
}

.msg-textarea {
    padding: 10px;
}

#msg-textarea textarea {
    color: #333;
    width: 100%;
    border: 1px solid #ebebeb;
}

.fab div .icon {
    margin: 20px;
    display: flex;
    justify-content: space-between;
}

.fab.show button.main,
.fab.show button.main {
    outline: none;
    background-color: #343a40;
    box-shadow: 0 3px 8px rgba(0,0,0,.5);
}

    /*
.fab.show button.main:before,
.fab.show button.main:before {
    content: '❌';
}
*/


    .fab.show button.main + div,
    .fab.show button.main + div {
        bottom: 70px;
        opacity: 1;
        background: #f4f6f9;
    }

        .fab.show button.main + div div,
        .fab.show button.main + div div {
            margin-bottom: 10px;
            opacity: 1;
        }

.btn-secondary2 {
    background-color: #343a40;
    color: #fff;
    border-color: #343a50;
    box-shadow: none;
}

input.currency:before {
    content: attr(data-symbol);
    float: left;
    color: #aaa;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.my-list-input {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #f1f1f1;
}

    .my-list-input li {
        padding: 4px;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        color: #333;
    }

        .my-list-input li:last-child {
            border-bottom: none;
        }

thead input {
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
}

/* Aumentar o tamanho do menu dropdown dos botões DataTables Buttons */
.dt-buttons .dropdown-menu {
    width: 110%; /* Defina o tamanho mínimo desejado */
}

/* Estilo para o dropdown-item do DataTables Buttons */
.dt-button-collection .dropdown-item {
    background-color: transparent;
    color: #333;
    border: none;
    text-align: left;
    border-radius: 0px;
}

    /* Estilo quando o cursor passa sobre um item do dropdown */
    .dt-button-collection .dropdown-item:hover {
        background-color: #ddd;
        color: #555;
    }

.dropdown-item.active, .dropdown-item:active {
    background-color: dodgerblue;
    width: 95%;
    border-radius: 0px;
}

.btn-big-sm {
    padding: 0.100rem 0.25rem !important;
    font-size: 0.45rem !important;
    line-height: 1.1 !important;
    border-radius: 0.12rem !important;
    margin-bottom: 0 !important;
}

.custom-select-height {
    height: 40px; /* Ajuste a altura desejada */
}

