.bg-titulo {

    background-color: #93d482;
    text-align: center;
    font-family: -apple-system;
    border-radius: 10px;
}

p, span, label, textarea, select, option, input, h1, h2, h3, h4, h5, h6, th, td, b ,strong, div, a, button {
    font-family: Nunito, sans-serif !important;
    font-weight: 600;
}

h3 {
    background-image: linear-gradient(to right, rgb(65, 170, 100), rgb(65, 170, 100));
    color: white;
    font-family: 'Nunito';
    overflow: hidden;
    border-radius: 10px;
    padding: 4px;
}

.bg-subtitulo {

    background-color: #c0dfb8;
    text-align: center;
    font-family: -apple-system;
    border-radius: 10px;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/*MODAL LINHA  TEMPO*/

/*- Screen Sizes*/
/*import fonts*/
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
@import url("https://fonts.googleapis.com/css?family=Oswald");

/*media queries*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.wrapper {
    margin: 3.125em auto;
    padding: 1em 5em 1em;
    max-width: 1000px;
}

h1 {
    color: white;
    font-family: "Open Sans", "Lucida Grande", Tahoma, Verdana, Arial, sans-serif;
    text-align: center;
}

/* - &:nth-child(1) {
         grid-area: entry1;
     }
- useful timesaver if there is a lengthy list
*/
.timeline {
    line-height: 1.5em;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    counter-reset: section;
}

.timeline:before {
    content: "";
    width: 10px;
    height: 100%;
    background: #235e4e;
    position: absolute;
    top: 0;
    left: -3.313em;
    border-radius: 40px 40px;
}

.timeline--entry {
    position: relative;
    background-color: #eeeeee;
}

.timeline--entry__title {
    color: white;
    background-color: #ec407a;
    font-family: "Oswald", Georgia, Cambria, "Times New Roman", Times, serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 1em;
}

.timeline--entry__title:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: -1em;
    border-right: 10px solid #235e4e;
}

th {
    border-top: unset !important;
}

.timeline--entry__detail {
    background-color: #dddddd;
    padding: 1em;
    margin: 0;
}

.timeline--entry:before {
    content: "";
    font-family: "Oswald", Georgia, Cambria, "Times New Roman", Times, serif;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    height: 3em;
    background-color: #235e4e;
    border: 0.2em solid white;
    border-radius: 50%;
    position: absolute;
    counter-increment: section;
    content: counter(section);
    text-shadow: 0 1px 0 #424242;
    left: -4.5em;
}

@supports (display: grid) {
    @media (min-width: 768px) {
        .timeline {
            display: grid;
            grid-gap: 4.75em;
            grid-template-areas: ".  entry1" "entry2 ." ". entry3" "entry4 ." ". entry5" "entry6 ." ". entry7" "entry8 ." ". entry9";
        }

        .timeline:before {
            left: 49.5%;
        }

        .timeline--entry:nth-child(1) {
            grid-area: entry1;
        }

        .timeline--entry:nth-child(2) {
            grid-area: entry2;
        }

        .timeline--entry:nth-child(3) {
            grid-area: entry3;
        }

        .timeline--entry:nth-child(4) {
            grid-area: entry4;
        }

        .timeline--entry:nth-child(5) {
            grid-area: entry5;
        }

        .timeline--entry:nth-child(6) {
            grid-area: entry6;
        }

        .timeline--entry:nth-child(7) {
            grid-area: entry7;
        }

        .timeline--entry:nth-child(8) {
            grid-area: entry8;
        }

        .timeline--entry:nth-child(9) {
            grid-area: entry9;
        }

        .timeline--entry:nth-of-type(odd):before {
            left: -3.8em;
        }

        .timeline--entry:nth-of-type(even):not(:nth-of-type(odd)) .timeline--entry__title:before {
            left: 100%;
            border-left: 10px solid #235e4e;
            border-right: 0;
        }

        .timeline--entry:nth-of-type(even):before {
            left: 103%;
        }
    }

}

#forCheckBoxBanco {
    display: flex;
    justify-content: center;
}

#forCheckBoxBanco section {
    width: 100%;
    padding: 5px;
}

