/* TODO: Review => Refactor CSS classes */

.ahz-custom-desktop-menu-class {
    display: flex;
    justify-content: space-between;
}

.ahz-custom-desktop-menu-class div {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}

.ahz-custom-desktop-menu-class a {
    color: unset;
    text-decoration: none !important;
}

.ahz-desktop-menu-header {
    height: 50px;
}

.ahz-desktop-menu-item-has-children:hover .ahz-desktop-submenu,
.ahz-desktop-submenu:hover {
    display: flex;
}

.ahz-desktop-menu-item-has-children:hover .ahz-desktop-menu-header {
    color: #e10019 !important;
}

.ahz-desktop-menu-header:hover,
.ahz-desktop-menu-header a:hover {
    color: #e10019 !important;
    cursor: pointer;
}

.ahz-desktop-submenu {
    display: none;
    position: absolute;
    left: -28px;
    top: 50px;
    z-index: 10000;
    height: 360px;
    width: calc(100% + 58px);
    background-color: black;
    padding: 1rem 3rem 1rem calc(3rem + 28px);
    pointer-events: auto;
}

.ahz-desktop-submenu-header {
    margin-bottom: 1rem;
}

.ahz-desktop-submenu a:hover {
    color: #e10019 !important;
}

.ahz-desktop-submenu-item {
    color: white;
    margin-right: 3rem;
}

.ahz-desktop-sub--sub-menu-item a {
    font-weight: normal !important;
}

@media (max-width: 992px) {
    .ahz-custom-desktop-menu-class div {
        font-size: 14px !important;
    }
}

@media (max-width: 929px) {
    #ahz-custom-desktop-menu {
        display: none;
    }
}
