 /* Non utility CSS */

 /**
 * Shortcode : [mobile_menu]
 */
#mobile-menu-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
    padding: 0;
    border: none;
    background-color: var(--color-key-value);
    z-index: 9999;
    transform: translateX(100%) scale(0.9) rotateY(-15deg);
    opacity: 0;
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, scale 0.4s ease;
    perspective: 1000px;
}

#mobile-menu-dialog.show {
    transform: translateX(0) scale(1) rotateY(0deg);
    opacity: 1;
}

#mobile-menu-dialog.closing {
    transform: scale(0.9);
    opacity: 0;
    transform-origin: center center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#mobile-menu-dialog.closing * {
    transition: none !important;
}

#mobile-menu-dialog-header {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px;
    overflow: hidden;
}

#mobile-menu-dialog-header > * {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#mobile-menu-dialog.show #mobile-menu-dialog-header > *:nth-child(1) {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.2s;
}

#mobile-menu-dialog.show #mobile-menu-dialog-header > *:nth-child(2) {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    transition-delay: 0.25s;
}

#mobile-menu-dialog-header > *:nth-child(1) {
    transform: translateX(-50px) scale(0.8);
}

#mobile-menu-dialog-header > *:nth-child(2) {
    transform: translateX(50px) rotate(180deg) scale(0.8);
}

#mobile-menu-dialog-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--color-key-value);
    z-index: -1;
}

#mobile-menu-open-button, #mobile-menu-close-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-list-wrapper {
    padding: 25px;
}

#mobile-menu-logo {
    max-width: 60%;
    margin-top: -5px;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-list a {
    color: var(--color-key-value);
    font-size: 1.5rem;
    font-family: "Nicholas";
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-100px) rotate(-10deg) scale(0.8);
    filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left center;
}

#mobile-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    margin-top: 20px;
    background-color: var(--color-key-value);
    color: var(--color-key-value);
    font-size: var(--text-300);
    font-family: "Nicholas";
    font-weight: 700;
    text-decoration: none;
    border-radius: 80px;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#mobile-menu-dialog.show .mobile-menu-list a {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    filter: blur(0);
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(1) {
    transition-delay: 0.3s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(2) {
    transition-delay: 0.35s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(3) {
    transition-delay: 0.4s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(4) {
    transition-delay: 0.45s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(5) {
    transition-delay: 0.5s;
}

#mobile-menu-dialog.show .mobile-menu-list a:nth-child(6) {
    transition-delay: 0.55s;
}

#mobile-menu-dialog.show #mobile-cta-button {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.6s;
}



 /**
 * Active menu item styling
 */
.active-menu-item {
	color: var(--color-key-value) !important;
}

.active-mobile-menu-item {
	color: var(--color-key-value) !important;
}