:root {
    --color-1: #3c1253;
    --color-2: #f5f2f7;
    --color-3: #383838;
    --color-4: #707070;
    --color-5: #f5e7df4d;
    --color-6: #3c125333;
    --color-7: #ffffff;
    --color-8: #d4d4d4;
    --color-9: #ffe2d1;
    --color-10: #f2f2f2;
    --color-11: #af9cb7;
    --color-12: #f5e7df4d;
    --color-13: #f8f8f8;
    --color-14: #f5e7df;
    --color-15: #d6d1ca;
    --color-16: #3f9645;
    --color-17: #f5efef;
    --color-18: #c40000;
    --color-19: #ffeb02;
    --color-20: #ffb3c7;
    --color-21: #2c0e3b;
    --color-22: #f2dedd;
    font-size: 15px;
}

body {
    font-family: "Work Sans";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-1);
    margin: 0;
    text-align: start;
    font-family: "Fahkwang";
    font-weight: 600;
}

h1 {
    font-size: 18px;
    word-break: break-word;
}

h2 {
    font-size: 15px;
    word-break: break-word;
}

h3 {
    font-size: 13px;
    word-break: break-word;
}

h4 {
    font-size: 12px;
    word-break: break-word;
}

h5 {
    font-size: 11px;
    word-break: break-word;
}

h6 {
    font-size: 10px;
    word-break: break-word;
}

span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

p,
li,
a {
    color: var(--color-3);
    font-size: 13px;
    text-align: start;
    font-weight: 300;
    margin: 0;
    word-break: break-word;
    letter-spacing: 0.04rem;
    line-height: 1.3em;
}

a {
    text-decoration: underline;
}

p.small2,
li.small2,
a.small2 {
    font-size: 9px;
}

p.small1,
li.small1,
a.small1 {
    font-size: 11px;
}

li {
    display: flex;
    align-items: center;
    gap: 20px;
}

li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-1);
    flex: 1;
    max-width: 10px;
    min-width: 10px;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
}

strong {
    font-weight: 500;
}

button,
.button {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Fahkwang";
    font-size: 15px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    padding: 0.5em 1em;
    color: var(--color-2);
    background-color: var(--color-1);
    border: 0.5px solid var(--color-1);
    max-width: 100%;
}

button[disabled],
.button[disabled] {
    opacity: 0.5;
}

button.secondary,
.button.secondary {
    color: var(--color-1);
    background-color: var(--color-2);
}

button.tertiary,
.button.tertiary {
    color: var(--color-1);
    background-color: var(--color-5);
    font-family: "Work Sans";
    font-weight: 300;
}

button.fourth,
.button.fourth {
    color: var(--color-1);
    background-color: var(--color-5);
}

button.stripe,
button.paypal,
button.klarna {
    font-size: 15px;
}

.button.stripe,
.button.paypal,
.button.klarna {
    font-size: 15px;
}

button.paypal,
.button.paypal {
    background-color: var(--color-19);
    border: 1px solid var(--color-19);
    color: black;
}

button.klarna,
.button.klarna {
    background-color: var(--color-20);
    border: 1px solid var(--color-20);
    color: black;
}

input {
    font-family: "Work Sans";
}

input[type="email"],
input[type="password"],
input[type="text"],
select {
    overflow: hidden;
    font-size: 13px;
    border-radius: 30px;
    padding: 1em 2em;
    color: var(--color-1);
    border: 0.5px solid var(--color-1);
    font-weight: 300;
    font-family: "Work Sans";
    font-weight: 300;
}

.select-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.select-icon {
    position: absolute;
    right: 20px;
}

