.dropdown-section {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-bg-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 10;
    display: none;
}

.dropdown-section h4 {
    font-weight: bold;
    margin-bottom: 5px;
}

.section-title {
    display: flex;
    border-bottom: 1px solid #E5E5E5;
    padding: 10px;
    font-size: 12px;
}

.custom-mobil-menu {
    display: none;
    position: relative;
}

.mobil-menu-btn {
    z-index: 99;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    width: 70px;
    height: 40px;
    cursor: pointer;
    align-content: center;
    text-align: center;
}

.mbm-toggled {
    background: #000;
    color: #fff;
}

.mbm-toggled > p {
    color: #fff !important;
}

.mobile-dropdown {
    background: #F7F7F1;
    padding: 5px;
    margin: 10px;
    border-radius: 7px;
}

#myDropdown > a {
    padding: 3px;
    margin: 3px 10px;
    border-bottom: 1px solid #E5E5E5;
}

#myDropdown > a > img {
    opacity: 0.4;
}

.mobile-dropdown-content {
    position: absolute;
    background: #fff;
    display: none;
    flex-direction: column;
    width: 250px;
    right: 10px;
    top: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    z-index: 100;
}

.mobile-dropdown-content a {
    padding: 8px 10px 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.active .menu-name {
    position: relative;
    padding-left: 20px;
}

.active .menu-name:before {
    content: url("./../images/right-arrow.svg");
    position: absolute;
    left: 0;
}

.custom-mobil-menu p {
    margin: 0;
    color: var(--font-primary-color);
}

.mbm-visible {
    display: flex !important;
}

.mobile-user-dropbtn,
.mobile-user-dropbtn:hover,
.mobile-user-dropbtn:focus {
    color: var(--font-primary-color);
    padding: 4px 16px 4px 8px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    gap: 10px;
    word-wrap: break-word;
    font-size: var(--text-size-small);
    font-weight: 400;
    line-height: 13.2px;
    text-align: left;
}

.mobile-user-dropbtn > span {
    width: 100%;
    margin-top: 6px;
}

.mobile-user-dropbtn-icon {
    transform: rotate(180deg) translateY(-3px);
}

.mobile-user-dropbtn.active .mobile-user-dropbtn-icon {
    transform: none !important;
}

@media (max-width: 980px) {
    .page-header .navigation {
        display: none !important;
    }

    .user-dropbtn {
        display: none;
    }

    .custom-mobil-menu {
        display: flex;
    }
}
