.loader {
    background-color: black;
    position: relative;
    width: 2.5em;
    height: 2.5em;
    transform-origin: center;
    transition: 1s;
    border-radius: 50px;
    box-shadow: inset 0px 0px 10px rgb(63, 184, 11),
        inset 5px 5px 12px rgba(87, 122, 48, 0.8),
        inset 8px 8px 1px rgba(160, 120, 255, 0.7),
        0px 0px 1px rgba(160, 120, 255, 0.6);
    animation: 1.2s linear infinite 0s running first682;
}

.loader div {
    width: inherit;
    height: inherit;
    position: absolute;
}

#first {
    transform: rotate(90deg);
}

#first::before {
    --width: 1em;
    --height: 1em;
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - var(--width) / 2);
    width: 1em;
    height: 1em;
    background-color: rgb(44, 0, 114);
    box-shadow: inset 5px 5px 10px rgb(160, 120, 255), 0px 0px 2px white;
    border-radius: 50px;
    animation: 0.8s ease-in 0s infinite running jump2;
}

#second {
    transform: rotate(90deg);
}

#second::before {
    --width: 1em;
    --height: 1em;
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - var(--width) / 2);
    width: 1em;
    height: 1em;
    background-color: rgb(44, 0, 114);
    box-shadow: inset 5px 5px 10px rgb(160, 120, 255), 0px 0px 2px white;
    border-radius: 50px;
    animation: 1.5s ease-in 0s infinite running jump2;
}

#third {
    transform: rotate(90deg);
}

#third::before {
    --width: 1em;
    --height: 1em;
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - var(--width) / 2);
    width: 1em;
    height: 1em;
    background-color: rgb(44, 0, 114);
    box-shadow: inset 5px 5px 10px rgb(160, 120, 255), 0px 0px 2px white;
    border-radius: 50px;
    animation: 1.6s ease-in 0s infinite running jump2;
}

.loader::after {
    --width: 1em;
    --height: 1em;
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - var(--width) / 2);
    width: 1em;
    height: 1em;
    background-color: rgb(44, 0, 114);
    box-shadow: inset 5px 5px 10px rgb(160, 120, 255), 0px 0px 2px white;
    border-radius: 50px;
    animation: 1.2s ease-in 1s alternate infinite running jump2;
}

@keyframes first682 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(0deg);
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(90deg);
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(180deg);
        transform: rotate(270deg);
    }

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

@keyframes jump2 {
    0% {
        top: 100%;
    }

    25% {
        top: 230%;
    }

    50% {
        top: 100%;
    }

    75% {
        height: 0.6em;
    }

    100% {
        height: 1em;
    }
}

/* مخصوص لایه کندوی زنبور */
.honey-container {
    margin: 3rem auto;
    /* padding: 1rem 0 2.4rem; */
    text-align: center;
    /* max-width: 100rem; */
    /* margin-right: 15%; */
    /* margin-top: 35%; */
}

.honey-item {
    width: 15rem;
    height: 15rem;
    position: relative;
    display: inline-block;
    margin: 0.4rem;
}

/* نسخه بسیار کوچک که کل عرض صفحه را پر کند */
.honey-container.honey--xs {
    --hex-size: 5rem;
    display: grid;
    grid-template-columns: repeat(8, var(--hex-size));
    grid-auto-rows: calc(var(--hex-size) * 0.75);
    column-gap: calc(var(--hex-size) * 0.1);
    row-gap: 1rem;
    justify-content: center;
}

.honey-container.honey--xs .honey-item {
    width: var(--hex-size);
    height: var(--hex-size);
    margin: 0;
    grid-column: auto;
}

@media (max-width: 442.98px) {
    .honey-container.honey--xs {
        /* موبایل: اندازه کوچکتر و تعداد ستون ثابت برای الگوی دقیق */
        --hex-size: 3.5rem;
        --mobile-offset: 1.75rem;
        grid-template-columns: repeat(4, var(--hex-size));
        column-gap: calc(var(--hex-size) * 0.08);
        padding-inline: 8px;
        box-sizing: border-box;
    }
    /* الگوی یکی‌درمیان: ردیف دوم چپ، ردیف سوم راست، ... */
    .honey-container.honey--xs .honey-item {
        transform: translateX(0);
    }
    /* ردیف‌های زوج (row 2,4,...) = ایندکس‌های 8n+5..8n+8 */
    .honey-container.honey--xs .honey-item:nth-child(8n + 5),
    .honey-container.honey--xs .honey-item:nth-child(8n + 6),
    .honey-container.honey--xs .honey-item:nth-child(8n + 7),
    .honey-container.honey--xs .honey-item:nth-child(8n + 8) {
        transform: translateX(calc(-1 * var(--mobile-offset)));
    }
    /* ردیف‌های فرد بعد از اول (row 3,5,...) = ایندکس‌های 8n+1..8n+4 به‌جز سطر اول */
    .honey-container.honey--xs
        .honey-item:nth-child(8n + 1):not(:nth-child(-n + 4)),
    .honey-container.honey--xs
        .honey-item:nth-child(8n + 2):not(:nth-child(-n + 4)),
    .honey-container.honey--xs
        .honey-item:nth-child(8n + 3):not(:nth-child(-n + 4)),
    .honey-container.honey--xs
        .honey-item:nth-child(8n + 4):not(:nth-child(-n + 4)) {
        transform: translateX(var(--mobile-offset));
    }
}

/* @media (max-width: 400px) {
    .honey-container.honey--xs {
        --hex-size: 3rem;
        grid-template-columns: repeat(auto-fit, minmax(var(--hex-size), 1fr));
        padding-inline: 6px;
    }
} */

/* بازگردانی چینش لانه‌زنبوری با آفست ستون‌های زوج */

.honey-item img {
    width: 50%;
    display: block;
    visibility: hidden;
}

.honey-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--tg-theme-primary);
    clip-path: polygon(
        50% 0,
        93.3% 25%,
        93.3% 75%,
        50% 100%,
        6.7% 75%,
        6.7% 25%
    );
    transform: scale(1.077);
    transition: transform 0.3s;

    /* سایه واقعی روی شکل */
    filter: drop-shadow(
        rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px,
        rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px,
        rgba(0, 0, 0, 0.09) 0px -3px 5px
    );
}

.honey-item:hover::before {
    transform: scale(1.154);
    /* وقتی hover میکنی سایه قوی تر میشه */
    /* filter: drop-shadow(rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px); */
}

.honey-item a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    clip-path: polygon(
        50% 0,
        93.3% 25%,
        93.3% 75%,
        50% 100%,
        6.7% 75%,
        6.7% 25%
    );
}

