:root {
    --color-white: #fff;
    --color-white-90: rgb(255, 255, 255, 90%);
    --color-white-50: rgb(255, 255, 255, 50%);
    --color-white-30: rgb(255, 255, 255, 30%);
    --color-white-20: rgb(255, 255, 255, 20%);
    --color-white-10: rgb(255, 255, 255, 10%);
    --color-white-5: rgb(255, 255, 255, 5%);
    --color-white-0: rgb(255, 255, 255, 2%);

    --color-black: #000;
    --color-gray-1: #e5e9eb;
    --color-gray-2: #ebf0f4;
    --color-gray-3: #bebec4;
    --color-gray-4: #aaa9b1;
    --color-gray-5: #96949e;
    --color-gray-6: #827f8b;
    --color-gray-7: #2a2237;
    --color-gray-8: #241d31;
    --color-gray-9: #170f25;
    --color-gray-10: #120724;
    --color-gray-11: #0a0119;

    --color-purple-1: #fcf5ff;
    --color-purple-2: #f7e8ff;
    --color-purple-3: #efd5ff;
    --color-purple-4: #e4b3ff;
    --color-purple-5: #d383fd;
    --color-purple-6: #be4bf8;
    --color-purple-7: #af31ec;
    --color-purple-8: #9921cf;
    --color-purple-9: #8020a9;
    --color-purple-10: #691b88;
    --color-purple-11: #490665;

    --color-pink-1: #fff1fe;
    --color-pink-2: #ffe1ff;
    --color-pink-3: #ffc3ff;
    --color-pink-4: #ff94fb;
    --color-pink-5: #ff54f8;
    --color-pink-6: #ff16f8;
    --color-pink-7: #f100ff;
    --color-pink-8: #ce00d9;
    --color-pink-9: #aa00b1;
    --color-pink-10: #8b008d;
    --color-pink-11: #610063;

    --color-green-1: #f0fdf5;
    --color-green-2: #dcfce8;
    --color-green-3: #bbf7d1;
    --color-green-4: #86efad;
    --color-green-5: #4ade80;
    --color-green-6: #22c55e;
    --color-green-7: #16a34a;
    --color-green-8: #15803c;
    --color-green-9: #166533;
    --color-green-10: #14532b;
    --color-green-11: #052e14;

    --color-yellow-1: #fefae8;
    --color-yellow-2: #fff8c2;
    --color-yellow-3: #fee78a;
    --color-yellow-4: #fdd847;
    --color-yellow-5: #facc15;
    --color-yellow-6: #eabd08;
    --color-yellow-7: #caa204;
    --color-yellow-8: #a18207;
    --color-yellow-9: #856d0e;
    --color-yellow-10: #715e12;
    --color-yellow-11: #423606;

    --color-red-1: #fff1f1;
    --color-red-2: #ffdfdf;
    --color-red-3: #ffc5c5;
    --color-red-4: #ff9d9d;
    --color-red-5: #ff6464;
    --color-red-6: #ff4747;
    --color-red-7: #ed1515;
    --color-red-8: #c80d0d;
    --color-red-9: #a50f0f;
    --color-red-10: #881414;
    --color-red-11: #43150c;

    --color-orange-1: #fff7ec;
    --color-orange-2: #ffe8d4;
    --color-orange-3: #ffd5a5;
    --color-orange-4: #ffb76d;
    --color-orange-5: #ff8c32;
    --color-orange-6: #ff6b0a;
    --color-orange-7: #fe5100;
    --color-orange-8: #cc3802;
    --color-orange-9: #a12c0b;
    --color-orange-10: #82270c;
    --color-orange-11: #461004;

    --bg-fade-white: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.16) 50%,
            rgba(255, 255, 255, 0) 100%);
    --bg-orange-to-pink: linear-gradient(270deg,
            var(--color-pink-8) -20.7%,
            var(--color-orange-6) 100%);
    --bg-pink-to-orange: linear-gradient(270deg,
            var(--color-orange-6) 100%,
            var(--color-pink-8) -20.7%);

    --bg-primary-90: rgba(10, 1, 25, 0.9);
    --bg-primary-50: rgba(10, 1, 25, 0.5);
    --bg-primary-30: rgba(10, 1, 25, 0.3);
    --bg-primary-20: rgba(10, 1, 25, 0.2);
    --bg-primary-10: rgba(10, 1, 25, 0.1);
    --bg-primary-5: rgba(10, 1, 25, 0.05);
    --bg-primary-2: rgba(10, 1, 25, 0.02);

    --bg-secondary-90: rgba(18, 7, 36, 0.9);
    --bg-secondary-50: rgba(18, 7, 36, 0.5);
    --bg-secondary-30: rgba(18, 7, 36, 0.3);
    --bg-secondary-20: rgba(18, 7, 36, 0.2);
    --bg-secondary-10: rgba(18, 7, 36, 0.1);
    --bg-secondary-5: rgba(18, 7, 36, 0.05);
    --bg-secondary-2: rgba(18, 7, 36, 0.02);

    --bg-brand-90: rgba(190, 75, 248, 0.9);
    --bg-brand-50: rgba(190, 75, 248, 0.5);
    --bg-brand-30: rgba(190, 75, 248, 0.3);
    --bg-brand-20: rgba(190, 75, 248, 0.2);
    --bg-brand-10: rgba(190, 75, 248, 0.1);
    --bg-brand-5: rgba(190, 75, 248, 0.05);
    --bg-brand-2: rgba(47, 108, 255, 0.02);

    --bg-white-90: rgba(255, 255, 255, 0.9);
    --bg-white-50: rgba(255, 255, 255, 0.5);
    --bg-white-30: rgba(255, 255, 255, 0.3);
    --bg-white-20: rgba(255, 255, 255, 0.2);
    --bg-white-10: rgba(255, 255, 255, 0.1);
    --bg-white-5: rgba(255, 255, 255, 0.05);
    --bg-white-2: rgba(255, 255, 255, 0.02);

    --bg-gray-30: rgba(130, 127, 139, 0.3);
    --bg-gray-90: rgba(130, 127, 139, 0.9);
    --bg-gray-80: rgba(130, 127, 139, 0.8);
    --bg-gray-60: rgba(130, 127, 139, 0.6);
    --bg-gray-50: rgba(130, 127, 139, 0.5);
    --bg-gray-20: rgba(130, 127, 139, 0.2);
    --bg-gray-10: rgba(130, 127, 139, 0.1);
    --bg-gray-5: rgba(130, 127, 139, 0.05);
    --bg-gray-2: rgba(130, 127, 139, 0.02);
    --bg-gray-0: rgba(36, 29, 49, 0);

    --bg-orange-30: rgba(255, 107, 10, 0.3);
    --bg-orange-90: rgba(255, 107, 10, 0.9);
    --bg-orange-50: rgba(255, 107, 10, 0.5);
    --bg-orange-20: rgba(255, 107, 10, 0.2);
    --bg-orange-10: rgba(255, 107, 10, 0.1);
    --bg-orange-5: rgba(255, 107, 10, 0.05);
    --bg-orange-2: rgba(255, 107, 10, 0.02);

    --bg-green-40: rgba(74, 222, 128, 0.4);
    --bg-green-30: rgba(74, 222, 128, 0.3);
    --bg-green-90: rgba(74, 222, 128, 0.9);
    --bg-green-80: rgba(74, 222, 128, 0.8);
    --bg-green-70: rgba(74, 222, 128, 0.7);
    --bg-green-60: rgba(74, 222, 128, 0.6);
    --bg-green-50: rgba(74, 222, 128, 0.5);
    --bg-green-20: rgba(74, 222, 128, 0.2);

    --bg-yellow-30: rgba(250, 204, 21, 0.3);
    --bg-yellow-90: rgba(250, 204, 21, 0.9);
    --bg-yellow-80: rgba(250, 204, 21, 0.8);
    --bg-yellow-60: rgba(250, 204, 21, 0.6);
    --bg-yellow-50: rgba(250, 204, 21, 0.5);
    --bg-yellow-20: rgba(250, 204, 21, 0.2);
    --bg-yellow-10: rgba(250, 204, 21, 0.1);
    --bg-yellow-5: rgba(250, 204, 21, 0.05);
    --bg-yellow-2: rgba(250, 204, 21, 0.02);
    --bg-yellow-0: rgba(250, 204, 21, 0);

    --blur-sm: 4px;
    --blur-md: 8px;
    --blur-lg: 12px;
    --blur-xl: 20px;

    --radius-xxs: 2px;
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-3xl: 20px;
    --radius-4xl: 24px;
    --radius-full: 9999px;

    --space-none: 0;
    --space-xxs: 2px;
    --space-xs: 4px;
    --space-sm: 6px;
    --space-md: 8px;
    --space-lg: 12px;
    --space-xl: 16px;
    --space-2xl: 20px;
    --space-3xl: 24px;
    --space-4xl: 32px;
    --space-5xl: 40px;
    --space-6xl: 48px;
    --space-7xl: 64px;
    --space-8xl: 80px;
    --space-9xl: 96px;
    --space-10xl: 128px;
    --space-11xl: 160px;

    --font-size-heading-1: 60px;
    --font-size-heading-2: 48px;
    --font-size-heading-3: 36px;
    --font-size-title-32: 32px;
    --font-size-title-24: 24px;
    --font-size-title-20: 20px;
    --font-size-body-18: 18px;
    --font-size-body-16: 16px;
    --font-size-body-14: 14px;
    --font-size-body-12: 12px;

    --line-height-heading-1: 1.25;
    --line-height-heading-2: 1.3;
    --line-height-heading-3: 1.3;
    --line-height-title-32: 1.5;
    --line-height-title-24: 1.4;
    --line-height-title-20: 1.4;
    --line-height-body-18: 1.4;
    --line-height-body-16: 1.5;
    --line-height-body-14: 1.5;
    --line-height-body-12: 1.3;

    --header-height: 80px;

    --container-space-x: 64px;

    --nav-item-gap-x: 24px;
    --nav-item-space-x: 24px;
    --nav-item-space-y: 10px;

    --footer-height: 80px;
    --footer-space-top: 40px;
    --footer-space-x: 5%;
    --footer-social-size: 40px;
    --footer-copyright-space-y: 24px;

    --advantage-wrapper-width: 372px;
    --advantage-wrapper-space-x: 12px;
    --advantage-item-gap-x: 24px;
    --advantage-item-height: 200px;
    --advantage-item-header-space-x: 24px;
    --advantage-item-header-space-y: 24px;
    --advantage-item-body-space: 0 24px;
    --advantage-graph-width: 12px;
    --advantage-graph-height: 56px;

    --coin-item-width: 280px;
    --coin-item-gap-x: 6px;
    --coin-image-size: 30px;
    --coin-status-space-x: 4px;

    --hero-video-space: 12px;
    --bg-planet-top: 50%;
    --bg-planet-translate-y: -55%;

    --feature-item-width: 80%;
    --feature-item-height: 426px;
    --feature-item-before-width: 253px;
    --feature-item-before-height: 185px;
    --feature-item-space-x: 40px;
    --feature-item-space-y: 48px;
    --feature-item-content-gap-x: 16px;
    --feature-item-title-width: 60%;
    --feature-item-text-width: 60%;
    --feature-item-image-width: 50%;

    --aboutus-section-height: 1280px;
    --aboutus-achievement-width: 80%;

    --achievement-item-width: 20%;
    --achievement-item-space-x: 32px;

    --course-item-space-x: 8px;
    --course-item-space-y: 8px;

    --course-badge-space-x: 16px;
    --course-badge-space-y: 8px;
    --course-badge-position-top: 24px;
    --course-badge-position-left: 24px;
    --course-image-ratio: 55.3%;
    --lecturer-image-ratio: 100%;
    --course-info-space-x: 12px;
    --course-info-space-y: 20px;
    --course-title-space-top: 0;
    --course-title-space-bottom: 8px;
    --course-description-space-bottom: 16px;
    --course-detail-header-space-top: 24px;
    --course-detail-header-space-x: 32px;
    --course-detail-image-width: 56.7835%;
    --course-detail-image-height: 328px;
    --course-detail-intro-width: 40%;
    --course-detail-intro-space-y: 32px;
    --course-detail-price-space-left: 5px;
    --detail-body-table-td-space-x: 16px;
    --detail-body-table-td-space-y: 12px;
    --detail-content-space-top: 48px;
    --detail-caption-space-bottom: 24px;

    --extra-list-space-top: 24px;
    --extra-list-space-bottom: 12px;
    --extra-list-item-space-x: 16px;
    --extra-list-item-before-height: 80%;
    --extra-list-item-icon-space-right: 8px;
    --extra-tag-item-space-left: 12px;
    --extra-tag-item-link-space-x: 12px;
    --extra-tag-item-link-space-y: 2px;

    --course-detail-content-text-space-bottom: 24px;
    --course-detail-content-list-space-y: 24px;
    --course-detail-content-list-item-space-top: 12px;
    --course-detail-content-list-item-before-size: 20px;
    --course-detail-content-list-item-before-space-right: 16px;
    --course-detail-content-break-space-y: 12px;

    --embla-button-size: 56px;
    --embla-dot-size: 24px;
    --embla-dot-size-after: 6px;
    --embla-slide-space-x: 12px;
    --embla-slide-gap-x: 24px;

    --tab-min-width: 150px;

    --intro-item-gap: 24px;
    --intro-item-width: 45%;
    --intro-item-first-width: 60%;
    --intro-item-image-ratio: 55.56%;
    --intro-description-space-x: 32px;
    --intro-description-space-y: 32px;
    --intro-description-space-bottom: 16px;
    --intro-checklist-space-top: 24px;
    --intro-checklist-before-size: 24px;
    --intro-checklist-space-right: 22px;
    --intro-checklist-item-space-y: 16px;

    --feedback-gap-y: 24px;
    --feedback-item-space-x: 32px;
    --feedback-item-space-y: 32px;
    --user-avatar-size: 40px;
    --user-avatar-space-right: 12px;
    --user-avatar-space-bottom: 14px;

    --contact-form-width: 83.0792%;
    --contact-form-space-bottom: 160px;

    --value-list-width: 1084px;
    --value-list-space-bottom: 80px;
    --value-item-width: 50%;
    --value-item-space-x: 48px;
    --value-item-space-y: 48px;
    --value-item-title-space-top: 24px;
    --value-item-title-space-bottom: 12px;
    --value-item-image-width: 40px;
    --value-item-title-before-height: 80%;

    --description-title-before-size: 20px;
    --description-title-before-space-right: 16px;
    --description-title-after-size: 20px;

    --news-item-gap-x: 26px;
    --news-item-small-gap-x: 16px;
    --news-item-space-top: 32px;
    --news-item-image-width: 37.1084%;
    --news-item-small-image-width: 30%;
    --news-date-space-y: 12px;
    --news-title-space-y: 12px;
    --news-category-space-y: 32px;
    --news-category-item-space: 10px;
    --article-image-space-y: 60px;
    --article-image-width: 80%;
    --article-content-space-bottom: 48px;
    --article-content-break-space-y: 12px;
    --article-content-list-space-left: 20px;
    --article-tags-gap-x: 16px;
    --article-tags-space-bottom: 80px;
    --article-tags-item-space: 10px;

    --profile-gap-x: 56px;
    --profile-info-gap-x: 24px;

    --section-block-space-y: 80px;
    --section-description-top-space: 24px;
    --section-description-bottom-space: 32px;
    --section-description-paragraph-top-space: 16px;
    --section-intro-space-top: 3%;
    --section-intro-image-about-us-top: -2%;

    --form-width: 100%;
    --form-space-x: 48px;
    --form-space-y: 48px;

    --video-button-size: 80px;

    --subcontent-title-space-top: 12px;
    --subcontent-title-space-bottom: 32px;

    --modal-box-form-space: 24px;
    --modal-box-close-button-size: 48px;
    --modal-body-space: 32px;

    --mobile-menu-content-nav-space-y: 28px;
    --mobile-menu-content-nav-item-space: 10px 12px;

    --collapse-space-y: 16px;
    --collapse-plus-size: 20px;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "SVN-Poppins";
    src: url("../fonts/SVN-Poppins/TTF/SVN-Poppins-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

html {
    scroll-behavior: smooth;
    /* word-break: break-word; */
}

/*
img[alt] {
    font-size: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
} */

picture img {
    width: 100%;
    height: auto;
}

/* --------------------------Font sizes---------------------------- */
.text-heading-1 {
    font-size: var(--font-size-heading-1) !important;
    line-height: var(--line-height-heading-1) !important;
    font-weight: 600;
}

.text-heading-2 {
    font-size: var(--font-size-heading-2) !important;
    line-height: var(--line-height-heading-2) !important;
    font-weight: 600;
}

.text-heading-3 {
    font-size: var(--font-size-heading-3) !important;
    line-height: var(--line-height-heading-3) !important;
    font-weight: 500;
}

.text-title-32 {
    font-size: var(--font-size-title-32) !important;
    line-height: var(--line-height-title-32) !important;
    font-weight: 500;
}

.text-title-24 {
    font-size: var(--font-size-title-24) !important;
    line-height: var(--line-height-title-24) !important;
    font-weight: 500;
}

.text-title-20 {
    font-size: var(--font-size-title-20) !important;
    line-height: var(--line-height-title-20) !important;
    font-weight: 500;
}

.text-body-18 {
    font-size: var(--font-size-body-18) !important;
    line-height: var(--line-height-body-18) !important;
}

.text-body-16 {
    font-size: var(--font-size-body-16) !important;
    line-height: var(--line-height-body-16) !important;
}

.text-body-14 {
    font-size: var(--font-size-body-14) !important;
    line-height: var(--line-height-body-14) !important;
}

.text-body-12 {
    font-size: var(--font-size-body-12) !important;
    line-height: var(--line-height-body-12) !important;
}

/* --------------------------/Font sizes---------------------------- */

/* --------------------------Colors---------------------------- */
.text-on-dark {
    font-weight: 400;
    color: var(--color-gray-1) !important;
}

.text-on-dark-sub {
    color: var(--color-gray-6) !important;
}

.text-on-dark-brand {
    color: var(--color-purple-7) !important;
}

.text-on-dark-neutral-strong {
    color: var(--color-gray-5);
}

.text-on-dark-neutral-medium {
    color: var(--color-gray-4);
}

.text-on-dark-neutral-light {
    color: var(--color-gray-3);
}

.text-on-dark:disabled {
    color: var(--color-gray-8);
}

.text-on-dark-error {
    color: var(--color-red-6);
}

.text-on-dark-warning {
    color: var(--color-yellow-5);
}

.text-on-dark-success {
    color: var(--color-green-6);
}

.text-on-light {
    color: var(--color-black);
}

.text-on-light-sub {
    color: var(--color-gray-6);
}

.text-on-light:disabled {
    color: var(--color-gray-4);
}

.text-band {
    color: var(--color-purple-7);
}

.text-brand:disabled {
    color: var(--color-purple-10);
}

.text-gray {
    color: var(--color-gray-5);
}

.text-gray:disabled {
    color: var(--color-gray-8);
}

.text-orange {
    color: var(--color-orange-5);
}

.text-orange:disabled {
    color: var(--color-orange-4);
}

.text-green {
    color: var(--color-green-5);
}

.text-green:disabled {
    color: var(--color-green-9);
}

.text-yellow {
    color: var(--color-yellow-5);
}

.text-yellow:disabled {
    color: var(--color-yellow-9);
}

.text-red {
    color: var(--color-red-5);
}

.text-red:disabled {
    color: var(--color-red-9);
}

/* --------------------------/Colors---------------------------- */

/* --------------------------Backdrop blur---------------------------- */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(8px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(20px);
}

.backdrop-blur-2xl {
    backdrop-filter: blur(24px);
}

/* --------------------------/Backdrop blur---------------------------- */

/* ---------------------------Background---------------------------------------- */
.bg-primary {
    background-color: var(--color-gray-11);
}

.bg-primary:hover,
.bg-primary:focus {
    background-color: var(--color-gray-10);
}

.bg-primary:active,
.bg-primary:disabled {
    background-color: var(--color-gray-11);
}

.bg-primary-90 {
    background-color: rgba(10, 1, 25, 0.9);
}

.bg-primary-50 {
    background-color: rgba(10, 1, 25, 0.5);
}

.bg-primary-30 {
    background-color: rgba(10, 1, 25, 0.3);
}

.bg-primary-20 {
    background-color: rgba(10, 1, 25, 0.2);
}

.bg-primary-10 {
    background-color: rgba(10, 1, 25, 0.1);
}

.bg-primary-5 {
    background-color: rgba(10, 1, 25, 0.05);
}

.bg-primary-2 {
    background-color: rgba(10, 1, 25, 0.02);
}

.bg-secondary {
    background-color: var(--color-gray-10);
}

.bg-secondary:hover,
.bg-secondary:focus {
    background-color: var(--color-gray-9);
}

.bg-secondary:active,
.bg-secondary:disabled {
    background-color: var(--color-gray-10);
}

.bg-secondary-90 {
    background-color: rgba(18, 7, 36, 0.9);
}

.bg-secondary-50 {
    background-color: rgba(18, 7, 36, 0.5);
}

.bg-secondary-30 {
    background-color: rgba(18, 7, 36, 0.3);
}

.bg-secondary-20 {
    background-color: rgba(18, 7, 36, 0.2);
}

.bg-secondary-10 {
    background-color: rgba(18, 7, 36, 0.1);
}

.bg-secondary-5 {
    background-color: rgba(18, 7, 36, 0.05);
}

.bg-secondary-2 {
    background-color: rgba(18, 7, 36, 0.02);
}

.bg-brand {
    background-color: var(--color-purple-6);
}

.bg-brand:hover {
    background-color: var(--color-purple-7);
}

.bg-brand:focus {
    background-color: var(--color-purple-8);
}

.bg-brand:active {
    background-color: var(--color-purple-10);
}

.bg-brand:disabled {
    background-color: var(--color-purple-3);
}

.bg-brand-90 {
    background-color: rgba(190, 75, 248, 0.9);
}

.bg-brand-50 {
    background-color: rgba(190, 75, 248, 0.5);
}

.bg-brand-30 {
    background-color: rgba(190, 75, 248, 0.3);
}

.bg-brand-20 {
    background-color: rgba(190, 75, 248, 0.2);
}

.bg-brand-10 {
    background-color: rgba(190, 75, 248, 0.1);
}

.bg-brand-5 {
    background-color: rgba(190, 75, 248, 0.05);
}

.bg-brand-2 {
    background-color: rgba(47, 108, 255, 0.02);
}

.bg-white,
.bg-white:focus {
    background-color: var(--color-white);
}

.bg-white:hover {
    background-color: var(--color-gray-2);
}

.bg-white:active {
    background-color: var(--color-gray-3);
}

.bg-white:disabled {
    background-color: var(--color-gray-2);
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-white-30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white-2 {
    background-color: rgba(255, 255, 255, 0.02);
}

.bg-gray {
    background-color: var(--color-gray-7);
}

.bg-gray:hover,
.bg-gray:focus,
.bg-gray:active,
.bg-gray:disabled {
    background-color: var(--color-gray-6);
}

.bg-gray-30 {
    background-color: rgba(130, 127, 139, 0.3);
}

.bg-gray-90 {
    background-color: rgba(130, 127, 139, 0.9);
}

.bg-gray-80 {
    background-color: rgba(130, 127, 139, 0.8);
}

.bg-gray-60 {
    background-color: rgba(130, 127, 139, 0.6);
}

.bg-gray-50 {
    background-color: rgba(130, 127, 139, 0.5);
}

.bg-gray-20 {
    background-color: rgba(130, 127, 139, 0.2);
}

.bg-gray-10 {
    background-color: rgba(130, 127, 139, 0.1);
}

.bg-gray-5 {
    background-color: rgba(130, 127, 139, 0.05);
}

.bg-gray-2 {
    background-color: rgba(130, 127, 139, 0.02);
}

.bg-gray-0 {
    background-color: rgba(36, 29, 49, 0);
}

.bg-orange,
.bg-orange:focus {
    background-color: var(--color-orange-5);
}

.bg-orange:hover {
    background-color: var(--color-orange-6);
}

.bg-orange:active {
    background-color: var(--color-orange-3);
}

.bg-orange:disabled {
    background-color: var(--color-orange-2);
}

.bg-orange-30 {
    background-color: rgba(255, 107, 10, 0.3);
}

.bg-orange-90 {
    background-color: rgba(255, 107, 10, 0.9);
}

.bg-orange-50 {
    background-color: rgba(255, 107, 10, 0.5);
}

.bg-orange-20 {
    background-color: rgba(255, 107, 10, 0.2);
}

.bg-orange-10 {
    background-color: rgba(255, 107, 10, 0.1);
}

.bg-orange-5 {
    background-color: rgba(255, 107, 10, 0.05);
}

.bg-orange-2 {
    background-color: rgba(255, 107, 10, 0.02);
}

.bg-green,
.bg-green:hover {
    background-color: var(--color-green-6);
}

.bg-green:focus {
    background-color: var(--color-green-7);
}

.bg-green:active {
    background-color: var(--color-green-3);
}

.bg-green:disabled {
    background-color: var(--color-green-2);
}

.bg-green-40 {
    background-color: rgba(74, 222, 128, 0.4);
}

.bg-green-30 {
    background-color: rgba(74, 222, 128, 0.3);
}

.bg-green-90 {
    background-color: rgba(74, 222, 128, 0.9);
}

.bg-green-80 {
    background-color: rgba(74, 222, 128, 0.8);
}

.bg-green-70 {
    background-color: rgba(74, 222, 128, 0.7);
}

.bg-green-60 {
    background-color: rgba(74, 222, 128, 0.6);
}

.bg-green-50 {
    background-color: rgba(74, 222, 128, 0.5);
}

.bg-green-20 {
    background-color: rgba(74, 222, 128, 0.2);
}

.bg-yellow {
    background-color: var(--color-yellow-5);
}

.bg-yellow:hover {
    background-color: var(--color-yellow-6);
}

.bg-yellow:focus {
    background-color: var(--color-yellow-7);
}

.bg-yellow:active {
    background-color: var(--color-yellow-8);
}

.bg-yellow:disabled {
    background-color: var(--color-yellow-9);
}

.bg-yellow-30 {
    background-color: rgba(250, 204, 21, 0.3);
}

.bg-yellow-90 {
    background-color: rgba(250, 204, 21, 0.9);
}

.bg-yellow-80 {
    background-color: rgba(250, 204, 21, 0.8);
}

.bg-yellow-60 {
    background-color: rgba(250, 204, 21, 0.6);
}

.bg-yellow-50 {
    background-color: rgba(250, 204, 21, 0.5);
}

.bg-yellow-20 {
    background-color: rgba(250, 204, 21, 0.2);
}

.bg-yellow-10 {
    background-color: rgba(250, 204, 21, 0.1);
}

.bg-yellow-5 {
    background-color: rgba(250, 204, 21, 0.05);
}

.bg-yellow-2 {
    background-color: rgba(250, 204, 21, 0.02);
}

.bg-yellow-0 {
    background-color: rgba(250, 204, 21, 0);
}

.bg-red {
    background-color: var(--color-red-5);
}

.bg-red:hover {
    background-color: var(--color-red-6);
}

.bg-red:focus {
    background-color: var(--color-red-7);
}

.bg-red:active {
    background-color: var(--color-red-8);
}

.bg-red:disabled {
    background-color: var(--color-red-3);
}

/* ---------------------------/Background---------------------------------------- */

/* ---------------------------Text---------------------------------------- */
.text-orange-to-pink {
    position: relative;
    color: inherit;
    transition: all 0.3s ease;
}

.text-orange-to-pink::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-orange-to-pink);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 0.3s ease;
    cursor: inherit;
}