.labelCheckBox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    letter-spacing: 0.4px;
    font-size: 18px;
}

.checkboxDiv input {
    display: none;
}

.checkboxDiv input+label:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: 5px;
    border: 0.5px solid rgb(56, 47, 47);
    box-shadow: 2px 2px 6px rgba(82, 82, 82, 0.238);
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
}

.checkboxDiv input:checked+label:before {
    background-color: rgb(8, 148, 26);
    box-shadow: 3px 3px 7px rgba(29, 29, 29, 0.218);
}

.fa-times-circle {
    color: red;
}

.fa-check-circle {
    color: #4bbf43;
}

#contrato:hover,
#dossie_santander:hover {
    scale: 1.02;
    color: black;
    font-weight: 700;
}

/*area container dropdown notifications "expira certificados"*/

.container-notification {
    position: absolute;
    display: flex;
    height: 80px;
    color: #fafafa;
    left: 15%;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

.wl0100 {
    width: 100%;
    left: 0;
}

.dropdown-container-notification p {
    text-align: center;
    margin-top: 16px;
    background-color: transparent;
    border-radius: 6px;
    font-size: 16px;
    padding: 3px 5px;
    position: relative;
    left: -8px;
    border: none;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dropdown-container-notification h2 {
    background-color: transparent !important;
    background: none !important;
    padding: 0px 0px !important;
}



.dropdown-container-notification {
    animation: blink-alert 4s infinite;
    z-index: 999;
    min-width: 26rem;
    display: flex;
    height: 40px;
    margin: 10px auto;
    border: solid 1px #fafafa;
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    padding-inline: 15px;
    text-align: center;
}

@keyframes blink-alert {
    0% {
        background-color: #222d1e;
        box-shadow:0px 0px 0rem transparent;
    }
    50% {
        background-color: #d80d0ded;
        box-shadow:0px 0px 2rem #d80d0dd2;
    }
    100% {
        background-color: #222d1e;
        box-shadow:0px 0px 0rem transparent;
    }
}

.point {
    animation: slide-left 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite;
    position: absolute;
    right: 8%;
    margin-bottom: 25px;
    background-color: transparent !important;
    background: none !important;
}

@keyframes slide-left {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-30px);
    }
}

.bi-caret-down-square-fill {
    cursor: pointer;
}

