<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* body::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    z-index: 1111111;
    display: none;
} */

#lateral_menu.active {
}
#lateral_menu.active .lateral-menu::-webkit-scrollbar {
    width: 4px;
}
#lateral_menu.active .lateral-menu::-webkit-scrollbar-track {
    background-color: #ccccccd5 !important;
}
#lateral_menu.active .lateral-menu::-webkit-scrollbar-thumb {
    background: var(--color-primary) !important;
    border-radius: 10%;
}

/* .overlay_menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99999999;
    position: fixed;
} */

.menu-burger {
    width: 2.5rem;
    height: 1.6rem;
    z-index: 20;
    display: none;
    justify-content: space-around;
    flex-flow: column nowrap;
    position: relative;
    margin-left: 5px;
    cursor: pointer;
}
.menu-burger div {
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 30px;
    transform-origin: 3.5px;
    transition: all 0.3s linear;
    background-color: #fff;
}
.menu-burger div:nth-child(1) {
    transform: rotate(0);
    top: 0;
}
.menu-burger div:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    width: 1.7rem;
}
.menu-burger div:nth-child(3) {
    transform: rotate(0);
    top: 20px;
}
.menu-burger.active div:nth-child(1) {
    transform: rotate(45deg);
}
.menu-burger.active div:nth-child(2) {
    transform: translateX(100%);
    opacity: 0;
    width: 2rem;
}
.menu-burger.active div:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
}
#lateral_menu.active ~ .body-container {
    opacity: 0.5;
}
#lateral_menu.active {
    border-radius: 10px;
    -webkit-transform: translateX(-20px);
    height: 80vh;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.56);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.56);
    -webkit-overflow-scrolling: touch !important;
    white-space: nowrap !important;
}
#lateral_menu.active .lateral-menu {
    width: inherit !important;
    height: 100%;
}
@supports (-webkit-touch-callout: none) {
    _::-webkit-full-page-media,
    _:future,
    #lateral_menu.active {
        height: 60vh;
        white-space: nowrap !important;
        overflow: scroll !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/*
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    _::-webkit-full-page-media,
    _:future,
    #lateral_menu.active {
        height: 50vh;
    }
} */

@media only screen and (min-width: 900px) {
    #lateral_menu li a[href^="/showaccount"] {
        display: none;
    }
}
@media only screen and (max-width: 900px) {
    #lateral_menu {
        height: 80vh;
        z-index: 20;
        display: flex;
        flex-direction: column;
        top: 100px;
        position: fixed !important;
        margin: 0;
        right: 0;
        transform: translateX(100%);
        -webkit-transition: all 0.25s linear;
        -moz-transition: all 0.25s linear;
        -ms-transition: all 0.25s linear;
        transition: all 0.25s linear;
    }
    /* .lateral-menu {
        height: auto !important;
    } */
    #lateral_menu .lateral-menu:hover li a {
        /* padding-left: 20px; */
    }
    #lateral_menu li:nth-child(1) {
        display: none;
    }

    #lateral_menu ul {
    }
    #lateral_menu li a {
        height: 100px;
        border-left: none !important;
        border-width: 1px;
    }
    /* .lateral-menu li {
        display: flex;
        align-items: center;
        margin: 0;
        width: 100%;
        padding: 10px;
        border-right: 0;
        border-bottom: 3px solid #d6a100;
        justify-content: left;
        transition: padding .2s linear;
    } */
    #lateral_menu li.active a {
        border-left: 4px solid var(--color-primary);
        padding-left: 20px;
    }
    /* .lateral-menu li.active:before {
        content: "";
        width: 10px;
        height: 10px;
        margin-right: 10px;
        background-color: var(--blue);
        color: var(--blue);
        border-radius: 50%;
    } */
    .menu-burger {
        display: flex;
    }
}
@media only screen and (max-width: 500px) {
}
</pre></body></html>