
.acceso_rapido.menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

ul.menu > li {
    margin: 10px 0px 20px 0px;
    position: relative;
}
ul.menu > li span {
    position: absolute;
    top: 4px;
    left: -35px;
}

ul.menu li a, 
ul.menu li p {
    font-size: 1rem!important;
    text-transform: capitalize!important;
}

ul.menu li a {
    text-decoration: none!important;
    color: #212529;
}

ul.menu li .option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.menu li .option p {
    margin: 0px;
    font-weight: 600;
}


/* SUBMENU */
li.active .option i {
    color: #a3a3a3;
    transform: rotate(180deg);
    transition-duration: 200ms;
}
ul.submenu {
    display: none;
}
li.active > ul.submenu {
    display: block;
}
ul.submenu li {
    margin: 4px 0px;
    padding: 5px;
    border-radius: 4px;
}
ul.submenu li a {
    color: #676767!important;
    display: block;
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    border-radius: 4px;
    position: relative;
}
span.notificacion {
    background-color: #2a3b65;
    color: white;
    padding: 0px 5px 2px 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    top: 6px!important;
    left: unset!important;
    right: 0;
}

ul.menu li .submenu-title {
    font-weight: bold;
    margin-top: 10px;
}

ul.menu li ul.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 10px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

ul.menu li:hover > ul.submenu {
    display: block;
}

.dropdown__wrapper.show {
    display: block;
}

@media (max-width: 768px) {
    .menu__wrapper {
        overflow-x: auto;
    }

    .menu-button {
        width: 100%;
        text-align: left;
    }

    .dropdown__wrapper {
        position: static;
    }

    .dropdown {
        position: static;
    }

    ul.menu li ul.submenu {
        position: static;
        margin-left: 0;
        box-shadow: none;
    }
}

.drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease, display 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.drawer.open {
    display: block;
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #33438a;
    color: #fff;
}

.drawer-content {
    padding: 1rem;
    overflow-y: auto;
}

.drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-submenu {
    display: none;
    padding-left: 1rem;
    transition: max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.drawer-submenu.show {
    display: block;
    max-height: 500px; /* Ajustar según sea necesario */
}

.drawer-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.drawer-button svg {
    transition: transform 0.3s ease;
}

.drawer-button.active svg {
    transform: rotate(180deg);
}

.accordion-button {
    text-transform: capitalize!important;
}