html,
body {
    overflow: hidden;
}

nav {
    z-index: 1000;
}

.navbar-nav {
    gap: 10px !important;
}

.nav-item:hover {
    border-radius: 4px !important;
    background-color: #EEEEEE !important;
}

.div_body_container {
    height: calc(100vh - 112px);
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.footer_container {
    bottom: 0;
    width: 100%;
    height: 52px;
    z-index: 1000;
    display: flex;
    position: absolute;
    text-align: center;
    align-items: center;
}

#id_icon_avance_revalida {
    width: 50%;
    height: auto;
    display: flex;
    position: relative;
}

.home_container {
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.div_account_container {
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.icon_circle_avance_revalida {
    width: 56px;
    height: 56px;
    display: flex;
    position: relative;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.btn_submit_form_style,
.icon_button_group_style {
    width: 100%;
    display: flex;
    font-size: small;
    position: relative;
    text-align: center;
    justify-content: center;
}

.icon_button_group_style {
    color: #000000 !important;
}

.btn_submit_form_style {
    color: #FFFFFF !important;
}

.icon_button_style {
    left: 8px;
    display: flex;
    font-size: 20px !important;
    position: absolute;
}

.table_list_style {
    height: calc(100vh - 186px);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.card_title_style {
    height: 42px;
    display: flex;
    position: relative;
    align-items: center;
}

.adicionar_estacao_container {
    width: 96%;
    height: auto;
    display: none;
    position: absolute;
}

.button_add_estacao {
    display: flex;
    position: relative;
    align-items: center;
}

.icon_button_add_estacao {
    margin-right: 8px;
    font-size: 18px !important;
}

.icon_add_estacao_submit {
    display: flex !important;
    font-size: 18px !important;
    position: relative;
}

.btn_remove_area {
    width: 24px;
    height: 24px;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    position: relative;
    border-radius: 32px !important;
    align-items: center;
    justify-content: center;
}

.icon_remove_area {
    font-size: 18px !important;
}

.input_group_style {
    display: flex;
    position: relative;
    align-items: center;
}

.btn_visible_passwd {
    margin: 0;
    padding: 0;
    right: 16px;
    display: flex;
    z-index: 1000;
    color: #000000;
    cursor: pointer;
    position: absolute;
}

.tab_nav_style {
    gap: 16px;
    display: flex;
    color: #000000;
    align-items: center;
    position: relative;
}

.tab_nav_style.active {
    background-color: #EEEEEE !important;
}

.tab_nav_style:hover {
    color: #AAAAAA !important;
}

/* INÎCIO PROGRESS */
.loader_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 0%, 0.565);
}

.loader_overlay_progress {
    width: 96px;
    height: 96px;
    color: #FFFFFF;
    border-radius: 100%;
    border: 5px solid #000000;
    border-top: 5px solid #FFFFFF;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* FIM PROGRESS */

.icon_btn_table_style {
    color: #000000 !important;
    text-decoration: none !important;
}

.title_max_width {
    max-width: 20ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.div_align_end {
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    text-align: end;
    justify-content: end;
}

::-webkit-scrollbar-track {
    padding: 2px 0;
    border-radius: 10px;
    border: 1px solid #02347350;
    background-color: #02347350;
}

::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    position: relative;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    border: 1px solid #023473;
    background-color: #023473;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
}

@media screen and (max-width: 920px) {

    html,
    body {
        overflow: hidden;
    }

    .div_body_container {
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 120px);
    }
}