/* CSS for menu in popup */
/* Main items */
.popup-menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0;
}.popup-menu ul > li {
    position: relative;
}.popup-menu .menu > li > a {
    transition: .3s;
    color: #FFFFFF;
    font-family: "Cabinet Grotesk", Sans-serif;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 31px;
}.popup-menu ul > li > a:hover {
    color: #000;
}
.popup-menu ul > li > .sub-menu-icon {
    position: absolute;
    top: 3.5px;
    right: -40px;
    cursor: pointer;
}.popup-menu ul > li > .sub-menu-icon img {
    transition: .3s;
    transform: rotate(180deg);
}.popup-menu ul > li > .sub-menu-icon.sub-menu-active img {
    transform: rotate(0deg);
}
.popup-menu .highlitghted-link a {
    padding: 10px 20px;
    background-color: #000;
    border-radius: 6px;
}.popup-menu .highlitghted-link a:hover {
    background-color: #fff;
}
@media (max-width: 767px) {
    .popup-menu ul {
        align-items: flex-start;
        justify-content: space-around;
        gap: 40px;
    }.popup-menu .menu > li > a {
        font-size: 20px;
        font-weight: 900;
        line-height: 30px;
    }
    .popup-menu .highlitghted-link a {
        padding: 10px 20px;
        background-color: #000;
        border-radius: 6px;
    }.popup-menu .highlitghted-link a:hover {
        background-color: #fff;
    }
}
/* Submenu */
.popup-menu .sub-menu {
    padding-top: 8px;
    gap: 8px;
}.popup-menu .sub-menu > li > a {
    transition: .3s;
    font-family: "Manrope", Sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    color: #fff;
}
@media (max-width: 767px) {
    .popup-menu .sub-menu > li > a {
        font-size: 16px;
        line-height: 24px;
    }
}
/* Fix for when the submenu is larger than its parent */
.popup-menu .sub-menu > li {
    position: relative;
    min-height: 30px;
    width: 100%;
}.popup-menu .sub-menu > li > a {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
}
@media (max-width: 767px) {
    .popup-menu .sub-menu > li {
        min-height: 24px;
    }.popup-menu .sub-menu > li > a {
        left: 0;
        transform: translateX(0);
    }
}