@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* tem que ser no after, ou uma div que fica por cima backdrop-filter: blur(1.4px); */

:root{
    --border_radius: 5px;
    --padding: 8px;
    --gap_sm: 5px;
    --gap_md: 10px;
    --gap_lg: 20px;

    --cor_white: #FAF9F6;
    --cor_white: #fff;
    --cor_light_gray: #eee;
    --cor_gray: #777;
    --cor_black: #212225;
    --cor_cyan: #098989;
    --cor_dark_cyan: #014a5c;
    --cor_light_blue: #0edbff;
    --cor_blue: #008cc1;
    --cor_dark_blue: #03658C;
    --cor_darker_blue: #122235;
    --cor_light_yellow: #f6f798;
    --cor_yellow: #ffcd19 ;
    --cor_dark_yellow: #896709;
    --cor_darker_yellow: #4e3601;
    --cor_light_orange: #f7d698;
    --cor_orange: #ffa319 ;
    --cor_dark_orange: #894d09;
    --cor_darker_orange: #4e2401;
    --cor_lighter_red: #fcd0d0;
    --cor_light_red: #f79898;
    --cor_red: #ff4b4b;
    --cor_dark_red: #79001e;
    --cor_light_purple: #bc98f7;
    --cor_purple: #724bff;
    --cor_dark_purple: #240079;
    --cor_light_green: #05f297;
    --cor_green: #0bcc62;
    --cor_dark_green: #098989;
    --cor_darker_green: #00343d;
    --cor_principal: var(--cor_dark_cyan);
    --cor_principal: var(--cor_purple);
    --cor_principal_escura: var(--cor_black);
    --cor_principal_contraste: var(--cor_yellow);
}

.no_bg{
    background: none !important;
    box-shadow: none !important;
}
[class$="bg_"].no_bg,
[class*=" bg_"].no_bg
{
    background: none !important;
    box-shadow: none !important;
}
/* .no_bg.no_bg{
    background: none !important;
    box-shadow: none !important;
} */
.bg_principal{
    background: var(--cor_principal);
}
.bg_contraste{
    background: var(--cor_principal_contraste);
    color: var(--cor_principal_escura);
}
.txt_principal{
    color: var(--cor_principal);
}
.txt_contraste{
    color: var(--cor_principal_contraste);
}

