
/* CSS Customizado


/* Menus =========================  */
.menu_box_bg{
    z-index: 3000;
    position: fixed;
    top: -50px;
    left: 0px;
    width: 100vw;
    height: calc(100vh + 50px);
    background-color: rgba(0,0,0,0.02);
    display: none;
}
.menu_box_bg_active{
    display: block;
}

.menu_brotherLinks_active{
    position: relative;
    z-index: 3007;
    cursor: pointer;
    text-decoration: underline;
} 

.menu_box{
    pointer-events: none;
    z-index: 3005;
    position: absolute;
    top: 0px;
    left: 285px;
    border: 1px solid #e8e8e8;
    background-color: #ffffff;
    box-sizing: border-box;
    display: block;
    opacity: 0;
    transform: translateY(-50px);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    transition-property: transform, opacity;
    transition-duration: 0.35s;
    transition-timing-function: ease;
    -webkit-transition-property: transform, opacity;
    -webkit-transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
}
 
.menu_box-pointer-events{
    pointer-events: all;
}

.menu_box_active{
    opacity: 1;
    display: block;
    transform: translateY(0px);
}

.menu_box-w-max{
    width: 100vw;
    overflow-x: auto;
}

.menu_box-modoMob{
    top: 40px;
    left: 0px;
    width: 100vw;
    z-index: 10000;
}

.menu_box-modoMob .menu_box_bloco{
    height: calc(100vh - 80px);
    overflow-y: auto;
}


.menu_box-modoMob:after {
    content:"x";
    width:100vw;
    height:30px;
    padding-top: 10px;
    padding-bottom: 36px;
    padding-right: 30px;
    background-color: #f8f8f8;
    position:absolute;
    box-sizing: border-box;
    top:-42px;
    right:00px;
    color:#000;
    font-size: 20px;
    line-height: 28px;
    pointer-events: none;
    text-align:right;
    cursor: pointer;
}

.menu_box_bloco{
    margin-top: 08px;
    margin-bottom: 08px;
    padding-bottom: 4px;
    min-width: 160px;
}

.menu_box ul{
    margin: 0px; 
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
}
 
.menu_box ul li{
    display: flex;
    box-sizing: border-box;
    margin: 0px; 
    padding-left: 30px;
    padding-right: 40px;
    padding-top: 16px;
    padding-bottom: 12px;
    max-height: 100px;
    font-size: 1rem;
    border-bottom: 1px solid #00000008;
    color: #444;
    cursor: pointer;
    align-items: center;
    transition-property: background-color, color, border;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    -webkit-transition-property: background-color, color, border;
    -webkit-transition-duration: 0.15s;
    -webkit-transition-timing-function: linear; 
}

.menu_box ul li:hover{
    background-color: #4089a0;
    color: #fff;
}

.menu_box ul .menu_box_grupo{
    font-size: 13px;
    font-weight: bold;
    padding: 8px !important;
    padding-left: 20px !important;
    padding-top: 20px !important;
    max-height: 50px;
    background-color: #f9f9f9;
    border-bottom: 1px solid transparent;
}

.menu_box ul .menu_box_grupo:hover{
    background-color: #ffffff;
    color: #444;
}


.menu_box ul li a{
    color: #444;
    font-weight: bold;
    font-size: 0.875rem;

} 

.menu_box ul li.inactive{
    opacity: 0.5;
    pointer-events: none;
}
.menu_box ul li.inactive a:link, .menu_box ul li.inactive a:active, .menu_box ul li.inactive a:visited, .menu_box ul li.inactive a:hover{
    opacity: 0.5;
    pointer-events: none;
}
.menu_box ul li.inactive:hover a:link, .menu_box ul li.inactive:hover a:active, .menu_box ul li.inactive:hover a:visited, .menu_box ul li.inactive:hover a:hover{
    opacity: 0.5;
    pointer-events: none;
} 


