@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local(""),
        url("../fonts/inter-extralight.b3b2ed6_2.woff2") format("woff2"),
        url("../fonts/inter-extralight.b3b2ed6.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(""), url("../fonts/inter-light.780dd2a.woff2") format("woff2"),
        url("../fonts/inter-extralight.b3b2ed6.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-500 - latin */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(""), url("../fonts/inter-v11-latin-500.woff2") format("woff2"),
        url("../fonts/inter-v11-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-600 - latin */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(""), url("../fonts/inter-semibold.007ad31.woff2") format("woff2"),
        url("../fonts/inter-bold.444a728.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-500 - latin */
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(""),
        url("../fonts/montserrat-v24-latin-500.woff2") format("woff2"),
        url("../fonts/montserrat-v24-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@keyframes animation--nav-panel {
    from {
        height: 65vh;
    }
    to {
        height: 100vh;
    }
}

@keyframes animation--movein {
    from {
        transform: translateX(20px);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade-out {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes animation--fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes animation--fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes animation--grayscale-fade {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}
@keyframes animation--inspiration-start {
    0% {
        transform: scaleX(0.5);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes bouncy {
    0%,
    11.1111%,
    27.7778%,
    44.4444%,
    100% {
        transform: translatex(0);
    }

    22.2222% {
        transform: translatex(+10px);
    }
    33.3333% {
        transform: translatex(+10px);
    }
}
.dark-gradient-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

@font-face {
    font-family: "IcoFont";
    font-weight: normal;
    font-style: "Regular";
    src: url("../fonts/icofont.woff2") format("woff2"),
        url("../fonts/icofont.woff") format("woff");
}

:root {
    --font-weight-bold: 700;
    --spacing-1: 6px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 16px;
    --spacing-5: 24px;
    --spacing-7: 48px;
    --spacing-8: 72px;
    --spacing-9: 96px;
    --spacing-10: 144px;
    --container-max-width: 1324px;

    --color-foreground: #000000;
    --font-weight-lightest: 100;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 400;
    --font-weight-bold: 600;
    --font-family-base: "Inter", Helvetica, Arial, sans-serif;
    --color-font-darkgray: 141, 141, 141;

    --font-family-heading: "Montserrat", Helvetica, Arial, sans-serif;
    --font-size-base: clamp(0.745rem, 0.09vw + 0.84rem, 0.875rem);
    --line-height-base: clamp(1.5rem, 0.19vw + 1.46rem, 1.63rem);
    --line-height-narrow: clamp(1.25rem, 0.19vw + 1.21rem, 1.38rem);

    --line-height-h1: clamp(2.8rem, 1.94vw + 1.35rem, 3.5rem);
    --line-height-h2: clamp(1.63rem, 0.74vw + 1.48rem, 2.13rem);
    --line-height-h3: clamp(1.5rem, 0.74vw + 1.35rem, 2rem);
    --line-height-h4: clamp(1.38rem, 0.19vw + 1.34rem, 1.5rem);
    --line-height-h5: clamp(1.38rem, 0.29vw + 1.34rem, 1.5rem);

    --font-size-h1: clamp(1.5rem, 2.22vw + 1.06rem, 3rem);
    --font-size-h2: clamp(1.38rem, 0.93vw + 1.19rem, 2rem);
    --font-size-h3: clamp(1rem, 0.93vw + 0.81rem, 1.63rem);
    --font-size-h4: clamp(0.94rem, 0.46vw + 0.84rem, 1.25rem);
    --font-size-h5: clamp(1.2rem, 0.09vw + 0.98rem, 1.06rem);

    --font-size-lead: clamp(1.06rem, 0.19vw + 1.03rem, 1.19rem);
    --line-height-lead: clamp(1.88rem, -0.19vw + 1.91rem, 1.75rem);
    --font-size-sm: clamp(0.75rem, 0.19vw + 0.71rem, 0.88rem);
    --line-height-sm: clamp(1.25rem, 0.19vw + 1.21rem, 1.38rem);
    --font-size-xs: clamp(0.69rem, 0.09vw + 0.67rem, 0.75rem);
    --line-height-xs: clamp(0.94rem, 0.09vw + 0.92rem, 1rem);

    --text-dark: 18, 18, 18;

    --color-accent-500: 152, 164, 174;
    --gradient-radial-accent-100: radial-gradient(
        60.07% 82.09% at 50% 0%,
        rgba(var(--color-accent-500), 0.4) 0%,
        rgb(var(--color-accent-500)) 82%
    );
    --color-lightest: 255, 255, 255;
    --color-semidark: 30, 30, 30;
    --color-darkest: 16, 16, 16;
    --color-accent: #ff282d;
    --color-accent-rgb: 255, 40, 45;
    --color-accent-bg: 122, 122, 122;
    --color-light-gray: 235, 235, 235;
    --color-accent-500: 152, 164, 174;
    --color-theme: #ff282d;
    --color-transparent: 255, 255, 255, 0;
    --select-focussed-bg: var(--color-darkest);
    --select-focussed-color: var(--color-lightest);
    --select-focussed-shadow: rgba(var(--color-lightest), 0.3);
    --dropdown-item-value-color: var(--color-gray-300);
    --spacing-6: 32px;
    --section-spacing: 45px;
    --icon-font-family: "IcoFont";
    --arrow-right: "\eaca";
    --arrow-left: "\eac9";
    --arrow-down: "\eac8";
    --arrow-up: "\eacb";
    --arrow-dright: "\eac7";
    --icon-tick: "\eed6";
    --icon-close: "\eee1";
    --button-font-weight: 600;
    --button-textcolor-hover: var(--color-darkest);
    --icon-size-big: 1.8rem;
    --font-size-base: clamp(0.94rem, 0.09vw + 0.92rem, 1rem);
    --line-height-base: clamp(1.5rem, 0.19vw + 1.46rem, 1.63rem);
    --icon-width: 1.5rem;
    --icon-height: 1.5rem;
}
html {
    scroll-behavior: smooth;
}
@media (min-width: 1024px) {
    .hide-large {
        display: none;
    }
}
@media (max-width: 1023px) {
    .hide-small {
        display: none;
    }
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-\[25px\] {
    padding-top: 25px;
    padding-bottom: 25px;
}
.bg-trans {
    background: rgba(var(--color-transparent));
}
.bg-blurred {
    backdrop-filter: blur(5px);
}
.bg-dark {
    background: rgb(var(--color-darkest));
}
.all-hidden {
    display: none;
}
.bg-radial-accent-100 {
    background: radial-gradient(
        60.07% 82.09% at 50% 0%,
        rgba(var(--color-accent-500), 0.4) 0%,
        rgb(var(--color-accent-500)) 82%
    ) !important;
}
.duration-100 {
    transition-duration: 0.1s;
}
.duration-200 {
    transition-duration: 0.2s;
}
.duration-300 {
    transition-duration: 0.3s;
}
.duration-500 {
    transition-duration: 0.5s;
}
.duration-700 {
    transition-duration: 0.7s;
}
.duration-75 {
    transition-duration: 75ms;
}

/* HEADER MAIN */

.header-main {
    z-index: 1001 !important;
    display: flex;
    justify-content: right;
}

/* BODY */
.logo-header {
    z-index: 9000 !important;
    mix-blend-mode: difference;
    background: none;
    max-width: 150px;
    top: 18px;
    left: 32px;
    position: fixed;
    filter: contrast(0.8);
}
.logo-header svg {
    mix-blend-mode: difference;
    pointer-events: none; /* Prevents SVG from blocking clicks */
    -webkit-mix-blend-mode: difference;
}
.logo-header a {
    display: block;
}
@media (min-width: 768px) {
    .logo-header {
        left: var(--spacing-5);
    }
}
@media (min-width: 1024px) {
    .logo-header {
        top: var(--spacing-6);
        left: var(--spacing-4);
    }
}
@media screen and (min-width: 1120px) {
    .logo-header {
        width: 240px;
        height: 32px;
    }
}
@media (min-width: 1200px) {
    .logo-header {
        left: var(--spacing-7);
        grid-column-gap: 40px;
    }
}
@media (min-width: 1400px) {
    .logo-header {
        left: var(--spacing-8);
    }
}

h1 {
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
    margin-bottom: 3rem;
    line-height: 6rem;
    font-weight: 100;
}
body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-regular);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: rgb(var(--text-dark));
    font-family: Helvetica-Neue, "HelveticaNeue-Light", Helvetica, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.42857143;
    letter-spacing: 0.02rem;
    background-color: #fff;
}
p {
    color: rgb(var(--text-darkest));
    text-wrap: auto;
    text-wrap: pretty;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

/* TEXT SIZE AND COLOR*/
.text-light {
    color: rgba(var(--color-lightest), 1);
}
.text-semidark {
    color: rgba(var(--color-semidark), 1);
}
.text-dark {
    color: rgb(var(--text-dark));
}

.text-accent {
    color: var(--color-accent);
}

.text-zinc-500 {
    color: rgb(var(--text-dark));
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl {
    font-size: 2.575rem;
    line-height: 2.85rem;
}
.text-4xl {
    font-size: 3.25rem;
    line-height: 3.78rem;
}
.font-bold {
    font-weight: 700 !important;
}
.font-light {
    font-weight: 300 !important;
}
.font-medium {
    font-weight: 500;
}
.font-normal {
    font-weight: 400;
}
.font-semibold {
    font-weight: 600;
}
.thin {
    font-weight: 200;
}

@media (min-width: 1280px) {
    body,
    p {
        font-size: var(--font-size-base);
    }
}

@media (min-width: 1280px) {
    p {
        line-height: 1.5rem;
        margin-bottom: 12px;
    }
}

/* BACKGROUNDS */
.z-9999 {
    z-index: 9999;
}
.z-9000 {
    z-index: 9000;
}

.bgsemidark {
    background-color: rgba(var(--color-semidark), 1);
}
.bg-lightgray {
    background-color: rgba(var(--color-light-gray), 1) !important;
}

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

.bg-accent {
    background-color: #000000;
}
.bgdark {
    background-color: rgba(var(--color-darkest), 1);
}
.bg-transparent {
    background-color: rgba(var(--color-darkest), 0);
}

.border-1 {
    border: 1px solid #cdcdcd;
}

/* GRIDS */
.pt-12 {
    padding-top: 2.5 rem;
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.border-bottom {
    border-bottom: 1px solid var(--color-darkest);
}
/* TRANSITIONS */
.order-first {
    order: -9999;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    font-family: var(--font-family-base);
}

.container,
.container2 {
    background: rgb(var(--color-lightest));
}
.container2 {
    max-width: 1440px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}
.container-full {
    max-width: 100vw;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* HEADINGS AND TEXT */
.text-base {
    font-size: 0.875rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.1rem;
    line-height: 1.75rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl {
    font-size: 1.35rem;
    line-height: 1.75rem;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.heavy {
    font-weight: 700 !important;
}
.light {
    font-weight: 300 !important;
}
.extralight {
    font-family: var(--font-size-base);
    font-weight: 100 !important;
}
h4.extralight {
    letter-spacing: 0.03rem;
}
.h2 {
    font-size: 20px;
    font-family: var(--font-family-heading) !important;
    font-weight: 200;
    letter-spacing: -0.024rem;
}

h1 {
    font-size: 38px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-family: var(--font-family-heading);
}
.text-right {
    text-align: right !important;
}
h1,
.h1 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    font-weight: var(--font-weight-light);
    letter-spacing: -0.11rem;
}
h4 {
    font-family: var(--font-family-heading);
    font-size: 2.1rem;
    line-height: 3rem;
    font-weight: 700 !important;
    letter-spacing: -0.01rem;
}
h5 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-h5);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01rem;
}
h3 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-h5);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.02rem;
}
@media (max-width: 1280px) {
    h4 {
        font-family: var(--font-family-heading);
        font-size: 1.688125rem;
        line-height: 3rem;
        letter-spacing: -0.01rem;
    }
}
a {
    color: #18272f;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.prod-button-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #18272f;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
}

.prod-button-link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.prod-button-link .icon-download + .prod-button-link::before {
    transform: translateX(-100%);
}
.icon-download:before {
    display: inline-block;
}

/*  TABLES   */
table {
    font-size: 14px;
    width: 100%;
    min-width: 100%;
    border-collapse: separate;
}
.list-table {
    width: auto;
    min-width: auto;
    line-height: 80%;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
.product-section-body td {
    border-top: 1px solid var(--color-foreground);
    border-bottom: none;
}

td {
    padding-inline-end: var(--spacing-2) !important;
    vertical-align: top;
    padding-block: var(--spacing-2) !important;
    border-bottom: 1px solid rgb(var(--color-foreground)) !important;
}

.product-section-body tr {
    transition: background-color 0.3s;
}

.product-section-body {
    padding-bottom: var(--section-spacing);
}

tr {
    border-color: rgb(var(--color-light-gray));
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
.product-desc ul li::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOCA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8Y2lyY2xlIGN4PSI0IiBjeT0iNCIgcj0iNCIgZmlsbD0iIzU1NSIvPgo8L3N2Zz4=");
}
li {
    white-space: normal;
    word-wrap: break-word;
}

.prodpage-icons li {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    padding-left: 10px;
}

.prodpage-icons li {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    padding-left: 10px;
}

.v-html-content ul {
    list-style-type: disc;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.v-html-content ol {
    list-style-type: decimal;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.v-html-content li {
    margin-bottom: 0.5rem;
}

/* FILTERS */
.container2 {
}

.border-zinc-200 {
    --tw-border-opacity: 1;
    border-color: rgb(var(--color-darkest));
}
.panel-side {
    position: static;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-5);
}
.filters {
    display: block !important;
}

.dropdown,
.dropdown-items {
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 320px;
    padding: calc(var(--spacing-4) / 2) var(--spacing-4)
        calc(var(--spacing-4) / 2) !important;
    margin: 0;
    list-style: none;
    color: rgb(var(--color-lightest));
    background: rgb(var(--color-darkest));
    border-radius: 0;
    z-index: 3;
    animation: fade-in 0.5s ease-out;
    overflow-y: auto;
    box-shadow: 1px 0 var(--select-focussed-shadow),
        -1px 1px var(--select-focussed-shadow);
}

.dropdown .dropdown-wrapper::after {
    position: absolute;
    top: calc(320px - var(--spacing-6));
    left: 0;
    right: 0;
    content: "";
    height: var(--spacing-6);
    background: linear-gradient(
        180deg,
        rgba(var(--select-focussed-bg), 0) 0%,
        rgb(var(--select-focussed-bg)) 100%
    );
    pointer-events: none;
    z-index: 10;
}

.dropdown,
.dropdown-wrapper {
    min-width: 200px;
    position: absolute;
    left: calc(var(16px) * -1);
    right: calc(var(16px) * -1);
    overflow: hidden;
}
.dropdown,
.dropdown-items {
    align-items: center;
    padding: calc(var(--spacing-3) / 2) 0;
    cursor: pointer;
    transition: background 0.5s ease-out;
}

.dropdown-item {
    align-items: center;
    padding: calc(var(--spacing-3) / 2) 0;
    cursor: pointer;
    transition: background 0.5s ease-out;
}

.dropdown-items li:hover ul {
    color: rgba(var(--color-semidark), 1);
    transition: background 0.5s ease-out;
}
li.dropdown-item :hover {
    color: rgba(var(--color-lightest), 0.9);
}
.dropdown-items > * {
    transition: 0.5s height cubic-bezier(0.73, 0.32, 0.34, 1.5),
        0.5s padding cubic-bezier(0.73, 0.32, 0.34, 1.5),
        0.5s margin cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s 0.2s color,
        0.2s background-color;
}
/* masonaRY*/
.masonry {
    display: grid;
    gap: var(--spacing-7);
    max-width: var(--container-max-width);
    margin-inline: auto;
}
@media (min-width: 768px) {
    .masonry {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}
.masonry--randomized {
    margin-block-end: var(--spacing-8);
    column-gap: var(--spacing-8);
    row-gap: var(--spacing-8);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .masonry--randomized {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        row-gap: var(--spacing-10);
    }
}
.masonry-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: start;
    opacity: 0.5;
}
.masonry-item:nth-child(odd) .has--portrait-image {
    padding-left: 20%;
}
.masonry-item:nth-child(even) .has--portrait-image {
    padding-right: 20%;
}
.masonry-item.is--positioned {
    animation: 1s animation--fade-in ease-out forwards;
}
.masonry-item:not(.masonry-intro) {
    padding-inline: var(--spacing-4);
}
@media (min-width: 768px) {
    .masonry-item:not(.masonry-intro) {
        padding-inline: 0;
    }
}
@media (min-width: 768px) {
    .masonry-item.is--wide {
        align-self: start;
        grid-column: span 2 / span 2 !important;
    }
}
.homepage-hero + .masonry--randomized {
    margin-block-start: var(--spacing-9);
}

/* CATEGORY PAGE */

p.prod-family-title {
    padding: 30px;
    font-size: 32px;
    font-weight: 200;
}
.cat-family-wrapper {
    width: 270px;
    min-width: 270px;
}
@media (max-width: 768px) {
    .cat-family-wrapper {
        width: 200px;
        min-width: 200px;
    }
}

/* PRODUCT CARD */

.prod-family-wrapper {
    max-width: 300px;
    min-width: 300px !important;
    border-top: 1px solid rgb(var(--color-darkest));
}
.prod-card-wrapper {
    background-color: rgb(var(--color-light-gray)) !important;
    max-width: 300px;
    min-width: 300px;
}
@media not all and (min-width: 525px) {
    .prod-card-wrapper {
        max-width: 100%;
        min-width: 100%;
        height: min-content;
    }
    .prod-card {
        max-width: 100%;
    }
}

.prod-card-wrapper:hover {
    background-color: var(--color-accent) !important;
    -webkit-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}
.prod-card {
    max-width: 300px;
}
.prod-card-wrapper:hover .prod-card {
    background-color: var(--color-accent) !important;
}
.prod-card-wrapper:hover .prod-card-title {
    color: rgb(var(--color-lightest));
}
.prod-card-title {
    font-family: var(--font-family-heading) !important;
    color: var(--color-accent);
    font-weight: 500 !important;
    font-size: 18px !important;
    transition: color 0.3s linear;
}

.prod-card-info {
    font-weight: var(--font-weight-light);
    color: rgb(var(--color-font-darkgray));
    transition: color 0.3s linear;
}

.prod-card-wrapper:hover .prod-card-title {
    color: rgb(var(--color-lightest)) !important;
}

.prod-card-wrapper:hover .prod-card-info {
    color: rgb(var(--color-lightest)) !important;
}

.cat-carousel-item {
    min-width: 600px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 4px;
}
.cat-slug {
    width: 100%;
}
.padding-left {
    padding-left: 10px !important;
}

.cat-carousel-item:hover {
    opacity: 0.9;
}

cat-carousel-container {
    width: 100%;
    max-width: 1600px;
}

/* BUTTONS */
button {
    appearance: auto;
    text-rendering: auto;
    color: buttontext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    margin: 0em;
    padding-block: 1px;
    padding-inline: 6px;
}

.icon {
    display: inline-block;
    width: var(--icon-width);
    min-width: var(--icon-width);
    height: var(--icon-height);
    color: inherit;
}

.btn--dark {
    background-color: rgba(var(--color-darkest), 1);
    color: rgba(var(--color-lightest), 1) !important;
}
.btn {
    --btn-padding-x: var(--spacing-2);
    --btn-padding-y: var(--spacing-2);
    --btn-icon-gap: var(--spacing-4);
    --btn-font-size: var(--13px);
    position: relative;
    display: inline-block;
    align-items: center;
    gap: var(--btn-icon-gap);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-family: var(--font-family-heading);
    font-size: var(--btn-font-size);
    line-height: var(--24px);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    text-decoration: none;

    border: none;
    cursor: pointer;
}
.btn {
    --btn-padding-x: var(--spacing-5);
    --btn-padding-y: var(--spacing-3);
    --btn-icon-gap: var(--spacing-4);
    --btn-font-size: 13px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--btn-icon-gap);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-family: var(--font-family-heading);
    font-size: var(--btn-font-size);
    line-height: 24px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(var(--color-darkest));
    border: none;
    cursor: pointer;
}
.btn--icon {
    padding: 0;
    color: currentColor;
    background: transparent;
    border: none;
}
.close--right {
    position: relative;
    top: 10px;
    right: 10px;
}

.btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--btn-bg);
    transition: transform 0.25s ease-out;
    will-change: transform;
    z-index: 1;
}
.btn-simple {
    transition: background-color 0.2s linear !important;
    background-color: rgb(var(--color-darkest));
    border-color: rgba(var(--color-darkest));
    font-weight: var(--button-font-weight);
}

.btn-simple:hover {
    background-color: rgb(var(--color-lightest)) !important;
    border-color: rgb(var(--color-darkest));
    color: rgb(var(button-textcolor-hover));
}

.btn-dark {
    transition: background-color 0.2s linear !important;
    background-color: rgb(var(--color-darkest));
    border-color: rgba(var(--color-darkest));
    font-weight: var(--button-font-weight);
}

.btn-dark:hover {
    background-color: rgb(var(--color-semidark)) !important;
    border-color: rgb(var(--color-darkest));
    color: rgb(var(--color-light-gray));
}

.btn-simple.red {
    color: #fff;
    background-color: var(--color-theme);
    border: 1px solid #ff282d;
    padding: 10px;
}
.close-black:after,
.close-black:before {
    background: #ffffff;
    content: var(--icon-close);
    height: 32px;
    position: absolute;
    right: 16px;
    top: 0;
    transform: rotate(-45deg);
    transition: transform 0.25s ease-in-out;
    width: 1px;
}

.close-window {
    transition: transform 0.5s ease-in-out;
}
.close-window::before {
    width: 70px;
    height: 70px;
    content: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23fff' width='70' height='70' viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M202.82861,197.17188a3.99991,3.99991,0,1,1-5.65722,5.65624L128,133.65723,58.82861,202.82812a3.99991,3.99991,0,0,1-5.65722-5.65624L122.343,128,53.17139,58.82812a3.99991,3.99991,0,0,1,5.65722-5.65624L128,122.34277l69.17139-69.17089a3.99991,3.99991,0,0,1,5.65722,5.65624L133.657,128Z'/%3E%3C/svg%3E");
}

.close-window:hover {
    transform: rotate(90deg);
}

.icon-size-big {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
}

.icon-size-medium {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8rem;
}

.icon-arrow-left-stylish.icon-arrow-right-stylish {
    transition: 2ms linear !important;
}

.icon-arrow-left:hover,
.icon-arrow-right:hover {
    color: var(--color-accent);
    transition: background-color 0.2s linear !important;
}

.icon-arrow-right,
.icon-arrow-left {
    font-family: var(--icon-font-family);
    transition: background-color 0.2s linear !important;
}

.icon-arrow-down:before {
    font-family: "IcoFont";
    content: var(--arrow-down);
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.icon-arrow-up:before {
    font-family: "IcoFont";
    content: var(--arrow-up);
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.icon-uncheck:before {
    font-family: var(--icon-font-family);
    content: var(--icon-close);
}
.icon-check-box:before {
    font-family: var(--icon-font-family);
    content: var(--icon-tick);
}
.peer:checked ~ .peer-checked\:icon-check-box:before {
    font-family: var(--icon-font-family);
    content: var(--icon-tick);
}

.icon-arrow-left-stylish:before {
    font-family: var(--icon-font-family) !important;
    content: var(--arrow-down) !important;
    transition: background-color 0.2s linear !important;
}
.icon-arrow-left:before {
    content: var(--arrow-left);
    transition: background-color 0.2s linear !important;
}
.icon-arrow-right-stylish:before {
    content: var(--arrow-right);
    transition: background-color 0.2s linear !important;
}
.icon-arrow-right:before {
    content: var(--arrow-right);
    transition: background-color 0.2s linear !important;
}

.btn-simple.red:hover {
    color: rgb(var(--button-textcolor-hover)) !important;

    border: 1px solid #ff282d;
}

.icon-after.arrow-right:after {
    font-family: var(--icon-font-family);
    content: var(--arrow-right);
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.icon-after.arrow-right {
    content: var(--arrow-right);
}

.icon-after:after {
    float: right;
}

.arrow-icon {
    color: #a7a7a7; /* Default color */
    width: 50px;
    height: 50px;
    transition: color 0.3s ease-in-out; /* Smooth transition */
}

.arrow-icon:hover {
    color: red; /* Change color on hover */
}

.btn-simple,
.btn-stroke {
    font-family: var(--font-family-heading) !important;
    line-height: 28px;
}
.icon-before.arrow-right:before {
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    font-family: var(--icon-font-family);
    font-weight: var(--button-font-weight);
    content: var(--arrow-right);
}

.icon-compare:before {
    font-family: var(--icon-font-family);
    content: var(--arrow-right);
}
.icon-search:before {
    width: 40px;
    height: 40px;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="24" height="24"><path fill="currentColor" d="M48,44.7,34.6,31.3a19.15,19.15,0,0,0,4.2-11.9A19.4,19.4,0,1,0,19.4,38.8a19.15,19.15,0,0,0,11.9-4.2L44.7,48ZM4.7,19.4A14.7,14.7,0,1,1,19.4,34.1,14.72,14.72,0,0,1,4.7,19.4Z"/></svg>') !important;
}
.icon-search:hover {
    color: var(--color-accent);
}

.icon-copy:before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: var(--color-accent); /* Color of the icon */

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17' fill='none'%3E%3Cpath d='M13.3333 16H2.66667V2.66667H4H12H13.3333V16ZM12 14.6667V4H4V14.6667H12ZM10.6667 0V1.33333H1.33333V13.3333H0V0H10.6667Z' fill='black' fill-opacity='0.56'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16' fill='none'%3E%3Cpath d='M13.3333 16H2.66667V2.66667H4H12H13.3333V16ZM12 14.6667V4H4V14.6667H12ZM10.6667 0V1.33333H1.33333V13.3333H0V0H10.6667Z' fill='black' fill-opacity='0.56'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: contain;
    mask-size: contain;

    display: inline-block;
    margin-right: 6px; /* Adjust spacing between icon and text */
    vertical-align: middle; /* Align with text */
    transition: color 0.3s ease-in-out; /* Smooth transition */
}

.icon-pdf::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--color-accent); /* Inherits text color */
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M19.511 12.5V6.473A5.975 5.975 0 0 0 13.536.5H1.511a1 1 0 0 0-1 1v21a1 1 0 0 0 1 1h2.978"%3E%3C/path%3E%3Cpath d="M14.511.579V4.5a1 1 0 0 0 1 1h3.92m-7.942 12a2 2 0 0 1-2 2h-2v-4h2a2 2 0 0 1 2 2Zm-4 5.999v-4m6-3.999a4 4 0 1 1 0 8Zm6 8V17a1.5 1.5 0 0 1 1.5-1.5h2.5m-4 3.999h2.5"%3E%3C/path%3E%3C/svg%3E');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    margin-right: 15px;
}

.icon-read::before {
    content: "";
    display: inline-block;
    width: 16px; /* Adjust as needed */
    height: 16px;
    background-color: var(--color-accent); /* Change this to any color */
    -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M18 4.294a29.854 29.854 0 0 1 4.493-.372.5.5 0 0 1 .507.5v15.766a.5.5 0 0 1-.493.5C14.4 20.791 12 23.419 12 23.419V6.653S9.6 4.028 1.507 3.922a.5.5 0 0 0-.507.5v15.766a.5.5 0 0 0 .493.5C9.6 20.791 12 23.419 12 23.419"%3E%3C/path%3E%3Cpath d="M12 22.919a6.96 6.96 0 0 1 6-6V1.081a.5.5 0 0 0-.662-.473C12.347 2.312 12 5.949 12 6.419"%3E%3C/path%3E%3C/svg%3E');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M18 4.294a29.854 29.854 0 0 1 4.493-.372.5.5 0 0 1 .507.5v15.766a.5.5 0 0 1-.493.5C14.4 20.791 12 23.419 12 23.419V6.653S9.6 4.028 1.507 3.922a.5.5 0 0 0-.507.5v15.766a.5.5 0 0 0 .493.5C9.6 20.791 12 23.419 12 23.419"%3E%3C/path%3E%3Cpath d="M12 22.919a6.96 6.96 0 0 1 6-6V1.081a.5.5 0 0 0-.662-.473C12.347 2.312 12 5.949 12 6.419"%3E%3C/path%3E%3C/svg%3E');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 15px; /* Adjust spacing between icon and text */
}

.icon-home {
    transition: color 0.2s linear;
    color: rgb(var(--text-dark));
}

.icon-home:hover {
    color: var(--color-accent);
}
.icon-home::before:hover {
    color: var(--color-accent);
}

.icon-share:before {
    content: "";
}

.btn-simple.icon-before:before,
.btn-stroke.icon-before:before,
.btn-simple.iconed-before:before,
.btn-stroke.iconed-before:before {
    font-size: 28px;
    margin-right: 15px;
}

@media (max-width: 992px) {
    .btn-simple {
        padding-right: 100px;
        padding-left: 10px;
        padding-block: 10px;
    }
}

@media (min-width: 992px) {
    .btn-simple.icon-after,
    .btn-stroke.icon-after,
    .btn-simple.iconed-after,
    .btn-stroke.iconed-after {
        padding-right: 100px;
        padding-left: 10px;
        padding-block: 10px;
    }

    .btn-simple.icon-after:after,
    .btn-stroke.icon-after:after,
    .btn-simple.iconed-after:after,
    .btn-stroke.iconed-after:after {
        position: absolute;
        vertical-align: middle;
        right: 15px;
        font-size: 20px;
        line-height: 1em;
    }
}

@media (max-width: 768px) {
    .btn-simple.icon-after:after,
    .btn-stroke.icon-after:after,
    .btn-simple.iconed-after:after,
    .btn-stroke.iconed-after:after {
        bottom: 10px;
        font-size: 18px;
        margin-left: 15px;
        line-height: 28px;
    }
}
@media (min-width: 992px) {
    .btn-simple.icon-after:after,
    .btn-stroke.icon-after:after,
    .btn-simple.iconed-after:after,
    .btn-stroke.iconed-after:after {
        font-size: 22px;
        margin-left: 15px;
        line-height: 26px;
    }
}
@media (min-width: 768px) {
    .btn-simple.icon-after-small:after,
    .btn-stroke.icon-after-small:after,
    .btn-simple.iconed-after-small:after,
    .btn-stroke.iconed-after-small:after {
        font-size: 10px;
    }
}
@media (min-width: 992px) {
    .btn-simple.icon-after-small:after,
    .btn-stroke.icon-after-small:after,
    .btn-simple.iconed-after-small:after,
    .btn-stroke.iconed-after-small:after {
        font-size: 14px;
    }
}
.btn-simple.icon.icon-small:after,
.btn-stroke.icon.icon-small:after,
.btn-simple.iconed.icon-small:after,
.btn-stroke.iconed.icon-small:after {
    font-size: 20px;
}
.homepage-hero + .masonry--randomized {
    margin-block-start: var(--spacing-9);
}

.cta-img {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
}
@media (min-width: 768px) {
    .masonry--randomized {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        row-gap: var(--spacing-10);
    }
}
.masonry--randomized {
    margin-block-end: var(--spacing-8);
    column-gap: var(--spacing-8);
    row-gap: var(--spacing-8);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .masonry {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}
.masonry {
    display: grid;
    gap: var(--spacing-7);
    max-width: var(--container-max-width);
    margin-inline: auto;
}
/* templates */
.masonry {
    display: grid;
    gap: var(--spacing-7);
    max-width: var(--container-max-width);
    margin-inline: auto;
}
@media (min-width: 768px) {
    .masonry {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}
.masonry--randomized {
    margin-block-end: var(--spacing-8);
    column-gap: var(--spacing-8);
    row-gap: var(--spacing-8);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .masonry--randomized {
        grid-template-columns: repeat(2, minmax(320px, 1fr));
        row-gap: var(--spacing-10);
    }
}
.masonry-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: start;
    opacity: 1;
}
.masonry-item:nth-child(odd) .has--portrait-image {
    padding-left: 20%;
}
.masonry-item:nth-child(even) .has--portrait-image {
    padding-right: 20%;
}
.masonry-item.is--positioned {
    animation: 1s animation--fade-in ease-out forwards;
}
.masonry-item:not(.masonry-intro) {
    padding-inline: var(--spacing-4);
}
@media (min-width: 768px) {
    .masonry-item:not(.masonry-intro) {
        padding-inline: 0;
    }
}
@media (min-width: 768px) {
    .masonry-item.is--wide {
        align-self: start;
        grid-column: span 2 / span 2 !important;
    }
}
.homepage-hero + .masonry--randomized {
    margin-block-start: var(--spacing-9);
}

/* MENUS */

.menu-item-second {
    font-family: var(--font-family-heading) !important;
    font-weight: 700 !important;
    font-size: 20px;
    transition: background-color 0.2s linear !important;
    transition: color 0.2s linear !important;
}
.menu-item-second:hover {
    color: var(--color-accent);
}

.main-menu {
    background: linear-gradient(
        180deg,
        rgb(var(--color-accent-500)) 50%,
        rgba(var(--color-accent-500), 0.9) 100%
    );
}
.nav-header {
    font-size: var(--font-size-h2) !important;
    color: rgb(var(--color-lightest));
    padding-bottom: 15px;
}
@media (min-width: 1024px) {
    .nav-panel-ctas {
        transform: translateX(20px);
        animation: animation--movein 0.5s ease-out forwards;
    }
}

.navbar_open {
    width: 100%;
    height: 100vh;
    position: fixed;
}
.header__button {
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: black;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -18px;
    outline: none;
    animation-duration: 300ms;
    animation-timing-function: ease;
}

.header__button[data-open="true"] {
    background-color: hsl(52, 100%, 50%);
    animation-name: scale;
}

.header__button[data-open="false"] {
    transition: background-color 250ms linear;
}

@keyframes scale {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(100%);
    }
}

.header__nav {
    background-color: black;
    position: fixed;
    overflow: hidden;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: hidden;
    clip-path: circle(var(--radius) at calc(100% - 55px) 47px);
}
@media (min-width: 992px) {
    .modal {
        position: fixed !important;
        z-index: 1001 !important;
        height: 100% !important;
        width: 100% !important;
        background: linear-gradient(
            180deg,
            rgb(0 0 0) 10%,
            rgb(0 0 0 / 90%) 100%
        ) !important;
        top: 77px !important;
        transition: all 0.2s ease-in-out !important;
        padding: 20px !important;
        animation: animation--nav-panel 1.6s cubic-bezier(0.02, 0.2, 0, 1)
            forwards !important;
    }
}

.menumodal {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
}

.widget-cta--navigation {
    padding: var(--spacing-6);
    background: rgb(var(--color-lightest));
    color: rgb(var(--color-darkest));
}

.menu-wrapper {
    margin: 5%;
}
.menu-wrapper li {
    transition: color 0.2s linear;
}
.menu-wrapper li:hover {
    color: var(--color-accent);
    transition: color 0.1s linear;
}

li.menu-item-big {
    font-size: 18px;
    color: rgb(var(--color-lightest));
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-regular);
    cursor: pointer;
    transition: color 0.2s linear;
    line-height: 35px;
    text-wrap: nowrap;
    font-weight: 600;
}
li.menu-item-big::before {
    content: var(--arrow-right);
    padding-right: 10px;
    font-family: "IcoFont";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}
li.menu-item-small {
    font-size: 22px;
    color: rgb(var(--color-font-darkgray));
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-regular);
    cursor: pointer;
    transition: color 0.2s linear;
}

li.prev-arrow::before {
    content: var(--arrow-right);
    padding-right: 10px;
    font-family: "IcoFont";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.header_nav_visible {
    visibility: visible;
}
.header_nav_hidden {
    visibility: hidden;
}

.header__menu {
    padding: 0;
    margin: 0;
}

.header__menu > .header__menu-item {
    font-size: 10vh;
}

.header__menu > .header__menu-item:not(:last-of-type) {
    margin-bottom: 0.1em;
}

.header__menu-item a {
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.header__menu-item a:hover {
    font-style: italic;
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.open-modal-btn {
    padding: 8px 16px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.open-modal-btn:hover {
    background-color: #45a049;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.modal-fade-enter-active,
.modal-fade-leave-active {
    transition: opacity 0.3s;
}

.modal-fade-enter-from,
.modal-fade-leave-to {
    opacity: 0;
}

/* Pop up Product Wrapper */
.prod-modal-wrapper {
    max-width: 1440px;
}

/* Common pages */
.page-main {
    flex: 1;
}
.page-main.has--fixed-page-header .page-header {
    padding: 0;
}
.page-body.has--no-bottom-margin .footer-primary {
    margin-top: 0;
}
.page-header {
    position: relative;
    padding-top: var(--header-height);
}

.header {
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

ol.enumeration-list {
    counter-reset: section 0;
    list-style-type: none;
    padding-left: 20px;
}

.content-row {
    display: flex;
    gap: 20px;
    padding: 20px;
}
.content-row .col {
    flex: 1;
    padding: 0px;
    background: #ffffff;
}
.box-shadow {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.has--page-header-sm .page-header {
    padding-top: calc(var(--header-height) / 1.2);
}
@media (min-width: 768px) {
    .has--page-header-sm .page-header {
        padding-top: calc(var(--header-height) / 2);
    }
}

.footer-form {
    min-width: 500px !important;
}
.page-header-actions,
.card--hero .card-body {
    padding-block-start: var(--spacing-5);
}

@media (min-width: 768px) {
    .card--highlight.is--wide .card-body {
        display: flex;
        flex-direction: column;
        height: 100%;
        align-self: start;
        justify-content: center;
        min-height: 350px;
    }
}

@media (min-width: 768px) {
    .card--inset .card-body {
        padding-inline: var(--spacing-5);
    }
}
.img.has--observer.is--visible {
    animation: 0.35s animation--grayscale-fade ease-out forwards;
}
.img.has--observer {
    filter: grayscale(100%);
}
.play-animations .home-cta .card-title {
    animation: 1s animation--fade-in ease-out forwards 1.2s;
}
.home-cta .card-title {
    position: relative;
    opacity: 1;
}
.child-1 {
    max-width: 25% !important ;
    width: 25% !important ;
}
.child-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* Aligns content to the left */
    padding: 5% !important;
    width: 100%;
}
.hidden-desc {
    height: 0px;
    max-height: 300px;
}

/* Large devices (≥1024px) */
@media only screen and (max-width: 1024px) {
    lg\:w-1/3 {
        width: 33.333333%;
    }
}
.card-home:hover .hidden-desc {
    height: 125px;
}
@media (min-width: 1200px) {
    .card-home:hover .hidden-desc {
        height: 150px;
    }
}
.xl\:max-h-0 {
    max-height: 0;
}

.container-fluid {
    height: auto;
    overflow: hidden !important; /* Prevents overflow if content exceeds */
}

.link {
    display: inline-flex;
    padding: 0;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
}
.link-text::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 1;
    transition: transform 0.5s ease-out;
    transform: translateX(100%);
}

.icon-long:after {
    display: block;
    font-family: "IcoFont";
    content: "\ea94";
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    font-size: 32px;
    transition: color 0.2s linear;
    transition: transform 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.link--arrow:hover .icon-long {
    color: var(--color-accent);
    cursor: pointer;
}

.rich-text a.underline-animate {
    background-image: linear-gradient(
        90deg,
        currentColor 50%,
        color-mix(in srgb, currentColor 30%, transparent) 0
    );
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 202% 2px;
    padding-bottom: 5px;
    transition-duration: 0.6s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.rich-text a.underline-animate:hover {
    background-position: 0 100%;
    opacity: 1;
}
.icon-hamburger:before {
    width: 32px;
    height: 32px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 30 30" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></svg>');
    display: inline;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-hamburger {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></svg>');
    display: block;
    width: 32px;
    height: 32px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-download:before {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download-cloud"><polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-download {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download-cloud"><polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-download:before {
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download-cloud"><polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-cancel {
    width: 24px;
    height: 24px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}
.icon-cancel:before {
    width: 24px;
    height: 24px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23000000" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');

    fill: #000;
}

.peer:not(:checked) ~ .peer-checked\:icon-check-box::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18" stroke-width="1.5" stroke="%23ffffff" class="size-6"><path stroke-linecap="round" stroke-linejoin="round" d="M5 12h14" /></svg>');
    display: inline-block;
    width: 18px;
    height: 18px;
    padding-right: 6px;
}

.icon-cart:before {
    content: "";
}

.card {
    cursor: pointer;
}

.card:hover .icon-long:after {
    color: var(--color-accent);
    transform: translateX(3px) scaleX(1.05);

    transform-origin: left center;
}
/* PRODUCT LISTING */
.prod-list {
    border-bottom: 1px solid rgb(var(--color-darkest));
    cursor: pointer;
    transition: all 0.2s linear;
    display: flex;
    flex-direction: row;
    padding: 10px;
}
@media (max-width: 768px) {
    .prod-list {
        flex-direction: column;
    }
}

.prod-list-detail {
    width: 100%;
    float: left;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    align-items: flex-start;
    justify-content: space-between;
}

.prod-list:hover {
    background-color: rgb(248, 248, 248);
}
.block-link {
    width: 100%;
}

/* Main Container */
.hero-section {
    display: flex;
    height: 100%;
    background: url("/images/haus_und_garten_hero.jpg") no-repeat center center;
    background-size: cover;
    color: black;
    position: relative;
    animation: 1.5s animation--fade-in;
    align-items: flex-end;
    top: 0;
}

/* Left Content */
.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 1%;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Right Side */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Top Black Section */
.hero-right-top {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgb(0, 0, 0) 40%);
    color: white;
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
    padding-left: 30px;
    font-size: 1.5rem;
    padding-top: 5%;
    animation: animation--inspiration-start 0.2s cubic-bezier(0.22, 1, 0.36, 1)
        0s forwards;
    min-height: 300px;
}

/* Bottom Transparent Section */
.hero-right-bottom {
    flex: 2;
    background: linear-gradient(
        90deg,
        rgba(var(--color-accent-rgb), 0.7) 0%,
        rgba(var(--color-accent-rgb), 1) 60%
    ) !important;
    padding: 30px;
    color: rgb(255, 255, 255);
    padding-top: 5%;
    animation: 1.5s animation--fade-in ease;
    min-height: 500px;
}

.hero-right-bottom h4 {
    font-weight: var(--font-weight-bold);
}
.hero-right-top h4 {
    font-weight: bold;
}

.hero-right-bottom a {
    color: black;
    text-decoration: none;
}

.cta-link {
    margin-top: 20px;
    display: block;
}

.animate-bouncy {
    animation: bouncy 3.6s ease infinite;
}
.fadein {
    animation: 1s animation--fade-in ease !important;
}

/* Carousel Wrapper */
.carousel {
    position: relative !important;
    max-width: 1300px !important;
    margin: auto !important;
    overflow: hidden !important;
    border-radius: 10px !important;
}

/* Carousel Inner Track */
.carousel-inner {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

/* Individual Slides */
.carousel-item {
    position: relative !important;
    display: none !important;
    width: 100% !important;
    transition: transform 0.6s ease-in-out !important;
}

.carousel-item.active {
    display: block !important;
}

/* Slide Images */
.carousel img {
    width: 100% !important;
    display: block !important;
}
.prod-image-main {
    max-width: 800px !important;
}

/* Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgb(153, 64, 64) !important;
    border: none !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

.carousel-control-prev {
    left: 10px !important;
}

.carousel-control-next {
    right: 10px !important;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: gray !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}
.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background: black !important;
}
.d-md-block {
    display: block !important;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #a7a7a7;
    text-align: center;
}

.title-section {
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    background: #f8f9fa;
}
.half-width {
    width: 50%;
    height: auto;
    position: relative;
}
.image-container {
    position: relative;
    width: 100%;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    text-align: center;
}
.text-container {
    background: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.tiles {
    --tile-height: 550px;
    display: grid;
    gap: 16px;
    grid-auto-columns: 1fr;
    grid-auto-rows: auto auto;
}
/* BOOTSTRAP OVER RIDES */

@media (min-width: 1280px) {
    .hover-zoom {
        overflow: hidden;
    }

    .hover-link:hover {
        opacity: 0.7;
    }

    .hover-zoom img {
        transition-duration: 0.5s;
        transition-property: color, background-color, border-color,
            text-decoration-color, fill, stroke, opacity, box-shadow, transform,
            filter, -webkit-backdrop-filter;
        transition-property: color, background-color, border-color,
            text-decoration-color, fill, stroke, opacity, box-shadow, transform,
            filter, backdrop-filter;
        transition-property: color, background-color, border-color,
            text-decoration-color, fill, stroke, opacity, box-shadow, transform,
            filter, backdrop-filter, -webkit-backdrop-filter;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hover-zoom:hover img {
        --tw-scale-x: 1.05;
        --tw-scale-y: 1.05;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(1.05) scaleY(1.05);
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }
}

/* ACCORDION*/
#accordions {
    transition: height 0.2s ease-out, opacity 0.1s ease-in-out;
}

#accordions.closing {
    /* These properties will animate */
    height: 0;
    opacity: 0;
}

.accordion input {
    display: none;
}

.accordion label {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgb(var(--color-light-gray)); /* Black background */
    color: rgb(var(--color-font-darkgray));
    font-size: 18px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease-in-out;
}

.accordion label:hover {
    background: rgba(
        var(--color-light-gray),
        0.9
    ); /* Slightly lighter black on hover */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    background: #f8f9fa;
    padding: 0 15px;
}

.accordion input:checked + label + .accordion-content {
    max-height: 200px; /* Adjust based on content */
    padding: 15px;
}
#accordion {
    transition: all 0.5s ease;
    max-height: 800px; /* Adjust based on content */
    overflow: hidden;
}

#accordion.closing {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}
.dropdown-content {
    transition: all 0.6s ease;
    overflow: hidden;
}

.accordion-slide-in {
    animation: slideIn 0.6s ease forwards;
}

.accordion-slide-out {
    animation: slideOut 0.6s ease forwards;
}

@keyframes slideIn {
    from {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        max-height: 500px; /* Adjust based on your content */
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        max-height: 400px; /* Should match slideIn's max-height */
        opacity: 1;
        transform: translateY(0);
    }
    to {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* 
--------------------------------------------------------------
  ZOOMABLE MODULE - CSS
--------------------------------------------------------------
*/

@media only screen and (min-width: 992px) {
    .home_services-item:hover {
        padding-right: 15rem;
    }
}
@media only screen and (min-width: 992px) {
    .home_services-item:hover .rich-text-light {
        opacity: 1;
    }
}

@media only screen and (min-width: 992px) {
    .home_services-item .rich-text-light {
        opacity: 0;
        transition: all 0.4s ease;
    }
}
.home_services-item {
    background-color: var(--color--dark);
    color: var(--tls-text-light);
    flex-flow: column;
    flex: 1;
    justify-content: space-between;
    min-height: 75svh;
    transition: padding 0.5s;
    display: flex;
    position: relative;
    overflow: hidden;
    max-height: 600px;
}
.home_services {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    max-height: 600px;
}

.cover.is-faded {
    opacity: 0.9;
    transition: padding 0.3s;
}
.cover {
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0%;
}
.home_services-item:hover {
    padding-right: 5rem;
}

.home_services-item .rich-text-light {
    opacity: 0;
    transition: all 0.4s ease;
}

.home_services-item:hover .rich-text-light {
    opacity: 1;
}

.padding-global {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.heading-l {
    color: var(--tls-text-light);
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
}

.home_services-item-heading {
    grid-column-gap: var(--spacing--spacing-xs);
    grid-row-gap: var(--spacing--spacing-xs);
    flex-flow: column;
    flex-direction: column;
    flex-wrap: nowrap;
    display: flex;
    position: relative;
}

.home_services-text {
    width: 25vw;
    max-width: 70ch;
}
w-richtext::after {
    clear: both;
}
.w-richtext::before,
.w-richtext::after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}
.rich-text-light a {
    color: var(--tls-text-light);
    border-bottom: 1px solid #ffffff40;
    transition: border-color 0.5s;
}

.w-richtext::after {
    clear: both;
}

.icon-email:before {
    content: "";
}

.shadow-lg {
    box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.15); /* Custom soft shadow */
}
.shadow-dark {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.527); /* Custom soft shadow */
}
.pt-30 {
    padding-top: 30px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.dark-gradient-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}
.light-gradient-top {
    background-image: linear-gradient(
        0deg,
        rgba(236, 236, 236, 0.7),
        transparent
    );
}

.max-lg\:w-half {
    width: 50%;
}
.rotate {
    transition: transform 0.3s ease;
}
.rotate:hover {
    transform: rotate(90deg);
}
@media (max-width: 1280px) {
    .xl\:absolute {
        position: absolute;
    }

    .xl\:right-10 {
        right: 60px;
    }

    .xl\:mx-2 {
        margin-left: 12px;
        margin-right: 12px;
    }

    .xl\:mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .xl\:mb-0 {
        margin-bottom: 0;
    }

    .xl\:mb-10 {
        margin-bottom: 60px;
    }

    .xl\:mb-15 {
        margin-bottom: 90px;
    }

    .xl\:mb-2 {
        margin-bottom: 12px;
    }

    .xl\:mb-20 {
        margin-bottom: 120px;
    }

    .xl\:mb-3 {
        margin-bottom: 18px;
    }

    .xl\:mb-5 {
        margin-bottom: 30px;
    }

    .xl\:ml-2 {
        margin-left: 12px;
    }

    .xl\:ml-26 {
        margin-left: 156px;
    }

    .xl\:mr-10 {
        margin-right: 60px;
    }

    .xl\:mr-6 {
        margin-right: 36px;
    }

    .xl\:mt-0 {
        margin-top: 0;
    }

    .xl\:mt-10 {
        margin-top: 60px;
    }

    .xl\:mt-15 {
        margin-top: 90px;
    }

    .xl\:mt-3 {
        margin-top: 18px;
    }

    .xl\:mt-5 {
        margin-top: 30px;
    }

    .xl\:block {
        display: block;
    }

    .xl\:inline {
        display: inline;
    }

    .xl\:flex {
        display: flex;
    }

    .xl\:grid {
        display: grid;
    }

    .xl\:max-h-0 {
        max-height: 0;
    }

    .xl\:max-w-extended {
        max-width: 100.5rem;
    }

    .xl\:max-w-grid {
        max-width: 75rem;
    }

    .xl\:-translate-x-3 {
        --tw-translate-x: -18px;
        transform: translate(-18px, var(--tw-translate-y))
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }

    .xl\:translate-y-12 {
        --tw-translate-y: 72px;
        transform: translate(var(--tw-translate-x), 72px)
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }

    .xl\:translate-y-12\.5 {
        --tw-translate-y: 74px;
        transform: translate(var(--tw-translate-x), 74px)
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }

    .xl\:transform,
    .xl\:translate-y-12\.5 {
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skewX(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }

    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xl\:flex-row {
        flex-direction: row;
    }

    .xl\:items-start {
        align-items: flex-start;
    }

    .xl\:justify-end {
        justify-content: flex-end;
    }

    .xl\:justify-center {
        justify-content: center;
    }

    .xl\:gap-4 {
        gap: 24px;
    }

    .xl\:gap-x-1 {
        -moz-column-gap: 6px;
        column-gap: 6px;
    }

    .xl\:hyphens-manual {
        -webkit-hyphens: manual;
        hyphens: manual;
    }

    .xl\:p-4 {
        padding: 24px;
    }

    .xl\:p-8 {
        padding: 48px;
    }

    .xl\:px-10 {
        padding-left: 60px;
        padding-right: 60px;
    }

    .xl\:px-15 {
        padding-left: 90px;
        padding-right: 90px;
    }

    .xl\:px-3 {
        padding-left: 18px;
        padding-right: 18px;
    }

    .xl\:px-3\.5 {
        padding-left: 21px;
        padding-right: 21px;
    }

    .xl\:px-4 {
        padding-left: 24px;
        padding-right: 24px;
    }

    .xl\:px-8 {
        padding-left: 48px;
        padding-right: 48px;
    }

    .xl\:py-10 {
        padding-top: 60px;
    }
    .xl\:py-3 {
        padding-top: 18px;
    }
    .xl\:pb-10,
    .xl\:py-10 {
        padding-bottom: 60px;
    }

    .xl\:pb-15 {
        padding-bottom: 90px;
    }

    .xl\:pb-2 {
        padding-bottom: 12px;
    }

    .xl\:pb-3 {
        padding-bottom: 18px;
    }

    .xl\:pb-5 {
        padding-bottom: 30px;
    }

    .xl\:pb-8 {
        padding-bottom: 48px;
    }

    .xl\:pt-0 {
        padding-top: 0;
    }

    .xl\:pt-10 {
        padding-top: 60px;
    }

    .xl\:pt-15 {
        padding-top: 90px;
    }

    .xl\:pt-16 {
        padding-top: 96px;
    }

    .xl\:pt-20 {
        padding-top: 120px;
    }

    .xl\:pt-3 {
        padding-top: 18px;
    }

    .xl\:pt-5 {
        padding-top: 30px;
    }

    .xl\:pt-8 {
        padding-top: 48px;
    }

    .xl\:text-2xl {
        font-size: 1.888125rem;
    }

    .xl\:text-4xl {
        font-size: 2.516875rem;
    }

    .xl\:text-6xl {
        font-size: 3.354375rem;
    }

    .xl\:text-7xl {
        font-size: 4.471875rem;
    }

    .xl\:text-base {
        font-size: 1.41625rem;
    }

    .xl\:text-sm {
        font-size: 1.0625rem;
    }

    .xl\:text-xs {
        font-size: 0.796875rem;
    }

    .xl\:font-bold {
        font-weight: 700;
    }

    .xl\:leading-10 {
        line-height: 3.625rem;
    }

    .xl\:leading-11 {
        line-height: 4.1875rem;
    }

    .xl\:leading-12 {
        line-height: 5.125rem;
    }

    .xl\:leading-3 {
        line-height: 1.75rem;
    }

    .xl\:leading-5 {
        line-height: 2.125rem;
    }

    .xl\:leading-8 {
        line-height: 3rem;
    }

    .xl\:last\:-mb-20:last-child {
        margin-bottom: -120px;
    }

    .xl\:last\:pb-20:last-child {
        padding-bottom: 120px;
    }

    .group:hover .xl\:group-hover\:max-h-100 {
        max-height: 600px;
    }

    .group:hover .xl\:group-hover\:opacity-0 {
        opacity: 0;
    }
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
@media (min-width: 1280px) {
    .xl\:w-100 {
        width: 100%;
    }
}
@media (min-width: 1280px) {
    .xl\:h-100 {
        height: 100%;
    }
}
@media (min-width: 1280px) {
    .xl\:w-50 {
        width: 50%;
    }
}
@media (min-width: 1280px) {
    .xl\:h-50 {
        height: 50%;
    }
}
@media (min-width: 1280px) {
    .xl\:w-25 {
        width: 25%;
    }
}
@media (min-width: 1280px) {
    .xl\:h-25 {
        height: 25%;
    }
}
@media (min-width: 1280px) {
    .xl\:w-33 {
        width: 33%;
    }
}
@media (min-width: 1280px) {
    .xl\:h-33 {
        height: 33%;
    }
}
@media (min-width: 1280px) {
    .xl\:w-75 {
        width: 75%;
    }
}
@media (min-width: 1280px) {
    .xl\:h-75 {
        height: 75%;
    }
}

.w-80 {
    width: 83.333333%;
}
.w-auto {
    width: auto !important;
}
.h-auto {
    height: auto;
}
.h-700 {
    height: 700px;
}
.h-600 {
    height: 600px;
}
/* Hide scrollbar for all browsers */
.hide-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.slide-fade-enter-active,
.slide-fade-leave-active {
    transition: all 0.4s ease;
    position: absolute;
    width: 100%;
}

.slide-fade-enter-from {
    opacity: 0;
    transform: translateX(50px);
}

.slide-fade-leave-to {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-enter-active,
.fade-leave-active {
    transition: all 0.3s ease;
}
.fade-enter,
.fade-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}
.accordion-enter-active,
.accordion-leave-active {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.accordion-enter-from,
.accordion-leave-to {
    max-height: 0;
    opacity: 0;
}

.accordion-enter-to,
.accordion-leave-from {
    max-height: 1000px; /* set higher if your content is taller */
    opacity: 1;
}
.max-h-\[80vh\] {
    max-height: 80vh;
}

.mt-24 {
    margin-top: 6rem /* 96px */;
}
.mt-28 {
    margin-top: 7rem /* 112px */;
}

.btn--icon.is--selected {
    padding-block-end: var(--spacing-2);
    color: rgb(var(--color-darkest));
    border-bottom: 3px solid rgb(var(--color-darkest));
}
.bg-none {
    background: none;
}
.mix-blend-difference {
    mix-blend-mode: difference;
}
@media not all and (min-width: 525px) {
    .max-sm\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .max-sm\:gap-2 {
        gap: 0.5rem /* 8px */;
    }
}
@media not all and (min-width: 525px) {
    .max-sm\:ltr\:left-0:where([dir="ltr"], [dir="ltr"] *) {
        left: 0;
    }
    .max-sm\:ltr\:left-2:where([dir="ltr"], [dir="ltr"] *) {
        left: 0.5rem;
    }
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
:before,
:after {
    --tw-content: "";
}
html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
    line-height: inherit;
}
hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}
abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}
a {
    color: inherit;
    text-decoration: inherit;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}
button,
select {
    text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}
:-moz-focusring {
    outline: auto;
}
:-moz-ui-invalid {
    box-shadow: none;
}
progress {
    vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
summary {
    display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}
fieldset {
    margin: 0;
    padding: 0;
}
legend {
    padding: 0;
}
ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
dialog {
    padding: 0;
}
textarea {
    resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af;
}
input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}
button,
[role="button"] {
    cursor: pointer;
}
:disabled {
    cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle;
}
img,
video {
    max-width: 100%;
    height: auto;
}
[hidden] {
    display: none;
}
*,
:before,
:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}
::-moz-selection {
    background-color: #060c3b33;
}
::selection {
    background-color: #060c3b33;
}
input {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
button:disabled:hover {
    cursor: not-allowed;
    opacity: 0.5;
}
.icon-checkout-address:before {
    content: "";
}
.icon-edit:before {
    content: "";
}
.icon-add-new:before {
    content: "";
}
.icon-astreisk:before {
    content: "";
}
.icon-bin:before {
    content: "";
}
.icon-box-fill:before {
    content: "";
}
.icon-calendar:before {
    content: "";
}
.icon-camera-fill:before {
    content: "";
}
.icon-camera:before {
    content: "";
}
.icon-check-box:before {
    content: "";
}
.icon-compare-1:before {
    content: "";
}
.icon-dislike:before {
    content: "";
}
.icon-dollar-sign:before {
    content: "";
}
.icon-double-arrow:before {
    content: "";
}
.icon-email:before {
    content: "";
}
.icon-error:before {
    content: "";
}
.icon-eye:before {
    content: "";
}
.icon-filter-1:before {
    content: "";
}
.icon-filter-fill:before {
    content: "";
}
.icon-filter:before {
    content: "";
}
.icon-flate-rate:before {
    content: "";
}
.icon-Free-Shipping:before {
    content: "";
}
.icon-heart-1:before {
    content: "";
}
.icon-heart-2:before {
    content: "";
}
.icon-heart-fill:before {
    content: "";
}
.icon-heart:before {
    content: "";
}
.icon-left-arrow:before {
    content: "";
}
.icon-like:before {
    content: "";
}
.icon-location:before {
    content: "";
}
.icon-minus:before {
    content: "";
}
.icon-more:before {
    content: "";
}
.icon-orders:before {
    content: "";
}
.icon-pen:before {
    content: "";
}
.icon-plus:before {
    content: "";
}
.icon-product:before {
    content: "";
}
.icon-radio-select:before {
    content: "";
}
.icon-radio-unselect:before {
    content: "";
}
.icon-right-arrow:before {
    content: "";
}
.icon-search:before {
    content: "";
}
.icon-share:before {
    content: "";
}
.icon-sort-1:before {
    content: "";
}
.icon-sort-by:before {
    content: "";
}
.icon-sort:before {
    content: "";
    color: #7d7d7d;
}
.icon-star-fill:before {
    content: "";
}
.icon-star:before {
    content: "";
}
.icon-support:before {
    content: "";
}
.icon-tick:before {
    content: "";
}
.icon-toast-done:before {
    content: "";
}
.icon-toast-error:before {
    content: "";
}
.icon-toast-exclamation-mark:before {
    content: "";
}
.icon-toast-info:before {
    content: "";
}
.icon-truck:before {
    content: "";
}
.icon-users:before {
    content: "";
}
.journal-scroll::-webkit-scrollbar {
    width: 14px;
    cursor: pointer;
}
.journal-scroll::-webkit-scrollbar-track {
    background-color: #fff;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #e9e9e9;
}
.journal-scroll::-webkit-scrollbar-thumb {
    cursor: pointer;
    background-color: #e9e9e9;
    border-radius: 12px;
    border: 3px solid transparent;
    background-clip: content-box;
}
.scrollbar-width-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-width-hidden::-webkit-scrollbar {
    display: none;
}
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
}
[dir="rtl"] .custom-select {
    background-position-x: calc(100% - (100% - 10px));
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.label-pending,
.label-processing,
.label-closed,
.label-canceled,
.label-info,
.label-completed,
.label-active {
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 35px;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    font-size: 12px;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.label-pending {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity));
}
.label-processing {
    --tw-bg-opacity: 1;
    background-color: rgb(8 145 178 / var(--tw-bg-opacity));
}
.label-completed,
.label-active {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.label-closed {
    --tw-bg-opacity: 1;
    background-color: rgb(79 70 229 / var(--tw-bg-opacity));
}
.label-canceled {
    --tw-bg-opacity: 1;
    background-color: rgb(225 29 72 / var(--tw-bg-opacity));
}
.label-info {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184 / var(--tw-bg-opacity));
}
.primary-button {
    display: flex;
    max-width: -moz-max-content;
    max-width: max-content;
    cursor: pointer;
    place-content: center;
    align-items: center;
    -moz-column-gap: 0.375rem;
    column-gap: 0.375rem;
    border-radius: 0.75rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(6 12 59 / var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(6 12 59 / var(--tw-bg-opacity));
    padding: 1rem 2rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.primary-button:hover {
    opacity: 0.9;
}
.secondary-button:hover {
    background-color: #050e3a0d;
}
.shimmer {
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: skeleton;
    animation-timing-function: linear;
    background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
    background-size: 1250px 100%;
}
@keyframes skeleton {
    0% {
        background-position: -1250px 0;
    }
    to {
        background-position: 1250px 0;
    }
}
@keyframes on-fade {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.wrapper-404 {
    position: relative;
    font-size: 394px;
    perspective: 4.5em;
    overflow: clip;
    place-self: stretch;
    top: 50%;
    transform: translateY(-62%);
}
.glow-404,
.glow-shadow-404 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    place-content: center;
    font-family: "DM Serif Display";
    overflow: hidden;
    letter-spacing: 24px;
}
.glow-404 {
    background-clip: text;
    -webkit-background-clip: text;
    color: #060c3b;
}
.glow-shadow-404 {
    color: #e6e7eb;
    mix-blend-mode: darken;
    transform: translateY(15.5%) rotateX(243deg) scaleY(-1) translateY(-23%)
        scaleY(1.35) translate(7%) skew(-45deg);
}
canvas[resize] {
    width: 100%;
    height: 100vh;
}
html {
    margin-top: 0 !important;
}
.required:after {
    content: "*";
}
.skip-to-main-content-link {
    position: absolute;
    z-index: 999;
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    padding: 1em;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    opacity: 0;
}
.skip-to-main-content-link:where([dir="ltr"], [dir="ltr"] *) {
    left: -9999px;
}
.skip-to-main-content-link:where([dir="rtl"], [dir="rtl"] *) {
    right: -9999px;
}
.skip-to-main-content-link:focus {
    opacity: 1;
}
.skip-to-main-content-link:focus:where([dir="ltr"], [dir="ltr"] *) {
    left: 50%;
    --tw-translate-x: 50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.skip-to-main-content-link:focus:where([dir="rtl"], [dir="rtl"] *) {
    right: 50%;
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.pointer-events-none {
    pointer-events: none;
}
.pointer-events-auto {
    pointer-events: auto;
}
.visible {
    visibility: visible;
}
.collapse {
    visibility: collapse;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.sticky {
    position: sticky;
}
.-inset-px {
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.inset-x-0 {
    left: 0;
    right: 0;
}
.inset-y-0 {
    top: 0;
    bottom: 0;
}
.-left-1 {
    left: -0.25rem;
}
.-left-10 {
    left: -2.5rem;
}
.-right-1 {
    right: -0.25rem;
}
.-right-6 {
    right: -1.5rem;
}
.-top-2 {
    top: -0.5rem;
}
.-top-2\.5 {
    top: -0.625rem;
}
.-top-4 {
    top: -1rem;
}
.bottom-0 {
    bottom: 0;
}
.bottom-1 {
    bottom: 0.25rem;
}
.bottom-1\.5 {
    bottom: 0.375rem;
}
.bottom-10 {
    bottom: 2.5rem;
}
.bottom-3 {
    bottom: 0.75rem;
}
.bottom-5 {
    bottom: 1.25rem;
}
.left-0 {
    left: 0;
}
.left-1\/2 {
    left: 50%;
}
.left-1\/4 {
    left: 25%;
}
.left-2 {
    left: 0.5rem;
}
.left-2\.5 {
    left: 0.625rem;
}
.right-0 {
    right: 0;
}
.right-2 {
    right: 0.5rem;
}
.right-2\.5 {
    right: 0.625rem;
}
.top-0 {
    top: 0;
}
.top-1 {
    top: 0.25rem;
}
.top-1\.5 {
    top: 0.375rem;
}
.top-1\/2 {
    top: 50%;
}
.top-10 {
    top: 2.5rem;
}
.top-16 {
    top: 4rem;
}
.top-2 {
    top: 0.5rem;
}
.top-2\.5 {
    top: 0.625rem;
}
.top-20 {
    top: 5rem;
}
.top-24 {
    top: 6rem;
}
.top-3 {
    top: 0.75rem;
}
.top-5 {
    top: 1.25rem;
}
.top-8 {
    top: 2rem;
}
.top-9 {
    top: 2.25rem;
}
.top-\[74\%\] {
    top: 74%;
}
.top-\[78px\] {
    top: 78px;
}
.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}
.z-\[1000\] {
    z-index: 1000;
}
.z-\[1001\] {
    z-index: 1001;
}
.z-\[1\] {
    z-index: 1;
}
.z-\[999\] {
    z-index: 999;
}
.float-right {
    float: right;
}
.-m-0 {
    margin: -0px;
}
.-m-0\.5 {
    margin: -0.125rem;
}
.m-0 {
    margin: 0;
}
.m-1 {
    margin: 0.25rem;
}
.m-\[0_auto_20px_auto\] {
    margin: 0 auto 20px;
}
.m-auto {
    margin: auto;
}
.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}
.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
}
.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.my-2\.5 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}
.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}
.\!mb-0 {
    margin-bottom: 0 !important;
}
.\!mb-2 {
    margin-bottom: 0.5rem !important;
}
.\!mb-2\.5 {
    margin-bottom: 0.625rem !important;
}
.\!mb-4 {
    margin-bottom: 1rem !important;
}
.\!mt-0 {
    margin-top: 0 !important;
}
.-mt-1 {
    margin-top: -0.25rem;
}
.-mt-12 {
    margin-top: -3rem;
}
.-mt-9 {
    margin-top: -2.25rem;
}
.-mt-\[22px\] {
    margin-top: -22px;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-0\.5 {
    margin-bottom: 0.125rem;
}
.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-1\.5 {
    margin-bottom: 0.375rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-2\.5 {
    margin-bottom: 0.625rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-5 {
    margin-bottom: 1.25rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-7 {
    margin-bottom: 1.75rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mt-0 {
    margin-top: 0;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-1\.5 {
    margin-top: 0.375rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mt-11 {
    margin-top: 2.75rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-14 {
    margin-top: 3.5rem;
}
.mt-16 {
    margin-top: 4rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-2\.5 {
    margin-top: 0.625rem;
}
.mt-20 {
    margin-top: 5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-32 {
    margin-top: 8rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-5 {
    margin-top: 1.25rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-7 {
    margin-top: 1.75rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-9 {
    margin-top: 2.25rem;
}
.mt-\[22px\] {
    margin-top: 22px;
}
.mt-\[34px\] {
    margin-top: 34px;
}
.mt-\[60px\] {
    margin-top: 60px;
}
.block {
    display: block;
}
.inline-block {
    display: inline-block;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.table {
    display: table;
}
.grid {
    display: grid;
}
.hidden {
    display: none;
}
.aspect-\[2\.743\/1\] {
    aspect-ratio: 2.743/1;
}
.aspect-\[4\/1\] {
    aspect-ratio: 4/1;
}
.aspect-square {
    aspect-ratio: 1 / 1;
}
.h-1 {
    height: 0.25rem;
}
.h-1\.5 {
    height: 0.375rem;
}
.h-10 {
    height: 2.5rem;
}
.h-12 {
    height: 3rem;
}
.h-14 {
    height: 3.5rem;
}
.h-16 {
    height: 4rem;
}
.h-20 {
    height: 5rem;
}
.h-28 {
    height: 7rem;
}
.h-3 {
    height: 0.75rem;
}
.h-3\.5 {
    height: 0.875rem;
}
.h-4 {
    height: 1rem;
}
.h-5 {
    height: 1.25rem;
}
.h-6 {
    height: 1.5rem;
}
.h-7 {
    height: 1.75rem;
}
.h-8 {
    height: 2rem;
}
.h-9 {
    height: 2.25rem;
}
.h-\[100px\] {
    height: 100px;
}
.h-\[100vh\] {
    height: 100vh;
}
.h-\[110px\] {
    height: 110px;
}
.h-\[146px\] {
    height: 146px;
}
.h-\[17px\] {
    height: 17px;
}
.h-\[18px\] {
    height: 18px;
}
.h-\[19px\] {
    height: 19px;
}
.h-\[200px\] {
    height: 200px;
}
.h-\[21px\] {
    height: 21px;
}
.h-\[23px\] {
    height: 23px;
}
.h-\[25px\] {
    height: 25px;
}
.h-\[27px\] {
    height: 27px;
}
.h-\[30px\] {
    height: 30px;
}
.h-\[37\.5px\] {
    height: 37.5px;
}
.h-\[37px\] {
    height: 37px;
}
.h-\[38px\] {
    height: 38px;
}
.h-\[39px\] {
    height: 39px;
}
.h-\[42px\] {
    height: 42px;
}
.h-\[45px\] {
    height: 45px;
}
.h-\[46px\] {
    height: 46px;
}
.h-\[476px\] {
    height: 476px;
}
.h-\[50px\] {
    height: 50px;
}
.h-\[54px\] {
    height: 54px;
}
.h-\[60px\] {
    height: 60px;
}
.h-\[77px\] {
    height: 77px;
}
.h-\[90px\] {
    height: 90px;
}
.h-auto {
    height: auto;
}
.h-fit {
    height: -moz-fit-content;
    height: fit-content;
}
.h-full {
    height: 100%;
}
.h-max {
    height: -moz-max-content;
    height: max-content;
}
.max-h-10 {
    max-height: 2.5rem;
}
.max-h-11 {
    max-height: 2.75rem;
}
.max-h-12 {
    max-height: 3rem;
}
.max-h-14 {
    max-height: 3.5rem;
}
.max-h-20 {
    max-height: 5rem;
}
.max-h-28 {
    max-height: 7rem;
}
.max-h-4 {
    max-height: 1rem;
}
.max-h-9 {
    max-height: 2.25rem;
}
.max-h-\[100px\] {
    max-height: 100px;
}
.max-h-\[110px\] {
    max-height: 110px;
}
.max-h-\[1320px\] {
    max-height: 1320px;
}
.max-h-\[146px\] {
    max-height: 146px;
}
.max-h-\[258px\] {
    max-height: 258px;
}
.max-h-\[300px\] {
    max-height: 300px;
}
.max-h-\[30px\] {
    max-height: 30px;
}
.max-h-\[46px\] {
    max-height: 46px;
}
.max-h-\[50px\] {
    max-height: 50px;
}
.max-h-\[540px\] {
    max-height: 540px;
}
.max-h-\[580px\] {
    max-height: 580px;
}
.max-h-\[610px\] {
    max-height: 610px;
}
.max-h-\[90px\] {
    max-height: 90px;
}
.max-h-full {
    max-height: 100%;
}
.max-h-screen {
    max-height: 100vh;
}
.min-h-0 {
    min-height: 0px;
}
.min-h-10 {
    min-height: 2.5rem;
}
.min-h-5 {
    min-height: 1.25rem;
}
.min-h-\[100px\] {
    min-height: 100px;
}
.min-h-\[110px\] {
    min-height: 110px;
}
.min-h-\[258px\] {
    min-height: 258px;
}
.min-h-\[30px\] {
    min-height: 30px;
}
.min-h-\[34px\] {
    min-height: 34px;
}
.min-h-\[46px\] {
    min-height: 46px;
}
.min-h-\[607px\] {
    min-height: 607px;
}
.min-h-\[78px\] {
    min-height: 78px;
}
.min-h-full {
    min-height: 100%;
}
.\!w-full {
    width: 100% !important;
}
.w-0 {
    width: 0px;
}
.w-0\.5 {
    width: 0.125rem;
}
.w-1 {
    width: 0.25rem;
}
.w-1\.5 {
    width: 0.375rem;
}
.w-1\/4 {
    width: 25%;
}
.w-1\/2 {
    width: 50%;
}
.w-1\/3 {
    width: 33.33333%;
}
.w-1\/5 {
    width: 20%;
}
.w-10 {
    width: 2.5rem;
}
.w-11 {
    width: 2.75rem;
}
.w-12 {
    width: 3rem;
}
.w-14 {
    width: 3.5rem;
}
.w-16 {
    width: 4rem;
}
.w-2 {
    width: 0.5rem;
}
.w-2\.5 {
    width: 0.625rem;
}
.w-2\/4 {
    width: 50%;
}
.w-2\/5 {
    width: 40%;
}
.w-20 {
    width: 5rem;
}
.w-24 {
    width: 6rem;
}
.w-28 {
    width: 7rem;
}
.w-3 {
    width: 0.75rem;
}
.w-3\.5 {
    width: 0.875rem;
}
.w-3\/4 {
    width: 75%;
}
.w-3\/5 {
    width: 60%;
}
.w-32 {
    width: 8rem;
}
.w-36 {
    width: 9rem;
}
.w-4\/5 {
    width: 80%;
}
.w-40 {
    width: 10rem;
}
.w-5 {
    width: 1.25rem;
}
.w-56 {
    width: 14rem;
}
.w-6 {
    width: 1.5rem;
}
.w-60 {
    width: 15rem;
}
.w-72 {
    width: 18rem;
}
.w-8 {
    width: 2rem;
}
.w-9 {
    width: 2.25rem;
}
.w-\[100px\] {
    width: 100px;
}
.w-\[108px\] {
    width: 108px;
}
.w-\[110px\] {
    width: 110px;
}
.w-\[15\%\] {
    width: 15%;
}
.w-\[150\.172px\] {
    width: 150.172px;
}
.w-\[150px\] {
    width: 150px;
}
.w-\[158px\] {
    width: 158px;
}
.w-\[161px\] {
    width: 161px;
}
.w-\[165px\] {
    width: 165px;
}
.w-\[168px\] {
    width: 168px;
}
.w-\[171\.516px\] {
    width: 171.516px;
}
.w-\[180px\] {
    width: 180px;
}
.w-\[185px\] {
    width: 185px;
}
.w-\[190px\] {
    width: 190px;
}
.w-\[200px\] {
    width: 200px;
}
.w-\[217px\] {
    width: 217px;
}
.w-\[225px\] {
    width: 225px;
}
.w-\[245px\] {
    width: 245px;
}
.w-\[250px\] {
    width: 250px;
}
.w-\[275px\] {
    width: 275px;
}
.w-\[279px\] {
    width: 279px;
}
.w-\[30\%\] {
    width: 30%;
}
.w-\[300px\] {
    width: 300px;
}
.w-\[302px\] {
    width: 302px;
}
.w-\[30px\] {
    width: 30px;
}
.w-\[31\%\] {
    width: 31%;
}
.w-\[311px\] {
    width: 311px;
}
.w-\[33\%\] {
    width: 33%;
}
.w-\[35\%\] {
    width: 35%;
}
.w-\[356px\] {
    width: 356px;
}
.w-\[35px\] {
    width: 35px;
}
.w-\[36\%\] {
    width: 36%;
}
.w-\[37px\] {
    width: 37px;
}
.w-\[38\%\] {
    width: 38%;
}
.w-\[38px\] {
    width: 38px;
}
.w-\[400px\] {
    width: 400px;
}
.w-\[418px\] {
    width: 418px;
}
.w-\[420px\] {
    width: 420px;
}
.w-\[442px\] {
    width: 442px;
}
.w-\[455px\] {
    width: 455px;
}
.w-\[45px\] {
    width: 45px;
}
.w-\[46px\] {
    width: 46px;
}
.w-\[500px\] {
    width: 500px;
}
.w-\[50px\] {
    width: 50px;
}
.w-\[55\%\] {
    width: 55%;
}
.w-\[56px\] {
    width: 56px;
}
.w-\[60px\] {
    width: 60px;
}
.w-\[70\%\] {
    width: 70%;
}
.w-\[72px\] {
    width: 72px;
}
.w-\[75px\] {
    width: 75px;
}
.w-\[84px\] {
    width: 84px;
}
.w-\[88px\] {
    width: 88px;
}
.w-\[90\%\] {
    width: 90%;
}
.w-\[90px\] {
    width: 90px;
}
.w-\[94px\] {
    width: 94px;
}
.w-auto {
    width: auto;
}
.w-full {
    width: 100%;
}
.w-max {
    width: -moz-max-content;
    width: max-content;
}
.w-screen {
    width: 100vw;
}
.min-w-0 {
    min-width: 0px;
}
.min-w-10 {
    min-width: 2.5rem;
}
.min-w-12 {
    min-width: 3rem;
}
.min-w-20 {
    min-width: 5rem;
}
.min-w-32 {
    min-width: 8rem;
}
.min-w-5 {
    min-width: 1.25rem;
}
.min-w-\[100px\] {
    min-width: 100px;
}
.min-w-\[110px\] {
    min-width: 110px;
}
.min-w-\[120px\] {
    min-width: 120px;
}
.min-w-\[150px\] {
    min-width: 150px;
}
.min-w-\[250px\] {
    min-width: 250px;
}
.min-w-\[291px\] {
    min-width: 291px;
}
.min-w-\[304px\] {
    min-width: 304px;
}
.min-w-\[311px\] {
    min-width: 311px;
}
.min-w-\[342px\] {
    min-width: 342px;
}
.min-w-\[450px\] {
    min-width: 450px;
}
.min-w-\[46px\] {
    min-width: 46px;
}
.min-w-\[50px\] {
    min-width: 50px;
}
.min-w-\[560px\] {
    min-width: 560px;
}
.min-w-fit {
    min-width: -moz-fit-content;
    min-width: fit-content;
}
.min-w-max {
    min-width: -moz-max-content;
    min-width: max-content;
}
.max-w-10 {
    max-width: 2.5rem;
}
.max-w-14 {
    max-width: 3.5rem;
}
.max-w-28 {
    max-width: 7rem;
}
.max-w-32 {
    max-width: 8rem;
}
.max-w-4 {
    max-width: 1rem;
}
.max-w-\[100px\] {
    max-width: 100px;
}
.max-w-\[110px\] {
    max-width: 110px;
}
.max-w-\[120px\] {
    max-width: 120px;
}
.max-w-\[1260px\] {
    max-width: 1260px;
}
.max-w-\[150px\] {
    max-width: 150px;
}
.max-w-\[200px\] {
    max-width: 200px;
}
.max-w-\[217px\] {
    max-width: 217px;
}
.max-w-\[218px\] {
    max-width: 218px;
}
.max-w-\[250px\] {
    max-width: 250px;
}
.max-w-\[286px\] {
    max-width: 286px;
}
.max-w-\[288px\] {
    max-width: 288px;
}
.max-w-\[291px\] {
    max-width: 291px;
}
.max-w-\[311px\] {
    max-width: 311px;
}
.max-w-\[365px\] {
    max-width: 365px;
}
.max-w-\[374px\] {
    max-width: 374px;
}
.max-w-\[380px\] {
    max-width: 380px;
}
.max-w-\[400px\] {
    max-width: 400px;
}
.max-w-\[408px\] {
    max-width: 408px;
}
.max-w-\[414px\] {
    max-width: 414px;
}
.max-w-\[42px\] {
    max-width: 42px;
}
.max-w-\[445px\] {
    max-width: 445px;
}
.max-w-\[470px\] {
    max-width: 470px;
}
.max-w-\[475px\] {
    max-width: 475px;
}
.max-w-\[560px\] {
    max-width: 560px;
}
.max-w-\[590px\] {
    max-width: 590px;
}
.max-w-\[595px\] {
    max-width: 595px;
}
.max-w-\[870px\] {
    max-width: 870px;
}
.max-w-\[90px\] {
    max-width: 90px;
}
.max-w-full {
    max-width: 100%;
}
.max-w-max {
    max-width: -moz-max-content;
    max-width: max-content;
}
.max-w-none {
    max-width: none;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-auto {
    flex: 1 1 auto;
}
.flex-initial {
    flex: 0 1 auto;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.border-collapse {
    border-collapse: collapse;
}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-full {
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1 {
    --tw-translate-y: 0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-4 {
    --tw-translate-y: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-9 {
    --tw-translate-y: 2.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-full {
    --tw-translate-y: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95 {
    --tw-scale-x: 0.95;
    --tw-scale-y: 0.95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.animate-\[on-fade_0\.5s_ease-in-out\] {
    animation: on-fade 0.5s ease-in-out;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.animate-spin {
    animation: spin 1s linear infinite;
}
.cursor-grab {
    cursor: grab;
}
.cursor-grabbing {
    cursor: grabbing;
}
.cursor-not-allowed {
    cursor: not-allowed;
}
.cursor-pointer {
    cursor: pointer;
}
.cursor-zoom-in {
    cursor: zoom-in;
}
.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.select-all {
    -webkit-user-select: all;
    -moz-user-select: all;
    user-select: all;
}
.resize {
    resize: both;
}
.snap-center {
    scroll-snap-align: center;
}
.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-\[1fr\] {
    grid-template-columns: 1fr;
}
.grid-cols-\[1fr_2fr\] {
    grid-template-columns: 1fr 2fr;
}
.grid-cols-\[1fr_auto\] {
    grid-template-columns: 1fr auto;
}
.grid-cols-\[1fr_auto_1fr\] {
    grid-template-columns: 1fr auto 1fr;
}
.grid-cols-\[2fr_1fr_1fr\] {
    grid-template-columns: 2fr 1fr 1fr;
}
.grid-cols-\[2fr_3fr\] {
    grid-template-columns: 2fr 3fr;
}
.grid-cols-\[auto_1fr\] {
    grid-template-columns: auto 1fr;
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.place-content-center {
    place-content: center;
}
.place-content-start {
    place-content: start;
}
.place-content-baseline {
    place-content: baseline;
}
.place-items-center {
    place-items: center;
}
.content-center {
    align-content: center;
}
.content-start {
    align-content: flex-start;
}
.items-start {
    align-items: flex-start;
}
.items-stretch {
    align-items: stretch;
}
.items-end {
    align-items: flex-end;
}
.items-center {
    align-items: center;
}
.justify-start {
    justify-content: flex-start;
}
.\!justify-end {
    justify-content: flex-end !important;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-stretch {
    justify-content: stretch;
}
.justify-items-end {
    justify-items: end;
}
.justify-items-center {
    justify-items: center;
}
.gap-0 {
    gap: 0px;
}
.gap-0\.5 {
    gap: 0.125rem;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-1\.5 {
    gap: 0.375rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-12 {
    gap: 3rem;
}
.gap-16 {
    gap: 4rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-2\.5 {
    gap: 0.625rem;
}
.gap-20 {
    gap: 5rem;
}
.gap-24 {
    gap: 6rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-7 {
    gap: 1.75rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-9 {
    gap: 2.25rem;
}
.gap-x-1 {
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
}
.gap-x-1\.5 {
    -moz-column-gap: 0.375rem;
    column-gap: 0.375rem;
}
.gap-x-10 {
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
}
.gap-x-11 {
    -moz-column-gap: 2.75rem;
    column-gap: 2.75rem;
}
.gap-x-14 {
    -moz-column-gap: 3.5rem;
    column-gap: 3.5rem;
}
.gap-x-2 {
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}
.gap-x-2\.5 {
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
}
.gap-x-3 {
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}
.gap-x-3\.5 {
    -moz-column-gap: 0.875rem;
    column-gap: 0.875rem;
}
.gap-x-4 {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}
.gap-x-5 {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
}
.gap-x-6 {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}
.gap-x-8 {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}
.gap-x-9 {
    -moz-column-gap: 2.25rem;
    column-gap: 2.25rem;
}
.gap-x-\[70px\] {
    -moz-column-gap: 70px;
    column-gap: 70px;
}
.gap-y-1 {
    row-gap: 0.25rem;
}
.gap-y-1\.5 {
    row-gap: 0.375rem;
}
.gap-y-2 {
    row-gap: 0.5rem;
}
.gap-y-2\.5 {
    row-gap: 0.625rem;
}
.gap-y-3 {
    row-gap: 0.75rem;
}
.gap-y-5 {
    row-gap: 1.25rem;
}
.gap-y-6 {
    row-gap: 1.5rem;
}
.gap-y-8 {
    row-gap: 2rem;
}
.-space-x-px > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(-1px * var(--tw-space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.place-self-end {
    place-self: end;
}
.overflow-auto {
    overflow: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-visible {
    overflow: visible;
}
.overflow-x-auto {
    overflow-x: auto;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.scroll-smooth {
    scroll-behavior: smooth;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.break-words {
    overflow-wrap: break-word;
}
.break-all {
    word-break: break-all;
}
.rounded {
    border-radius: 0.25rem;
}
.rounded-2xl {
    border-radius: 1rem;
}
.rounded-\[20px\] {
    border-radius: 20px;
}
.rounded-\[44px\] {
    border-radius: 44px;
}
.rounded-\[45px\] {
    border-radius: 45px;
}
.rounded-\[54px\] {
    border-radius: 54px;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-lg {
    border-radius: 0.01rem;
}
.rounded-md {
    border-radius: 0.375rem;
}
.rounded-sm {
    border-radius: 0.125rem;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.rounded-b {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.rounded-b-lg {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.rounded-t {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.rounded-t-md {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}
.rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.\!border-2 {
    border-width: 2px !important;
}
.border {
    border-width: 1px;
}
.border-2 {
    border-width: 2px;
}
.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
}
.\!border-b-0 {
    border-bottom-width: 0px !important;
}
.border-b {
    border-bottom-width: 1px;
}
.border-b-0 {
    border-bottom-width: 0px;
}
.border-b-2 {
    border-bottom-width: 2px;
}
.border-b-4 {
    border-bottom-width: 4px;
}
.border-l {
    border-left-width: 1px;
}
.border-l-0 {
    border-left-width: 0px;
}
.border-l-\[1px\] {
    border-left-width: 1px;
}
.border-r {
    border-right-width: 1px;
}
.border-r-0 {
    border-right-width: 0px;
}
.border-r-2 {
    border-right-width: 2px;
}
.border-t {
    border-top-width: 1px;
}
.border-t-0 {
    border-top-width: 0px;
}
.border-dashed {
    border-style: dashed;
}
.\!border-none {
    border-style: none !important;
}
.border-none {
    border-style: none;
}
.\!border-\[\#e9decc\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(233 222 204 / var(--tw-border-opacity)) !important;
}
.\!border-navyBlue {
    --tw-border-opacity: 1 !important;
    border-color: rgb(6 12 59 / var(--tw-border-opacity)) !important;
}
.\!border-red-500 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(239 68 68 / var(--tw-border-opacity)) !important;
}
.\!border-white {
    --tw-border-opacity: 1 !important;
    border-color: rgb(255 255 255 / var(--tw-border-opacity)) !important;
}
.\!border-zinc-200 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(228 228 231 / var(--tw-border-opacity)) !important;
}
.border-\[\#F3F3F3\] {
    --tw-border-opacity: 1;
    border-color: rgb(243 243 243 / var(--tw-border-opacity));
}
.border-\[\#e9decc\] {
    --tw-border-opacity: 1;
    border-color: rgb(233 222 204 / var(--tw-border-opacity));
}
.border-\[\'\#E3E3E3\'\] {
    border-color: "#E3E3E3";
}
.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-navyBlue {
    --tw-border-opacity: 1;
    border-color: rgb(6 12 59 / var(--tw-border-opacity));
}
.border-red-500 {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.border-transparent {
    border-color: transparent;
}
.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-zinc-100 {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 245 / var(--tw-border-opacity));
}
.border-zinc-300 {
    --tw-border-opacity: 1;
    border-color: rgb(212 212 216 / var(--tw-border-opacity));
}
.\!bg-gray-100 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
}
.\!bg-navyBlue {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(6 12 59 / var(--tw-bg-opacity)) !important;
}
.\!bg-transparent {
    background-color: transparent !important;
}
.bg-\[\#B5DCB4\] {
    --tw-bg-opacity: 1;
    background-color: rgb(181 220 180 / var(--tw-bg-opacity));
}
.bg-\[\#F1EADF\] {
    --tw-bg-opacity: 1;
    background-color: rgb(241 234 223 / var(--tw-bg-opacity));
}
.bg-\[\#FFF3CD\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 243 205 / var(--tw-bg-opacity));
}
.bg-\[rgba\(0\,0\,0\,0\.8\)\] {
    background-color: #000c;
}
.bg-amber-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 158 11 / var(--tw-bg-opacity));
}
.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-black\/80 {
    background-color: #000c;
}
.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
.bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}
.bg-lightOrange {
    --tw-bg-opacity: 1;
    background-color: rgb(246 242 235 / var(--tw-bg-opacity));
}
.bg-navyBlue {
    --tw-bg-opacity: 1;
    background-color: rgb(6 12 59 / var(--tw-bg-opacity));
}
.bg-neutral-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity));
}
.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}
.bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.bg-transparent {
    background-color: transparent;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white\/80 {
    background-color: #fffc;
}
.bg-zinc-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity));
}
.bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity));
}
.bg-zinc-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(212 212 216 / var(--tw-bg-opacity));
}
.bg-zinc-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(113 113 122 / var(--tw-bg-opacity));
}
.bg-opacity-50 {
    --tw-bg-opacity: 0.5;
}
.bg-cover {
    background-size: cover;
}
.bg-no-repeat {
    background-repeat: no-repeat;
}
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
.\!p-0 {
    padding: 0 !important;
}
.\!p-4 {
    padding: 1rem !important;
}
.p-0 {
    padding: 0;
}
.p-0\.5 {
    padding: 0.125rem;
}
.p-1 {
    padding: 0.25rem;
}
.p-1\.5 {
    padding: 0.375rem;
}
.p-16 {
    padding: 4rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-2\.5 {
    padding: 0.625rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-3\.5 {
    padding: 0.875rem;
}
.p-4 {
    padding: 1rem;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-8 {
    padding: 2rem;
}
.p-9 {
    padding: 2.25rem;
}
.p-\[60px\] {
    padding: 60px;
}
.\!px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.\!px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}
.\!px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
.\!py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.px-0 {
    padding-left: 0;
    padding-right: 0;
}
.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}
.px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}
.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
}
.px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-\[60px\] {
    padding-left: 60px;
    padding-right: 60px;
}
.px-\[74\.5px\] {
    padding-left: 74.5px;
    padding-right: 74.5px;
}
.px-\[90px\] {
    padding-left: 90px;
    padding-right: 90px;
}
.pb-0 {
    padding-bottom: 0;
}
.pb-2 {
    padding-bottom: 0.5rem;
}
.pb-2\.5 {
    padding-bottom: 0.625rem;
}
.pb-3 {
    padding-bottom: 0.75rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.pb-5 {
    padding-bottom: 1.25rem;
}
.pb-8 {
    padding-bottom: 2rem;
}
.pl-12 {
    padding-left: 3rem;
}
.pt-0 {
    padding-top: 0;
}
.pt-1 {
    padding-top: 0.25rem;
}
.pt-1\.5 {
    padding-top: 0.375rem;
}
.pt-5 {
    padding-top: 1.25rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.pt-7 {
    padding-top: 1.75rem;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.align-top {
    vertical-align: top;
}
.align-text-bottom {
    vertical-align: text-bottom;
}
.font-dmserif {
    font-family: DM Serif Display;
}
.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}
.text-\[5px\] {
    font-size: 5px;
}
.\!font-medium {
    font-weight: 500 !important;
}
.uppercase {
    text-transform: uppercase;
}
.italic {
    font-style: italic;
}
.\!leading-6 {
    line-height: 1.5rem !important;
}
.leading-6 {
    line-height: 1.5rem;
}
.leading-\[45px\] {
    line-height: 45px;
}
.leading-\[9px\] {
    line-height: 9px;
}
.leading-none {
    line-height: 1;
}
.leading-normal {
    line-height: 1.5;
}
.leading-relaxed {
    line-height: 1.625;
}
.\!text-black {
    --tw-text-opacity: 1 !important;
    color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
}
.text-\[\#383D41\] {
    --tw-text-opacity: 1;
    color: rgb(56 61 65 / var(--tw-text-opacity));
}
.text-amber-500 {
    --tw-text-opacity: 1;
    color: rgb(245 158 11 / var(--tw-text-opacity));
}
.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity));
}
.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity));
}
.text-emerald-400 {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity));
}
.text-emerald-500 {
    --tw-text-opacity: 1;
    color: rgb(16 185 129 / var(--tw-text-opacity));
}
.text-emerald-600 {
    --tw-text-opacity: 1;
    color: rgb(5 150 105 / var(--tw-text-opacity));
}
.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-navyBlue {
    --tw-text-opacity: 1;
    color: rgb(6 12 59 / var(--tw-text-opacity));
}
.text-neutral-500 {
    --tw-text-opacity: 1;
    color: rgb(115 115 115 / var(--tw-text-opacity));
}
.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-zinc-600 {
    --tw-text-opacity: 1;
    color: rgb(82 82 91 / var(--tw-text-opacity));
}
.underline {
    text-decoration-line: underline;
}
.line-through {
    text-decoration-line: line-through;
}
.no-underline {
    text-decoration-line: none;
}
.opacity-0 {
    opacity: 0;
}
.opacity-100 {
    opacity: 1;
}
.opacity-25 {
    opacity: 0.25;
}
.opacity-30 {
    opacity: 0.3;
}
.opacity-75 {
    opacity: 0.75;
}
.shadow-\[0_5px_20px_rgba\(0\,0\,0\,0\.15\)\] {
    --tw-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    --tw-shadow-colored: 0 5px 20px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_6px_6px_1px_rgba\(0\,0\,0\,\.3\)\] {
    --tw-shadow: 0 6px 6px 1px rgba(0, 0, 0, 0.3);
    --tw-shadow-colored: 0 6px 6px 1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_10px_84px_rgba\(0\,0\,0\,0\.1\)\] {
    --tw-shadow: 0px 10px 84px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0px 10px 84px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.ring-2 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
        calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
        var(--tw-shadow, 0 0 #0000);
}
.ring-gray-900 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity));
}
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
        var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert)
        var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform {
    will-change: transform;
}
@font-face {
    font-family: bagisto-shop;
    src: url(bagisto-shop-5afe0d07.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
img.lazy {
    visibility: hidden;
}
.peer:checked ~ .peer-checked\:icon-radio-select:before {
    content: "";
}
.rtl\:icon-arrow-left-stylish:where([dir="rtl"], [dir="rtl"] *):before {
    content: "";
}
.rtl\:icon-arrow-left:where([dir="rtl"], [dir="rtl"] *):before {
    content: "";
}
.rtl\:icon-arrow-right-stylish:where([dir="rtl"], [dir="rtl"] *):before {
    content: "";
}
.rtl\:icon-arrow-right:where([dir="rtl"], [dir="rtl"] *):before {
    content: "";
}
.marker\:shadow *::marker {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
        0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.marker\:shadow::marker {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
        0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.after\:absolute:after {
    content: var(--tw-content);
    position: absolute;
}
.after\:left-0:after {
    content: var(--tw-content);
    left: 0;
}
.after\:left-0\.5:after {
    content: var(--tw-content);
    left: 0.125rem;
}
.after\:top-0:after {
    content: var(--tw-content);
    top: 0;
}
.after\:top-0\.5:after {
    content: var(--tw-content);
    top: 0.125rem;
}
.after\:block:after {
    content: var(--tw-content);
    display: block;
}
.after\:h-4:after {
    content: var(--tw-content);
    height: 1rem;
}
.after\:w-4:after {
    content: var(--tw-content);
    width: 1rem;
}
.after\:border:after {
    content: var(--tw-content);
    border-width: 1px;
}
.after\:border-gray-300:after {
    content: var(--tw-content);
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.after\:bg-white:after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.after\:pb-\[calc\(100\%\+9px\)\]:after {
    content: var(--tw-content);
    padding-bottom: calc(100% + 9px);
}
.after\:transition-all:after {
    content: var(--tw-content);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.after\:content-\[\'\'\]:after {
    --tw-content: "";
    content: var(--tw-content);
}
.after\:content-\[\'\/\'\]:after {
    --tw-content: "/";
    content: var(--tw-content);
}
.last\:mb-0:last-child {
    margin-bottom: 0;
}
.last\:border-b-0:last-child {
    border-bottom-width: 0px;
}
.last\:text-center:last-child {
    text-align: center;
}
.after\:last\:hidden:last-child:after {
    content: var(--tw-content);
    display: none;
}
.hover\:border-b-4:hover {
    border-bottom-width: 4px;
}
.hover\:\!border-navyBlue:hover {
    --tw-border-opacity: 1 !important;
    border-color: rgb(6 12 59 / var(--tw-border-opacity)) !important;
}
.hover\:border-gray-400:hover {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.hover\:border-navyBlue:hover {
    --tw-border-opacity: 1;
    border-color: rgb(6 12 59 / var(--tw-border-opacity));
}
.hover\:border-red-500:hover {
    --tw-border-opacity: 1;
    border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.hover\:bg-black:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.hover\:bg-gray-50:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.hover\:bg-zinc-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 245 / var(--tw-bg-opacity));
}
.hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:opacity-100:hover {
    opacity: 1;
}
.hover\:opacity-\[0\.8\]:hover {
    opacity: 0.8;
}
.focus\:border-blue-500:focus {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity));
}
.focus\:border-gray-400:focus {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.focus\:bg-gray-100:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.focus\:text-black:focus {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
        calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
        var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-black:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
}
.focus\:ring-blue-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}
.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.active\:border-gray-300:active {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.group:hover .group-hover\:pointer-events-auto {
    pointer-events: auto;
}
.group:hover .group-hover\:bottom-0 {
    bottom: 0;
}
.group\/item:hover .group-hover\/item\:block {
    display: block;
}
.group:hover .group-hover\:-translate-y-0 {
    --tw-translate-y: -0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}
.group:hover .group-hover\:duration-200 {
    transition-duration: 0.2s;
}
.group:hover .group-hover\:ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.peer:checked ~ .peer-checked\:bg-navyBlue {
    --tw-bg-opacity: 1;
    background-color: rgb(6 12 59 / var(--tw-bg-opacity));
}
.peer:checked ~ .peer-checked\:text-navyBlue {
    --tw-text-opacity: 1;
    color: rgb(6 12 59 / var(--tw-text-opacity));
}
.peer:checked ~ .peer-checked\:after\:translate-x-full:after {
    content: var(--tw-content);
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.peer:checked ~ .peer-checked\:after\:border-white:after {
    content: var(--tw-content);
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.peer:focus ~ .peer-focus\:outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.peer:focus ~ .peer-focus\:ring-blue-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity));
}
@media not all and (min-width: 1240px) {
    .max-xl\:mb-5 {
        margin-bottom: 1.25rem;
    }
    .max-xl\:min-w-\[270px\] {
        min-width: 270px;
    }
}
@media not all and (min-width: 1180px) {
    .max-1180\:mt-3 {
        margin-top: 0.75rem;
    }
    .max-1180\:mt-3\.5 {
        margin-top: 0.875rem;
    }
    .max-1180\:hidden {
        display: none;
    }
    .max-1180\:w-full {
        width: 100%;
    }
    .max-1180\:max-w-full {
        max-width: 100%;
    }
    .max-1180\:flex-wrap {
        flex-wrap: wrap;
    }
    .max-1180\:gap-6 {
        gap: 1.5rem;
    }
    .max-1180\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }
    .max-1180\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .max-1180\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .max-1180\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
@media (max-width: 1180px) {
    .max-\[1180px\]\:gap-x-5 {
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .max-\[1180px\]\:gap-x-9 {
        -moz-column-gap: 2.25rem;
        column-gap: 2.25rem;
    }
}
@media (max-width: 1100px) {
    .max-\[1100px\]\:gap-x-6 {
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
    }
}
@media not all and (min-width: 1060px) {
    .max-1060\:block {
        display: block;
    }
    .max-1060\:hidden {
        display: none;
    }
    .max-1060\:w-full {
        width: 100%;
    }
    .max-1060\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .max-1060\:grid-cols-\[1fr\] {
        grid-template-columns: 1fr;
    }
    .max-1060\:flex-col {
        flex-direction: column;
    }
    .max-1060\:flex-col-reverse {
        flex-direction: column-reverse;
    }
}
@media not all and (min-width: 1024px) {
    .max-lg\:relative {
        position: relative;
    }
    .max-lg\:-left-7 {
        left: -1.75rem;
    }
    .max-lg\:-right-7 {
        right: -1.75rem;
    }
    .max-lg\:top-auto {
        top: auto;
    }
    .max-lg\:mt-0 {
        margin-top: 0;
    }
    .max-lg\:flex {
        display: flex;
    }
    .max-lg\:grid {
        display: grid;
    }
    .max-lg\:hidden {
        display: none;
    }
    .max-lg\:w-auto {
        width: auto;
    }
    .max-lg\:max-w-\[442px\] {
        max-width: 442px;
    }
    .max-lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .max-lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .max-lg\:grid-cols-\[1fr\] {
        grid-template-columns: 1fr;
    }
    .max-lg\:flex-wrap {
        flex-wrap: wrap;
    }
    .max-lg\:flex-col {
        flex-direction: column;
    }
    .max-lg\:justify-center {
        justify-content: center;
    }
    .max-lg\:gap-4 {
        gap: 1rem;
    }
    .max-lg\:gap-5 {
        gap: 1.25rem;
    }
    .max-lg\:gap-x-8 {
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
    .max-lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .max-lg\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .max-lg\:py-3\.5 {
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }
    .max-lg\:opacity-100 {
        opacity: 1;
    }
    .max-lg\:shadow-none {
        --tw-shadow: 0 0 #0000;
        --tw-shadow-colored: 0 0 #0000;
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
            var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}
@media not all and (min-width: 868px) {
    .max-868\:w-full {
        width: 100%;
    }
    .max-868\:max-w-full {
        max-width: 100%;
    }
    .max-868\:\!text-\[294px\] {
        font-size: 294px !important;
    }
}
@media not all and (min-width: 768px) {
    .max-md\:relative {
        position: relative;
    }
    .max-md\:bottom-3 {
        bottom: 0.75rem;
    }
    .max-md\:bottom-3\.5 {
        bottom: 0.875rem;
    }
    .max-md\:top-1 {
        top: 0.25rem;
    }
    .max-md\:top-10 {
        top: 2.5rem;
    }
    .max-md\:top-\[60\%\] {
        top: 60%;
    }
    .max-md\:m-auto {
        margin: auto;
    }
    .max-md\:mx-6 {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    .max-md\:my-0 {
        margin-top: 0;
        margin-bottom: 0;
    }
    .max-md\:my-4 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .max-md\:my-5 {
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .max-md\:\!mb-0 {
        margin-bottom: 0 !important;
    }
    .max-md\:-mt-1 {
        margin-top: -0.25rem;
    }
    .max-md\:mb-0 {
        margin-bottom: 0;
    }
    .max-md\:mb-1 {
        margin-bottom: 0.25rem;
    }
    .max-md\:mb-1\.5 {
        margin-bottom: 0.375rem;
    }
    .max-md\:mb-2 {
        margin-bottom: 0.5rem;
    }
    .max-md\:mb-2\.5 {
        margin-bottom: 0.625rem;
    }
    .max-md\:mb-4 {
        margin-bottom: 1rem;
    }
    .max-md\:mb-5 {
        margin-bottom: 1.25rem;
    }
    .max-md\:mt-0 {
        margin-top: 0;
    }
    .max-md\:mt-1 {
        margin-top: 0.25rem;
    }
    .max-md\:mt-10 {
        margin-top: 2.5rem;
    }
    .max-md\:mt-12 {
        margin-top: 3rem;
    }
    .max-md\:mt-2 {
        margin-top: 0.5rem;
    }
    .max-md\:mt-2\.5 {
        margin-top: 0.625rem;
    }
    .max-md\:mt-3 {
        margin-top: 0.75rem;
    }
    .max-md\:mt-32 {
        margin-top: 8rem;
    }
    .max-md\:mt-4 {
        margin-top: 1rem;
    }
    .max-md\:mt-5 {
        margin-top: 1.25rem;
    }
    .max-md\:mt-6 {
        margin-top: 1.5rem;
    }
    .max-md\:mt-7 {
        margin-top: 1.75rem;
    }
    .max-md\:mt-8 {
        margin-top: 2rem;
    }
    .max-md\:mt-9 {
        margin-top: 2.25rem;
    }
    .max-md\:block {
        display: block;
    }
    .max-md\:flex {
        display: flex;
    }
    .max-md\:grid {
        display: grid;
    }
    .max-md\:hidden {
        display: none;
    }
    .max-md\:h-10 {
        height: 2.5rem;
    }
    .max-md\:h-16 {
        height: 4rem;
    }
    .max-md\:h-2 {
        height: 0.5rem;
    }
    .max-md\:h-20 {
        height: 5rem;
    }
    .max-md\:h-32 {
        height: 8rem;
    }
    .max-md\:h-36 {
        height: 9rem;
    }
    .max-md\:h-4 {
        height: 1rem;
    }
    .max-md\:h-5 {
        height: 1.25rem;
    }
    .max-md\:h-6 {
        height: 1.5rem;
    }
    .max-md\:h-60 {
        height: 15rem;
    }
    .max-md\:h-7 {
        height: 1.75rem;
    }
    .max-md\:h-8 {
        height: 2rem;
    }
    .max-md\:h-\[100px\] {
        height: 100px;
    }
    .max-md\:h-\[34px\] {
        height: 34px;
    }
    .max-md\:h-\[42px\] {
        height: 42px;
    }
    .max-md\:h-fit {
        height: -moz-fit-content;
        height: fit-content;
    }
    .max-md\:h-full {
        height: 100%;
    }
    .max-md\:max-h-20 {
        max-height: 5rem;
    }
    .max-md\:max-h-60 {
        max-height: 15rem;
    }
    .max-md\:\!w-full {
        width: 100% !important;
    }
    .max-md\:w-16 {
        width: 4rem;
    }
    .max-md\:w-2 {
        width: 0.5rem;
    }
    .max-md\:w-20 {
        width: 5rem;
    }
    .max-md\:w-24 {
        width: 6rem;
    }
    .max-md\:w-28 {
        width: 7rem;
    }
    .max-md\:w-32 {
        width: 8rem;
    }
    .max-md\:w-36 {
        width: 9rem;
    }
    .max-md\:w-44 {
        width: 11rem;
    }
    .max-md\:w-6 {
        width: 1.5rem;
    }
    .max-md\:w-60 {
        width: 15rem;
    }
    .max-md\:w-7 {
        width: 1.75rem;
    }
    .max-md\:w-\[100px\] {
        width: 100px;
    }
    .max-md\:w-\[110px\] {
        width: 110px;
    }
    .max-md\:w-\[115px\] {
        width: 115px;
    }
    .max-md\:w-\[250px\] {
        width: 250px;
    }
    .max-md\:w-\[75px\] {
        width: 75px;
    }
    .max-md\:w-\[90\%\] {
        width: 90%;
    }
    .max-md\:w-fit {
        width: -moz-fit-content;
        width: fit-content;
    }
    .max-md\:w-full {
        width: 100%;
    }
    .max-md\:min-w-20 {
        min-width: 5rem;
    }
    .max-md\:min-w-40 {
        min-width: 10rem;
    }
    .max-md\:min-w-56 {
        min-width: 14rem;
    }
    .max-md\:min-w-60 {
        min-width: 15rem;
    }
    .max-md\:max-w-20 {
        max-width: 5rem;
    }
    .max-md\:max-w-56 {
        max-width: 14rem;
    }
    .max-md\:max-w-60 {
        max-width: 15rem;
    }
    .max-md\:max-w-9 {
        max-width: 2.25rem;
    }
    .max-md\:max-w-\[153px\] {
        max-width: 153px;
    }
    .max-md\:max-w-\[250px\] {
        max-width: 250px;
    }
    .max-md\:max-w-\[76px\] {
        max-width: 76px;
    }
    .max-md\:max-w-full {
        max-width: 100%;
    }
    .max-md\:flex-auto {
        flex: 1 1 auto;
    }
    .max-md\:flex-none {
        flex: none;
    }
    .max-md\:translate-y-0 {
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skew(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }
    .max-md\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .max-md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .max-md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .max-md\:grid-cols-\[0\.5fr_2fr\] {
        grid-template-columns: 0.5fr 2fr;
    }
    .max-md\:grid-cols-\[1fr\] {
        grid-template-columns: 1fr;
    }
    .max-md\:flex-wrap {
        flex-wrap: wrap;
    }
    .max-md\:flex-nowrap {
        flex-wrap: nowrap;
    }
    .max-md\:items-center {
        align-items: center;
    }
    .max-md\:justify-normal {
        justify-content: normal;
    }
    .max-md\:justify-center {
        justify-content: center;
    }
    .max-md\:justify-between {
        justify-content: space-between;
    }
    .max-md\:justify-items-center {
        justify-items: center;
    }
    .max-md\:gap-0 {
        gap: 0px;
    }
    .max-md\:gap-0\.5 {
        gap: 0.125rem;
    }
    .max-md\:gap-1 {
        gap: 0.25rem;
    }
    .max-md\:gap-1\.5 {
        gap: 0.375rem;
    }
    .max-md\:gap-2 {
        gap: 0.5rem;
    }
    .max-md\:gap-2\.5 {
        gap: 0.625rem;
    }
    .max-md\:gap-4 {
        gap: 1rem;
    }
    .max-md\:gap-5 {
        gap: 1.25rem;
    }
    .max-md\:gap-7 {
        gap: 1.75rem;
    }
    .max-md\:gap-\[30px\] {
        gap: 30px;
    }
    .max-md\:gap-x-1 {
        -moz-column-gap: 0.25rem;
        column-gap: 0.25rem;
    }
    .max-md\:gap-x-1\.5 {
        -moz-column-gap: 0.375rem;
        column-gap: 0.375rem;
    }
    .max-md\:gap-x-2 {
        -moz-column-gap: 0.5rem;
        column-gap: 0.5rem;
    }
    .max-md\:gap-x-2\.5 {
        -moz-column-gap: 0.625rem;
        column-gap: 0.625rem;
    }
    .max-md\:gap-x-3 {
        -moz-column-gap: 0.75rem;
        column-gap: 0.75rem;
    }
    .max-md\:gap-x-4 {
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    .max-md\:gap-x-5 {
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .max-md\:gap-y-0 {
        row-gap: 0px;
    }
    .max-md\:gap-y-1 {
        row-gap: 0.25rem;
    }
    .max-md\:gap-y-1\.5 {
        row-gap: 0.375rem;
    }
    .max-md\:gap-y-2 {
        row-gap: 0.5rem;
    }
    .max-md\:gap-y-2\.5 {
        row-gap: 0.625rem;
    }
    .max-md\:gap-y-5 {
        row-gap: 1.25rem;
    }
    .max-md\:place-self-auto {
        place-self: auto;
    }
    .max-md\:whitespace-nowrap {
        white-space: nowrap;
    }
    .max-md\:whitespace-break-spaces {
        white-space: break-spaces;
    }
    .max-md\:rounded-full {
        border-radius: 9999px;
    }
    .max-md\:rounded-lg {
        border-radius: 0.1rem;
    }
    .max-md\:rounded-none {
        border-radius: 0;
    }
    .max-md\:rounded-t-md {
        border-top-left-radius: 0.375rem;
        border-top-right-radius: 0.375rem;
    }
    .max-md\:rounded-t-none {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .max-md\:border {
        border-width: 1px;
    }
    .max-md\:border-0 {
        border-width: 0px;
    }
    .max-md\:border-b {
        border-bottom-width: 1px;
    }
    .max-md\:border-t {
        border-top-width: 1px;
    }
    .max-md\:border-t-0 {
        border-top-width: 0px;
    }
    .max-md\:\!border-none {
        border-style: none !important;
    }
    .max-md\:border-none {
        border-style: none;
    }
    .max-md\:border-zinc-200 {
        --tw-border-opacity: 1;
        border-color: rgb(228 228 231 / var(--tw-border-opacity));
    }
    .max-md\:\!bg-gray-100 {
        --tw-bg-opacity: 1 !important;
        background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
    }
    .max-md\:bg-gray-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(229 231 235 / var(--tw-bg-opacity));
    }
    .max-md\:\!p-3 {
        padding: 0.75rem !important;
    }
    .max-md\:\!p-4 {
        padding: 1rem !important;
    }
    .max-md\:p-0 {
        padding: 0;
    }
    .max-md\:p-2 {
        padding: 0.5rem;
    }
    .max-md\:p-2\.5 {
        padding: 0.625rem;
    }
    .max-md\:p-3 {
        padding: 0.75rem;
    }
    .max-md\:p-3\.5 {
        padding: 0.875rem;
    }
    .max-md\:p-4 {
        padding: 1rem;
    }
    .max-md\:p-5 {
        padding: 1.25rem;
    }
    .max-md\:p-8 {
        padding: 2rem;
    }
    .max-md\:\!px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .max-md\:\!py-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .max-md\:\!py-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .max-md\:\!py-1\.5 {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
    }
    .max-md\:\!py-3 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    .max-md\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }
    .max-md\:px-1 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    .max-md\:px-1\.5 {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }
    .max-md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .max-md\:px-2 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .max-md\:px-2\.5 {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
    .max-md\:px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .max-md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .max-md\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .max-md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .max-md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .max-md\:py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .max-md\:py-0\.5 {
        padding-top: 0.125rem;
        padding-bottom: 0.125rem;
    }
    .max-md\:py-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    .max-md\:py-1\.5 {
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
    }
    .max-md\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .max-md\:py-2\.5 {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }
    .max-md\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .max-md\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .max-md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .max-md\:\!pt-2 {
        padding-top: 0.5rem !important;
    }
    .max-md\:\!pt-2\.5 {
        padding-top: 0.625rem !important;
    }
    .max-md\:pb-0 {
        padding-bottom: 0;
    }
    .max-md\:pb-1 {
        padding-bottom: 0.25rem;
    }
    .max-md\:pb-1\.5 {
        padding-bottom: 0.375rem;
    }
    .max-md\:pb-2 {
        padding-bottom: 0.5rem;
    }
    .max-md\:pb-3 {
        padding-bottom: 0.75rem;
    }
    .max-md\:pb-4 {
        padding-bottom: 1rem;
    }
    .max-md\:pl-2 {
        padding-left: 0.5rem;
    }
    .max-md\:pl-2\.5 {
        padding-left: 0.625rem;
    }
    .max-md\:pl-4 {
        padding-left: 1rem;
    }
    .max-md\:pr-2 {
        padding-right: 0.5rem;
    }
    .max-md\:pr-2\.5 {
        padding-right: 0.625rem;
    }
    .max-md\:pt-2 {
        padding-top: 0.5rem;
    }
    .max-md\:pt-4 {
        padding-top: 1rem;
    }
    .max-md\:text-left {
        text-align: left;
    }
    .max-md\:text-center {
        text-align: center;
    }
    .max-md\:\!text-\[140px\] {
        font-size: 140px !important;
    }
    .max-md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .max-md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .max-md\:text-base {
        font-size: 0.87rem;
        line-height: 1.5rem;
    }
    .max-md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .max-md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .max-md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .max-md\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .max-md\:font-medium {
        font-weight: 500;
    }
    .max-md\:font-normal {
        font-weight: 400;
    }
    .max-md\:font-semibold {
        font-weight: 600;
    }
    .max-md\:leading-6 {
        line-height: 1.5rem;
    }
    .max-md\:text-black {
        --tw-text-opacity: 1;
        color: rgb(0 0 0 / var(--tw-text-opacity));
    }
    .max-md\:text-zinc-500 {
        --tw-text-opacity: 1;
        color: rgb(113 113 122 / var(--tw-text-opacity));
    }
    .max-md\:first\:ml-4:first-child {
        margin-left: 1rem;
    }
    .max-md\:last\:\!mb-0:last-child {
        margin-bottom: 0 !important;
    }
    .max-md\:last\:mb-0:last-child {
        margin-bottom: 0;
    }
}
@media not all and (min-width: 525px) {
    .max-sm\:relative {
        position: relative;
    }
    .max-sm\:bottom-2 {
        bottom: 0.5rem;
    }
    .max-sm\:bottom-2\.5 {
        bottom: 0.625rem;
    }
    .max-sm\:top-2 {
        top: 0.5rem;
    }
    .max-sm\:top-2\.5 {
        top: 0.625rem;
    }
    .max-sm\:top-4 {
        top: 1rem;
    }
    .max-sm\:mx-4 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .max-sm\:my-1 {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }
    .max-sm\:my-1\.5 {
        margin-top: 0.375rem;
        margin-bottom: 0.375rem;
    }
    .max-sm\:my-2 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .max-sm\:my-4 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .max-sm\:my-\[20px\] {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .max-sm\:\!mb-2 {
        margin-bottom: 0.5rem !important;
    }
    .max-sm\:\!mb-2\.5 {
        margin-bottom: 0.625rem !important;
    }
    .max-sm\:-mt-1 {
        margin-top: -0.25rem;
    }
    .max-sm\:mb-0 {
        margin-bottom: 0;
    }
    .max-sm\:mb-1 {
        margin-bottom: 0.25rem;
    }
    .max-sm\:mb-1\.5 {
        margin-bottom: 0.375rem;
    }
    .max-sm\:mb-10 {
        margin-bottom: 2.5rem;
    }
    .max-sm\:mb-2 {
        margin-bottom: 0.5rem;
    }
    .max-sm\:mb-5 {
        margin-bottom: 1.25rem;
    }
    .max-sm\:mt-0 {
        margin-top: 0;
    }
    .max-sm\:mt-0\.5 {
        margin-top: 0.125rem;
    }
    .max-sm\:mt-1 {
        margin-top: 0.25rem;
    }
    .max-sm\:mt-1\.5 {
        margin-top: 0.375rem;
    }
    .max-sm\:mt-10 {
        margin-top: 2.5rem;
    }
    .max-sm\:mt-2 {
        margin-top: 0.5rem;
    }
    .max-sm\:mt-3 {
        margin-top: 0.75rem;
    }
    .max-sm\:mt-4 {
        margin-top: 1rem;
    }
    .max-sm\:mt-5 {
        margin-top: 1.25rem;
    }
    .max-sm\:mt-6 {
        margin-top: 1.5rem;
    }
    .max-sm\:mt-7 {
        margin-top: 1.75rem;
    }
    .max-sm\:mt-8 {
        margin-top: 2rem;
    }
    .max-sm\:block {
        display: block;
    }
    .max-sm\:flex {
        display: flex;
    }
    .max-sm\:grid {
        display: grid;
    }
    .max-sm\:hidden {
        display: none;
    }
    .max-sm\:h-1 {
        height: 0.25rem;
    }
    .max-sm\:h-1\.5 {
        height: 0.375rem;
    }
    .max-sm\:h-10 {
        height: 2.5rem;
    }
    .max-sm\:h-20 {
        height: 5rem;
    }
    .max-sm\:h-3 {
        height: 0.75rem;
    }
    .max-sm\:h-3\.5 {
        height: 0.875rem;
    }
    .max-sm\:h-4 {
        height: 1rem;
    }
    .max-sm\:h-5 {
        height: 1.25rem;
    }
    .max-sm\:h-7 {
        height: 1.75rem;
    }
    .max-sm\:h-\[100px\] {
        height: 100px;
    }
    .max-sm\:h-\[21px\] {
        height: 21px;
    }
    .max-sm\:h-\[25px\] {
        height: 25px;
    }
    .max-sm\:h-\[30px\] {
        height: 30px;
    }
    .max-sm\:h-\[34px\] {
        height: 34px;
    }
    .max-sm\:h-\[46px\] {
        height: 46px;
    }
    .max-sm\:h-\[60px\] {
        height: 60px;
    }
    .max-sm\:h-fit {
        height: -moz-fit-content;
        height: fit-content;
    }
    .max-sm\:max-h-7 {
        max-height: 1.75rem;
    }
    .max-sm\:max-h-\[200px\] {
        max-height: 200px;
    }
    .max-sm\:max-h-\[60px\] {
        max-height: 60px;
    }
    .max-sm\:max-h-full {
        max-height: 100%;
    }
    .max-sm\:min-h-7 {
        min-height: 1.75rem;
    }
    .max-sm\:min-h-\[60px\] {
        min-height: 60px;
    }
    .max-sm\:w-1 {
        width: 0.25rem;
    }
    .max-sm\:w-1\.5 {
        width: 0.375rem;
    }
    .max-sm\:w-10 {
        width: 2.5rem;
    }
    .max-sm\:w-20 {
        width: 5rem;
    }
    .max-sm\:w-3\/6 {
        width: 50%;
    }
    .max-sm\:w-4 {
        width: 1rem;
    }
    .max-sm\:w-44 {
        width: 11rem;
    }
    .max-sm\:w-\[100px\] {
        width: 100px;
    }
    .max-sm\:w-\[124px\] {
        width: 124px;
    }
    .max-sm\:w-\[180px\] {
        width: 180px;
    }
    .max-sm\:w-\[190px\] {
        width: 190px;
    }
    .max-sm\:w-\[25px\] {
        width: 25px;
    }
    .max-sm\:w-\[60px\] {
        width: 60px;
    }
    .max-sm\:w-\[68px\] {
        width: 68px;
    }
    .max-sm\:w-\[70px\] {
        width: 70px;
    }
    .max-sm\:w-fit {
        width: -moz-fit-content;
        width: fit-content;
    }
    .max-sm\:w-full {
        width: 100%;
    }
    .max-sm\:min-w-7 {
        min-width: 1.75rem;
    }
    .max-sm\:min-w-\[110px\] {
        min-width: 110px;
    }
    .max-sm\:min-w-\[170px\] {
        min-width: 170px;
    }
    .max-sm\:min-w-\[190px\] {
        min-width: 190px;
    }
    .max-sm\:min-w-\[192px\] {
        min-width: 192px;
    }
    .max-sm\:min-w-\[60px\] {
        min-width: 60px;
    }
    .max-sm\:max-w-20 {
        max-width: 5rem;
    }
    .max-sm\:max-w-80 {
        max-width: 20rem;
    }
    .max-sm\:max-w-\[190px\] {
        max-width: 190px;
    }
    .max-sm\:max-w-\[192px\] {
        max-width: 192px;
    }
    .max-sm\:max-w-\[60px\] {
        max-width: 60px;
    }
    .max-sm\:max-w-full {
        max-width: 100%;
    }
    .max-sm\:flex-auto {
        flex: 1 1 auto;
    }
    .max-sm\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .max-sm\:flex-wrap {
        flex-wrap: wrap;
    }
    .max-sm\:items-center {
        align-items: center;
    }
    .max-sm\:justify-normal {
        justify-content: normal;
    }
    .max-sm\:justify-center {
        justify-content: center;
    }
    .max-sm\:justify-between {
        justify-content: space-between;
    }
    .max-sm\:justify-items-center {
        justify-items: center;
    }
    .max-sm\:gap-0 {
        gap: 0px;
    }
    .max-sm\:gap-1 {
        gap: 0.25rem;
    }
    .max-sm\:gap-1\.5 {
        gap: 0.375rem;
    }
    .max-sm\:gap-2 {
        gap: 0.5rem;
    }
    .max-sm\:gap-2\.5 {
        gap: 0.625rem;
    }
    .max-sm\:gap-3 {
        gap: 0.75rem;
    }
    .max-sm\:gap-4 {
        gap: 1rem;
    }
    .max-sm\:gap-5 {
        gap: 1.25rem;
    }
    .max-sm\:gap-\[30px\] {
        gap: 30px;
    }
    .max-sm\:gap-x-0 {
        -moz-column-gap: 0px;
        column-gap: 0px;
    }
    .max-sm\:gap-x-1 {
        -moz-column-gap: 0.25rem;
        column-gap: 0.25rem;
    }
    .max-sm\:gap-x-1\.5 {
        -moz-column-gap: 0.375rem;
        column-gap: 0.375rem;
    }
    .max-sm\:gap-x-2 {
        -moz-column-gap: 0.5rem;
        column-gap: 0.5rem;
    }
    .max-sm\:gap-x-2\.5 {
        -moz-column-gap: 0.625rem;
        column-gap: 0.625rem;
    }
    .max-sm\:gap-x-3 {
        -moz-column-gap: 0.75rem;
        column-gap: 0.75rem;
    }
    .max-sm\:gap-x-3\.5 {
        -moz-column-gap: 0.875rem;
        column-gap: 0.875rem;
    }
    .max-sm\:gap-x-5 {
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .max-sm\:gap-y-0 {
        row-gap: 0px;
    }
    .max-sm\:gap-y-0\.5 {
        row-gap: 0.125rem;
    }
    .max-sm\:gap-y-2 {
        row-gap: 0.5rem;
    }
    .max-sm\:gap-y-2\.5 {
        row-gap: 0.625rem;
    }
    .max-sm\:gap-y-4 {
        row-gap: 1rem;
    }
    .max-sm\:gap-y-5 {
        row-gap: 1.25rem;
    }
    .max-sm\:gap-y-6 {
        row-gap: 1.5rem;
    }
    .max-sm\:\!rounded-lg {
        border-radius: 0.5rem !important;
    }
    .max-sm\:rounded-lg {
        border-radius: 0.5rem;
    }
    .max-sm\:rounded-xl {
        border-radius: 0.75rem;
    }
    .max-sm\:rounded-l-none {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .max-sm\:rounded-r-xl {
        border-top-right-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
    }
    .max-sm\:border-0 {
        border-width: 0px;
    }
    .max-sm\:border-2 {
        border-width: 2px;
    }
    .max-sm\:border-none {
        border-style: none;
    }
    .max-sm\:border-zinc-300 {
        --tw-border-opacity: 1;
        border-color: rgb(212 212 216 / var(--tw-border-opacity));
    }
    .max-sm\:\!p-0 {
        padding: 0 !important;
    }
    .max-sm\:\!p-2 {
        padding: 0.5rem !important;
    }
    .max-sm\:p-0 {
        padding: 0;
    }
    .max-sm\:p-1 {
        padding: 0.25rem;
    }
    .max-sm\:p-2 {
        padding: 0.5rem;
    }
    .max-sm\:p-2\.5 {
        padding: 0.625rem;
    }
    .max-sm\:p-3 {
        padding: 0.75rem;
    }
    .max-sm\:p-4 {
        padding: 1rem;
    }
    .max-sm\:p-5 {
        padding: 1.25rem;
    }
    .max-sm\:\!px-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    .max-sm\:\!px-1\.5 {
        padding-left: 0.375rem !important;
        padding-right: 0.375rem !important;
    }
    .max-sm\:\!px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .max-sm\:\!py-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .max-sm\:\!py-0\.5 {
        padding-top: 0.125rem !important;
        padding-bottom: 0.125rem !important;
    }
    .max-sm\:\!py-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .max-sm\:\!py-1\.5 {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
    }
    .max-sm\:\!py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .max-sm\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }
    .max-sm\:px-2 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .max-sm\:px-2\.5 {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
    .max-sm\:px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .max-sm\:px-3\.5 {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
    .max-sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .max-sm\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .max-sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .max-sm\:px-7 {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    .max-sm\:px-\[50\.8px\] {
        padding-left: 50.8px;
        padding-right: 50.8px;
    }
    .max-sm\:py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .max-sm\:py-0\.5 {
        padding-top: 0.125rem;
        padding-bottom: 0.125rem;
    }
    .max-sm\:py-1 {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    .max-sm\:py-1\.5 {
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
    }
    .max-sm\:py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .max-sm\:py-2\.5 {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }
    .max-sm\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .max-sm\:py-3\.5 {
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }
    .max-sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .max-sm\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .max-sm\:\!pb-1 {
        padding-bottom: 0.25rem !important;
    }
    .max-sm\:\!pb-1\.5 {
        padding-bottom: 0.375rem !important;
    }
    .max-sm\:pb-0 {
        padding-bottom: 0;
    }
    .max-sm\:pb-2 {
        padding-bottom: 0.5rem;
    }
    .max-sm\:pb-2\.5 {
        padding-bottom: 0.625rem;
    }
    .max-sm\:text-center {
        text-align: center;
    }
    .max-sm\:text-right {
        text-align: right;
    }
    .max-sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .max-sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .max-sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .max-sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .max-sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    .max-sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .max-sm\:text-xs {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .max-sm\:\!font-semibold {
        font-weight: 600 !important;
    }
    .max-sm\:font-medium {
        font-weight: 500;
    }
    .max-sm\:font-normal {
        font-weight: 400;
    }
    .max-sm\:leading-4 {
        line-height: 1rem;
    }
    .max-sm\:leading-6 {
        line-height: 1.5rem;
    }
    .max-sm\:leading-\[80px\] {
        line-height: 80px;
    }
    .max-sm\:text-zinc-500 {
        --tw-text-opacity: 1;
        color: rgb(113 113 122 / var(--tw-text-opacity));
    }
    .max-sm\:opacity-100 {
        opacity: 1;
    }
}
@media (min-width: 525px) {
    .sm\:hidden {
        display: none;
    }
    .sm\:items-center {
        align-items: center;
    }
    .sm\:p-0 {
        padding: 0;
    }
    .sm\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}
@media (min-width: 768px) {
    .md\:mt-10 {
        margin-top: 2.5rem;
    }
    .md\:inline-block {
        display: inline-block;
    }
    .md\:hidden {
        display: none;
    }
    .md\:max-w-\[400px\] {
        max-width: 400px;
    }
    .md\:translate-y-0 {
        --tw-translate-y: 0px;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skew(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }
    .md\:scale-100 {
        --tw-scale-x: 1;
        --tw-scale-y: 1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skew(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }
    .md\:scale-95 {
        --tw-scale-x: 0.95;
        --tw-scale-y: 0.95;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skew(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }
}
@media (min-width: 1024px) {
    .lg\:hidden {
        display: none;
    }
}
@media (min-width: 1180px) {
    .\31 180\:relative {
        position: relative;
    }
    .\31 180\:mt-20 {
        margin-top: 5rem;
    }
    .\31 180\:grid {
        display: grid;
    }
    .\31 180\:hidden {
        display: none;
    }
    .\31 180\:content-start {
        align-content: flex-start;
    }
    .\31 180\:overflow-hidden {
        overflow: hidden;
    }
    .\31 180\:duration-300 {
        transition-duration: 0.3s;
    }
    .\31 180\:hover\:shadow-\[0_5px_10px_rgba\(0\,0\,0\,0\.1\)\]:hover {
        --tw-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        --tw-shadow-colored: 0 5px 10px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
            var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    }
}
.ltr\:-left-9:where([dir="ltr"], [dir="ltr"] *) {
    left: -2.25rem;
}
.ltr\:left-0:where([dir="ltr"], [dir="ltr"] *) {
    left: 0;
}
.ltr\:left-1:where([dir="ltr"], [dir="ltr"] *) {
    left: 0.25rem;
}
.ltr\:left-1\.5:where([dir="ltr"], [dir="ltr"] *) {
    left: 0.375rem;
}
.ltr\:left-3:where([dir="ltr"], [dir="ltr"] *) {
    left: 0.75rem;
}
.ltr\:left-4:where([dir="ltr"], [dir="ltr"] *) {
    left: 1rem;
}
.ltr\:left-5:where([dir="ltr"], [dir="ltr"] *) {
    left: 1.25rem;
}
.ltr\:left-full:where([dir="ltr"], [dir="ltr"] *) {
    left: 100%;
}
.ltr\:right-0:where([dir="ltr"], [dir="ltr"] *) {
    right: 0;
}
.ltr\:right-1:where([dir="ltr"], [dir="ltr"] *) {
    right: 0.25rem;
}
.ltr\:right-1\.5:where([dir="ltr"], [dir="ltr"] *) {
    right: 0.375rem;
}
.ltr\:right-10:where([dir="ltr"], [dir="ltr"] *) {
    right: 2.5rem;
}
.ltr\:right-2:where([dir="ltr"], [dir="ltr"] *) {
    right: 0.5rem;
}
.ltr\:right-2\.5:where([dir="ltr"], [dir="ltr"] *) {
    right: 0.625rem;
}
.ltr\:right-3:where([dir="ltr"], [dir="ltr"] *) {
    right: 0.75rem;
}
.ltr\:right-5:where([dir="ltr"], [dir="ltr"] *) {
    right: 1.25rem;
}
.ltr\:ml-0:where([dir="ltr"], [dir="ltr"] *) {
    margin-left: 0;
}
.ltr\:ml-1:where([dir="ltr"], [dir="ltr"] *) {
    margin-left: 0.25rem;
}
.ltr\:ml-1\.5:where([dir="ltr"], [dir="ltr"] *) {
    margin-left: 0.375rem;
}
.ltr\:ml-2:where([dir="ltr"], [dir="ltr"] *) {
    margin-left: 0.5rem;
}
.ltr\:ml-2\.5:where([dir="ltr"], [dir="ltr"] *) {
    margin-left: 0.625rem;
}
.ltr\:ml-3:where([dir="ltr"], [dir="ltr"] *) {
    margin-left: 0.75rem;
}
.ltr\:mr-2:where([dir="ltr"], [dir="ltr"] *) {
    margin-right: 0.5rem;
}
.ltr\:mr-2\.5:where([dir="ltr"], [dir="ltr"] *) {
    margin-right: 0.625rem;
}
.ltr\:mr-\[50px\]:where([dir="ltr"], [dir="ltr"] *) {
    margin-right: 50px;
}
.ltr\:-translate-x-full:where([dir="ltr"], [dir="ltr"] *) {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ltr\:translate-x-0:where([dir="ltr"], [dir="ltr"] *) {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ltr\:translate-x-full:where([dir="ltr"], [dir="ltr"] *) {
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ltr\:translate-y-0:where([dir="ltr"], [dir="ltr"] *) {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ltr\:translate-y-full:where([dir="ltr"], [dir="ltr"] *) {
    --tw-translate-y: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ltr\:rounded-l-lg:where([dir="ltr"], [dir="ltr"] *) {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.ltr\:rounded-r-lg:where([dir="ltr"], [dir="ltr"] *) {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.ltr\:border-l-\[1px\]:where([dir="ltr"], [dir="ltr"] *) {
    border-left-width: 1px;
}
.ltr\:pl-0:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 0;
}
.ltr\:pl-1:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 0.25rem;
}
.ltr\:pl-2:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 0.5rem;
}
.ltr\:pl-2\.5:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 0.625rem;
}
.ltr\:pl-3:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 0.75rem;
}
.ltr\:pl-4:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 1rem;
}
.ltr\:pl-8:where([dir="ltr"], [dir="ltr"] *) {
    padding-left: 2rem;
}
.ltr\:pr-0:where([dir="ltr"], [dir="ltr"] *) {
    padding-right: 0;
}
.ltr\:pr-3:where([dir="ltr"], [dir="ltr"] *) {
    padding-right: 0.75rem;
}
.ltr\:pr-4:where([dir="ltr"], [dir="ltr"] *) {
    padding-right: 1rem;
}
.ltr\:pr-7:where([dir="ltr"], [dir="ltr"] *) {
    padding-right: 1.75rem;
}
.ltr\:pr-8:where([dir="ltr"], [dir="ltr"] *) {
    padding-right: 2rem;
}
@media not all and (min-width: 1024px) {
    .max-lg\:ltr\:pl-0:where([dir="ltr"], [dir="ltr"] *) {
        padding-left: 0;
    }
}
@media not all and (min-width: 768px) {
    .max-md\:ltr\:left-4:where([dir="ltr"], [dir="ltr"] *) {
        left: 1rem;
    }
    .max-md\:ltr\:right-1:where([dir="ltr"], [dir="ltr"] *) {
        right: 0.25rem;
    }
    .max-md\:ltr\:right-1\.5:where([dir="ltr"], [dir="ltr"] *) {
        right: 0.375rem;
    }
    .max-md\:ltr\:right-4:where([dir="ltr"], [dir="ltr"] *) {
        right: 1rem;
    }
    .ltr\:max-md\:gap-0:where([dir="ltr"], [dir="ltr"] *) {
        gap: 0px;
    }
    .max-md\:ltr\:pl-2:where([dir="ltr"], [dir="ltr"] *) {
        padding-left: 0.5rem;
    }
    .max-md\:ltr\:pl-2\.5:where([dir="ltr"], [dir="ltr"] *) {
        padding-left: 0.625rem;
    }
    .max-md\:ltr\:pr-1:where([dir="ltr"], [dir="ltr"] *) {
        padding-right: 0.25rem;
    }
    .max-md\:ltr\:pr-2:where([dir="ltr"], [dir="ltr"] *) {
        padding-right: 0.5rem;
    }
    .max-md\:ltr\:pr-2\.5:where([dir="ltr"], [dir="ltr"] *) {
        padding-right: 0.625rem;
    }
}
@media (min-width: 768px) {
    .md\:ltr\:ml-0:where([dir="ltr"], [dir="ltr"] *) {
        margin-left: 0;
    }
    .md\:ltr\:pr-7:where([dir="ltr"], [dir="ltr"] *) {
        padding-right: 1.75rem;
    }
}
.rtl\:-right-9:where([dir="rtl"], [dir="rtl"] *) {
    right: -2.25rem;
}
.rtl\:left-0:where([dir="rtl"], [dir="rtl"] *) {
    left: 0;
}
.rtl\:left-1:where([dir="rtl"], [dir="rtl"] *) {
    left: 0.25rem;
}
.rtl\:left-1\.5:where([dir="rtl"], [dir="rtl"] *) {
    left: 0.375rem;
}
.rtl\:left-10:where([dir="rtl"], [dir="rtl"] *) {
    left: 2.5rem;
}
.rtl\:left-2:where([dir="rtl"], [dir="rtl"] *) {
    left: 0.5rem;
}
.rtl\:left-2\.5:where([dir="rtl"], [dir="rtl"] *) {
    left: 0.625rem;
}
.rtl\:left-3:where([dir="rtl"], [dir="rtl"] *) {
    left: 0.75rem;
}
.rtl\:left-5:where([dir="rtl"], [dir="rtl"] *) {
    left: 1.25rem;
}
.rtl\:right-0:where([dir="rtl"], [dir="rtl"] *) {
    right: 0;
}
.rtl\:right-1:where([dir="rtl"], [dir="rtl"] *) {
    right: 0.25rem;
}
.rtl\:right-1\.5:where([dir="rtl"], [dir="rtl"] *) {
    right: 0.375rem;
}
.rtl\:right-3:where([dir="rtl"], [dir="rtl"] *) {
    right: 0.75rem;
}
.rtl\:right-4:where([dir="rtl"], [dir="rtl"] *) {
    right: 1rem;
}
.rtl\:right-5:where([dir="rtl"], [dir="rtl"] *) {
    right: 1.25rem;
}
.rtl\:right-full:where([dir="rtl"], [dir="rtl"] *) {
    right: 100%;
}
.rtl\:ml-2:where([dir="rtl"], [dir="rtl"] *) {
    margin-left: 0.5rem;
}
.rtl\:ml-2\.5:where([dir="rtl"], [dir="rtl"] *) {
    margin-left: 0.625rem;
}
.rtl\:ml-\[50px\]:where([dir="rtl"], [dir="rtl"] *) {
    margin-left: 50px;
}
.rtl\:mr-0:where([dir="rtl"], [dir="rtl"] *) {
    margin-right: 0;
}
.rtl\:mr-1:where([dir="rtl"], [dir="rtl"] *) {
    margin-right: 0.25rem;
}
.rtl\:mr-1\.5:where([dir="rtl"], [dir="rtl"] *) {
    margin-right: 0.375rem;
}
.rtl\:mr-2:where([dir="rtl"], [dir="rtl"] *) {
    margin-right: 0.5rem;
}
.rtl\:mr-2\.5:where([dir="rtl"], [dir="rtl"] *) {
    margin-right: 0.625rem;
}
.rtl\:mr-3:where([dir="rtl"], [dir="rtl"] *) {
    margin-right: 0.75rem;
}
.rtl\:-translate-x-0:where([dir="rtl"], [dir="rtl"] *) {
    --tw-translate-x: -0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:-translate-x-full:where([dir="rtl"], [dir="rtl"] *) {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:-translate-y-0:where([dir="rtl"], [dir="rtl"] *) {
    --tw-translate-y: -0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:-translate-y-full:where([dir="rtl"], [dir="rtl"] *) {
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:translate-x-full:where([dir="rtl"], [dir="rtl"] *) {
    --tw-translate-x: 100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rtl\:rounded-l-lg:where([dir="rtl"], [dir="rtl"] *) {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}
.rtl\:rounded-r-lg:where([dir="rtl"], [dir="rtl"] *) {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.rtl\:border-r-\[1px\]:where([dir="rtl"], [dir="rtl"] *) {
    border-right-width: 1px;
}
.rtl\:pl-0:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0;
}
.rtl\:pl-3:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0.75rem;
}
.rtl\:pl-4:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 1rem;
}
.rtl\:pl-7:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 1.75rem;
}
.rtl\:pl-8:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 2rem;
}
.rtl\:pr-0:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 0;
}
.rtl\:pr-1:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 0.25rem;
}
.rtl\:pr-2:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 0.5rem;
}
.rtl\:pr-2\.5:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 0.625rem;
}
.rtl\:pr-3:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 0.75rem;
}
.rtl\:pr-4:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 1rem;
}
.rtl\:pr-8:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 2rem;
}
@media not all and (min-width: 1024px) {
    .max-lg\:rtl\:pr-0:where([dir="rtl"], [dir="rtl"] *) {
        padding-right: 0;
    }
}
@media not all and (min-width: 768px) {
    .max-md\:rtl\:left-1:where([dir="rtl"], [dir="rtl"] *) {
        left: 0.25rem;
    }
    .max-md\:rtl\:left-1\.5:where([dir="rtl"], [dir="rtl"] *) {
        left: 0.375rem;
    }
    .max-md\:rtl\:left-4:where([dir="rtl"], [dir="rtl"] *) {
        left: 1rem;
    }
    .max-md\:rtl\:right-4:where([dir="rtl"], [dir="rtl"] *) {
        right: 1rem;
    }
    .rtl\:max-md\:gap-0:where([dir="rtl"], [dir="rtl"] *) {
        gap: 0px;
    }
    .max-md\:rtl\:pl-1:where([dir="rtl"], [dir="rtl"] *) {
        padding-left: 0.25rem;
    }
    .max-md\:rtl\:pl-2:where([dir="rtl"], [dir="rtl"] *) {
        padding-left: 0.5rem;
    }
    .max-md\:rtl\:pl-2\.5:where([dir="rtl"], [dir="rtl"] *) {
        padding-left: 0.625rem;
    }
    .max-md\:rtl\:pr-2:where([dir="rtl"], [dir="rtl"] *) {
        padding-right: 0.5rem;
    }
    .max-md\:rtl\:pr-2\.5:where([dir="rtl"], [dir="rtl"] *) {
        padding-right: 0.625rem;
    }
}
@media not all and (min-width: 525px) {
    .max-sm\:rtl\:right-0:where([dir="rtl"], [dir="rtl"] *) {
        right: 0;
    }
}
@media (min-width: 768px) {
    .md\:rtl\:mr-0:where([dir="rtl"], [dir="rtl"] *) {
        margin-right: 0;
    }
    .md\:rtl\:pl-7:where([dir="rtl"], [dir="rtl"] *) {
        padding-left: 1.75rem;
    }
}
@media (prefers-color-scheme: dark) {
    .dark\:border-gray-800 {
        --tw-border-opacity: 1;
        border-color: rgb(31 41 55 / var(--tw-border-opacity));
    }
    .dark\:bg-gray-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39 / var(--tw-bg-opacity));
    }
    .dark\:text-gray-300 {
        --tw-text-opacity: 1;
        color: rgb(209 213 219 / var(--tw-text-opacity));
    }
    .dark\:hover\:border-gray-400:hover {
        --tw-border-opacity: 1;
        border-color: rgb(156 163 175 / var(--tw-border-opacity));
    }
}
.\[\&\:\:-moz-range-thumb\]\:pointer-events-auto::-moz-range-thumb {
    pointer-events: auto;
}
.\[\&\:\:-moz-range-thumb\]\:h-\[18px\]::-moz-range-thumb {
    height: 18px;
}
.\[\&\:\:-moz-range-thumb\]\:w-\[18px\]::-moz-range-thumb {
    width: 18px;
}
.\[\&\:\:-moz-range-thumb\]\:appearance-none::-moz-range-thumb {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.\[\&\:\:-moz-range-thumb\]\:rounded-full::-moz-range-thumb {
    border-radius: 9999px;
}
.\[\&\:\:-moz-range-thumb\]\:bg-white::-moz-range-thumb {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.\[\&\:\:-moz-range-thumb\]\:ring::-moz-range-thumb {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
        calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
        var(--tw-shadow, 0 0 #0000);
}
.\[\&\:\:-moz-range-thumb\]\:ring-navyBlue::-moz-range-thumb {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 12 59 / var(--tw-ring-opacity));
}
.\[\&\:\:-ms-thumb\]\:pointer-events-auto::-ms-thumb {
    pointer-events: auto;
}
.\[\&\:\:-ms-thumb\]\:h-\[18px\]::-ms-thumb {
    height: 18px;
}
.\[\&\:\:-ms-thumb\]\:w-\[18px\]::-ms-thumb {
    width: 18px;
}
.\[\&\:\:-ms-thumb\]\:appearance-none::-ms-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.\[\&\:\:-ms-thumb\]\:rounded-full::-ms-thumb {
    border-radius: 9999px;
}
.\[\&\:\:-ms-thumb\]\:bg-white::-ms-thumb {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.\[\&\:\:-ms-thumb\]\:ring::-ms-thumb {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
        calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
        var(--tw-shadow, 0 0 #0000);
}
.\[\&\:\:-ms-thumb\]\:ring-navyBlue::-ms-thumb {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 12 59 / var(--tw-ring-opacity));
}
.\[\&\:\:-webkit-slider-thumb\]\:pointer-events-auto::-webkit-slider-thumb {
    pointer-events: auto;
}
.\[\&\:\:-webkit-slider-thumb\]\:h-\[18px\]::-webkit-slider-thumb {
    height: 18px;
}
.\[\&\:\:-webkit-slider-thumb\]\:w-\[18px\]::-webkit-slider-thumb {
    width: 18px;
}
.\[\&\:\:-webkit-slider-thumb\]\:appearance-none::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.\[\&\:\:-webkit-slider-thumb\]\:rounded-full::-webkit-slider-thumb {
    border-radius: 9999px;
}
.\[\&\:\:-webkit-slider-thumb\]\:bg-white::-webkit-slider-thumb {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.\[\&\:\:-webkit-slider-thumb\]\:ring::-webkit-slider-thumb {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
        var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
        calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
        var(--tw-shadow, 0 0 #0000);
}
.\[\&\:\:-webkit-slider-thumb\]\:ring-navyBlue::-webkit-slider-thumb {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(6 12 59 / var(--tw-ring-opacity));
}
.\[\&\>\*\]\:flex > * {
    display: flex;
}
.\[\&\>\*\]\:flex-\[0\] > * {
    flex: 0;
}
.\[\&\>\*\]\:justify-between > * {
    justify-content: space-between;
}
.\[\&\>\*\]\:border-0 > * {
    border-width: 0px;
}
.\[\&\>\*\]\:px-6 > * {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.\[\&\>\*\]\:py-4 > * {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.\[\&\>\*\]\:text-right > * {
    text-align: right;
}
.\[\&\>\*\]\:font-medium > * {
    font-weight: 500;
}
.\[\&\>\*\]\:text-black > * {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.\[\&\>\*\]\:text-blue-600 > * {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity));
}
@media not all and (min-width: 768px) {
    .max-md\:\[\&\>\*\]\:\[\&\>\*\]\:rounded-full > * > * {
        border-radius: 9999px;
    }
    .max-md\:\[\&\>\*\]\:leading-6 > * {
        line-height: 1.5rem;
    }
}
@media not all and (min-width: 525px) {
    .max-sm\:\[\&\>\*\]\:leading-4 > * {
        line-height: 1rem;
    }
}
.\[\&_span\.icon-compare\]\:hidden span.icon-compare {
    display: none;
}
.h-64 {
    height: 16rem /* 256px */;
}