.container-notification-drop {
    display: none;
    /* width: 1500px; */
    flex-direction: column;
    justify-content: center;
    background-color: #239645;
    position: absolute;
    top: 53px;
    left: 0px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    box-shadow: 2px 14px 6px 12px rgba(0, 0, 0, 0.141);
    animation: slide-fwd-center 10s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.hideAndShow {
    display: flex;
    animation: slide-fwd-center 10s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.aroundBorder {
    border-radius: 12px 12px 0 0;
    width: 1500px;
}

.tableDropdown {
    width: 100%;
    /* margin: 10px auto; */
    border-top: solid #fff 1px;
    animation: slide-fwd-center 10s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.headerTable {
    background-color: #145026;
    /* z-index: 999; */
}

.headerTable th {
    font-size: 14px !important;
    color: #fff !important;
    font-weight: bold;
    background-color: #145026 !important;
}



.dataDropdown td:nth-child(1) {
    max-width: 350px !important;
    overflow: hidden;
    white-space: nowrap !important;
    word-break: break-all !important;
    text-overflow: ellipsis !important;
}

.dataDropdown td:nth-child(2) {
    white-space: nowrap !important;
    word-break: break-all !important;
    text-overflow: ellipsis !important;
}

.dataDropdown td:nth-child(3) {
    max-width: 230px !important;
    overflow: hidden;
    padding-inline: 10px;
    white-space: nowrap !important;
    word-break: break-all !important;
    text-overflow: ellipsis !important;
    border-bottom: solid #fff 1px;
    color: #000;
}

.dataDropdown td:nth-child(4) {
    max-width: 237px !important;
    overflow: hidden;
    white-space: nowrap !important;
    word-break: break-all !important;
    text-overflow: ellipsis !important;
    border-bottom: solid #fff 1px;
    color: #000;
}

.dataDropdown td:nth-child(5) {
    white-space: nowrap !important;
    word-break: break-all !important;
    text-overflow: ellipsis !important;
    border-bottom: solid #fff 1px;
    color: #000;
}

.dataDropdown td {
    padding: 20px 10px !important;
    border-bottom: solid #fff 1px;
    color: #000;
    cursor: pointer;
    border: solid 1px #fff;
}

tr:nth-child(even) {
    background-color: #e0e0e0;
}

tr:nth-child(odd) {
    background-color: #cfcfcf;
}


.dataDropdown:last-child>td {
    border: none;
}

.dataDropdownExpired td {
    background-color: rgba(255, 0, 0, 0.553) !important;
    color: #fff !important;
    font-weight: bold;
}

.table-responsivex {
    max-width: 80rem;
    overflow-x: hidden;
}

@keyframes slide-fwd-center {
    0% {
        transform: translateZ(0);
    }

    100% {
        transform: translateZ(160px);
    }
}

#paginate {
    margin-bottom: -16px !important;
    min-height: 250px;
}

.application .navbar .container,
.application .navbar .container-fluid {
    width: 1600px;
    padding-left: 0;
    padding-right: 0;
}

.table {
    width: 100%;
    margin-bottom: 0 !important;
    color: #8492a6;
    background-color: transparent;
}

.countDownCertification {
    padding: 0 10px;
}

#export-btn {
    display: none;
    position: relative;
    right: -16rem;
    border: 1px solid #fff;
    padding: 4px 20px;
    background-color: #1b6f34;
    color: #fff;
    border-radius: 6px;
    height: 2.5rem;
}

.visibleButton {
    display: block !important;
}

.table-anexos {
    position: relative;
    max-width: 100%;
    height: max-content;
    font-size: 1.1rem;
    font-weight: bolder;
}

.table-anexos .thead {
    position: relative;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bolder;
    color: #f5f5f5;
    background-color: #145026;
    padding: 1rem;
    border-radius: 0.8rem 0.8rem 0 0;
    text-align: center;
}

.table-anexos .tbody {
    font-size: 0.9rem;
    padding: 0;
    padding-left: 3rem;
    padding-right: 3rem;
    display: block;
    width: 100%;
    border-radius: 0 0 0.8rem 0.8rem;
    background-color: #dddddd;
    color: #424242;
    font-weight: 700;
}

.table-anexos .tbody .row {
    min-height: 4rem;
    height: max-content;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.table-anexos .tbody .previewImage {
    align-items: center;
    justify-content: center;
    display: none;
}

.table-anexos .tbody .row:hover+.previewImage {
    height: 25rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.table-anexos .tbody .row+.previewImage:hover {
    height: 25rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.table-anexos .tbody .previewImage img {
    height: 10rem;
    display: flex;
    opacity: 0;
    transition: 500ms;
}

.table-anexos .tbody .row:hover+.previewImage img {
    height: 20rem;
    display: flex;
    opacity: 1;
}

.table-anexos .tbody .previewImage:hover img {
    height: 20rem;
    display: flex;
    opacity: 1;
    scale: 1.1;
}

/* .div-list-acessos{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    transition-delay: 500ms;
    transition: 600ms;
    animation: list-show normal 1500ms;
}

.div-list-acessos div  input {
    width: 0.8fr;
}

.table-lista-acesso {
    width: 100%;
    height: max-content;
    font-weight: 700;
    border-radius: 1.5rem;
}

.table-lista-acesso thead {
    background-color: #f2f2f2;
    color: #979fa9;
    padding: 1rem;
    height: 4rem;
    border-radius: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.table-lista-acesso thead tr {
    background-color: transparent;
    border-radius: 1.5rem;
}

.table-lista-acesso thead tr :nth-child(1) {
    background-color: transparent;
    border-radius: 1.5rem 0 0 0;
}

.table-lista-acesso thead tr :nth-child(6) {
    background-color: transparent;
    border-radius: 0 1.5rem 0 0;
}

.table-lista-acesso tbody {
    background-color: #a4a8ad;
    color: #f2f2f2;
    padding: 1rem;
    height: 4.5rem;
    border-radius: 1.5rem;
    font-size: 0.77rem;
}

.table-lista-acesso tbody tr {
    background-color: transparent;
    color: #f2f2f2;
    font-weight: 600;
    height: 3rem;
}

.table-lista-acesso tbody tr a {
    color: #f2f2f2;
    text-decoration: none;
}

.table-lista-acesso tbody tr:hover {
    background-color: #d4d7db;
    transition: 600ms;
}

.table-lista-acesso tbody tr:hover * {
    color: #454444;
    transition: 600ms;
    font-weight: bolder;
    font-size: 0.8rem;
} */

/* @keyframes list-show{
    0%{
        opacity: 0;
        transform: translateY(-30rem);
        height: 0;
    }
    10%{
        height: 10rem;
    }
    30%{
        height: 30rem;
    }
    50%{
        opacity: 0;
        height: 50rem;
    }
    70%{
        height: 70rem;
    }
    90%{
        height: max-content;
    }
    100%{
        opacity: 1;
        transform: translateY(0rem);
    }
} */

#list tbody {
    min-height: 500px !important;
}

.dropright {
    padding: 0px;
    margin: 0px;
    border: 0px;
    width: 50px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center !important;
}

.a-drop {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.a-drop>i {
    text-align: center !important;
    margin: unset !important;
    padding: unset !important;
}

#menuAction {
    position: relative;
    flex-direction: column;
    top: 0px !important;
    left: 15px !important;
    padding: unset;

    border-radius: 18px;
    border-top-left-radius: 0px;
    border: 10px solid;
    border-image-slice: 1;
    border-width: 5px;
    border: rgb(65, 170, 100)solid 4px;
    overflow: hidden;
}

.indicadorDropdown {
    background-image: linear-gradient(to right, rgb(61, 123, 83), rgb(65, 170, 100));
    color: #fff;
    padding: 5px;
}

.indicadorDropdown p {
    margin: 0px 10px !important;
}

.dropright .action-item {
    background-color: #cdcdcd;
    margin: unset !important;
    border-bottom: 1px solid white;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 14px !important;
    align-items: baseline;

}

.dropright .action-item i {
    width: 20px !important;
    text-align: center;
    color: #000 !important;
    font-size: 18px !important;
    margin: 0px 18px 0px 15px !important;
}

.dropright .action-item p,
.dropright .action-item i {
    margin: unset;
    font-weight: 600;
    text-align: center;
    text-justify: center;
}

.action-item:hover {
    background-color: #ebebeb;
}

.action-item:hover i,
.action-item:hover p {
    transform: scale(1.1);
}

tbody#lista-acessos td:nth-child(2) {
    white-space: pre-wrap;
    padding: 5px;
}

#lista-acessos {
    text-align: center;
    color: black;
    font-weight: bold;
}

#table-acessos {
    background-color: #d9d9d9;
    text-align: center;
}

