 /* 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;
}


/**
 * Main button styling
 */
.main-button {
    background-color: var(--color-pink-500);
    color: var(--color-orange-100);
    font-size: 1.125rem;
    font-family: "Baijam";
    font-weight: 400;
    text-decoration: none;
    width: fit-content;
    padding: 12px 16px;
    font-weight: 700;
    border: none !important;
    cursor: pointer;
    transition: var(--default-transition);

    &:hover {
        opacity: 0.8;
    }
}


/**
 * Register form styling
 */
#register-form-app input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: 1px solid white;
    background-color: white;
    position: relative;
    height: 45px;
    width: 45px;
    cursor: pointer;
    transition: var(--default-transition);
}

@media only screen and (max-width: 480px) {
    #register-form-app input[type="radio"] {
        width: 25px;
        height: 25px;
    }
}

#register-form-app input[type="radio"]:checked {
    background-color: var(--color-pink-500);
}

#register-form-app input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-orange-100);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

@media only screen and (max-width: 480px) {
    #register-form-app input[type="radio"]:checked::after {
        font-size: 16px;
    }
}

#register-form-app input[type="radio"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

button.workshop-info-button {
    background-color: transparent !important;
    border: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/** 
* Workshop modal
*/

dialog#workshop-modal  {
    border: 0px solid transparent !important;
    background: transparent;
    max-width: 90vw;
    max-height: 90vh;
}

dialog#workshop-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
}

dialog#workshop-modal.show::backdrop {
    opacity: 1;
}

dialog#workshop-modal.closing::backdrop {
    opacity: 0;
}

dialog#workshop-modal:not([open]) {
    display: none;
}

dialog#workshop-modal[open] {
    display: block;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

dialog#workshop-modal.show {
    opacity: 1;
    transform: scale(1);
}

dialog#workshop-modal.closing {
    opacity: 0;
    transform: scale(0.95);
}

@media only screen and (min-width: 768px) {
    #workshop-modal-content {
        border-bottom: 10px solid var(--color-pink-500);
    }
}

/** 
* Workshop modal
*/


/* width */
#workshop-modal-content-text::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
#workshop-modal-content-text::-webkit-scrollbar-track {
    background: #EDEDF2;
    border-radius: 10px;
}

/* Handle */
#workshop-modal-content-text::-webkit-scrollbar-thumb {
    background: #C2C2C7;
    border-radius: 10px;
    transition: var(--default-transition);
}

/* Handle on hover */
#workshop-modal-content-text::-webkit-scrollbar-thumb:hover {
    background: #A5A5AC;
}