.text-orange-to-pink:hover {
    color: transparent;
}

.text-orange-to-pink:hover::after {
    background-size: 100% 100%;
}

/* ---------------------------/Text---------------------------------------- */

/* ---------------------------Button--------------------------------------------- */
.button {
    color: var(--color-white);
    text-align: center;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-white-10);
    background: var(--bg-orange-to-pink);
    font-size: 12px;
    width: fit-content;
    transition: all 1s ease;
    overflow: hidden;
    position: relative;
}

.button.button--md {
    min-width: 80px;
    padding: 10px 16px;
    font-size: 14px;
}

.button.button--lg {
    padding: 14px 24px;
    font-size: 16px;
}

.button.button--xl {
    min-width: 80px;
    padding: 16px 32px;
    font-size: 18px;
}

.button.button--full {
    width: 100%;
}

.button.invisible {
    opacity: 0;
    pointer-events: none;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 2s ease;
    background: var(--color-gray-1);
    pointer-events: none;
    opacity: 0.3;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ---------------------------/Button--------------------------------------------- */
.container {
    padding-left: var(--container-space-x);
    padding-right: var(--container-space-x);
}

.section__block {
    padding: var(--section-block-space-y) 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.section__block:last-child {
    margin-top: var(--section-block-space-y);
}

.section__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: var(--section-intro-space-top);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--section-block-space-y);
}

