﻿.drawer-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100svh - 80px);
    bottom: 80px;
    z-index: 9998;
    background: white;
    transition: all 1s;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.drawer-top-menu {
    width: 100%;
    background: white;
    overflow: auto;
    display: flex;
    gap: 8px;
    padding: 24px 16px;
}

.drawer-top-menu-item {
    padding: 9px 16px;
    border-radius: 8px;
    width: auto;
    border: 1px solid #F4F4F4;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    color: #2C3E50;
    background-color: transparent;
}

    .drawer-top-menu-item.active {
        border: 2px solid var(--tertiary);
        color: var(--tertiary);
        background-color: #FFC8C20D;
    }

.drawer-content {
    display: flex;
    height: calc(100% - 87px);
}

.drawer-content-right {
    flex: 3;
    height: 100%;
    overflow: auto;
}

.drawer-content-left {
    padding: 0 16px;
    flex: 7;
    background: white;
    height: 100%;
}

.drawer-right-menu-item {
    width: 100%;
    color: #2C3E50;
    padding: 15px 12px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    outline: none;
}

    .drawer-right-menu-item.active {
        background-color: white !important;
        color: var(--tertiary);
    }

.drawer-left-menu-item a {
    border: none;
    outline: none;
    width: 100%;
    font-size: 12px;
    color: #2C3E50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 2px solid #EEEEEE;
    background: white;
}

.drawer-left-menu-text {
    flex: 0 0 66%;
}

.drawer-left-menu-icon {
    flex: 0 0 34%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.drawer-left-menu-icon img {
        width: 16px;
    }

.drawer-left-menu-item img {
    width: 16px;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}


    .dropdown-content.open {
        max-height: 500px;
    }

    .dropdown-content ul {
        list-style: none;
        padding: 8px 16px;
        margin: 0;
    }

    .dropdown-content li {
        padding: 6px;
        border-bottom: 1px solid #FFFFFF;
        font-size: 12px;
        background-color: var(--primary);
    }

.dropdown-btn i {
    transition: transform 0.3s ease;
}

.trnsform-100 {
    transform: translateX(100%);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9997;
    pointer-events: none;
    display: none;
}

.fa-rotate-270 {
    transform: rotate(-90deg);
}