@media screen And (max-width: 640px) {

    .menu_box ul .menu_box_grupo{
        padding-left: 48px !important;
    }

    .menu_brotherLinks_active{
        z-index: 1;
    }

    .menu_box{
        position: fixed !important;
        top: 60px;
        left: -120%;
        width: 100vw;
        height: calc(100vh - 40px);
        box-sizing: border-box;
        display: block;
        transform: translateY(0px);
        opacity: 0;
        transition-property: left, background-color, color, border;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        -webkit-transition-property: left, background-color, color, border;
        -webkit-transition-duration: 0.5s;
        -webkit-transition-timing-function: ease;
    }


     .menu_box_active{
        opacity: 1;
        left: 0% !important;
    }

    .menu_box:after {
        content: "";
        width:100%;
        height: 57px;
        padding-top: 10px;
        padding-bottom: 36px;
        padding-right: 30px;
        background-color: #f8f8f8;
        position:absolute;
        box-sizing: border-box;
        top:-120px;
        right:0px;
        color:#000;
        font-size: 20px;
        line-height: 28px;
        pointer-events: none;
        text-align:right;
        cursor: pointer;
        opacity: 0;
        background-image: url(/auxiliares/imagens/close.svg);
        background-repeat: no-repeat;
        background-position: center right 25px;
        background-size: 24px;
        transition-property: top, opacity;
        transition-duration: 0.35s;
        transition-delay: 0.5s;
        transition-timing-function: linear;
        -webkit-transition-property: top, opacity;
        -webkit-transition-duration: 0.35s;
        -webkit-transition-delay: 0.5s;
        -webkit-transition-timing-function: linear;
    }

    .menu_box_active:after {
        top:-61px;
        opacity: 1;
    }

    .menu_box ul{
        max-height: 100%;
    }

    .menu_box ul li{
        padding: 16px;
        padding-left: 60px;
        color: #444;
        cursor: pointer;
        text-align: center;
        border-bottom: 1px solid #ccc;
        cursor: default
    }

    .menu_box ul li:last-child{
        border-bottom: 1px solid transparent;
    }


}


/* -------------------- End: Menus  */




/* Dropdown ======================  */
.dropdown{
    position: relative;
    display: inline-block;
    padding: 1px;
    height: 2.4rem;
    background-color: #f8f8f8;
}

.dropdown-absolute{
    position: absolute;
    z-index: 100000;
}

.dropdown-modoMob{
    position: fixed;
    top: 40px;
    left: 0px;
    width: 100vw;
    z-index: 10000;
}

.dropdown-modoMob:after {
    content:"x";
    width:100vw;
    height:30px;
    padding-top: 10px;
    padding-bottom: 36px;
    padding-right: 30px;
    background-color: #f8f8f8;
    position:absolute;
    box-sizing: border-box;
    top:-40px;
    right:00px;
    color:#000;
    font-size: 20px;
    line-height: 28px;
    pointer-events: none;
    text-align:right;
    cursor: pointer;
}

.dropdown-select .dropdown{
    padding: 2px 30px 1px 6px;
}

.dropdown-inactive{
    pointer-events: none;
}

.dropLabel{
    border-radius: 2px;
    border: 1px solid #bbb;
    cursor: pointer;
    padding: 12px;
    padding-right: 34px;
    position: relative;
    font-size: 0.75rem;
    line-height: 1;
    z-index: 22;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition-property: background-color;
    transition-duration: 0.20s;
    transition-timing-function: linear;
    -webkit-transition-property: background-color;
    -webkit-transition-duration: 0.20s;
    -webkit-transition-timing-function: linear;
}

.dropButton{
    display: table;
    line-height: 10px;
    border-radius: 2px;
    border: 1px solid #bbb;
    cursor: pointer;
    padding: 4px;
    position: relative;
    opacity: 0.8;
    z-index: 22;
    box-sizing: border-box;
    transition-property: background-color, opacity;
    transition-duration: 0.20s;
    transition-timing-function: linear;
    -webkit-transition-property: background-color, opacity;
    -webkit-transition-duration: 0.20s;
    -webkit-transition-timing-function: linear;
}
.dropButton:hover{
    opacity: 1;
}

.dropButton img{
    width: 28px;
    pointer-events: none;
}





.dropdown-bgClick{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0vw;
    height: 0vh;
    z-index: 20;
    pointer-events: none;
    background-color: rgba(0,0,0,0.01);
}

.dropdown-bgClick-active{
    width: 100vw;
    height: 100vh;
    pointer-events: all;
}

.dropLeft{
    right: 0px;
    left: auto;
}
.dropBottom{
    position: absolute;
    bottom: 2.4rem;
    top: auto !important;
}

.dropLeftForced{
    right: 0px;
    left: auto;
}
.dropBottomForced{
    bottom: 20px;
    top: auto;
}

.dropdown-Opened{
    max-height: 360px;
    opacity: 1;
}

.dropdown-Opened ~ .dropLabel, .dropdown-Opened ~ .dropButton{
    border: 1px solid transparent;
    z-index: 101;
}

.dropDownScroll{
    position: absolute;
    max-height: 0px;
    max-width: 0px;
    opacity: 0;
    top: 0px;
    overflow: hidden;
    padding-top: 40px;
    box-sizing: border-box;
    background-color: #e0e0e0;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    transition-property: opacity, max-height;
    transition-duration: 0.20s;
    transition-timing-function: linear;
    -webkit-transition-property: opacity, max-height;
    -webkit-transition-duration: 0.20s;
    -webkit-transition-timing-function: linear;
}