.section__intro.section__intro--full {
    width: 100%;
    max-width: unset !important;
}

.section__intro.section__intro--left {
    align-items: flex-start;
    text-align: left;
}

.section__intro.section__intro--right {
    align-items: flex-end;
    text-align: right;
}

.section__title {
    font-size: var(--font-size-heading-1);
    line-height: 1.4;
    color: var(--color-gray-1);
}

.section__description,
.about-section__description {
    margin-top: var(--section-description-top-space);
    margin-bottom: var(--section-description-bottom-space);
    margin-left: auto;
    margin-right: auto;
    font-size: var(--font-size-title-20);
    line-height: var(--line-height-title-20);
    color: var(--color-gray-6);
    width: 100%;
}

.about-section__description {
    font-size: 18px;
    display: flex;
    gap: 32px;
    flex-direction: column;
}

.about-section__description ul {
    list-style-type: disc;
    padding-left: 20px;
}

.section__description strong,
.about-section__description strong {
    color: var(--color-gray-1);
}

.section__description *+* {
    margin-top: var(--section-description-paragraph-top-space);
}

.section__description:has(> :nth-child(2)) :first-child {
    font-size: var(--font-size-title-24);
    line-height: var(--line-height-title-24);
}

.section__container {
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
    justify-content: space-between;
    height: auto;
    margin-left: auto;
    margin-right: auto;

}