@supports (display: grid) {
    @media (min-width: 17rem) {
        .honey-container {
            display: grid;
            /* max-width: 15rem; */
            /* margin-right: 0%; */

            padding: 1rem 0 2.4rem;
            margin: 0;
            grid-template-columns: repeat(7, 3.8rem);
        }

        .honey-item {
            /* grid-column: span 2; */
            margin: 0;
            margin-bottom: -1rem;
            width: 7.5rem;
            height: 7.5rem;
        }

        .honey-item:nth-child(5n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(5n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(5n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(5n + 4) {
            grid-column: 2;
        }

        .honey-item:nth-child(5n + 0) {
            grid-column: 4;
        }
    }
    @media (min-width: 467px) {
        .honey-container {
            display: grid;
            /* max-width: 15rem; */
            /* margin-right: 0%; */

            padding: 1rem 0 2.4rem;
            margin: 0;
            grid-template-columns: repeat(7, 3.8rem);
        }

        .honey-item {
            /* grid-column: span 2; */
            margin: 0;
            margin-bottom: -1rem;
            width: 7.5rem;
            height: 7.5rem;
        }
        /* الگوی 7تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(7n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(7n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(7n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(7n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(7n + 5) {
            grid-column: 2;
        }

        .honey-item:nth-child(7n + 6) {
            grid-column: 4;
        }

        .honey-item:nth-child(7n + 0) {
            grid-column: 6;
        }
    }

    @media (min-width: 529px) {
        .honey-container {
            display: grid;
            /* max-width: 15rem; */
            /* margin-right: 0%; */

            padding: 1rem 0 2.4rem;
            margin: 0;
            grid-template-columns: repeat(7, 3.8rem);
        }

        .honey-item {
            /* grid-column: span 2; */
            margin: 0;
            margin-bottom: -1rem;
            width: 7.5rem;
            height: 7.5rem;
        }
        /* الگوی 7تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(7n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(7n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(7n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(7n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(7n + 5) {
            grid-column: 2;
        }

        .honey-item:nth-child(7n + 6) {
            grid-column: 4;
        }

        .honey-item:nth-child(7n + 0) {
            grid-column: 6;
        }
    }

    @media (min-width: 600px) {
        .honey-container {
            display: grid;
            padding: 1rem 0 2.4rem;
            margin: 0;
            grid-template-columns: repeat(9, 3.8rem);
        }

        .honey-item {
            margin: 0;
            margin-bottom: -1rem;
            width: 7.5rem;
            height: 7.5rem;
        }

        /* الگوی 9تایی برای چینش لانه‌زنبوری */
        .honey-item:nth-child(9n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(9n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(9n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(9n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(9n + 5) {
            grid-column: 9;
        }

        /* حالا ردیف بعدی (offset) */
        .honey-item:nth-child(9n + 6) {
            grid-column: 2;
        }

        .honey-item:nth-child(9n + 7) {
            grid-column: 4;
        }

        .honey-item:nth-child(9n + 8) {
            grid-column: 6;
        }

        .honey-item:nth-child(9n + 0) {
            grid-column: 8;
        }
    }

    @media (min-width: 740px) {
        .honey-container {
            /* max-width: 20rem; */
            margin-right: -1%;
            grid-template-columns: repeat(9, 4.5rem);
        }
        .honey-item {
            width: 9rem;
            height: 9rem;
            position: relative;
            display: inline-block;
            /* margin: 0.4rem; */
        }
        /* الگوی 5تایی آیتم‌ها برای لانه‌زنبوری */
        /* الگوی 9تایی برای چینش لانه‌زنبوری */
        .honey-item:nth-child(9n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(9n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(9n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(9n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(9n + 5) {
            grid-column: 9;
        }

        /* حالا ردیف بعدی (offset) */
        .honey-item:nth-child(9n + 6) {
            grid-column: 2;
        }

        .honey-item:nth-child(9n + 7) {
            grid-column: 4;
        }

        .honey-item:nth-child(9n + 8) {
            grid-column: 6;
        }

        .honey-item:nth-child(9n + 0) {
            grid-column: 8;
        }
    }

    @media (min-width: 846px) {
        .honey-container {
            display: grid;
            padding: 1rem 0 2.4rem;
            margin: 0;
            grid-template-columns: repeat(11, 4.5rem); /* 11 ستون */
        }

        .honey-item {
            margin: 0;
            margin-bottom: -1rem;
            width: 9rem;
            height: 9rem;
        }

        /* ردیف اول: ستون‌های 1,3,5,7,9,11 */
        .honey-item:nth-child(11n + 1) {
            grid-column: 1;
        }
        .honey-item:nth-child(11n + 2) {
            grid-column: 3;
        }
        .honey-item:nth-child(11n + 3) {
            grid-column: 5;
        }
        .honey-item:nth-child(11n + 4) {
            grid-column: 7;
        }
        .honey-item:nth-child(11n + 5) {
            grid-column: 9;
        }
        .honey-item:nth-child(11n + 6) {
            grid-column: 11;
        }

        /* ردیف دوم: ستون‌های offset شده به راست (2,4,6,8,10) */
        .honey-item:nth-child(11n + 7) {
            grid-column: 2;
        }
        .honey-item:nth-child(11n + 8) {
            grid-column: 4;
        }
        .honey-item:nth-child(11n + 9) {
            grid-column: 6;
        }
        .honey-item:nth-child(11n + 10) {
            grid-column: 8;
        }
        .honey-item:nth-child(11n + 0) {
            grid-column: 10;
        }
    }

    @media (min-width: 992px) {
        .honey-container {
            /* max-width: 20rem; */
            margin-right: -1%;
            grid-template-columns: repeat(9, 6rem);
        }
        .honey-item {
            width: 12rem;
            height: 12rem;
            position: relative;
            display: inline-block;
            /* margin: 0.4rem; */
        }
        /* الگوی 5تایی آیتم‌ها برای لانه‌زنبوری */
        /* الگوی 9تایی برای چینش لانه‌زنبوری */
        .honey-item:nth-child(9n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(9n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(9n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(9n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(9n + 5) {
            grid-column: 9;
        }

        /* حالا ردیف بعدی (offset) */
        .honey-item:nth-child(9n + 6) {
            grid-column: 2;
        }

        .honey-item:nth-child(9n + 7) {
            grid-column: 4;
        }

        .honey-item:nth-child(9n + 8) {
            grid-column: 6;
        }

        .honey-item:nth-child(9n + 0) {
            grid-column: 8;
        }
    }

    @media (min-width: 1212px) {
        .honey-container {
            margin-right: 0;
            grid-template-columns: repeat(8, 7.5rem);
            /* 8 ستون */
        }
        .honey-item {
            width: 15rem;
            height: 15rem;
            position: relative;
            display: inline-block;
            margin: 0.4rem;
        }
        /* الگوی 8تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(8n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(8n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(8n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(8n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(8n + 5) {
            grid-column: 2;
        }

        .honey-item:nth-child(8n + 6) {
            grid-column: 4;
        }

        .honey-item:nth-child(8n + 7) {
            grid-column: 6;
        }

        .honey-item:nth-child(8n + 0) {
            grid-column: 8;
        }
    }

    @media (min-width: 1370px) {
        .honey-container {
            grid-template-columns: repeat(10, 7.5rem);
            /* 9 ستون */
        }
        .honey-item {
            width: 15rem;
            height: 15rem;
            position: relative;
            display: inline-block;
            margin: 0.4rem;
        }
        /* الگوی 10تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(10n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(10n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(10n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(10n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(10n + 5) {
            grid-column: 9;
        }

        .honey-item:nth-child(10n + 6) {
            grid-column: 2;
        }

        .honey-item:nth-child(10n + 7) {
            grid-column: 4;
        }

        .honey-item:nth-child(10n + 8) {
            grid-column: 6;
        }

        .honey-item:nth-child(10n + 9) {
            grid-column: 8;
        }

        .honey-item:nth-child(10n + 0) {
            grid-column: 10;
        }
    }

    @media (min-width: 1525px) {
        .honey-container {
            grid-template-columns: repeat(11, 7.5rem);
            /* 9 ستون */
        }
        .honey-item {
            width: 15rem;
            height: 15rem;
            position: relative;
            display: inline-block;
            margin: 0.4rem;
        }
        /* الگوی 11تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(11n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(11n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(11n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(11n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(11n + 5) {
            grid-column: 9;
        }

        .honey-item:nth-child(11n + 6) {
            grid-column: 11;
        }

        .honey-item:nth-child(11n + 7) {
            grid-column: 2;
        }

        .honey-item:nth-child(11n + 8) {
            grid-column: 4;
        }

        .honey-item:nth-child(11n + 9) {
            grid-column: 6;
        }

        .honey-item:nth-child(11n + 10) {
            grid-column: 8;
        }

        .honey-item:nth-child(11n + 0) {
            grid-column: 10;
        }
    }

    @media (min-width: 1644px) {
        .honey-container {
            grid-template-columns: repeat(12, 7.5rem);
            /* 9 ستون */
        }
        .honey-item {
            width: 15rem;
            height: 15rem;
            position: relative;
            display: inline-block;
            margin: 0.4rem;
        }
        /* الگوی 12تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(12n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(12n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(12n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(12n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(12n + 5) {
            grid-column: 9;
        }

        .honey-item:nth-child(12n + 6) {
            grid-column: 11;
        }

        .honey-item:nth-child(12n + 7) {
            grid-column: 2;
        }

        .honey-item:nth-child(12n + 8) {
            grid-column: 4;
        }

        .honey-item:nth-child(12n + 9) {
            grid-column: 6;
        }

        .honey-item:nth-child(12n + 10) {
            grid-column: 8;
        }

        .honey-item:nth-child(12n + 11) {
            grid-column: 10;
        }

        .honey-item:nth-child(12n + 0) {
            grid-column: 12;
        }
    }

    @media (min-width: 1725px) {
        .honey-container {
            grid-template-columns: repeat(13, 7.5rem);
            /* 9 ستون */
        }
        .honey-item {
            width: 15rem;
            height: 15rem;
            position: relative;
            display: inline-block;
            margin: 0.4rem;
        }
        /* الگوی 13تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(13n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(13n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(13n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(13n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(13n + 5) {
            grid-column: 9;
        }

        .honey-item:nth-child(13n + 6) {
            grid-column: 11;
        }

        .honey-item:nth-child(13n + 7) {
            grid-column: 13;
        }

        .honey-item:nth-child(13n + 8) {
            grid-column: 2;
        }

        .honey-item:nth-child(13n + 9) {
            grid-column: 4;
        }

        .honey-item:nth-child(13n + 10) {
            grid-column: 6;
        }

        .honey-item:nth-child(13n + 11) {
            grid-column: 8;
        }

        .honey-item:nth-child(13n + 12) {
            grid-column: 10;
        }

        .honey-item:nth-child(13n + 0) {
            grid-column: 12;
        }
    }

    @media (min-width: 1860px) {
        .honey-container {
            grid-template-columns: repeat(14, 7.5rem);
            /* 9 ستون */
        }
        .honey-item {
            width: 15rem;
            height: 15rem;
            position: relative;
            display: inline-block;
            margin: 0.4rem;
        }
        /* الگوی 14تایی آیتم‌ها برای لانه‌زنبوری */
        .honey-item:nth-child(14n + 1) {
            grid-column: 1;
        }

        .honey-item:nth-child(14n + 2) {
            grid-column: 3;
        }

        .honey-item:nth-child(14n + 3) {
            grid-column: 5;
        }

        .honey-item:nth-child(14n + 4) {
            grid-column: 7;
        }

        .honey-item:nth-child(14n + 5) {
            grid-column: 9;
        }

        .honey-item:nth-child(14n + 6) {
            grid-column: 11;
        }

        .honey-item:nth-child(14n + 7) {
            grid-column: 13;
        }

        .honey-item:nth-child(14n + 8) {
            grid-column: 2;
        }

        .honey-item:nth-child(14n + 9) {
            grid-column: 4;
        }

        .honey-item:nth-child(14n + 10) {
            grid-column: 6;
        }

        .honey-item:nth-child(14n + 11) {
            grid-column: 8;
        }

        .honey-item:nth-child(14n + 12) {
            grid-column: 10;
        }

        .honey-item:nth-child(14n + 13) {
            grid-column: 12;
        }

        .honey-item:nth-child(14n + 0) {
            grid-column: 14;
        }
    }
}

/* الگوی آفست افقی یکی‌درمیان برای honey--xs (حرفه‌ای و پایدار) */
.honey-container.honey--xs .honey-item {
    --row-shift: 0px;
    transform: translateX(var(--row-shift));
}

/* پایه: 8 ستون (mod 16) */
.honey-container.honey--xs .honey-item:nth-child(16n + 9),
.honey-container.honey--xs .honey-item:nth-child(16n + 10),
.honey-container.honey--xs .honey-item:nth-child(16n + 11),
.honey-container.honey--xs .honey-item:nth-child(16n + 12),
.honey-container.honey--xs .honey-item:nth-child(16n + 13),
.honey-container.honey--xs .honey-item:nth-child(16n + 14),
.honey-container.honey--xs .honey-item:nth-child(16n + 15),
.honey-container.honey--xs .honey-item:nth-child(16n + 16) {
    --row-shift: -2.5rem;
}
.honey-container.honey--xs
    .honey-item:nth-child(16n + 1):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 2):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 3):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 4):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 5):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 6):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 7):not(:nth-child(-n + 8)),
.honey-container.honey--xs
    .honey-item:nth-child(16n + 8):not(:nth-child(-n + 8)) {
    --row-shift: 0rem;
}

@media (min-width: 529px) {
    /* 10 ستون (mod 20) */
    .honey-container.honey--xs {
        /* ستون‌ها در بالا تنظیم شده‌اند */
    }
    .honey-container.honey--xs .honey-item:nth-child(20n + 11),
    .honey-container.honey--xs .honey-item:nth-child(20n + 12),
    .honey-container.honey--xs .honey-item:nth-child(20n + 13),
    .honey-container.honey--xs .honey-item:nth-child(20n + 14),
    .honey-container.honey--xs .honey-item:nth-child(20n + 15),
    .honey-container.honey--xs .honey-item:nth-child(20n + 16),
    .honey-container.honey--xs .honey-item:nth-child(20n + 17),
    .honey-container.honey--xs .honey-item:nth-child(20n + 18),
    .honey-container.honey--xs .honey-item:nth-child(20n + 19),
    .honey-container.honey--xs .honey-item:nth-child(20n + 20) {
        --row-shift: -2.5rem;
    }
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 1):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 2):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 3):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 4):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 5):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 6):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 7):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 8):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 9):not(:nth-child(-n + 10)),
    .honey-container.honey--xs
        .honey-item:nth-child(20n + 10):not(:nth-child(-n + 10)) {
        --row-shift: 0rem;
    }
}