#div-table-acessos {
    max-height: 500px;
}

#div-qtd-resultados {
    display: flex;
    align-items: end;
    margin-left: 10px;
}

#thead-table-acessos {
    position: sticky;
    top: 0;
}

#modal-email .modal-body .input-emails {
    display: flex;
    border: 1px solid #145026;
    border-radius: 25rem;
    align-items: center;
    padding: 0rem;
    width: 95%;
}

#modal-email .modal-body .input-emails i {
    font-size: x-large;
    position: relative;
    left: 0.7rem;
    top: 0.7rem;
}

#modal-email .modal-body .input-emails input::placeholder {
    color: #034015ae;
    font-weight: 700;
    text-shadow: 0 0 2px;
}

#modal-email .modal-body .input-emails input,
#modal-email .modal-body .input-emails input:focus,
#modal-email .modal-body .input-emails input:active {
    font-weight: 600;
    max-width: 70%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    margin: auto;
    box-shadow: none;
}

#modal-email .modal-body .input-emails .input-icon {
    border-radius: 20rem 0 0 20rem;
    background-color: #33d463;
    color: #ffffff;
    height: 100%;
    width: 10%;
    align-items: center;
    justify-content: center;
}


.sidenav-toggler {
    z-index: 9999;
    position: relative;
}

.nav-item{
    scale: 0.9;
    font-weight: bolder;
}