/* -----------------------------------Slider--------------------------------------- */
.embla {
    overflow: hidden;
    max-width: 100%;
    margin: auto;
}

.embla__container {
    display: flex;
    align-items: stretch;
}

.embla.feedbacks .embla__container {
    column-gap: unset;
}

.embla.visions--images .embla__container {
    flex-direction: column;
    height: 600px;
}

.embla__slide {
    margin-left: var(--embla-slide-space-x);
    margin-right: var(--embla-slide-space-x);
    min-width: 0;
}

.embla__container .embla__slide:only-child {
    margin-left: 0;
    margin-right: 0;
}

.embla.features .embla__slide {
    flex: 0 0 60%;
}

.embla.courses .embla__slide {
    flex: 0 0 calc((100% - (var(--embla-slide-gap-x) * 2)) / 3);
}

.embla.courses .embla__slide:not(.course__item) {
    flex: 0 0 100%;
}

.embla.feedbacks .embla__slide {
    flex: 0 0 calc((100% - (var(--embla-slide-gap-x) * 2)) / 3);
}

.embla.visions--description .embla__slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.embla.visions--images .embla__slide {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    height: 100%;
    justify-content: space-between;
}

.embla.achievements .embla__slide {
    flex: 0 0 60%;
}

/* 🔹 Pagination Dots */
.embla__dots {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 16px;
}