@media (min-width: 740px) {
    /* 12 ستون (mod 24) */
    .honey-container.honey--xs .honey-item:nth-child(24n + 13),
    .honey-container.honey--xs .honey-item:nth-child(24n + 14),
    .honey-container.honey--xs .honey-item:nth-child(24n + 15),
    .honey-container.honey--xs .honey-item:nth-child(24n + 16),
    .honey-container.honey--xs .honey-item:nth-child(24n + 17),
    .honey-container.honey--xs .honey-item:nth-child(24n + 18),
    .honey-container.honey--xs .honey-item:nth-child(24n + 19),
    .honey-container.honey--xs .honey-item:nth-child(24n + 20),
    .honey-container.honey--xs .honey-item:nth-child(24n + 21),
    .honey-container.honey--xs .honey-item:nth-child(24n + 22),
    .honey-container.honey--xs .honey-item:nth-child(24n + 23),
    .honey-container.honey--xs .honey-item:nth-child(24n + 24) {
        --row-shift: -2.5rem;
    }
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 1):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 2):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 3):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 4):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 5):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 6):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 7):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 8):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 9):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 10):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 11):not(:nth-child(-n + 12)),
    .honey-container.honey--xs
        .honey-item:nth-child(24n + 12):not(:nth-child(-n + 12)) {
        --row-shift: 0rem;
    }
}