select {
    appearance: none;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
select:focus {
    outline: 1px solid var(--color-1);
}

input[type="email"]::-webkit-input-placeholder {
    font-style: italic;
}
input[type="email"]:-moz-placeholder {
    font-style: italic;
}
input[type="email"]::-moz-placeholder {
    font-style: italic;
}
input[type="email"]:-ms-input-placeholder {
    font-style: italic;
}

input[type="password"]::-webkit-input-placeholder {
    font-style: italic;
}
input[type="password"]:-moz-placeholder {
    font-style: italic;
}
input[type="password"]::-moz-placeholder {
    font-style: italic;
}
input[type="password"]:-ms-input-placeholder {
    font-style: italic;
}

input[type="text"]::-webkit-input-placeholder {
    font-style: italic;
}
input[type="text"]:-moz-placeholder {
    font-style: italic;
}
input[type="text"]::-moz-placeholder {
    font-style: italic;
}
input[type="text"]:-ms-input-placeholder {
    font-style: italic;
}

select::-webkit-input-placeholder {
    font-style: italic;
}
select:-moz-placeholder {
    font-style: italic;
}
select::-moz-placeholder {
    font-style: italic;
}
select:-ms-input-placeholder {
    font-style: italic;
}

input[type="checkbox"] {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    top: 15px;
    padding: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 0.6;
    border: 1px solid var(--color-1);
    background-color: var(--color-7);
}

.close img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.checkbox-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: start;
    cursor: pointer;
}

.checkbox-container .checkmark {
    position: relative;
    height: 18px;
    width: 18px;
    border: 1px solid var(--color-1);
    background-color: var(--color-7);
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 2px;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
    transform: scale(1) rotate(45deg);
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    width: 5px;
    top: 0px;
    left: 4px;
    height: 10px;
    border: 1px solid var(--color-1);
    border-width: 0 3px 3px 0;
    -webkit-transform: scale(0) rotate(45deg);
    -ms-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    transition: 250ms transform ease-in-out;
}

.slide-checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.slide-checkbox-container.disabled {
    opacity: 0.3;
}

.slide-checkbox-container .checkmark {
    height: 20px;
    width: 50px;
    border: 1px solid var(--color-1);
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px;
    margin-right: 10px;
    position: relative;
    transition: background-color 250ms ease-in-out;
    cursor: pointer;
}

.slide-checkbox-container .checkmark .ball {
    width: 16px;
    background-color: var(--color-1);
    height: 85%;
    border-radius: 50%;
    transition: right 250ms ease-in-out;
    position: absolute;
    right: calc(100% - 18px);
}

.slide-checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--color-1);
}

.slide-checkbox-container input[type="checkbox"]:checked ~ .checkmark .ball {
    background-color: var(--color-7);
    right: 1px;
}

.logo {
    width: 100px;
    height: 21px;
    cursor: pointer;
}

.for-you-indicator {
    color: var(--color-1);
    padding: 2px 6px;
}

.for-you-indicator > * {
    font-weight: 400;
}

.for-you-indicator-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-1);
    padding: 2px 6px;
    background-color: var(--color-12);
    border: 0.5px solid var(--color-1);
}

.for-you-indicator-1 > * {
    font-weight: 400;
}

.tuo-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-1);
    padding: 3px 8px;
    z-index: 1;
}

.tuo-indicator > * {
    color: var(--color-7);
}

.products-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    column-gap: 20px;
    row-gap: 40px;
    grid-auto-rows: 1fr;
}

.product-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.product {
    display: flex;
    position: relative;
    flex-direction: column;
    border-radius: 20px;
    background-color: var(--color-5);
    width: 100%;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    gap: 10px;
    flex-grow: 1;
}

.product img.absolute {
    top: -5%;
    scale: 1.1;
}

.product.for-you {
    border: 2px solid var(--color-11);
}

.product > .for-you-indicator {
    display: none;
    position: absolute;
    top: -18px;
    left: 8px;
}

.product.for-you > .for-you-indicator {
    display: block;
}

.product > .tuo-indicator {
    display: none;
    position: absolute;
    right: 0px;
    top: 30px;
}

.product.tuo > .tuo-indicator {
    display: block;
}

