#mobile_menu .fl-html {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding-right: 20px;
}

.mobile_logo .fl-photo {
    z-index: 101;
}

.nav_buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.nav_buttons a {
    width: 2.1875em;
    height: 2.375em;
    border-radius: 3.5625em;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.lang_switch {
    z-index: 101;
    border-radius: 0.25rem;
    /* background-color: #FDC300; */
    /* background-color: rgb(250,250,252); */
}

a.lang_switch::before {
    font: var(--fa-font-light);
    content: "\f0ac";
    font-size: 1.5rem;
    /* background-color: currentColor; */
}

#languagePopup .dialog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 1rem;
}
#languagePopup a {
    display: flex;
    padding: 1rem 1.5rem;
    background-color: rgb(250, 250, 252);
    border-radius: 0.25rem;
    width: 100%;
    height: fit-content;
    align-items: center;
    flex-direction: row;
    justify-content: start;
    gap: 1rem;
}

#languagePopup a img {
    width: 1.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

a.portal::after {
    display: block;
    width: 1em;
    height: 1em;
    color: currentColor;
    content: "\f105";
    font: var(--fa-font-light);
}

a.hamburger {
    z-index: 101;
    position: relative;
    flex-direction: column;
    gap: 0.4em;

    transition: gap 250ms ease-out;
}

a.hamburger span {
    --delay: 0ms;
    --delay-out: 50ms;
    display: block;
    background-color: black;
    height: 2px;
    width: 1.5em;
    transform-origin: center;
    transition:
        rotate 250ms ease-out var(--delay),
        scale 250ms ease-in-out var(--delay-out),
        transform 250ms ease-out var(--delay),
        translate 250ms ease-in-out var(--delay-out);
}

a.hamburger span:nth-child(3) {
    transform: rotate(-180deg);
}

body:has(.mobile_mega_menu.active) {
    overflow-y: hidden;
}

body:has(.mobile_mega_menu.active) a.hamburger {
    gap: 0;
}

body:has(.mobile_mega_menu.active) a.hamburger span {
    --delay: 250ms;
    --delay-out: 0ms;
    rotate: -135deg;
}

body:has(.mobile_mega_menu.active) a.hamburger span:nth-child(1) {
    translate: 0 100%;
}

body:has(.mobile_mega_menu.active) a.hamburger span:nth-child(2) {
    scale: 0 100%;
}

body:has(.mobile_mega_menu.active) a.hamburger span:nth-child(3) {
    transform: rotate(-90deg);
    translate: 0 -100%;
}

.mobile_mega_menu {
    width: 100vw;
    height: 100dvh;
    padding-top: 80px;
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: white;
}

.mobile_mega_menu,
.mobile_mega_menu .mobile_sub_menu {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.mobile_mega_menu .mobile_sub_menu {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 16px;

    border-radius: 10px;
    overflow-y: auto;
}

.mobile_mega_menu nav.menu {
    position: relative;
    padding: 16px;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    overflow: clip;

    border-radius: 10px;
    overflow-y: auto;
}

.mobile_mega_menu nav.menu a {
    text-decoration: none;
    color: var(--gh-dark-blue);
    background-color: var(--gh-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 1em 0.5em 1em;
}

.mobile_mega_menu .menu .hide_title {
    display: none;
}

.mobile_mega_menu nav.menu a.has_children::after {
    font-family: "Material Symbols Outlined";
    content: "\e315";
    font-weight: 100;
    font-size: 2rem;
    width: 0.8em;
    height: 0.8em;
    color: currentColor;
}

.mobile_mega_menu nav.menu a.menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1c1c1c;
    background-color: #fdc300;
    font-weight: 700;
    border-radius: 50px;
}
.mobile_mega_menu nav.menu a.menu-button.login {
    margin-top: auto;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    background-color: white;
}

.mobile_mega_menu nav.menu .menu_heading {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    font-weight: 600;
    font-size: 20px;
    padding: 0.9em 0.6em;
    justify-content: flex-start;
}

.mobile_mega_menu .mobile_sub_menu a.back_button {
    color: #4d4fa2;
    justify-content: flex-start;
    align-items: center;
}
.mobile_mega_menu .back_button::before {
    font-family: "Material Symbols Outlined";
    content: "\ef7d";
    font-weight: 100;
    font-size: 2rem;
    color: currentColor;
}

.mobile_mega_menu .menu_header {
    padding-inline: 10px;
}

.mobile_mega_menu .menu_header .button_wrapper {
    margin-bottom: 10px;
}

.mobile_mega_menu .menu_header .button {
    flex-grow: 1;
}

.mobile_mega_menu .menu_header .button_text {
    justify-content: center;
}

/* .mobile_mega_menu .menu_header input{
    background-color: var(--ag-white);
    border: 1px solid var(--ag-white-dark);
    color: var(--ag-deepblue);
    border-radius: 8px;
    padding: .75em 1em; font-size: 18px;
} */

.mobile_mega_menu .menu_header input::placeholder {
    color: var(--ag-deepblue);
}

.mobile_mega_menu .menu_footer {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0 10px 10px 10px;
}

#mobile_menu .mobile_mega_menu .menu_footer .button_wrapper {
    flex-direction: column;
    align-items: flex-start;
}