@media (min-width: 992px) {
    /* 14 ستون (mod 28) */
    .honey-container.honey--xs .honey-item:nth-child(28n + 15),
    .honey-container.honey--xs .honey-item:nth-child(28n + 16),
    .honey-container.honey--xs .honey-item:nth-child(28n + 17),
    .honey-container.honey--xs .honey-item:nth-child(28n + 18),
    .honey-container.honey--xs .honey-item:nth-child(28n + 19),
    .honey-container.honey--xs .honey-item:nth-child(28n + 20),
    .honey-container.honey--xs .honey-item:nth-child(28n + 21),
    .honey-container.honey--xs .honey-item:nth-child(28n + 22),
    .honey-container.honey--xs .honey-item:nth-child(28n + 23),
    .honey-container.honey--xs .honey-item:nth-child(28n + 24),
    .honey-container.honey--xs .honey-item:nth-child(28n + 25),
    .honey-container.honey--xs .honey-item:nth-child(28n + 26),
    .honey-container.honey--xs .honey-item:nth-child(28n + 27),
    .honey-container.honey--xs .honey-item:nth-child(28n + 28) {
        --row-shift: -2.5rem;
    }
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 1):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 2):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 3):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 4):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 5):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 6):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 7):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 8):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 9):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 10):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 11):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 12):not(:nth-child(-n + 14)),
    .honey-container.honey--xs
        .honey-item:nth-child(28n + 13):not(:nth-child(-n + 14)) {
        --row-shift: 0rem;
    }
}

.topProduct_image {
    width: 77px;
    height: 77px;
}

/* دکمه دارک مود */

/* REMASTERED */
/* RTX-ON */
/* completely redone toggle and droid */