.product .text-section {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}

.product .text-section h3 {
    text-align: center;
    word-break: break-word;
}

.product .text-section p {
    text-align: center;
    color: var(--color-3);
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 20px;
}

.carousel-container .move {
    all: unset;
    cursor: pointer;
    display: none;
    visibility: hidden;
    z-index: 10;
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: white;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
}

.carousel-container .move.show-v {
    visibility: visible;
    animation: fade-in 0.25s forwards;
}

.carousel-container .move.hide-v {
    visibility: visible;
    animation: fade-out 0.25s forwards;
}

.carousel-container .move img {
    width: 100%;
    height: 100%;
}

.carousel-container .move.right {
    right: 0;
}

.carousel-container .move.left {
    left: 0;
}

.carousel-container .move.left img {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.carousel-dots.show-v {
    animation: fade-in 0.5s forwards;
}

.carousel-dots.hide-v {
    animation: fade-out 0.5s forwards;
}

.carousel-dots > div {
    width: 20px;
    height: 6px;
    border: 0.5px solid var(--color-1);
    border-radius: 10px;
    transition: background-color 0.25s;
}

.carousel-dots.carousel-dots-gallery {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    bottom: 8px;
}

.carousel-dots.carousel-dots-gallery > div {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-14);
    border: none;
}

.carousel-dots > div.active {
    background-color: var(--color-1);
}

.carousel {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 20px;
    width: 100%;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.carousel > *:nth-child(1) {
    margin-left: auto;
}

.carousel > *:last-child {
    margin-right: auto;
}

.carousel .product-container {
    scroll-snap-align: center;
    max-width: 200px;
}

.video-container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-container .play-video {
    position: absolute;
    z-index: 10;
    width: 10%;
    cursor: pointer;
}

.tooltip-icon {
    width: 15px;
    height: 15px;
    background-color: var(--color-8);
    padding: 2px;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
    justify-self: end;
}

.tooltip-icon.active {
    background-color: var(--color-1);
}

.tooltip-icon img {
    width: 100%;
    height: 100%;
}

.tooltip-message {
    display: none;
    position: relative;
    background-color: var(--color-10);
    border-radius: 25px;
    flex-direction: row;
    align-items: start;
    padding: 10px 50px 10px 20px;
    gap: 10px;
    max-width: 800px;
}

.tooltip-message.show {
    display: flex;
    animation: fade-in-scale 0.25s forwards;
}

.tooltip-message.hide {
    display: flex;
    animation: fade-out-scale 0.25s forwards;
}

.tooltip-message .close {
    top: unset;
}

.expand {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.expand-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 10px;
}

.expand-body {
    display: grid;
    grid-template-rows: 0fr;
    gap: 15px;
    width: 100%;
    transition: grid-template-rows 0.225s linear;
    overflow: hidden;
}

.expand-body > * {
    min-height: 0px;
}

.expand svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.expand .faq-list svg {
    fill: #c3c3c3;
}

.expand .faq-list .separator {
    width: 100%;
}

.expand .faq-body {
    padding-left: 25px;
}

.faq-list .expand-header p {
    color: var(--color-1);
    text-transform: uppercase;
    font-size: 15px;
}

.faq-body p {
    color: var(--color-3);
}

.separator {
    width: 77px;
    height: 1px;
    border: 0.5px solid var(--color-1);
}

.advice-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    row-gap: 10px;
    column-gap: 20px;
}

.advice-grid p {
    font-size: 10px;
}

.advice-grid h6 {
    font-size: 11px;
}

.fragrance {
    display: flex;
    flex-direction: column;
    width: 80px;
    flex-shrink: 0;
    gap: 10px;
    cursor: pointer;
}

.fragrance p {
    text-transform: uppercase;
    word-wrap: break-word;
    font-size: 10px;
    text-align: center;
}

.fragrance .image {
    width: 100%;
    height: 80px;
    background-color: var(--color-2);
    padding: 10px;
}

