﻿.drawer-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100svh - 68px);
    z-index: 100000;
    background: white;
    transition:all 1s;
}

.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-right-menu-item a i {
            font-size: 16px;
            color: #2C3E50;
        }

.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%);
}

.fa-rotate-270 {
    transform: rotate(-90deg);
}