#mobile_menu .mobile_mega_menu .menu_footer .button {
    width: fit-content;
    font-size: 14px;
    padding: 0.25em 0.5em;

    background-color: transparent;
    font-weight: 300;
}

#mobile_menu .mobile_mega_menu .menu_footer .button:hover {
    background-color: var(--ag-white);
}

#mobile_menu .mobile_mega_menu .menu_footer .button:hover .button_text {
    color: var(--ag-deepblue);
}

#mobile_menu .mobile_mega_menu .menu_footer .button_text::before {
    content: "";
    width: 1.25em;
    height: 1.25em;
    background-color: var(--ag-babyblue);
}

#mobile_menu .MM_CTA {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    isolation: isolate;
    color: white;
    font-weight: 600;
    width: 100%;
    height: fit-content;
    margin-top: auto;
    padding: 1.5em;
    border-radius: 10px;
    background: linear-gradient(90deg, #732693 -42.36%, #332783 100%);
}

#mobile_menu .MM_CTA::before {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
    inset: 0;
    background-image: url(/wp-content/uploads/2024/05/Group-39255.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

#mobile_menu .MM_CTA .cta_title {
    font-size: 22px;
    line-height: 1.2;
}
#mobile_menu .MM_CTA .cta_title b {
    font-weight: 700;
}
#mobile_menu .MM_CTA a {
    margin-top: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: unset;
    color: white;
    border-radius: 5px;
    background: #5c3d95;
    transition: opacity 300ms ease-in-out;
}

#mobile_menu .MM_CTA a span {
    color: inherit;
}

#mobile_menu .block_item {
    flex-direction: column;
    align-items: flex-start;
}

#mobile_menu .block_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#mobile_menu .block_item .title_wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

#mobile_menu .block_item .icon {
    background-color: #fff;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}

#mobile_menu .portal-btn {
    background-color: #302682;
    border-radius: 100%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 10px;
    border-radius: 100%;
    transition: all 250ms ease-in-out;
}

#mobile_menu .shop-btn {
    background-color: #c2c5f8;
    border-radius: 100%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 10px;
    margin-inline: 10px;
    transition: all 250ms ease-in-out;
}

#mobile_menu .block_item .description {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    width: 100%;
    font-size: 12px;
    line-height: 1.4;
    color: #1c1c1c;
}

.mobile_mega_menu .pk-header-ctas{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: auto;

}

.mobile_mega_menu .pk-header-ctas a.pk-login-btn,
.mobile_mega_menu .pk-header-ctas .cartpops-cart__container{
    background-color: #302682;
    border-radius: 100%;
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    transition: opacity 250ms ease-in-out;
}

.mobile_mega_menu .pk-header-ctas a.pk-login-btn:hover,
.mobile_mega_menu .pk-header-ctas .cartpops-cart__container:hover{
opacity: 0.7;
}

.mobile_mega_menu .pk-header-ctas .cartpops-cart__wrapper{
	width: 100%;
}

.mobile_mega_menu  .pk-header-ctas .cartpops-cart__container {
	width: 100%;
	background:#c2c5f8;
}


@media only screen and (max-width: 767px) {
}