.bb8-toggle {
    --toggle-size: 16px;
    /* finally I removed the scale now everything depends on the font-size */
    /* --margin-top-for-head: 1.75em; */
    /* it's just in case 👆 */
    --toggle-width: 100px;
    --toggle-height: 30px;
    --toggle-offset: calc((var(--toggle-height) - var(--bb8-diameter)) / 2);
    --toggle-bg: linear-gradient(#2c4770, #070e2b 35%, #628cac 50% 70%, #a6c5d4)
        no-repeat;
    --bb8-diameter: 2.375em;
    --radius: 99em;
    --transition: 0.4s;
    --accent: #de7d2f;
    --bb8-bg: #fff;
}

.bb8-toggle,
.bb8-toggle *,
.bb8-toggle *::before,
.bb8-toggle *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.bb8-toggle {
    cursor: pointer;
    margin-top: var(--margin-top-for-head);
    font-size: var(--toggle-size);
}

.bb8-toggle__checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

.bb8-toggle__container {
    width: var(--toggle-width);
    height: var(--toggle-height);
    background: var(--toggle-bg);
    background-size: 100% 11.25em;
    background-position-y: -5.625em;
    border-radius: var(--radius);
    position: relative;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.bb8 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: calc(var(--toggle-offset) - 1.688em + 0.188em);
    left: var(--toggle-offset);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    z-index: 2;
}

.bb8__head-container {
    position: relative;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    z-index: 2;
    -webkit-transform-origin: 1.25em 3.75em;
    -ms-transform-origin: 1.25em 3.75em;
    transform-origin: 1.25em 3.75em;
}

.bb8__head {
    overflow: hidden;
    margin-bottom: -0.188em;
    width: 1.5em;
    height: 1.2em;
    background: -o-linear-gradient(
            transparent 0.063em,
            dimgray 0.063em 0.313em,
            transparent 0.313em 0.375em,
            var(--accent) 0.375em 0.5em,
            transparent 0.5em 1.313em,
            silver 1.313em 1.438em,
            transparent 1.438em
        ),
        -o-linear-gradient(45deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(135deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(var(--bb8-bg) 1.25em, transparent 1.25em);
    background: -o-linear-gradient(
            transparent 0.063em,
            dimgray 0.063em 0.313em,
            transparent 0.313em 0.375em,
            var(--accent) 0.375em 0.5em,
            transparent 0.5em 1.313em,
            silver 1.313em 1.438em,
            transparent 1.438em
        ),
        -o-linear-gradient(45deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(135deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(var(--bb8-bg) 1.25em, transparent 1.25em);
    background: -o-linear-gradient(
            transparent 0.063em,
            dimgray 0.063em 0.313em,
            transparent 0.313em 0.375em,
            var(--accent) 0.375em 0.5em,
            transparent 0.5em 1.313em,
            silver 1.313em 1.438em,
            transparent 1.438em
        ),
        -o-linear-gradient(45deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(135deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(var(--bb8-bg) 1.25em, transparent 1.25em);
    background: -o-linear-gradient(
            transparent 0.063em,
            dimgray 0.063em 0.313em,
            transparent 0.313em 0.375em,
            var(--accent) 0.375em 0.5em,
            transparent 0.5em 1.313em,
            silver 1.313em 1.438em,
            transparent 1.438em
        ),
        -o-linear-gradient(45deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(135deg, transparent 0.188em, var(--bb8-bg) 0.188em
                    1.25em, transparent 1.25em),
        -o-linear-gradient(var(--bb8-bg) 1.25em, transparent 1.25em);
    background: linear-gradient(
            transparent 0.063em,
            dimgray 0.063em 0.313em,
            transparent 0.313em 0.375em,
            var(--accent) 0.375em 0.5em,
            transparent 0.5em 1.313em,
            silver 1.313em 1.438em,
            transparent 1.438em
        ),
        linear-gradient(
            45deg,
            transparent 0.188em,
            var(--bb8-bg) 0.188em 1.25em,
            transparent 1.25em
        ),
        linear-gradient(
            -45deg,
            transparent 0.188em,
            var(--bb8-bg) 0.188em 1.25em,
            transparent 1.25em
        ),
        linear-gradient(var(--bb8-bg) 1.25em, transparent 1.25em);
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    z-index: 1;
    -webkit-filter: drop-shadow(0 0.063em 0.125em gray);
    filter: drop-shadow(0 0.063em 0.125em gray);
}

.bb8__head::before {
    content: "";
    position: absolute;
    width: 0.563em;
    height: 0.563em;
    background: -o-radial-gradient(
            0.25em 0.375em,
            0.125em circle,
            red,
            transparent
        ),
        -o-radial-gradient(0.375em 0.188em, 0.063em circle, var(--bb8-bg) 50%, transparent
                    100%),
        -o-linear-gradient(45deg, #000 0.188em, dimgray 0.313em 0.375em, #000
                    0.5em);
    background: -o-radial-gradient(
            0.25em 0.375em,
            0.125em circle,
            red,
            transparent
        ),
        -o-radial-gradient(0.375em 0.188em, 0.063em circle, var(--bb8-bg) 50%, transparent
                    100%),
        -o-linear-gradient(45deg, #000 0.188em, dimgray 0.313em 0.375em, #000
                    0.5em);
    background: -o-radial-gradient(
            0.25em 0.375em,
            0.125em circle,
            red,
            transparent
        ),
        -o-radial-gradient(0.375em 0.188em, 0.063em circle, var(--bb8-bg) 50%, transparent
                    100%),
        -o-linear-gradient(45deg, #000 0.188em, dimgray 0.313em 0.375em, #000
                    0.5em);
    background: -o-radial-gradient(
            0.25em 0.375em,
            0.125em circle,
            red,
            transparent
        ),
        -o-radial-gradient(0.375em 0.188em, 0.063em circle, var(--bb8-bg) 50%, transparent
                    100%),
        -o-linear-gradient(45deg, #000 0.188em, dimgray 0.313em 0.375em, #000
                    0.5em);
    background: radial-gradient(
            0.125em circle at 0.25em 0.375em,
            red,
            transparent
        ),
        radial-gradient(
            0.063em circle at 0.375em 0.188em,
            var(--bb8-bg) 50%,
            transparent 100%
        ),
        linear-gradient(
            45deg,
            #000 0.188em,
            dimgray 0.313em 0.375em,
            #000 0.5em
        );
    border-radius: var(--radius);
    top: 0.413em;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    -webkit-box-shadow: 0 0 0 0.089em lightgray, 0.563em 0.281em 0 -0.148em,
        0.563em 0.281em 0 -0.1em var(--bb8-bg), 0.563em 0.281em 0 -0.063em;
    box-shadow: 0 0 0 0.089em lightgray, 0.563em 0.281em 0 -0.148em,
        0.563em 0.281em 0 -0.1em var(--bb8-bg), 0.563em 0.281em 0 -0.063em;
    z-index: 1;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.bb8__head::after {
    content: "";
    position: absolute;
    bottom: 0.375em;
    left: 0;
    width: 100%;
    height: 0.188em;
    background: -o-linear-gradient(
        left,
        var(--accent) 0.125em,
        transparent 0.125em 0.188em,
        var(--accent) 0.188em 0.313em,
        transparent 0.313em 0.375em,
        var(--accent) 0.375em 0.938em,
        transparent 0.938em 1em,
        var(--accent) 1em 1.125em,
        transparent 1.125em 1.875em,
        var(--accent) 1.875em 2em,
        transparent 2em 2.063em,
        var(--accent) 2.063em 2.25em,
        transparent 2.25em 2.313em,
        var(--accent) 2.313em 2.375em,
        transparent 2.375em 2.438em,
        var(--accent) 2.438em
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0.125em, var(--accent)),
        color-stop(0.125em, transparent),
        color-stop(0.188em, var(--accent)),
        color-stop(0.313em, transparent),
        color-stop(0.375em, var(--accent)),
        color-stop(0.938em, transparent),
        color-stop(1em, var(--accent)),
        color-stop(1.125em, transparent),
        color-stop(1.875em, var(--accent)),
        color-stop(2em, transparent),
        color-stop(2.063em, var(--accent)),
        color-stop(2.25em, transparent),
        color-stop(2.313em, var(--accent)),
        color-stop(2.375em, transparent),
        color-stop(2.438em, var(--accent))
    );
    background: linear-gradient(
        to right,
        var(--accent) 0.125em,
        transparent 0.125em 0.188em,
        var(--accent) 0.188em 0.313em,
        transparent 0.313em 0.375em,
        var(--accent) 0.375em 0.938em,
        transparent 0.938em 1em,
        var(--accent) 1em 1.125em,
        transparent 1.125em 1.875em,
        var(--accent) 1.875em 2em,
        transparent 2em 2.063em,
        var(--accent) 2.063em 2.25em,
        transparent 2.25em 2.313em,
        var(--accent) 2.313em 2.375em,
        transparent 2.375em 2.438em,
        var(--accent) 2.438em
    );
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.bb8__antenna {
    position: absolute;
    -webkit-transform: translateY(-90%);
    -ms-transform: translateY(-90%);
    transform: translateY(-90%);
    width: 0.059em;
    border-radius: var(--radius) var(--radius) 0 0;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.bb8__antenna:nth-child(1) {
    height: 0.938em;
    right: 0.938em;
    background: -o-linear-gradient(#000 0.188em, silver 0.188em);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0.188em, #000),
        color-stop(0.188em, silver)
    );
    background: linear-gradient(#000 0.188em, silver 0.188em);
}

.bb8__antenna:nth-child(2) {
    height: 0.375em;
    left: 50%;
    -webkit-transform: translate(-50%, -90%);
    -ms-transform: translate(-50%, -90%);
    transform: translate(-50%, -90%);
    background: silver;
}

.bb8__body {
    width: 2.375em;
    height: 2.375em;
    background: var(--bb8-bg);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: -webkit-gradient(
            linear,
            right top,
            left top,
            color-stop(4%, var(--bb8-bg)),
            color-stop(4%, var(--accent)),
            color-stop(10%, transparent),
            color-stop(90%, var(--accent)),
            color-stop(96%, var(--bb8-bg))
        ),
        -webkit-gradient(linear, left top, left bottom, color-stop(4%, var(--bb8-bg)), color-stop(4%, var(--accent)), color-stop(10%, transparent), color-stop(90%, var(--accent)), color-stop(96%, var(--bb8-bg))),
        -webkit-gradient(linear, left top, right top, color-stop(2.156em, transparent), color-stop(2.156em, silver), color-stop(2.188em, transparent)),
        -webkit-gradient(linear, left top, left bottom, color-stop(2.156em, transparent), color-stop(2.156em, silver), color-stop(2.188em, transparent));
    background: -o-linear-gradient(
            right,
            var(--bb8-bg) 4%,
            var(--accent) 4% 10%,
            transparent 10% 90%,
            var(--accent) 90% 96%,
            var(--bb8-bg) 96%
        ),
        -o-linear-gradient(var(--bb8-bg) 4%, var(--accent) 4% 10%, transparent
                    10% 90%, var(--accent) 90% 96%, var(--bb8-bg) 96%),
        -o-linear-gradient(left, transparent 2.156em, silver 2.156em 2.219em, transparent
                    2.188em),
        -o-linear-gradient(transparent 2.156em, silver 2.156em 2.219em, transparent
                    2.188em);
    background: linear-gradient(
            -90deg,
            var(--bb8-bg) 4%,
            var(--accent) 4% 10%,
            transparent 10% 90%,
            var(--accent) 90% 96%,
            var(--bb8-bg) 96%
        ),
        linear-gradient(
            var(--bb8-bg) 4%,
            var(--accent) 4% 10%,
            transparent 10% 90%,
            var(--accent) 90% 96%,
            var(--bb8-bg) 96%
        ),
        linear-gradient(
            to right,
            transparent 2.156em,
            silver 2.156em 2.219em,
            transparent 2.188em
        ),
        linear-gradient(
            transparent 2.156em,
            silver 2.156em 2.219em,
            transparent 2.188em
        );
    background-color: var(--bb8-bg);
}

.bb8__body::after {
    content: "";
    bottom: 1.5em;
    left: 0.563em;
    position: absolute;
    width: 0.188em;
    height: 0.188em;
    background: rgb(236, 236, 236);
    color: rgb(236, 236, 236);
    border-radius: 50%;
    -webkit-box-shadow: 0.875em 0.938em, 0 -1.25em, 0.875em -2.125em,
        2.125em -2.125em, 3.063em -1.25em, 3.063em 0, 2.125em 0.938em;
    box-shadow: 0.875em 0.938em, 0 -1.25em, 0.875em -2.125em, 2.125em -2.125em,
        3.063em -1.25em, 3.063em 0, 2.125em 0.938em;
}

.bb8__body::before {
    content: "";
    width: 2.625em;
    height: 2.625em;
    position: absolute;
    border-radius: 50%;
    z-index: 0.1;
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 0.313em solid var(--accent);
    background: -o-radial-gradient(
            center,
            1em circle,
            rgb(236, 236, 236) 50%,
            transparent 51%
        ),
        -o-radial-gradient(center, 1.25em circle, var(--bb8-bg) 50%, transparent
                    51%),
        -o-linear-gradient(right, transparent 42%, var(--accent) 42% 58%, transparent
                    58%),
        -o-linear-gradient(var(--bb8-bg) 42%, var(--accent) 42% 58%, var(
                        --bb8-bg
                    )
                    58%);
    background: -o-radial-gradient(
            center,
            1em circle,
            rgb(236, 236, 236) 50%,
            transparent 51%
        ),
        -o-radial-gradient(center, 1.25em circle, var(--bb8-bg) 50%, transparent
                    51%),
        -o-linear-gradient(right, transparent 42%, var(--accent) 42% 58%, transparent
                    58%),
        -o-linear-gradient(var(--bb8-bg) 42%, var(--accent) 42% 58%, var(
                        --bb8-bg
                    )
                    58%);
    background: radial-gradient(
            1em circle at center,
            rgb(236, 236, 236) 50%,
            transparent 51%
        ),
        radial-gradient(
            1.25em circle at center,
            var(--bb8-bg) 50%,
            transparent 51%
        ),
        -webkit-gradient(linear, right top, left top, color-stop(42%, transparent), color-stop(42%, var(--accent)), color-stop(58%, transparent)),
        -webkit-gradient(linear, left top, left bottom, color-stop(42%, var(--bb8-bg)), color-stop(42%, var(--accent)), color-stop(58%, var(--bb8-bg)));
    background: radial-gradient(
            1em circle at center,
            rgb(236, 236, 236) 50%,
            transparent 51%
        ),
        radial-gradient(
            1.25em circle at center,
            var(--bb8-bg) 50%,
            transparent 51%
        ),
        linear-gradient(
            -90deg,
            transparent 42%,
            var(--accent) 42% 58%,
            transparent 58%
        ),
        linear-gradient(
            var(--bb8-bg) 42%,
            var(--accent) 42% 58%,
            var(--bb8-bg) 58%
        );
}

.artificial__hidden {
    position: absolute;
    border-radius: inherit;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bb8__shadow {
    content: "";
    width: var(--bb8-diameter);
    height: 20%;
    border-radius: 50%;
    background: #3a271c;
    -webkit-box-shadow: 0.313em 0 3.125em #3a271c;
    box-shadow: 0.313em 0 3.125em #3a271c;
    opacity: 0.25;
    position: absolute;
    bottom: 0;
    left: calc(var(--toggle-offset) - 0.938em);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: skew(-70deg);
    -ms-transform: skew(-70deg);
    transform: skew(-70deg);
    z-index: 1;
}

.bb8-toggle__scenery {
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    position: relative;
    border-radius: inherit;
}

.bb8-toggle__scenery::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: #b18d71;
    z-index: 1;
}

.bb8-toggle__cloud {
    z-index: 1;
    position: absolute;
    border-radius: 50%;
}

.bb8-toggle__cloud:nth-last-child(1) {
    width: 0.875em;
    height: 0.625em;
    -webkit-filter: blur(0.125em) drop-shadow(0.313em 0.313em #ffffffae)
        drop-shadow(-0.625em 0 #fff) drop-shadow(-0.938em -0.125em #fff);
    filter: blur(0.125em) drop-shadow(0.313em 0.313em #ffffffae)
        drop-shadow(-0.625em 0 #fff) drop-shadow(-0.938em -0.125em #fff);
    right: 1.875em;
    top: 2.813em;
    background: -o-linear-gradient(bottom left, #ffffffae, #ffffffae);
    background: -webkit-gradient(
        linear,
        left bottom,
        right top,
        from(#ffffffae),
        to(#ffffffae)
    );
    background: linear-gradient(to top right, #ffffffae, #ffffffae);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.bb8-toggle__cloud:nth-last-child(2) {
    top: 0.625em;
    right: 4.375em;
    width: 0.875em;
    height: 0.375em;
    background: #dfdedeae;
    -webkit-filter: blur(0.125em) drop-shadow(-0.313em -0.188em #e0dfdfae)
        drop-shadow(-0.625em -0.188em #bbbbbbae)
        drop-shadow(-1em 0.063em #cfcfcfae);
    filter: blur(0.125em) drop-shadow(-0.313em -0.188em #e0dfdfae)
        drop-shadow(-0.625em -0.188em #bbbbbbae)
        drop-shadow(-1em 0.063em #cfcfcfae);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.bb8-toggle__cloud:nth-last-child(3) {
    top: 1.25em;
    right: 0.938em;
    width: 0.875em;
    height: 0.375em;
    background: #ffffffae;
    -webkit-filter: blur(0.125em) drop-shadow(0.438em 0.188em #ffffffae)
        drop-shadow(-0.625em 0.313em #ffffffae);
    filter: blur(0.125em) drop-shadow(0.438em 0.188em #ffffffae)
        drop-shadow(-0.625em 0.313em #ffffffae);
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}

.gomrassen,
.hermes,
.chenini {
    position: absolute;
    border-radius: var(--radius);
    background: -o-linear-gradient(#fff, #6e8ea2);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fff),
        to(#6e8ea2)
    );
    background: linear-gradient(#fff, #6e8ea2);
    top: 100%;
}

.gomrassen {
    left: 0.938em;
    width: 1.875em;
    height: 1.875em;
    -webkit-box-shadow: 0 0 0.188em #ffffff52, 0 0 0.188em #6e8ea24b;
    box-shadow: 0 0 0.188em #ffffff52, 0 0 0.188em #6e8ea24b;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.gomrassen::before,
.gomrassen::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    -webkit-box-shadow: inset 0 0 0.063em rgb(140, 162, 169);
    box-shadow: inset 0 0 0.063em rgb(140, 162, 169);
    background: rgb(184, 196, 200);
}

.gomrassen::before {
    left: 0.313em;
    top: 0.313em;
    width: 0.438em;
    height: 0.438em;
}

.gomrassen::after {
    width: 0.25em;
    height: 0.25em;
    left: 1.25em;
    top: 0.75em;
}

.hermes {
    left: 3.438em;
    width: 0.625em;
    height: 0.625em;
    -webkit-box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
    box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.chenini {
    left: 4.375em;
    width: 0.5em;
    height: 0.5em;
    -webkit-box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
    box-shadow: 0 0 0.125em #ffffff52, 0 0 0.125em #6e8ea24b;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}

.tatto-1,
.tatto-2 {
    position: absolute;
    width: 1.25em;
    height: 1.25em;
    border-radius: var(--radius);
}

.tatto-1 {
    background: #fefefe;
    right: 3.125em;
    top: 0.625em;
    -webkit-box-shadow: 0 0 0.438em #fdf4e1;
    box-shadow: 0 0 0.438em #fdf4e1;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.tatto-2 {
    background: -o-linear-gradient(#e6ac5c, #d75449);
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#e6ac5c),
        to(#d75449)
    );
    background: linear-gradient(#e6ac5c, #d75449);
    right: 1.25em;
    top: 2.188em;
    -webkit-box-shadow: 0 0 0.438em #e6ad5c3d, 0 0 0.438em #d755494f;
    box-shadow: 0 0 0.438em #e6ad5c3d, 0 0 0.438em #d755494f;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}

.bb8-toggle__star {
    position: absolute;
    width: 0.063em;
    height: 0.063em;
    background: #fff;
    border-radius: var(--radius);
    -webkit-filter: drop-shadow(0 0 0.063em #fff);
    filter: drop-shadow(0 0 0.063em #fff);
    color: #fff;
    top: 100%;
}

.bb8-toggle__star:nth-child(1) {
    left: 3.75em;
    -webkit-box-shadow: 1.25em 0.938em, -1.25em 2.5em, 0 1.25em, 1.875em 0.625em,
        -3.125em 1.875em, 1.25em 2.813em;
    box-shadow: 1.25em 0.938em, -1.25em 2.5em, 0 1.25em, 1.875em 0.625em,
        -3.125em 1.875em, 1.25em 2.813em;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.bb8-toggle__star:nth-child(2) {
    left: 4.688em;
    -webkit-box-shadow: 0.625em 0, 0 0.625em, -0.625em -0.625em, 0.625em 0.938em,
        -3.125em 1.25em, 1.25em -1.563em;
    box-shadow: 0.625em 0, 0 0.625em, -0.625em -0.625em, 0.625em 0.938em,
        -3.125em 1.25em, 1.25em -1.563em;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.bb8-toggle__star:nth-child(3) {
    left: 5.313em;
    -webkit-box-shadow: -0.625em -0.625em, -2.188em 1.25em, -2.188em 0,
        -3.75em -0.625em, -3.125em -0.625em, -2.5em -0.313em, 0.75em -0.625em;
    box-shadow: -0.625em -0.625em, -2.188em 1.25em, -2.188em 0, -3.75em -0.625em,
        -3.125em -0.625em, -2.5em -0.313em, 0.75em -0.625em;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.bb8-toggle__star:nth-child(4) {
    left: 1.875em;
    width: 0.125em;
    height: 0.125em;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.bb8-toggle__star:nth-child(5) {
    left: 5em;
    width: 0.125em;
    height: 0.125em;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.bb8-toggle__star:nth-child(6) {
    left: 2.5em;
    width: 0.125em;
    height: 0.125em;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}

.bb8-toggle__star:nth-child(7) {
    left: 3.438em;
    width: 0.125em;
    height: 0.125em;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}

/* actions */

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(1) {
    top: 0.625em;
}

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(2) {
    top: 1.875em;
}

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(3) {
    top: 1.25em;
}

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(4) {
    top: 3.438em;
}

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(5) {
    top: 3.438em;
}

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(6) {
    top: 0.313em;
}

.bb8-toggle__checkbox:checked
    + .bb8-toggle__container
    .bb8-toggle__star:nth-child(7) {
    top: 1.875em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8-toggle__cloud {
    right: -100%;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .gomrassen {
    top: 0.238em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .hermes {
    top: 2.5em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .chenini {
    top: 2.75em;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container {
    background-position-y: 0;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .tatto-1 {
    top: 100%;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .tatto-2 {
    top: 100%;
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8 {
    left: calc(100% - var(--bb8-diameter) - var(--toggle-offset));
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8__shadow {
    left: calc(100% - var(--bb8-diameter) - var(--toggle-offset) + 0.938em);
    -webkit-transform: skew(70deg);
    -ms-transform: skew(70deg);
    transform: skew(70deg);
}

.bb8-toggle__checkbox:checked + .bb8-toggle__container .bb8__body {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(225deg);
}

.bb8-toggle__checkbox:hover + .bb8-toggle__container .bb8__head::before {
    left: 100%;
}

.bb8-toggle__checkbox:not(:checked):hover
    + .bb8-toggle__container
    .bb8__antenna:nth-child(1) {
    right: 1.5em;
}

.bb8-toggle__checkbox:hover
    + .bb8-toggle__container
    .bb8__antenna:nth-child(2) {
    left: 0.938em;
}

.bb8-toggle__checkbox:hover + .bb8-toggle__container .bb8__head::after {
    background-position: 1.375em 0;
}

.bb8-toggle__checkbox:checked:hover
    + .bb8-toggle__container
    .bb8__head::before {
    left: 0;
}

.bb8-toggle__checkbox:checked:hover
    + .bb8-toggle__container
    .bb8__antenna:nth-child(2) {
    left: calc(100% - 0.938em);
}

.bb8-toggle__checkbox:checked:hover + .bb8-toggle__container .bb8__head::after {
    background-position: -1.375em 0;
}

.bb8-toggle__checkbox:active + .bb8-toggle__container .bb8__head-container {
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
}

.bb8-toggle__checkbox:checked:active
    + .bb8-toggle__container
    .bb8__head-container {
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

.bb8:hover .bb8__head::before,
.bb8:hover .bb8__antenna:nth-child(2) {
    left: 50% !important;
}

.bb8:hover .bb8__antenna:nth-child(1) {
    right: 0.938em !important;
}

.bb8:hover .bb8__head::after {
    background-position: 0 0 !important;
}
.dark-mode-toggle {
    margin-left: 20px !important;
    margin-top: 20px !important;
}

.img-fluid {
    width: 100px !important;
    height: 100px !important;
}
.nk-quick-nav .dropdown-menu {
    margin-top: 9px !important;
    margin-left: -6px !important;
}

@media (max-width: 420px) {
    .dropdown-menu-xl,
    .dropdown-menu-lg,
    .dropdown-menu-md {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }

    .nk-quick-nav .dropdown-menu-xl,
    .nk-quick-nav .dropdown-menu-lg,
    .nk-quick-nav .dropdown-menu-md {
        margin-left: -21px !important;
    }

    .nk-quick-nav li:last-child .dropdown-menu-xl,
    .nk-quick-nav li:last-child .dropdown-menu-lg,
    .nk-quick-nav li:last-child .dropdown-menu-md {
        margin-left: 5px !important;
    }
}

.dropdown-menu-s1 {
    border-top: 3px solid #854fff;
}

.dropdown-toggle-split > .icon {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
}

/* Copied from dashlite.rtl.css for dropdown menus */
.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 180px;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 0.8125rem;
    --bs-dropdown-color: #526484;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: #e5e9f2;
    --bs-dropdown-border-radius: 4px;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-inner-border-radius: calc(4px - 1px);
    --bs-dropdown-divider-bg: #e5e9f2;
    --bs-dropdown-divider-margin-y: 12px;
    --bs-dropdown-box-shadow: 0 3px 12px 1px rgba(58, 34, 114, 0.15);
    --bs-dropdown-link-color: #364a63;
    --bs-dropdown-link-hover-color: #854fff;
    --bs-dropdown-link-hover-bg: #ebeef2;
    --bs-dropdown-link-active-color: #854fff;
    --bs-dropdown-link-active-bg: #dbdfea;
    --bs-dropdown-link-disabled-color: #ebeef2;
    --bs-dropdown-item-padding-x: 14px;
    --bs-dropdown-item-padding-y: 8px;
    --bs-dropdown-header-color: #8091a7;
    --bs-dropdown-header-padding-x: 14px;
    --bs-dropdown-header-padding-y: 0;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: right;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid
        var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    right: 0;
    margin-top: var(--bs-dropdown-spacer);
}
.dropdown-menu > .dropdown-item:first-child,
.dropdown-menu > li:first-child .dropdown-item {
    border-top-right-radius: var(--bs-dropdown-inner-border-radius);
    border-top-left-radius: var(--bs-dropdown-inner-border-radius);
}
.dropdown-menu > .dropdown-item:last-child,
.dropdown-menu > li:last-child .dropdown-item {
    border-bottom-left-radius: var(--bs-dropdown-inner-border-radius);
    border-bottom-right-radius: var(--bs-dropdown-inner-border-radius);
}
.dropdown-menu-start {
    --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
    left: auto;
    right: 0;
}
.dropdown-menu-end {
    --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
    left: 0;
    right: auto;
}
@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }
    .dropdown-menu-sm-start[data-bs-popper] {
        left: auto;
        right: 0;
    }
    .dropdown-menu-sm-end {
        --bs-position: end;
    }
    .dropdown-menu-sm-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}
@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }
    .dropdown-menu-md-start[data-bs-popper] {
        left: auto;
        right: 0;
    }
    .dropdown-menu-md-end {
        --bs-position: end;
    }
    .dropdown-menu-md-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}
@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }
    .dropdown-menu-lg-start[data-bs-popper] {
        left: auto;
        right: 0;
    }
    .dropdown-menu-lg-end {
        --bs-position: end;
    }
    .dropdown-menu-lg-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}
@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }
    .dropdown-menu-xl-start[data-bs-popper] {
        left: auto;
        right: 0;
    }
    .dropdown-menu-xl-end {
        --bs-position: end;
    }
    .dropdown-menu-xl-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}
@media (min-width: 1540px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }
    .dropdown-menu-xxl-start[data-bs-popper] {
        left: auto;
        right: 0;
    }
    .dropdown-menu-xxl-end {
        --bs-position: end;
    }
    .dropdown-menu-xxl-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}
.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer);
}
.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    left: auto;
    right: 100%;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    left: 100%;
    right: auto;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer);
}
.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y)
        var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: 0.75rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap;
}
.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color);
}
.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: #e5e9f2;
    --bs-dropdown-box-shadow: ;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: #e5e9f2;
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #854fff;
    --bs-dropdown-link-active-bg: #dbdfea;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd;
}