.embla__dot {
    width: var(--embla-dot-size);
    height: var(--embla-dot-size);
    border-radius: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 9px;
    position: relative;
}

.embla__dot::before,
.embla__dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}

.embla__dot::before {
    width: 80%;
    height: 80%;
    z-index: 1;
    background-color: var(--color-gray-9);
}

.embla__dot::after {
    width: var(--embla-dot-size-after);
    height: var(--embla-dot-size-after);
    z-index: 2;
    background: white;
}

.embla__dot.is-selected {
    background: var(--bg-orange-to-pink);
}

.embla__actions {}

.embla.courses .embla__actions {
    display: flex;
    width: fit-content;
    position: absolute;
    bottom: calc(100% + 32px);
    right: 0;
}

.embla.courses .embla__actions button+button {
    margin-left: 12px;
}

.embla__prev,
.embla__next {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    width: var(--embla-button-size);
    height: var(--embla-button-size);
    border-radius: 50%;
    cursor: pointer;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-8);
    background: var(--color-gray-10);
    transition: all 0.3s ease;
    font-size: var(--font-size-title-24);
}

.embla__prev:hover,
.embla__next:hover {
    background: var(--color-gray-8);
}

.embla__prev:disabled,
.embla__next:disabled {
    color: var(--color-gray-6);
}

