:root {
    --border-color: rgb(167, 167, 167)
}

body {
    overflow: hidden;
}

#regras.active,
#cadastroUsuarios.active,
#listUsuarios.active {
    border-color: var(--border-color) var(--border-color) white var(--border-color);
}

nav,
.cow-sm-2 {
    background-color: rgb(169 192 255 / 36%);
    min-width: 20%;
}

.div-options-sidebar {
    height: 75vh;
    margin: 10px;
}

.div-logo {
    display: flex;
    padding: 15px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.div-logo>a>img {
    width: 100%;
}

.ul-sidebar {
    padding-left: 0px;
    list-style-type: none;
}

.ul-sidebar-item {
    display: flex;
    margin: 10px 0px 10px 0px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.ul-sidebar-item a {
    margin-left: 10px;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.ul-sidebar-item>a {
    color: #000;
    transition: color 0.4s ease;
}

.ul-sidebar-item>a:hover {
    color: rgb(60, 121, 253);
}

.div-saudacao {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.div-cad-menus-standard {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    align-items: center;
    height: 90vh;
    padding-top: 20px;
    min-height: 90vh;
    max-height: 95vh;
    overflow: auto;
}

.div-config-wpp {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.div-sub-main {
    width: 75vw;
}

.div-config-user {
    display: none;
    padding-top: 20px;
    min-height: 90vh;
    max-height: 95vh;
    overflow: auto;
}

.ct-cad-users {}

.div-login {
    min-height: 100vh;
    background-image: url('../img/CMMC.jpg');
    background-size: cover;
}

.div-cad-edit-item {
    display: flex;
    max-height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.div-body-qr {
    display: flex;
    margin-top: 50px;
    justify-content: center;
}

.div-body-qr>img {
    width: 140px;
    height: 140px;
}

.linha {
    width: 70vw;
    border-bottom: 1px solid #000000;
}

.header-config-menu {
    display: flex;
    align-items: center;
}

.header-config-menu>h2 {
    margin-right: 20px;
}

.div-options-main {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#lista-pacientes {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    border: 1px solid black;
    padding-left: 0px;
    border-radius: 5px;
}

#lista-pacientes li:nth-child(odd) {
    background-color: #adadad;
}

#sair:hover {
    fill: red;
}

.div-exit-sidebar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

#myTab {
    border: 0px;
}

.tab-content>div {
    overflow: auto;
    min-height: 80vh;
    max-height: 82vh;
}

.ct-cad-users .tab-pane.fade {
    overflow: auto;
    border: 1px solid rgb(167, 167, 167);
    border-radius: 0px 20px 20px 20px;
    box-shadow: 0px 0px 10px 0px #b5b5b5;
    padding: 20px;
}

.fade-out {
    animation: fadeOutAnimation 1s forwards;
}

@keyframes fadeOutAnimation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}