html, body {
    width: 100%;
}

body
{
    overscroll-behavior: none;
    margin: 0;
    padding: 0;
    overflow: auto;
    font-family: math;
    background: #EEF2F5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1025px) {

    button
    {
        cursor: url('imgs/cursor.cur'), auto;
    }

    #dressingRoomTitle
    {
        position: absolute;
        top: 22px;
        right: 96px;
        font-family: "Baloo 2";
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -0.24px;
        text-transform: capitalize;
    }

    #content {
        width: 100%;
    }

    #try-on-feature{
        position: relative;
        width: fit-content;
        min-width: 800px;
        max-width: 1300px;
        height: fit-content;
        background: #FFF;
        overflow-x: hidden;
        display: flex;
        gap: 28px;
        padding: 28px;
        margin: 24px auto;
    }

    #try-on-section-left {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    #try-on-section-right {
        display: flex;
        gap: 32px;
        width: 100%;
    }

    #cc-results {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    #results-top {
        justify-items: center;
    }

    #results-bottom {
        display: flex;
        flex-direction: row;
        gap: 28px;
        width: 100%;
        justify-content: center;
    }

    #exitLink
    {
        position: absolute;
        left: 68px;
        top: 64px;
        color: #0155BB;
        font-family: Poppins;
        font-size: 16px;
        font-weight: 500;
        line-height: 26px;
        text-decoration-line: underline;
        text-underline-offset: 24%; /* 3.84px */
        text-underline-position: from-font;
        background-image: url('imgs/Left.svg');
        background-repeat: no-repeat;
        background-position: 0 50%;
        padding-left: 20px;
    }

    .link:hover
    {
        color: #a69dff;
        cursor: pointer;
    }

    #canvas-container {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    #leftColumn
    {
        position: relative;
        width: 24vw;
        min-width: 420px;
        aspect-ratio: 585/787;
        max-width: 100%;
        border-radius: 4px;
        background: url(imgs/bg1.png);
        background-size: contain;
        overflow: hidden;
    }

    #canvas
    {
        position: absolute;
        max-width: 100%;
        aspect-ratio: 390/640;
        width: 70%;
        height: auto;
        top: 1%;
        left: 50%;
        transform: translateX(-50%);
        /*border-bottom-right-radius: 500px;*/
        /*border-bottom-left-radius: 500px;*/
    }


    #rightColumn::-webkit-scrollbar
    {
        width: 8px;
    }

    #rightColumn::-webkit-scrollbar-track
    {
        box-shadow: inset 0 0 2px rgb(0, 0, 0);
        border-radius: 8px;
        background-color: #F5F7F9;
        margin: 0 8px;
    }

    #rightColumn::-webkit-scrollbar-thumb
    {
        background: rgba(1, 1, 30, 0.60);
        border-radius: 8px;
    }

    #rightColumn::-webkit-scrollbar-thumb:hover
    {
        background: rgba(1, 1, 30, 0.80);
    }

    #downloadButton
    {
        width: 320px;
        height: 56px;
        color: #FFF;
        text-align: center;
        font-family: Poppins;
        font-size: 18px;
        font-weight: 600;
        border-radius: 30px;
        line-height: 60px;
        cursor: pointer;
        background: linear-gradient(180deg, #4D39FF 0%, #4D39FF 0%, #7767FF 100%, #B8B0FF 100%);
        transition: color 0.2s;
        box-shadow: 0px 2px 2px -1px rgba(1, 1, 30, 0.24);
        display: block;
        align-self: center;
        margin-top: 40px;
    }

    #downloadButton.downloaded
    {
        background: #00B27D;
        cursor: default;
    }

    #downloadButton.downloading
    {
        background: rgba(1, 1, 30, 0.60);
        cursor: default;
    }

    #addToBasketButton:hover
    {
        background: linear-gradient(180deg, #7439ff 0%, #6e39ff 0%, #7767FF 100%, #B8B0FF 100%);
        color: rgb(242, 209, 255);
    }

    #rightColumn
    {
        height: 60vh;
        width: 100%;
        max-width: 300px;
        overflow: auto;
    }

    #rightColumnWhiteMask
    {
        position: absolute;
        top: 584px;
        left: 808px;
        right: 48px;
        height: 200px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        pointer-events: none;
        display: none;
    }

    #rightColumn > div
    {
        position: relative;
        display: inline-block;
        margin: 0px 16px 12px 0;
        width: 124px;
        height: 172px;
    }

    .selected
    {
        position: absolute;
        left: -30px;
        top: 0;
        background-image: url('imgs/selected.svg');
        width: 16px;
        height: 16px;
    }

    #rightColumn > div.active > .selected, .canvasSubButton.active
    {
        background-image: url('imgs/selectedActive.svg');
    }

    .thumb
    {
        position: relative;
        cursor: pointer;
        width: 120px;
        height: 108px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 4px;
        border: 1.5px solid rgba(1, 1, 30, 0);
    }

    .thumb::before
    {
        content: '';
        position: absolute;
        inset: 0;
        padding: 1px;
        background: rgba(1, 1, 30, 0.50);
        border-radius: inherit;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor; /* Safari support */
    }

    .thumb > .loading
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(imgs/loading.gif) no-repeat center;
        background-size: 55%;
        background-color: rgba(0, 0, 0, .66);
        pointer-events: none;
        border-radius: 4px;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .thumb > .loading.active
    {
        opacity: 1;
    }

    #rightColumn > div.active > .thumb::before
    {
        content: '';
        position: absolute;
        inset: 0;
        padding: 2.5px;
        background: linear-gradient(271deg, #00B7F4 0%, #4D39FF 98.52%);
        border-radius: inherit;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor; /* Safari support */
    }

    .fav
    {
        position: absolute;
        top: 0;
        right: 3px;
        width: 22px;
        height: 30px;
        background: url('imgs/fav.svg');
    }

    .fav > div
    {
        background: url(imgs/favInner.svg);
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .variants
    {
        margin-top: 7px;
        margin-left: -2px;
    }

    .variants > div
    {
        position: relative;
        width: 22px;
        height: 22px;
        background-size: cover;
        display: inline-block;
        border-radius: 4px;
        cursor: pointer;
        margin: 3px;
        border: 0.5px solid #01011E;
    }

    .variantActive
    {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        border: 2px solid #3974ff;
        /* border-image: linear-gradient(to right, #4D39FF, #00B7F4) 1; */
        box-shadow: 0px 0px 5px 2px rgba(1, 1, 30, 0.25);
        position: absolute;
        top: -5px;
        left: -5px;
        display: none;
    }

    .variants > div.active > .variantActive
    {
        display: block;
    }

    .title
    {
        color: #01011E;
        font-family: Poppins;
        font-size: 14px;
        line-height: 18px;
        font-weight: 500;
        margin-top: 4px;
        height: 36px;
        overflow: hidden;
        max-width: 120px;
    }

    .by
    {
        color: #36C;
        font-family: Poppins;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px;
        height: 22px;
        overflow: hidden;
    }

    #loadingDiv
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #15202b;
        text-align: center;
        transition: opacity 0.33s;
        z-index: 200;
    }

    #loadingGIF
    {
        background-image: url(imgs/loading.gif);
        width: 128px;
        height: 128px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        animation: spin 3s linear infinite;
    }

    @keyframes spin
    {
        0% { transform: translate(-50%, 50%) rotate(0deg); }
        100% { transform: translate(-50%, 50%) rotate(-360deg); }
    }

    #loadingDiv.disabled
    {
        opacity: 0;
        pointer-events: none;
    }

    #loadingText
    {
        position: absolute;
        bottom: 20px;
        width: 100%;
        font-size: 24px;
        color: white;
        font-family: Poppins;
    }

    #canvasLeftButtons, #canvasRightButtons
    {
        position: absolute;
        left: 44px;
        top: 45px;
        color: #01011E;
        text-align: center;
        font-family: Poppins;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
    }

    #disclaimer
    {
        width: 282px;
        color: #000000b8;
        font-family: Poppins;
        font-size: 12px;
        font-style: italic;
        font-weight: 400;
        line-height: 16px;
        display: block;
        align-self: center;
        text-align: center;
        margin-top: 20px;
    }

    #canvasRightButtons
    {
        left: auto;
        right: 36px;
        top: 45px;
    }

    .canvasButton
    {
        width: 40px;
        height: 48px;
        border-radius: 4px;
        border: 2px solid #FFF;
        background: #01011E;
        box-shadow: 0px 2px 2px -1px rgba(1, 1, 30, 0.24);
        background-repeat: no-repeat;
        margin: 0 auto;
        transition: background-color 0.2s;
        color: white;
        font-family: "Baloo 2";
        font-size: 14px;
        font-weight: 500;
        line-height: 74px;
    }

    .canvasButtonContainer:hover:not(:has(.subButton:hover)) > .canvasButton
    {
        /*mix-blend-mode: multiply;*/
        background-color: #594c9c;
    }

    .canvasButtonContainer
    {
        cursor: pointer;
        margin-bottom: 18px;
    }

    #bodyTypeButton
    {
        background-image: url('imgs/body.svg');
        background-position: center 7px;
    }

    #skinButton
    {
        background-image: url('imgs/skintone.svg');
        background-position: center 7px;
    }

    #clearButton
    {
        background-image: url('imgs/clear.svg');
        background-position: center 5px;
    }

    #runwayButton
    {
        background-image: url('imgs/runway.svg');
    }

    #zoomSliderContainer
    {
        color: white;
        text-shadow: 0px 2px 2px rgba(1, 1, 30, 0.24);
        font-family: "Baloo 2";
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    #zoomSlider
    {
        background-color: white;
        border-radius: 20px;
        width: 16px;
        height: 141px;
        box-shadow: 0px 0px 2px 0px rgba(1, 1, 30, 0.80) inset;
        margin: 0 auto;
        position: relative;
        transition: background-color 0.2s;
    }

    #zoomSlider:hover
    {
        background-color: #d7e5ff;
    }

    #zoomSliderHandle
    {
        position: absolute;
        left: 1px;
        top: 10px;
        width: 14px;
        height: 25.846px;
        border-radius: 100px;
        background: #01011E;
        box-shadow: 0px 2px 2px -1px rgba(1, 1, 30, 0.24);
        cursor: pointer;
        transition: background-color 0.1s;
    }

    #zoomSliderHandle:hover
    {
        background-color: #462dc7;
    }

    #zoomSliderPlus, #zoomSliderMinus
    {
        cursor: pointer;
        transition: color 0.2s;
        -webkit-user-select: none;  /* Safari */
        -ms-user-select: none;      /* IE/Edge */
        user-select: none;          /* Standard */
    }

    #zoomSliderPlus:hover, #zoomSliderMinus:hover
    {
        color: #c8bcff;
    }

    #zoomButton
    {
        width: 24px;
        height: 24px;
        border-radius: 12px;border-radius: 100px;
        background: rgba(255, 255, 255, 0.80);
        box-shadow: 0px 0px 2px 0px rgba(1, 1, 30, 0.60) inset;
        transition: background-color 0.15s;
        cursor: pointer;
        position: relative;
    }

    #zoomButton:hover
    {
        background: rgba(179, 243, 243, 0.8);
        box-shadow: 0px 0px 2px 0px rgba(1, 1, 30, 0.80) inset;
    }

    .subButton
    {
        width: 40px;
        height: 0;
        margin: 0 auto;
        border-radius: 0px 0px 4px 4px;
        background: #FFF;
        box-shadow: 0px 0px 2px 0px rgba(1, 1, 30, 0.80) inset;
        overflow: hidden;
        transition: height 0.33s ease;
    }

    .subButton.active
    {
        height: 108px;
    }

    .canvasSubButton
    {
        width: 16px;
        height: 16px;
        background-image: url(imgs/selected.svg);
        margin: 0 auto;
    }

    div.active > .canvasSubButton
    {
        background-image: url(imgs/selectedActive.svg);
    }

    .canvasSubButtonText
    {
        color: #000;
        text-align: center;
        font-family: Poppins;
        font-size: 8px;
        font-weight: 400;
        margin-top: 3px;
    }

    .subButton > div
    {
        padding: 13px 0 1px 0;
    }

    #backgroundSelectDiv
    {
        color: #01011E;
        font-family: "Baloo 2";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        display: flex;
        justify-content: center;
        margin: 12px 0;
    }

    #backgroundSelectDiv > div
    {
        display: inline-block;
        width: 28px;
        margin-left: 10px;
        cursor: pointer;
        background-image: url(imgs/selected.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: 16px;
    }

    #backgroundSelectDiv > div:hover
    {
        color:#918ab1;
    }

    #backgroundSelectDiv > div.active
    {
        background-image: url(imgs/selectedActive2.svg);
    }

    #newCategoriesBubbles
    {
        height: 87%;
    }

    #newCategoriesDiv
    {
        color: rgba(1, 1, 30, 0.80);
        font-family: Poppins;
        font-size: 14px;
        font-weight: 400;
        position: absolute;
        left: 676px;
        top: 66px;
        cursor: pointer;
        text-transform: lowercase;
    }

    #newCategoriesDiv:hover
    {
        color: rgba(1, 1, 30, 0.60);
    }

    #newCategoriesDropdownImg
    {
        background: url(imgs/group176.svg) no-repeat;
        width: 18px;
        height: 12px;
        background-position: center;
        background-size: contain;
        margin-right: 12px;
    }

    #newCategoriesCategories
    {
        max-width: 344px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #newCategoriesDiv > *
    {
        display: inline-block;
        vertical-align: middle;
    }

    #newCategoriesDiv > span
    {
        background: url(imgs/smallArrowRight.svg) no-repeat;
        width: 8px;
        height: 8px;
        background-position: center;
        background-size: contain;
        display: inline-block;
        margin-right: 12px;
    }

    #categoriesDropdown
    {
        width: 136px;
        height: 42px;
        color: #01011E;
        font-family: Poppins;
        font-size: 15px;
        font-weight: 400;
        border: 1px solid #01011E;
        border-radius: 21px;
        background: #F5F7F9;
        position: absolute;
        left: 691px;
        top: 102px;
        cursor: pointer;
        transition: height 0.2s ease;
        overflow: hidden;
        box-shadow: 0 0 4px #0000006b;
        display: none;
    }

    #categoriesDropdown.active
    {
        height: 343px;
    }

    #categoriesDropdown > div
    {
        height: 42px;
        line-height: 42px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #01011E;
        background: #F5F7F9;
        color: #01011E;
    }

    #categoriesDropdown > div:hover
    {
        color: #008195;
    }

    #categoriesDropdownText
    {
        transition: background-color 0.2s ease;
    }

    #categoriesDropdown.active > #categoriesDropdownText
    {
        background-color: #F5F7F9;
        background: #008195;
        color: #FFF;
    }

    #categoriesDropdownText > span
    {
        background: url(imgs/bottom.svg) no-repeat;
        height: 16px;
        width: 16px;
        display: inline-block;
    }

    #categoriesDropdown.active > #categoriesDropdownText > span
    {
        background: url(imgs/top.svg) no-repeat;
        margin-bottom: -6px;
    }

    #categoriesDropdown > div.active
    {
        background: #cfe4e7;
    }

    #sortByDropdown
    {
        width: 106px;
        height: 32px;
        color: #01011E;
        font-family: Poppins;
        font-size: 13px;
        font-weight: 400;
        position: absolute;
        left: 872px;
        top: 107px;
        cursor: pointer;
        transition: height 0.2s ease;
        overflow: hidden;
        border: 1px solid #01011E00;
        background-color: white;
        border-radius: 16px;
        display: none;
    }

    #sortByDropdown.active
    {
        height: 164px;
        border: 1px solid #01011E;
    }

    #sortByDropdown > div
    {
        height: 32px;
        line-height: 32px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #01011ECC;
        background: #F5F7F9;
        color: #01011ECC;
    }

    #sortByDropdown > div.active
    {
        background: #b7d9dd;
    }

    #sortByDropdown > div:hover
    {
        color: #008195;
    }

    #sortByDropdownText
    {
        transition: background-color 0.2s ease;
        background: white !important;
        position: relative;
    }

    #sortByDropdownTextSpan
    {
        line-height: 21px;
        display: inline-block;
        margin-top: 11px;
    }

    #sortByTitle2
    {
        position: absolute;
        left: 8px;
        top: -8px;
    }

    #sortByDropdown.active > #sortByDropdownText
    {
        color: #FFF;
        background: rgba(1, 1, 30, 0.80) !important;
    }

    #sortByDropdownIcon
    {
        background: url(imgs/sortDown.svg) no-repeat;
        height: 14px;
        width: 14px;
        display: inline-block;
        margin-bottom: -5px;
    }

    #sortByDropdown.active > #sortByDropdownIcon
    {
        background: url(imgs/sortUp.svg) no-repeat;
    }



    #filterByDropdown
    {
        width: 106px;
        height: 32px;
        color: #01011E;
        font-family: Poppins;
        font-size: 13px;
        font-weight: 400;
        position: absolute;
        left: 982px;
        top: 107px;
        cursor: pointer;
        transition: height 0.2s ease;
        overflow: hidden;
        border: 1px solid #01011E00;
        background-color: white;
        border-radius: 16px;
        display: none;
    }

    #filterByDropdown:hover
    {
        height: 164px;
        border: 1px solid #01011E;
    }

    #filterByDropdown > div
    {
        height: 32px;
        line-height: 32px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #01011ECC;
        background: #F5F7F9;
        color: #01011ECC;
    }

    #filterByDropdown > div:hover
    {
        color: #008195;
    }

    #filterByDropdownText
    {
        transition: background-color 0.2s ease;
        background: white !important;
    }

    #filterByDropdown:hover > #filterByDropdownText
    {
        color: #FFF;
        background: rgba(1, 1, 30, 0.80) !important;
    }

    #filterByDropdownText > span
    {
        background: url(imgs/sortDown.svg) no-repeat;
        height: 14px;
        width: 14px;
        display: inline-block;
        margin-bottom: -5px;
    }

    #filterByDropdown:hover > #filterByDropdownText > span
    {
        background: url(imgs/sortUp.svg) no-repeat;
    }

    #zoomResetButton
    {
        background: url(imgs/resetCamera.svg) no-repeat;
        background-position: center;
        background-size: contain;
        width: 36px;
        height: 36px;
        position: absolute;
        left: -9px;
        top: 227px;
        cursor: pointer;
        background-color: white;
        border-radius: 32px;
        transition: background-color 0.1s;
    }

    #zoomResetButton:hover
    {
        background-color: #ffffffe1;
    }

    #zoomResetButton:hover
    {
        color: #d4eaee;
    }

    #rotateLeftButton, #rotateRightButton
    {
        position: absolute;
        bottom: 84px;
        width: 29px;
        height: 29px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    #rotateLeftButton:hover, #rotateRightButton:hover
    {
        opacity: .6;
    }

    #rotateLeftButton
    {
        background-image: url('imgs/rotateLeft.svg');
        right: 30%;
    }

    #rotateRightButton
    {
        background-image: url('imgs/rotateRight.svg');
        left: 30%;
    }

    #canvasLoadingDiv
    {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000000b7;
        text-align: center;
        transition: opacity 0.33s;
        font-size: 56px;
        line-height: 810px;
        opacity: 0;
        pointer-events: none;
        font-family: Poppins;
    }

    #canvasLoadingDiv.active
    {
        opacity: 1;
        pointer-events: all;
    }

    #contentLoadingMask
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00000000;
        display: none;
    }

    #contentLoadingMask.active
    {
        display: block;
    }

    .checkmark
    {
        background: url(imgs/check.svg) no-repeat;
        background-position: center;
        background-size: contain;
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 4px;
    }

    .loader
    {
        background: url('imgs/loading.gif') no-repeat;
        background-position: center;
        background-size: contain;
        display: inline-block;
        width: 24px;
        height: 24px;
        margin-left: 2px;
    }

    #shadow
    {
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translateX(-50%);
        background: url(imgs/shadow.svg) no-repeat;
        background-position: center;
        background-size: contain;
        width: 200px;
        height: 50px;
    }

    #sidebar
    {
        position: absolute;
        right: -220px;
        top: 0px;
        width: 200px;
        height: 100%;
        background: #34344B;
        box-shadow: -2px 2px 4px -1px rgba(1, 1, 30, 0.45);
        color: white;
        overflow: hidden;
        font-family: Poppins;
        transition: right 0.4s ease;
    }

    #sidebar.active
    {
        right: 0px;
    }

    #closeSidebarButton
    {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 16px;
        height: 16px;
        background-image: url(imgs/close.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        cursor: pointer;
    }

    #sidebarDiv1, #sidebarDiv2
    {
        position: absolute;
        top: 60px;
        left: 24px;
        transition: left 0.4s ease;
    }

    #sidebarDiv2.hidden
    {
        position: absolute;
        left: 224px;
    }

    #sidebarDiv1.hidden
    {
        position: absolute;
        left: -224px;
    }

    #sidebarDiv1Title, #sidebarDiv2Title
    {
        color: #29FFFF;
        font-family: "Baloo 2";
        font-size: 26px;
        font-weight: 600;
        text-transform: capitalize;
    }

    #sidebarDiv1Content
    {
        font-size: 17px;
        font-weight: 400;
        line-height: 32px;
        text-transform: lowercase;
        margin-left: 8px;
        margin-top: 10px;
    }

    #sidebarDiv2Content
    {
        font-size: 15px;
        font-weight: 400;
        line-height: 32px;
        text-transform: lowercase;
        margin-top: 10px;
        margin-left: 4px;
    }

    #sidebarDiv1Content > div, #sidebarDiv2Content > div
    {
        cursor: pointer;
    }

    #sidebarDiv1Content > div:hover, #sidebarDiv2Content > div:hover
    {
        color: #29FFFF;
    }

    #sidebarDiv2Content > div > div
    {
        display: inline-block;
        width: 13px;
        height: 13px;
        border-radius: 2px;
        background: #FFF;
        box-shadow: 0px 0px 2px 0px rgba(1, 1, 30, 0.60) inset;
        margin-right: 5px;
        margin-bottom: -1px;
    }

    #sidebarDiv2Content > div.active > div
    {
        background-image: url(imgs/checkboxFilled.svg);
    }

    #sidebarDiv2Back
    {
        position: absolute;
        top: -40px;
        left: -8px;
        width: 18px;
        height: 18px;
        background-image: url(imgs/back.svg);
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
    }

    #applyFiltersButton
    {
        width: 138px;
        height: 34px;
        box-shadow: 0px 0px 5px 2px rgba(1, 1, 30, 0.25);
        color: #01011E;
        text-align: center;
        font-family: Poppins;
        font-size: 15px;
        font-weight: 500;
        border-radius: 40px;
        background-color: #29FFFF;
        line-height: 35px;
        cursor: pointer;
        margin-top: 20px;
    }

    #applyFiltersButton:hover
    {
        color: #FFF;
    }

    #resetAllButton
    {
        width: 100%;
        text-align: center;
        color: #29FFFF;
        font-family: Poppins;
        font-size: 16px;
        font-weight: 400;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: 24%;
        text-underline-position: from-font;
        margin-top: 10px;
        cursor: pointer;
    }

    #resetAllButton:hover
    {
        color: #FFF;
    }

    #newCategoryBubblesLeft
    {
        height: 100%;
        position: absolute;
        right: -102px;
        width: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    #newCategorieButtons
    {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        height: 100%;
        width: 64px;
    }

    #newCategorieButtons > div, #newCategoryBubblesLeft > div
    {
        aspect-ratio: 64/64;
        max-width: 60px;
        min-width: 52px;
        width: 3vw;
        height: auto;
        background-color: white;
        border-radius: 64px;
        box-shadow: 0 0 6px #00000059;
        cursor: pointer;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 84%;
        border: 6px solid #ff29ed00;
        transition: border 0.1s ease;
    }

    #newCategorieButtons > div:hover, #newCategoryBubblesLeft > div:hover
    {
        border: 6px solid #ffa1f780;
    }

    #newCategorieButtons > div.active, #newCategoryBubblesLeft > div.active
    {
        border: 6px solid #ff4af0;
    }

    #newCategoriesDiv2
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
        width: 100%;
        position: relative;
        height: 46px;
    }

    #newCategories2Button
    {
        cursor: pointer;
        background: url(imgs/roundedLeftArr.png) no-repeat;
        background-position: center;
        background-size: contain;
        width: 24px;
        height: 22px;
        position: absolute;
        left: -25px;
        top: 7px;
    }

    #newCategories2Container
    {
        width: 307px;
        border-radius: 22px;
        border: solid 1px rgba(184, 184, 184, 0.705);
        overflow: hidden;
        transition: height 0.2s ease;
        cursor: pointer;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        padding: 4px 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        position: absolute;
        top: 0;
        left: 3px;
        height: 28px;
        z-index: 101;
        background: rgba(255, 255, 255);
    }

    #newCategories2Container:hover
    {
        border-color: #6e39ff;
        height: auto;
    }

    #filterItemsLabel
    {
        font-size: 16px;
        margin: 0 16px;
    }

    #newCategories2Container > div
    {
        display: flex;
        align-items: center;
        gap: 4px;
        background-color: lightgray;
        border-radius: 20px;
        padding: 2px 4px 2px 8px;
    }

    #newCategories2Container > div:hover
    {
        background: rgba(179, 243, 243, 0.8);
        color: #000000c9;
    }

    #newCategories2Container > div > span
    {
        cursor: default;
    }

    #newCategories2Container > div > .close
    {
        background: black;
        color: white;
        border-radius: 32px;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin: 2px;
    }

    #newSubCategoriesDiv2
    {
        position: absolute;
        top: 0;
        left: -200px;
        width: 150px;
        border: 3px solid #420c88;
        border-radius: 16px;
        background: #ffffff;
        color: #000000c9;
        padding: 10px;
        font-family: Poppins;
        visibility: hidden;
        z-index: 100;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    #newSubCategoriesDiv2.active
    {
        visibility: visible;
        pointer-events: all;
    }

    #newSubCategoriesDiv2 > div
    {
        cursor: pointer;
        vertical-align: middle;
        line-height: 32px;
    }

    #newSubCategoriesDiv2 > div > input
    {
        cursor: pointer;
        margin-right: 6px;
    }

    #newSubCategoriesDiv2 > div:hover
    {
        color: #7c32dd;
    }

    #mobile-disclaimer {
        display: none;
    }
}
@media (max-width: 1024px) {
    #try-on-feature, #loadingDiv {
        display: none;
    }

    #mobile-disclaimer {
        margin: 20px;
        padding: 40px;
        text-align: center;
        color: #01011E;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #bfe1fd 0%, #b5b7ff, #ffe7fa 100%);
        display: flex;
        flex-direction: column;
        height: 75vh;
        gap: 60px;
    }

    #mobile-disclaimer-logo {
        width: 300px;
        align-self: center;
    }

    #mobile-disclaimer-text-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    #mobile-disclaimer-header {
        font-size: 28px;
        font-weight: 500;
    }

    #mobile-disclaimer-subheading {
        font-size: 20px;
        font-weight: 200;
        font-family: 'Poppins', sans-serif;
    }
}