.embla__progress {
    width: 100%;
    height: auto;
    margin-top: 32px;
    border-radius: var(--radius-full);
    background: var(--color-gray-8);
}

.embla.visions--images .embla__progress {
    width: auto;
    height: 100%;
    margin-top: 0;
    left: -121px;
    top: 0;
    position: absolute;
}

.embla__progress__bar {
    width: 0;
    height: 2px;
    background: var(--color-orange-6);
    transition: all 0.3s ease;
}

/* -----------------------------------/Slider--------------------------------------- */

/* -----------------------------------Quote---------------------------------------- */
.quote {
    font-size: var(--font-size-body-12);
    text-transform: uppercase;
    position: relative;
    max-width: fit-content;
    color: var(--color-gray-6);
}

.quote::before,
.quote::after {
    font-weight: bold;
    font-size: 1.2em;
    background: linear-gradient(266deg,
            var(--color-pink-9) -21.34%,
            var(--color-orange-6) 97.06%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.quote::before {
    content: "[";
    margin-right: 0.5rem;
}

.quote::after {
    content: "]";
    margin-left: 0.5rem;
}

/* -----------------------------------/Quote---------------------------------------- */

/* -----------------------------------Tabs------------------------------------------ */
.tabs {
    width: fit-content;
    background: var(--color-gray-9);
    border-radius: var(--radius-full);
    padding: 6px;
}

.tab {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--radius-full) !important;
    color: var(--color-gray-6);
    height: auto;
    min-width: var(--tab-min-width);
    transition: color 0.1s ease-out 0.3s;
    font-weight: 600;
}

.tab+.tab {
    /*margin-left: 16px;*/
}

.tab.tab-active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--color-gray-1) !important;
}

