.custom-menu {
    position: absolute;
    top: 131.5px;
    left: 50%;
    width: var(--page-width);
    padding: 0 50px;
    transform: translateX(-50%);
    z-index: 0;
}

.custom-menu-opener {
    background-color: rgb(var(--color-button));
    background-image: var(--color-button-gradient, none);
    padding: 10px 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

.custom-menu-opener > span {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 12.5px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.2s;
}

.custom-menu.opened .custom-menu-opener > span {
    transform: rotate(180deg);
}

.custom-menu.opened .custom-menu-dropdown {
    display: block !important;
}

.custom-menu-dropdown {
    position: absolute;
    top: 212.5px;
    left: 50%;
    right: 100px;
    background: #fff;
    width: 80%;
    transform: translateX(-50%);
    display: none;
    border-radius: 0 0 5px 5px;
    border: 0.1rem solid rgba(var(--color-foreground), 0.08);
    border-top: none;
    overflow: hidden;
    z-index: 10000;
}

.custom-menu-cover {
    display: none;
    background: hsl(0deg 0% 0% / 25%);
    position: absolute;
    top: 212.5px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.custom-menu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-menu-dropdown ul li a {
    display: block;
    text-decoration: none;
    color: #020406;
    font-weight: 400;
    font-size: 14px;
    padding: 5px 10px;
}

.custom-menu-dropdown ul li a.active {
    font-weight: 500;
    background: #fff;
    margin-right: -10px;
    border-radius: 5px 0 0 5px;
    color: #2e6191;
}

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

.custom-menu-categories {
    background: #e7f3ff;
    padding: 5px;
    width: 25%;
}

.custom-menu-subcategories {
    width: 75%;
    padding: 10px;
    overflow-y: auto;
}

.submenu-wrapper {
    width: 100%;
    height: 100%;
    align-items: stretch;
    display: flex;
    flex-shrink: 0;
    flex-grow: 1;
}

.submenu-individuals,
.submenu-block {
    display: block;
    height: auto;
}

.submenu-individuals {
    flex: 0 0 calc(25% - 15px);
    height: 100%;
    padding-right: 15px;
}

.submenu-individuals li a {
    color: #171717 !important;
    font-size: 12px !important;
    padding: 2.5px 10px !important;
}

.submenu-block {
    flex: 1;
}

.submenu-wrapper.submenu-wrapper-individuals .submenu-block {
    border-left: 1px solid #d2d9e0;
    padding-left: 15px;
}

.submenu-wrapper.submenu-wrapper-individuals .submenu-block[data-depth="0"] > li {
    width: 33.3%;
}

.submenu-block[data-depth="0"] > li {
    display: inline-grid;
    width: 25%;
    padding-right: 10px;
    margin-bottom: 25px;
}

.submenu-block[data-depth="0"] > li > a {
    font-weight: 700;
    border-bottom: 1px solid #d2d9e0;
    padding: 5px;
}

.submenu-block [data-depth="1"] > li > a {
    color: #666c73;
    font-size: 12px;
    padding: 2.5px 5px;
}

.submenu-block [data-depth="1"] > li > a.view-more {
    font-style: italic;
    color: #454d56;
}

.custom-menu-subs .custom-menu-return {
    display: none;
    width: 100%;
    background: #eff3f7;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px;
    margin-bottom: 15px;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

@media only screen and (max-width: 1360px) {
    .custom-menu {
        left: 0;
        transform: unset;
    }
    .custom-menu-dropdown {
        width: 100%;
    }
}

@media only screen and (max-width: 990px) {
    .custom-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: unset;
        padding: 0 30px;
        width: 100%;
    }
    .custom-menu-opener {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        padding: 5px 12.5px;
    }

    .custom-menu-dropdown {
        top: 205px;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        border: none;
        border-radius: 0;
    }
    .custom-menu-row {
        position: relative;
        display: block;
    }
    .custom-menu-categories,
    .custom-menu-subcategories {
        display: block;
        height: auto !important;
        width: 100%;
    }

    .custom-menu-categories {
        background: #fff;
    }

    .submenu-block[data-depth="0"] > li {
        display: block;
        width: 100% !important;
        padding: 0;
    }

    .submenu-wrapper {
        align-items: unset;
        display: block;
        height: calc(100vh - 300px);
        overflow-y: scroll;
    }

    .submenu-individuals,
    .submenu-block {
        padding: 0 !important;
    }

    .submenu-individuals {
        margin-bottom: 15px;
        height: auto;
    }

    .submenu-wrapper.submenu-wrapper-individuals .submenu-block {
        border: none;
    }

    .custom-menu-subs .custom-menu-return {
        display: none;
    }
    
    .collection-subcategories ul {
        height: 185px;
        overflow-y: scroll;
    }
}

.collection-subcategories {
    margin-top: 25px!important;
}

.collection-subcategories span {
    display: block;
    text-transform: uppercase;
    font-size: var(--font-size-primary, 1.6rem);
    padding: 0 2rem 0 0;
    font-weight: 700;
}

.collection-subcategories ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.collection-subcategories ul li a {
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 2.5px 0;
    color: #262626;
}

.collection-subcategories ul li a i {
    font-style: normal;
    font-weight: 400;
    color: #ababab;
}