.fragrance.active .image {
    background-color: var(--color-1);
}

.tabs {
    display: flex;
    width: 100%;
    gap: 10px;
}

.tabs button,
.tabs .button {
    background-color: white;
    border: none;
    color: var(--color-1);
    width: 100%;
    border-radius: 15px 15px 0px 0px;
    padding: 1.4em 0em;
    font-size: 20px;
    font-family: "Work Sans";
    font-weight: 300;
}

.tabs.reverse button,
.tabs.reverse .button {
    background-color: var(--color-2);
}

.tabs button.active,
.tabs .button.active {
    background-color: var(--color-2);
    font-weight: 600;
}

.tabs.reverse button.active,
.tabs.reverse .button.active {
    background-color: white;
}

.tabs button:hover:not(.active),
.tabs .button:hover:not(.active) {
    background-color: #f5f2f780;
}

.tabs.reverse button:hover:not(.active),
.tabs.reverse .button:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.5);
}

.rating {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.rating img {
    width: 60px;
}

.report {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    border: 1px solid var(--color-1);
    background-color: var(--color-17);
    gap: 20px;
}

.modify-icon {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    cursor: pointer;
}

.button-left-icon {
    width: 20px;
    aspect-ratio: 1/1;
    margin-right: 10px;
    vertical-align: middle;
}

.fahkwang {
    font-family: "Fahkwang";
}

.worksans {
    font-family: "Work Sans";
}

.color1 {
    color: var(--color-1);
}

.color2 {
    color: var(--color-2);
}

.color3 {
    color: var(--color-3);
}

.color4 {
    color: var(--color-4);
}

.color7 {
    color: var(--color-7);
}

.color16 {
    color: var(--color-16);
}

.color18 {
    color: var(--color-18);
}

.color21 {
    color: var(--color-21);
}

.color22 {
    color: var(--color-22);
}

.bc1 {
    background-color: var(--color-1);
}

.bc2 {
    background-color: var(--color-2);
}

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

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

.bc12 {
    background-color: var(--color-12);
}

.bc13 {
    background-color: var(--color-13);
}

.bc21 {
    background-color: var(--color-21);
}

.bc22 {
    background-color: var(--color-22);
}

.max-width1200 {
    max-width: 1200px;
}

.max-width1650 {
    max-width: 1650px;
}

.max-height450 {
    max-height: 450px;
}

.max-height500 {
    max-height: 500px;
}

.tremble {
    animation-name: tremble-animation;
    animation-duration: 0.5s;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

.mob {
    display: flex;
}

.mob-grid {
    display: grid;
}

.mob-block {
    display: block;
}

.desk {
    display: none;
}

.desk-grid {
    display: none;
}

.desk-block {
    display: none;
}

.mob-desk {
    display: flex;
}

.grecaptcha-badge {
    visibility: hidden;
}

.klarna-placement {
    margin-left: -9px;
}

.klarna-placement *::part(osm-container) {
    border-style: none;
    background: none;
}

.klarna-placement *::part(osm-message),
.klarna-placement *::part(osm-cta) {
    font-family: "Work Sans";
    font-size: 10px;
    font-weight: 300;
}

@media (min-width: 600px) {
    .products-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 800px) {
    .products-section {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    p,
    li,
    a {
        font-size: 20px;
    }

    p.small1,
    li.small1,
    a.small1 {
        font-size: 20px;
    }

    p.small2,
    li.small2,
    a.small2 {
        font-size: 18px;
    }

    button,
    .button {
        font-size: 20px;
        padding: 0.6em 1.1em;
        font-weight: 300;
    }

    input[type="email"],
    input[type="password"],
    input[type="text"],
    select {
        font-size: 16px;
    }

    .slide-checkbox-container .checkmark {
        height: 25px;
        width: 60px;
    }

    .slide-checkbox-container .checkmark .ball {
        width: 20px;
        right: calc(100% - 22px);
    }

    .logo {
        width: 175px;
        height: 29px;
    }

    .product > .for-you-indicator {
        top: -26px;
    }

    .carousel-container .move {
        display: block;
    }

    .carousel-container .carousel-dots > div {
        width: 30px;
        height: 10px;
    }

    .carousel-container .carousel-dots.carousel-dots-gallery {
        bottom: 15px;
        gap: 10px;
    }

    .carousel-container .carousel-dots.carousel-dots-gallery > div {
        width: 12px;
        height: 12px;
    }

    .carousel .product-container {
        max-width: 285px;
    }

    .tooltip-message {
        padding: 20px 50px 20px 20px;
    }

    .faq-list .expand-header p {
        font-size: 20px;
    }

    .faq-body p {
        font-size: 20px;
    }

    .separator {
        width: 190px;
    }

    .fragrance {
        width: 75px;
    }

    .fragrance .image {
        height: 75px;
    }

    .fragrance p {
        font-size: 12px;
    }

    .advice-grid p {
        font-size: 13px;
    }

    .advice-grid h6 {
        font-size: 14px;
    }

    .report {
        padding: 20px 100px;
    }

    .modify-icon {
        width: 15px;
        height: 15px;
    }

    .loader {
        width: 25px;
        height: 25px;
    }

    .klarna-placement *::part(osm-message),
    .klarna-placement *::part(osm-cta) {
        font-size: 13px !important;
    }

    .desk-p0 {
        padding: 0;
    }

    .desk-p25 {
        padding: 25px;
    }

    .desk-p40 {
        padding: 40px;
    }

    .desk-p50 {
        padding: 50px;
    }

    .desk-p70 {
        padding: 70px;
    }

    .desk-color7 {
        color: var(--color-7);
    }

    .desk-bc1 {
        background-color: var(--color-1);
    }

    .desk-bc7 {
        background-color: var(--color-7);
    }

    .desk-pl0 {
        padding-left: 0px;
    }

    .desk-pl200 {
        padding-left: 200px;
    }

    .desk-pt0 {
        padding-top: 0px;
    }

    .desk-pt25 {
        padding-top: 25px;
    }

    .desk-pt50 {
        padding-top: 50px;
    }

    .desk-px15 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .desk-px30 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .desk-px40 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .desk-px50 {
        padding-left: 50px;
        padding-right: 50px;
    }

    .desk-px60 {
        padding-left: 60px;
        padding-right: 60px;
    }

    .desk-px70 {
        padding-left: 70px;
        padding-right: 70px;
    }

    .desk-px100 {
        padding-left: 100px;
        padding-right: 100px;
    }

    .desk-px130 {
        padding-left: 130px;
        padding-right: 130px;
    }

    .desk-pb0 {
        padding-bottom: 0px;
    }

    .desk-pb50 {
        padding-bottom: 50px;
    }

    .desk-pb70 {
        padding-bottom: 70px;
    }

    .desk-py0 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .desk-py20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .desk-py22 {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .desk-py25 {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .desk-py30 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .desk-py40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .desk-py50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .desk-py70 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .desk-pr0 {
        padding-right: 0px;
    }

    .desk-pr40 {
        padding-right: 40px;
    }

    .desk-pr50 {
        padding-right: 50px;
    }

    .desk-mt0 {
        margin-top: 0px;
    }

    .desk-mt20 {
        margin-top: 20px;
    }

    .desk-mt40 {
        margin-top: 40px;
    }

    .desk-ml20 {
        margin-left: 20px;
    }

    .desk-ml40 {
        margin-left: 40px;
    }

    .desk-ml-60 {
        margin-left: -60px;
    }

    .desk-myauto {
        margin-top: auto;
        margin-bottom: auto;
    }

    .desk-my50 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .desk-mx80 {
        margin-left: 80px;
        margin-right: 80px;
    }

    .desk-height275 {
        height: 275px;
    }

    .desk-h100p {
        height: 100%;
    }

    .desk-gap5 {
        gap: 5px;
    }

    .desk-gap10 {
        gap: 10px;
    }

    .desk-gap15 {
        gap: 15px;
    }

    .desk-gap20 {
        gap: 20px;
    }

    .desk-gap25 {
        gap: 25px;
    }

    .desk-gap30 {
        gap: 30px;
    }

    .desk-gap40 {
        gap: 40px;
    }

    .desk-gap50 {
        gap: 50px;
    }

    .desk-gap60 {
        gap: 60px;
    }

    .desk-gap100 {
        gap: 100px;
    }

    .desk-row-gap50 {
        row-gap: 50px;
    }

    .desk-column-gap60 {
        column-gap: 60px;
    }

    .desk-column-gap100 {
        column-gap: 100px;
    }

    .desk-w15 {
        width: 15px;
    }

    .desk-w20 {
        width: 20px;
    }

    .desk-w30 {
        width: 30px;
    }

    .desk-w40 {
        width: 40px;
    }

    .desk-w80 {
        width: 80px;
    }

    .desk-w90 {
        width: 90px;
    }

    .desk-w140 {
        width: 140px;
    }

    .desk-w450 {
        width: 450px;
    }

    .desk-w90p {
        width: 90%;
    }

    .desk-r30 {
        right: 30px;
    }

    .desk-max-width530 {
        max-width: 530px;
    }

    .desk-max-width800 {
        max-width: 800px;
    }

    .desk-max-width1200 {
        max-width: 1200px;
    }

    .desk-max-width-unset {
        max-width: unset;
    }

    .desk-width-auto {
        width: auto;
    }

    .desk-width50p {
        width: 50%;
    }

    .desk-width360 {
        width: 360px;
    }

    .desk-height8 {
        height: 8px;
    }

    .desk-brt20 {
        border-radius: 20px 20px 0px 0px;
    }

    .desk-flex {
        display: flex;
    }

    .desk-row {
        flex-direction: row;
    }

    .desk-reverse-row {
        flex-direction: row-reverse;
    }

    .desk-column {
        flex-direction: column;
    }

    .desk-reverse-column {
        flex-direction: column-reverse;
    }

    .desk-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .desk-grid-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .desk-grid-cs-1 {
        grid-column-start: 1;
    }

    .desk-grid-ce-3 {
        grid-column-end: 3;
    }

    .desk-grid-rs-3 {
        grid-row-start: 3;
    }

    .desk-grid-re-5 {
        grid-row-end: 5;
    }

    .desk-1fr1fr {
        grid-template-columns: 1fr 1fr;
    }

    .desk-fs14 {
        font-size: 14px;
    }

    .desk-fs15 {
        font-size: 15px;
    }

    .desk-fs16 {
        font-size: 16px;
    }

    .desk-fs20 {
        font-size: 20px;
    }

    .desk-fs24 {
        font-size: 24px;
    }

    .desk-fs40 {
        font-size: 40px;
    }

    .desk-fw300 {
        font-weight: 300;
    }

    .desk-text-start {
        text-align: start;
    }

    .desk-text-center {
        text-align: center;
    }

    .desk-rotate-90 {
        transform: rotate(90deg);
    }

    .desk-align-self-end {
        align-self: end;
    }

    .desk-justify-items-start {
        justify-items: start;
    }

    .desk-justify-items-center {
        justify-items: center;
    }

    .desk-align-items-start {
        align-items: start;
    }

    .desk-justify-content-start {
        justify-content: start;
    }

    .desk-justify-content-center {
        justify-content: center;
    }

    .mob {
        display: none;
    }

    .mob-grid {
        display: none;
    }

    .mob-block {
        display: none;
    }

    .desk {
        display: flex;
    }

    .desk-grid {
        display: grid;
    }

    .desk-block {
        display: block;
    }
}