.tab__content {
    margin-top: 24px;
    position: relative;
}

.tab__indicator {
    position: absolute;
    top: 0;
    background: rgba(190, 75, 248, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -1px 2px 5px 0 rgba(180, 87, 176, 0.37) inset;
    border-radius: var(--radius-full);
    transition-duration: 0.1s;
}

/* -----------------------------------/Tabs------------------------------------------ */

/* -----------------------------------Form------------------------------------------ */
.form {
    padding: var(--form-space-y) var(--form-space-x);
    width: var(--form-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-4xl);
    border: 1px solid var(--color-black);
    background: rgba(18, 7, 36, 0.5);
    backdrop-filter: blur(7.5px);
}

.form__group {
    position: relative;
    margin-bottom: 20px;
}

.form__control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid transparent;
    font-size: 16px;
    background: none;
    outline: none;
    color: var(--color-gray-1);
    border-radius: 12px;
    border: 1px solid var(--color-gray-8);
    background: var(--color-gray-10);
}

.form__control::placeholder {
    transition: all 0.2s ease;
}

.form__control:focus:empty::placeholder {
    color: #918fa0;
    opacity: 1;
}

.form__control:empty::placeholder {
    color: transparent;
    opacity: 0;
}

.form__label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #918fa0;
    pointer-events: none;
    transition: 0.2s ease all;
    padding: 12px 16px;
    background: transparent;
}

textarea.form__control+.form__label {
    top: 0;
    transform: translateY(0%);
}

.form__control:focus+.form__label,
.form__control:not(:placeholder-shown)+.form__label {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    left: 0;
    font-size: 14px;
    transform: translateY(-50%);
}

.form__actions {
    display: flex;
    justify-content: flex-end;
}

/* -----------------------------------/Form------------------------------------------ */

/* -----------------------------------Video------------------------------------------ */
.video {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-4xl);
    overflow: hidden;
}

.video__source {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.video__controls {}

.video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
    width: var(--video-button-size);
    height: var(--video-button-size);
    font-size: var(--font-size-body-18);
    color: var(--color-white);
    border-radius: 100%;
    border: 10px solid var(--color-white-20);
}

.video:hover .video__play {
    opacity: 1;
}

/* -----------------------------------/Video------------------------------------------ */

/* -----------------------------------Breacrumbs------------------------------------------- */
.breadcrumbs {
    color: var(--color-gray-6);
    height: auto;
    padding: 24px 0;
}

.breadcrumbs>ol>li:last-child,
.breadcrumbs>ul>li:last-child,
.breadcrumbs>ol>li:hover,
.breadcrumbs>ul>li:hover {
    color: var(--color-gray-1);
}

.breadcrumbs>ol>li+ :before,
.breadcrumbs>ul>li+ :before {
    content: "/";
    border: none;
    height: 100%;
    width: auto;
    transform: none;
    margin: 0 0.75rem;
}