.bg_white{
    background: var(--cor_white) !important;
    color: var(--cor_black) !important;
}
.bg_gray{
    background: var(--cor_gray) !important;
    color: var(--cor_black) !important;
}
.bg_light_gray{
    background: var(--cor_light_gray) !important;
    color: var(--cor_gray) !important;
}
.bg_darkblue{
    background: var(--cor_dark_blue) !important;
    color: #fff !important;
}
.bg_blue{
    background: var(--cor_light_blue) !important;
    color: var(--cor_dark_blue) !important;
}
.bg_light_blue{
    background: var(--cor_light_blue) !important;
    color: var(--cor_darker_blue) !important;
}
.bg_light_purple{
    background: var(--cor_light_purple) !important;
    color: var(--cor_dark_purple) !important;
}
.bg_purple{
    background: var(--cor_light_purple) !important;
    color: var(--cor_dark_purple) !important;
}
.bg_dark_purple{
    background: var(--cor_dark_purple) !important;
    color: var(--cor_light_purple) !important;
}
.bg_dark_yellow{
    background: var(--cor_dark_yellow) !important;
    color: var(--cor_light_yellow) !important;
}
.bg_yellow{
    background: var(--cor_yellow) !important;
    color: var(--cor_darker_yellow) !important;
}
.bg_light_yellow{
    background: var(--cor_light_yellow) !important;
    color: var(--cor_dark_yellow) !important;
}
.bg_orange{
    background: var(--cor_orange) !important;
    color: var(--cor_darker_orange) !important;
}
.bg_light_red{
    background: var(--cor_light_red) !important;
    color: var(--cor_dark_red) !important;
}
.bg_red{
    background: var(--cor_red) !important;
    color: var(--cor_dark_red) !important;
}
.bg_light_green{
    background: var(--cor_light_green) !important;
    color: var(--cor_darker_green) !important;
}
.bg_green{
    background: var(--cor_green) !important;
    color: var(--cor_darker_green) !important;
}
.txt_white{
    color: var(--cor_white) !important;
}
.txt_light_gray{
    color: var(--cor_light_gray) !important;
}
.txt_gray{
    color: var(--cor_gray) !important;
}
.txt_black{
    /* color:inherit !important; */
    color: var(--cor_black) !important;
}
.txt_darkblue{
    color: var(--cor_dark_blue) !important;
}
.txt_blue{
    color: var(--cor_blue) !important;
}
.txt_light_purple{
    color: var(--cor_light_purple) !important;
}
.txt_purple{
    color: var(--cor_purple) !important;
}
.txt_dark_purple{
    color: var(--cor_dark_purple) !important;
}
.txt_light_yellow{
    color: var(--cor_light_yellow) !important;
}
.txt_yellow{
    color: var(--cor_yellow) !important;
}
.txt_dark_yellow{
    color: var(--cor_dark_yellow) !important;
}
.txt_light_orange{
    color: var(--cor_light_orange) !important;
}
.txt_orange{
    color: var(--cor_orange) !important;
}
.txt_dark_orange{
    color: var(--cor_dark_orange) !important;
}
.txt_light_red{
    color: var(--cor_light_red) !important;
}
.txt_red{
    color: var(--cor_red) !important;
}
.txt_light_green{
    color: var(--cor_light_green) !important;
}
.txt_green{
    color: var(--cor_green) !important;
}
.txt_dark_green{
    color: var(--cor_dark_green) !important;
}
.small,
.small *{
    font-size: 10px !important; 
}
.bold{
    font-weight: bold;
}
.pointer{
    cursor: pointer;
}
.bi {
    transform: scale(1.2);
    transform-origin: center;
}
.bi.bi-bold::before{
    font-weight: bold !important;
}
.align_left{

}
.align_center{

}
.align_right{

}
.description {
    font-size: 12px;
    color: #666;
    font-style: italic;
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
.description > *:not(i) {
    font-size: 12px;
}
.description::before {
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 900 !important;
    content: "\F132";

    position: absolute;
    top: 2px;
    left: 7px;
}
.success{
    background: var(--cor_light_green) !important;
    color: var(--cor_darker_green) !important;
}
.success::before{
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    /* --fa: "\f058"; */
    margin-right: 10px;
}
.warning{
    background: var(--cor_yellow) !important;
    color: var(--cor_darker_yellow) !important;
    display: grid;
    grid-auto-flow: column;
    gap: var(--gap_md);
}
.warning::before{
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f071";
    /* color: var(--cor_darker_yellow) !important;
    margin-right: 10px; */
}
.danger{
    background: var(--cor_light_red) !important;
    color: var(--cor_dark_red) !important;
}
.danger::before{
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    /* --fa: "\f714"; */
    color: var(--cor_dark_red) !important;
    margin-right: 10px;
}
.link_modal{
    color: var(--cor_blue); 
    /* text-decoration: underline; */
}
.link_modal:hover{
    opacity: 0.6;
    /* text-decoration: underline; */
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
* {
    font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    color: var(--cor_dark_blue);
    color: var(--cor_black);
    /* scrollbar-width: thin; */
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-thumb {
    background-color: var(--cor_black);
    border-radius: 0px;
}

html{
    height: 100%;
}
body{
    margin: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul{
    padding: 0px;
    margin: 0px;
}

li{
    list-style: none;
}

i {
    color: inherit;
}

.form_item .descricao{    
    font-size: 11px;
    color: #666;
    display: flex;
    gap: 8px;
    align-items: center;
}
.label_element_container{
    /* Comentei abaixo para o checkbox da tabela funcionar com position absolute */
    position: relative;
    display: flex;
}
div:not(.item_type_radio, .item_type_checkbox) > .label_element_container{
    /* border-left: 2px solid var(--cor_principal); */
}
.label_element_container label{
    flex-grow: 1;
    align-content: center;
    position: absolute;

    z-index: 1;
    top: 50%;
    left: 0px;
    padding: 0px 10px 0px;
    transition: 0.3s;
    transform: translateY(-50%);
    transform-origin: left;
    box-sizing: border-box;

    /* width: 100%; */
    cursor: text;
    /* font-size: 12px; */
    color: #666;
    /* border-left: 2px solid var(--cor_principal); */
}
.label_element_container label .label_content{
    color: inherit;
    display: flex;
    align-items: center;
    gap: var(--gap_md);
}
.label_element_container label.input_focus{    
    top: 5px;
    left: 0px;
    transform: translateY(0%);
    font-size: 12px;
    display: flex;
    /* align-items: start; */
    align-items: center;
    gap: 3px;
}
.label_element_container:has(input:-webkit-autofill) label{    
    top: 5px;
    left: 0px;
    transform: translateY(0%);
    font-size: 12px;
    display: flex;
    /* align-items: start; */
    align-items: center;
    gap: 3px;
}
input:-webkit-autofill{    
    color: #333;
}
.ts-control,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea{
    padding: 24px 10px 7px;
    outline: none;
    resize: vertical;
    background: none;
    border: none;
    /* border-radius: 0px 2px 2px 0px; */
    border-radius: 5px;
    border: none;
    border: 1px solid #eee;
    /* border-left: 2px solid var(--cor_principal); */
    box-shadow: 0px 0px 0px 1000px inset var(--cor_white), 0px 4px 4px -5px #ccc;
    /* background: #eee; */
    transition: background 0.2s;
    flex: 1 1 auto;
    
    overflow: hidden;
    resize: none;
    /* width: 100%; */
    /* box-sizing: border-box; */
}
input[type="file"]{
    display: none;
}
input[type="color"]{
    width: 100%;
    height: 40px;
    border: none;
    cursor: pointer;
    /* margin-bottom: -10px; */
}
textarea{
    padding-top: 30px;
    /* border-top: 30px solid var(--cor_white); */
}
select{
    cursor: pointer;
}
input[type="radio"],
input[type="checkbox"]{
    margin: 0px;
    transform: scale(1.0);
}
input[readonly],
input:disabled,
textarea:disabled{
    /* box-shadow: 0px 0px 0px 40px inset #fff; */
    /* border: none; */
    /* border-left: 2px solid #ccc; */
    color: #aaa;
    padding-bottom: 5px;
    outline: none !important;
}
input:-internal-autofill-selected {
    background-color: inherit;
}
button,
.button{
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    background: var(--cor_purple);
    color: var(--cor_white);
    padding: var(--padding);
    box-sizing: border-box;
    /* border-radius: var(--border_radius); */
    box-shadow: 0px 4px 4px -5px #999;
    /* border: 1px solid #00000017; */
}
button:not(.table_action_button):hover,
.button:hover{
    opacity: .8;
}
.focus,
textarea:focus,
input:focus:not([type="checkbox"]):not([type="radio"]){
    outline: 3px solid var(--cor_blue);
    border-radius: 5px;
}


/* HELPERS */
.flex{
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: flex-start;
}
.flex_row{
    flex-direction: row;
}
.flex_column{
    flex-direction: column;
}
.gap10{
    gap: var(--gap_md);
}
.gap20{
    gap: var(--gap_lg);
}
.grid{
    display: grid;
}
.grid1 {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-flow: initial !important;
}
.grid2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid5 {
    grid-template-columns: repeat(5, 1fr);
}
.block {
    width: 100% !important;
    /* display: block !important; */
    box-sizing: border-box !important;
}
.disabled{
    color: #ccc;
    background: #eee;
}
.hidden{
    padding: 0px !important;
    min-width: 0px !important;
    min-height: 0px !important;
    width: 0px !important;
    height: 0px !important;
    overflow: hidden !important;
    display: none !important;
}
.template{
    padding: 0px !important;
    min-width: 0px !important;
    min-height: 0px !important;
    width: 0px !important;
    height: 0px !important;
    overflow: hidden !important;
    display: none !important;
}
.flex-column{
    flex-direction: column !important;
}
.grow{
    flex-grow: 1 !important;
}
.shrink{
    flex-shrink: 1 !important;
}
.no_grow{
    flex-grow: 0 !important;
    width: fit-content;
}
.no_shrink{
    flex-shrink: 0 !important;
}
.no_wrap{
    flex-wrap: nowrap !important;
    width: max-content !important;
}
.wrap{
    white-space: wrap !important;
}
.wrap_pre{
    white-space: pre !important;
}
.sticky_left{
    position: sticky !important;
    left: 0px;
    z-index: 4 !important;
}
.txt_center{
    text-align: center !important;
    justify-self: center;
}
.txt_right{
    text-align: right !important;
    justify-self: right;
}
.img_option{
    width: 35px;
    height: 35px;
    text-align: center;
}
.img_option img{
    max-height: 100%;
    max-width: 100%;
}
.scroll_horizontal{
    overflow-x: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
}
.scroll_horizontal > *{
    flex: 0 0 auto !important;
}
.w300 {
    max-width: 300px !important;
}
.w500 {
    max-width: 500px !important;
}
.w700 {
    max-width: 700px !important;
}
.wait300ms{
    animation: wait300ms 300ms forwards;
}
@keyframes wait300ms {
    0% { filter: hue-rotate(1); }
    100% { filter: hue-rotate(0); }
}
.wait600ms{
    animation: wait600ms 600ms forwards;
}
@keyframes wait600ms{
    0% { filter: hue-rotate(1); }
    100% { filter: hue-rotate(0); }
}
.wait1s{
    animation: wait1s 1s forwards;
}
@keyframes wait1s{
    0% { filter: hue-rotate(1); }
    100% { filter: hue-rotate(0); }
}
.wait2s{
    animation: wait2s 2s forwards;
}
@keyframes wait2s{
    0% { filter: hue-rotate(1); }
    100% { filter: hue-rotate(0); }
}
.wait3s{
    animation: wait3s 3s forwards;
}
@keyframes wait3s{
    0% { filter: hue-rotate(1); }
    100% { filter: hue-rotate(0); }
}
.fadeOut{
    animation: fadeOut 1.5s forwards;
}
@keyframes fadeOut {
    0% {opacity: 1}
    75% {opacity: 1}
    100% {opacity: 0;}
}
.text_pulse{
    animation: text_pulse 2s infinite;
}
.alert{
    position: fixed;
    left: 10px;
    bottom: 10px;
    /* justify-self: anchor-center; */
    /* left: 50%;
    transform: translateX(-50%); */
    padding: 15px 30px;
    /* margin-bottom: 10px; */
    /* box-shadow: inset 0px 0px 0px 1px #0000001f; */
    /* width: 600px; */
    max-width: 100%;
    border-radius: var(--border_radius);
    box-sizing: border-box;
    text-align: center;
    z-index: 999;
}
.alert > *{
    margin-top: 10px;
}
.alert:empty{
    display: none;
}
.chip{
    scale: 1;
    transform-origin: center;
    font-size: 10px;
    FONT-WEIGHT: BOLD;
    padding: 2px 6px !important;
    border-radius: 5px;
    flex-grow: 0 !important;
    height: min-content !important;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 2px;
    /* align-self: center; */
}
.chip[class*="bg_"]{
    /* box-shadow: 0px 3px 5px -4px #00000094 !important; */
    border: 1px solid #7f7f7f2b !important;
}
.chip i{
    font-size: 10px;
}
.chip:empty{
    display: none;
}
.action_button{
    cursor: pointer;
    min-width: 60px;
    /* min-height: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap_sm);
    border-radius: var(--border_radius);
    white-space: nowrap;

    box-shadow: 0px 4px 4px -5px #999;
    border: 1px solid #00000017;
}
.box{
    padding: var(--padding);
    border-radius: var(--border_radius);
}

/* Cores dos botões */
.action_button.action_add {
    background: var(--cor_light_green);
    color: var(--cor_darker_green);
}
.action_button.action_delete {
    background: var(--cor_red);
    color: var(--cor_dark_red);
}
.action_button.action_list {
    background: var(--cor_light_purple);
    color: var(--cor_dark_purple);
}
.action_button.action_history {
    background: var(--cor_light_purple);
    color: var(--cor_dark_purple);
}
.action_button.action_edit {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
}
.action_button.action_change {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
}
.action_button.action_sincronize {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
}
.action_button.action_registro_profissional {
    background: var(--cor_yellow);
    color: var(--cor_dark_orange);
}

@keyframes text_pulse {
    0% {
        transform: scale(0.8);
        opacity: .8;
        text-shadow: 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.5);
        opacity: 1;
        text-shadow: 0 0 50px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
        text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* TOPO */

.topo_total{
    /* min-height: 100px; */
    width: 100%;
    background: #0c0c0c;
}
.topo_total .topo{
    color: #666;
}

/* FOOTER */

.rodape_total{
    min-height: 50px;
    width: 100%;
    background: #0c0c0c;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    display: none;
}
.rodape_total .rodape{

}
.rodape_total .rodape footer{
    color: #fff;
}

/* BODY FLEX CONTROL */

.body_flex{
    display: flex;
    flex-grow: 1;
    max-height: 100%;
}

.body_flex .menu_lateral{
    /* min-width: 200px; */
    flex: 0 0 auto;
}
.body_flex .conteudo_total{
    flex-grow: 1;
}

/* BODY FLEX > MENU TOTAL */

.body_flex .menu_lateral{
    background: var(--cor_black);
    padding: var(--gap_md);
    overflow: auto;
}
.body_flex .menu_lateral .menu{
    position: sticky;
    top: 0px;     
    margin: 10px 0px;
}
.body_flex {
    .menu_lateral,
    #listar_menus {

        ul {
            display: flex;
            flex-direction: column;
            justify-content: right;
            /* gap: var(--gap_sm); */

            ul {
                /* margin-left: 20px; */
                padding-left: 10px;

                li {
                    a {
                        /* padding: var(--gap_sm) var(--gap_sm); */
                        font-size: 12px;

                        &::before {
                            content: "┣";
                        }

                        &:not(.actived)::before {
                            color: var(--cor_purple)
                        }

                        i {
                            font-size: var(--gap_md);
                            width: 20px;
                        }
                    }

                    &:last-child {
                        a::before {
                            content: "┗";
                        }
                    }
                }
            }
        }

        li {
            /* margin-left: 20px; */
            text-align: right;

            &[data-level="0"] {
                border-bottom: 1px dashed #ffffff10;
                padding: 10px 0px;

                &:last-child {
                    border-bottom: none;
                }
            }

            a {
                padding: var(--gap_sm);
                color: var(--cor_light_gray);
                border-radius: var(--border_radius);
                border-radius: 5px;
                text-align: right;
                transition: background 0.1s;

                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: left;
                /* gap: var(--gap_md); */

                .menu_label {
                    color: var(--cor_light_gray);
                }

                &[href=""] {
                    pointer-events: none;
                }

                &[data-level="0"] {
                }

                &.has_children {
                    padding-right: 25px;
                    position: relative;

                    &::after {
                        font-family: var(--fa-style-family, "Font Awesome 6 Free");
                        font-weight: var(--fa-style, 900);
                        content: var(--fa);
                        --fa: "\f078";
                        scale: 0.8;
                        position: absolute;
                        right: 0px;
                    }
                }

                i {
                    width: 40px;
                    text-align: center;
                }

                &::before {
                    width: 15px;
                    text-align: left;
                }

                &.actived {
                    background: var(--cor_principal);
                    position: relative;
                }

                &:not(.actived):hover {
                    background: #ffffff20;
                }
            }
        }

        nav > ul > li:has(a.actived) {
            /* border-left: 3px solid var(--cor_principal) */
        }
    }
}

#listar_menus{

    a,
    .menu_label{
        color: var(--cor_black) !important;
    }
    li{
        &[data-level="0"] {
            padding: 0px !important;
        }
        a{
            border-radius: 0px !important;
            padding: var(--gap_lg) !important;
            > *{
                font-size: 14px !important;
            }
            &.has_children{
                background: var(--cor_principal) !important;
                color: var(--cor_white) !important;
                .menu_label{
                    color: var(--cor_white) !important;
                }
                &::after{
                    right: 10px !important;
                }
            }
        }
    }
}


/* BODY FLEX > CONTEUDO TOTAL */

.body_flex .conteudo_total{
    /* display: flex;
    justify-content: space-between; */
    /* position: relative; */
    background: #fff;
    padding: 20px;
    overflow: auto;
    /* box-shadow: 0px 0px 10px 0px inset #000; */
}

/* REQUEST STATUS - LOADING */

.request_status{
    position: absolute;
    display: none;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    backdrop-filter: blur(1px);
    /* background: #ffffff80; */
    /* box-shadow: 0px 0px 10px 0px #ffffff; */

    /* text-align: center;
    align-content: center; */
}
body > .request_status{
    position: absolute;
}
.request_status .request_status_container{
    position: fixed;
    /* top: 50%; */
    /* left: 50%; */
    /* justify-self: anchor-center; */
    /* align-self: anchor-center; */
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: var(--gap_sm);

    background: var(--cor_principal);
    background: var(--cor_yellow);
    color: var(--cor_white);
    color: var(--cor_darker_yellow);
    border-radius: var(--border_radius);
    box-shadow: 0px 0px 10px 0px #00000080;
    padding: var(--padding) calc(var(--padding) * 2);
    font-size: 14px;
    transition: 0.3s;
}
.request_status .loading_text{
    color: inherit;
    font-size: inherit;
}
.request_status i{
    /* display: none !important; */
    color: inherit;
    font-size: inherit;
}

/* MODAL */

[id^="modal__"] {
    z-index: 99;
}
[id^="modal__"].center{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #00000056;

    display: flex;
    align-items: center;
    justify-content: center;
    /* backdrop-filter: blur(1.4px); */
}
[id^="modal__"].side{
    display: flex;
    position: fixed;
    right: 0px;
    top: 0px;
    height: 100%;
    background: #fff;
    box-shadow: 0px 0px 40px 0px #00000038;
}
[id^="modal__"].center .modal_container{
    padding: var(--gap_md);
    background: #fff;
    overflow: auto;
    /* max-width: 500px; */
    max-height: 80%;
    max-width: 95%;
    width: fit-content;
    
    /* border-radius: 10px 0px 0px 10px; */
    border-radius: var(--border_radius);
    border: none;
    border: 5px solid #fff;
    border-left: 1px solid #fff;
    box-shadow: 0px 0px 10px 0px #0000008e;
    box-sizing: border-box;
    
}
[id^="modal__"].center .modal_container::-webkit-scrollbar-thumb{
    background-color: #ccc;
    border-radius: var(--border_radius);
}
[id^="modal__"].side .modal_container{
    width: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid #FFF;
    overflow: auto;
    max-height: 100%;
}


/* CHART */
.chartjs{
    /* width: 100% !important;
    height: 100% !important;
    display: block;
    width :100 */
    display: block;
    box-sizing: border-box;
    height: 600px !important;
    /* width: 1200px !important; */
    min-width: 1200px;
    width: 100% !important;
}

/* SWIPER */
.swiper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /* padding: 00px 0px 30px !important; */
  }

.swiper-slide {
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: start;
    box-sizing: border-box;
}

.swiper-slide-visible,
.swiper-slide-active{
    visibility: visible;
}

.swiper-slide img {
    display: block;
    /* width: 100%; */
    max-width: 100%;
    /* height: 100%; */
    object-fit: contain;
    /* object-fit: cover; */
    justify-self: center;
    
    border-radius: var(--border_radius);
    border: none;
    /* border: 1px solid #fff;
    box-shadow: 0px 0px 10px 0px #0000008e;
    background: #eee; */
}

.swiper-button-next, .swiper-button-prev {
    scale: 1;
    margin-top: 0px !important;
    top: 0px !important;
    height: 100% !important;
    box-sizing: border-box;
    width: 30% !important;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: #00000000;
    backdrop-filter: blur(2px);
    transition: 0.3s;
}
.swiper-button-prev {
    left: 0px !important;
}
.swiper-button-next {
    right: 0px !important;
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 0px !important;
}


  /* ICONES */
  
[class*="icon_"]{
    /* background: none !important; */
}
[class*="icon_"]::before{
    background: none !important;
    /* color: #333 !important; */
}

.icon_plano_contratado,
.icon_plano_contratado::before {
    background: var(--cor_light_gray);
    color: var(--cor_black);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f70e";
}
.icon_usuario_pagamento,
.icon_usuario_pagamento::before {
    background: var(--cor_light_green);
    color: var(--cor_darker_green);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\24";
}
.icon_anamnese,
.icon_anamnese::before {
    background: var(--cor_light_red);
    color: var(--cor_dark_red);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f21e";
}
.icon_objetivo,
.icon_objetivo::before {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f11e";
}
.icon_registro_diario,
.icon_registro_diario::before {
    background: var(--cor_light_purple);
    color: var(--cor_dark_purple);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f274";
}
.icon_registro_profssional,
.icon_registro_profssional::before {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f2b9";
}
.icon_planejamento,
.icon_planejamento::before {
    background: var(--cor_light_green);
    color: var(--cor_darker_green);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f201";
}
.icon_mensagem,
.icon_mensagem::before {
    background: var(--cor_light_blue);
    color: var(--cor_darker_blue);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f086";
}
.icon_campeonato,
.icon_campeonato::before {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f091";
}
.icon_campeonato_to_planejamento,
.icon_campeonato_to_planejamento::before {
    background: var(--cor_light_green);
    color: var(--cor_darker_green);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 700);
    content: var(--fa);
    --fa: "\e4c0";
}
.icon_federacao,
.icon_federacao::before {
    background: var(--cor_yellow);
    color: var(--cor_darker_yellow);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: var(--fa);
    --fa: "\f25d";
}
.icon_tag,
.icon_tag::before {
    background: var(--cor_light_purple);
    color: var(--cor_dark_purple);
    
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 700);
    content: var(--fa);
    --fa: "\f02b";
}



/* RESPONSIVE */

.menu_bottom{
    display: none;
}

@media (max-width: 600px){

    :root{
        /* --border_radius: 0px;
        --padding: 8px;
        --gap_sm: 3px;
        --gap_md: 8px;
        --gap_lg: 16px; */
        --menu_bottom_height: 55px;
    }

    .body_flex{
        flex-direction: column;
        & .conteudo_total{
            padding: var(--padding);
            padding-bottom: calc(2 * var(--menu_bottom_height));
        }
        & .menu_lateral{
            display: none;
        }
    }

    .menu_bottom{

        display: block !important;
        position: fixed;
        bottom: 0px;
        box-sizing: border-box;
        width: 100%;
        z-index: 9;

        & ul{
            
            display: flex;
            justify-content: space-around;

            & li {

                flex: 1 1;
                
                & a {
                    
                    background: var(--cor_black);
                    height: var(--menu_bottom_height);
                    /* padding: calc(1 * var(--padding)); */
                    /* padding-bottom: max(var(--padding), env(safe-area-inset-bottom)); */
                    display: flex;
                    flex-direction: column;
                    gap: var(--gap_md);
                    box-sizing: border-box;
                    color: var(--cor_white);
                    align-items: center;
                    justify-content: center;
                    text-align: center;

                    &:hover{
                        
                    }

                    &.actived{
                        background: var(--cor_principal);
                        position: relative;
                    }

                    & i{
                        font-size: 16px;
                    }

                    & .menu_label{
                        font-size: 11px;
                        color: var(--cor_white);
                        /* display: none; */
                    }
                    
                }
                
            }
            
        }
    }

}