.dropdown-Opened .dropDownScroll{
    opacity: 1;
    max-height: 300px;
    max-width: 400px;
    z-index: 100;
}

  
.dropdown-modoMob .dropdown-Opened .dropDownScroll{
    opacity: 1;
    height: calc(100vh - 48px);
    max-height: calc(100vh - 48px);
    width: 100vw;
    max-width: 100vw;
    z-index: 100;
    top: 8px;
    padding-top: 44px;
    overflow-y: auto;
}

.dropdown-modoMob .dropdown-Opened .dropDownScroll ul{
    width: 100%;
    max-width: 100%;
}

.dropdown-modoMob .dropdown-Opened .dropDownScroll li{
    padding-left: 40px;
}

.dropdown-modoMob .dropLabel, .dropdown-modoMob .dropButton{
    padding-left: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.dropDownGroup{
    margin-left: 0px;
    padding-left: 0px;
    margin-bottom: 0px;
    min-width: 140px;
}

.dropdown-content ul{
    padding: 0px 0px 0px 0px;
    margin-top: 0px;
    overflow: hidden;
    overflow-y: auto;
    max-height: 260px;
    width: max-content;
    max-width: 320px;
    background-color: #f8f8f8;
}

.dropdown-content ul li{
    padding: 18px 12px 18px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    opacity: 0.8;
    cursor: pointer;
    display: flex;
    max-width: 300px;
    position: relative;
    line-height: 1.4;
    transition-property: background-color, opacity;
    transition-duration: 0.20s;
    transition-timing-function: linear;
    -webkit-transition-property: background-color, opacity;
    -webkit-transition-duration: 0.20s;
    -webkit-transition-timing-function: linear;
}
.dropdown-content ul li:hover{
    opacity: 1;
    background-color: rgba(0,0,0,0.1);
}

.dropdown-content ul li:last-child{
    border-bottom: 0px solid transparent;
}
.dropdown-content ul .active{
    background-color: #26515e !important;
    color: #fff;
}

.dropdown_icon{
    display: inline-block;
    margin-right: 8px;
    min-width: 20px;
    width: 20px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 18px;
    transition-property: opacity, filter;
    transition-duration: 0.20s;
    transition-timing-function: linear;
    -webkit-transition-property: opacity, filter;
    -webkit-transition-duration: 0.20s;
    -webkit-transition-timing-function: linear;
}

.dropdown-arrow{
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    display: none;
    z-index: 1;
    cursor: pointer;
}

.dropdown-select .dropdown-arrow{
    display: block;
}

.dropdown-arrow img{
    position: absolute;
    top: 4px;
    right: 5px;
    z-index: 1;
    transition-property: transform;
    transition-duration: 0.20s;
    transition-timing-function: linear;
    -webkit-transition-property: transform;
    -webkit-transition-duration: 0.20s;
    -webkit-transition-timing-function: linear;
}

.dropdown-Opened ~ .dropdown-arrow img{
    transform: rotate(180deg);
}

.dropDownBody{
    box-sizing: border-box;
    padding: 10px 10px 20px 10px;
    min-width: 280px;
    max-height: 260px;
    overflow-y: auto;
}





@media screen And (max-width: 640px) {

    .dropdown-Active{
        position: fixed;
        top: 40px;
        left: 0px;
        width: 100vw;
        z-index: 10000;
    }

    .dropdown-Active:after {
        content:"x";
        width:100vw;
        height:30px;
        padding-top: 10px;
        padding-bottom: 36px;
        padding-right: 30px;
        background-color: #f8f8f8;
        position:absolute;
        box-sizing: border-box;
        top:-40px;
        right:00px;
        color:#000;
        font-size: 20px;
        line-height: 28px;
        pointer-events: none;
        text-align:right;
        cursor: pointer;
    }

    .dropdown-Active .dropdown-Opened .dropDownScroll{
        opacity: 1;
        height: calc(100vh - 48px);
        max-height: calc(100vh - 48px);
        width: 100vw;
        max-width: 100vw;
        z-index: 100;
        top: 8px;
        padding-top: 44px;
        overflow-y: auto;
    }
    
    .dropdown-Active .dropdown-Opened .dropDownScroll ul{
        width: 100%;
        max-width: 100%;
    }
    
    .dropdown-Active .dropdown-Opened .dropDownScroll li{
        padding-left: 40px;
    }
    
    .dropdown-Active .dropLabel, .dropdown-Active .dropButton{
        padding-left: 40px;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 1rem;
        font-weight: bold;
    }

    .dropdown-Active .dropLeft{
        right: auto;
        bottom: auto;
        left: 0px;
        top: 0px;
    }
    .dropdown-Active .dropBottom{
        right: auto;
        bottom: auto;
        left: 0px;
        top: 0px;
    }


}

/* ----------------- End: Dropdown  */