/* -----------------------------------/Breacrumbs------------------------------------------- */

/* -----------------------------------Sidebar layout------------------------------------------- */
.sidebarlayout {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.sidebarlayout__maincontent {
    flex: 0 0 63%;
    width: auto;
}

.sidebarlayout__subcontent {
    flex: 1;
    width: auto;
    padding: 24px;
    border-radius: var(--radius-4xl);
    background: var(--color-gray-10);
    margin-top: var(--news-category-space-y);
}

.subcontent__title {
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-title-24);
    line-height: var(--line-height-title-24);
    color: var(--color-gray-1);
    margin-top: var(--subcontent-title-space-top);
    margin-bottom: var(--subcontent-title-space-bottom);
    font-weight: 600;
}

.subcontent__title::before {
    content: "";
    display: block;
    border-radius: var(--radius-full);
    width: 10%;
    height: 4px;
    background: var(--color-purple-6);
    margin-bottom: 6px;
}

/* -----------------------------------/Sidebar layout------------------------------------------- */

/* -----------------------------------Pagination------------------------------------------- */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
}

.pagination .btn {
    background: var(--color-gray-10);
    color: var(--color-gray-6);
    transition: all 0.3s ease;
    border-color: transparent;
    min-width: 40px;
    height: 40px;
    min-height: unset;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.pagination .btn.active,
.pagination .btn:hover {
    color: var(--color-black);
    background: var(--color-purple-6);
}

.pagination .join {
    flex-wrap: wrap;
}

/* -----------------------------------/Pagination------------------------------------------- */

/* -----------------------------------Modal------------------------------------------- */
.modal {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-gray-10);
}

.modal-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-gray-10);
    z-index: 900;
}

.modal-box {
    width: 100%;
    height: auto;
    max-width: unset;
    border-radius: var(--radius-4xl);
    border: 1px solid var(--color-gray-8);
    background: var(--color-gray-10);
    padding: 0;
}

.modal-box form[method="dialog"] {
    display: flex;
    padding: var(--modal-box-form-space);
    justify-content: flex-end;
}

.modal-box form[method="dialog"] button {
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-8);
    background: var(--color-gray-10);
    width: var(--modal-box-close-button-size);
    height: var(--modal-box-close-button-size);
    color: var(--color-gray-6);
}

.modal-box form[method="dialog"] button:hover {
    border-color: var(---color-gray-1);
    color: var(--color-gray-1);
}

.modal-box .modal-body {
    padding: var(--modal-body-space);
}

/* -----------------------------------/Modal------------------------------------------- */

/* -----------------------------------Drawer------------------------------------------- */
.mobile-menu {
    display: none;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: url("../images/bg_mobile_menu.png") no-repeat center / cover;
    color: var(--color-gray-1);
    position: relative;
}

.mobile-menu .mobile-menu-open {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.mobile-menu i {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.3s ease;
}

.drawer-side .mobile-menu i {
    opacity: 1;
}

.drawer .drawer-toggle:checked+.drawer-content .mobile-menu .mobile-menu-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.drawer .drawer-toggle:checked+.drawer-content .mobile-menu .mobile-menu-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.drawer .drawer-toggle:not(:checked)+.drawer-content .mobile-menu .mobile-menu-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.drawer-side {
    z-index: 10;
}

/* -----------------------------------/Drawer------------------------------------------- */

/* -----------------------------------Collapse------------------------------------------ */
.detail__content .collapse {
    border-bottom: 1px solid var(--color-gray-8);
    border-radius: 0;
}

.detail__content .collapse+.collapse {
    margin-top: var(--collapse-space-y);
}

.detail__content .collapse-title {
    padding-top: 0;
    padding-left: 0;
}

.detail__content .collapse-title,
.detail__content :where(.collapse > input[type="checkbox"]),
.detail__content :where(.collapse > input[type="radio"]) {
    min-height: 0;
}

.detail__content .collapse-plus>.collapse-title:after {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    width: var(--collapse-plus-size);
    height: var(--collapse-plus-size);
    border: 1.5px solid var(--color-gray-6);
    border-radius: var(--radius-full);
    font-size: var(--font-size-body-14);
    color: var(--color-gray-6);
}

.detail__content .collapse-content {
    padding-left: 0;
}

/* -----------------------------------/Collapse------------------------------------------ */
/* -----------------------------------Preloader------------------------------------------ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0119;
}

/* Inner box */
.preloader-box {
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 36rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .preloader-box {
        flex-direction: row;
    }
}

.preloader-visual {
    position: relative;
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-small {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 2.25rem;
    color: #e4b3ff;
    animation: spin-reverse-slow 3s linear infinite;
}

.gear-large {
    font-size: 3.75rem;
    color: #be4bf8;
    animation: spin-slow 3s linear infinite;
}

/* Text area */
.preloader-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 640px) {
    .preloader-text {
        text-align: left;
    }
}

.preloader-text h1 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e9eb;
}

.preloader-text .subtitle {
    font-size: 0.875rem;
    color: rgb(148 163 184);
}

.progress-wrap {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar {
    flex: 1;
    height: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

#progressInner {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #e4b3ff, #be4bf8);
    border-radius: 9999px;
}

#percent {
    width: 2.5rem;
    text-align: right;
    font-weight: 600;
    color: #be4bf8;
}

.preloader-text .hint {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgb(100 116 139);
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* -----------------------------------/Preloader------------------------------------------ */