.page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    max-width: 1280px;
    margin: 120px auto 0 auto;
    position: relative;
}

.mt-section {
    margin: 80px auto 0 auto;
}

@media(max-width: 768px) {
    .page-container {
        margin: 64px 15px 0;
    }
}

.page-title {
    line-height: 100%;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -0.01em;
    text-align: center;
    white-space: pre-wrap;
    word-break: break-word;

    color: var(--text-main);

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-title {
        font-size: 32px;
        word-break: break-word;
        padding: 0 16px;
        line-height: 120%;
    }
}

.page-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    text-align: center;

    color: var(--text-secondary);
    white-space: pre-wrap;
    margin-top: 24px;

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-description {
        word-break: break-word;
        padding: 0 16px;
        font-size: 16px;
        white-space: initial;
    }
}

.buttons-container {
    display: flex;

    z-index: 1;
    position: relative;
}

.buttons-container a {
    display: block;
    margin-top: 0;
}

.buttons-container a:not(:first-child) {
    margin-left: 18px;
}

@media(max-width: 768px) {
    .buttons-container a:not(:first-child) {
        margin-left: 0;
        margin-top: 18px;
    }

    .buttons-container a {
        text-align: center;
    }

    .buttons-container {
        display: flex;
        flex-direction: column;
        padding: 0 16px;

        width: 100%;
    }
}

.rounded-button {
    padding: 20px 56px;

    color: var(--text-on-brand);
    background: var(--surface-brand);
    border: 1px solid var(--surface-border);
    box-sizing: border-box;
    border-radius: 16px;
    margin-top: 56px;

    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    transition: background-color 200ms linear;
}

.rounded-button span {
    transition: all ease 200ms;
    margin-left: 4px;
}

.rounded-button:hover {
    filter: brightness(1.1);
}

.rounded-button > span {
    transform: translateX(5px);
}

@media(max-width: 768px) {
    .rounded-button {
        margin-top: 32px;
    }
}

.transparent-button {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-main);
    transition: box-shadow 200ms ease;
    border: 1px solid var(--surface-border);
}

.transparent-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: rgb(0 56 110 / 8%) 0 0 15px 5px, rgb(225 237 250) 0 0 0 1px inset;
}

/* first screen */
.first-screen .main-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 50px;
     padding-bottom: 358px;
     margin-top: 50px;
     position: relative;
     overflow: hidden;
}

@media (max-width: 768px) {
    .first-screen .main-container {
        padding-bottom: 200px;
    }
}

.first-screen .title-text {
    color: var(--text-main);
    text-align: center;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .first-screen .title-text {
        font-size: 40px;
    }
}

.first-screen .description-text {
    margin-top: 18px;
    color: var(--text-secondary);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .first-screen .description-text {
        font-size: 16px;
    }
}

@keyframes waveAnimation {
    to {
        transform: translateX(-15%) translateY(10%);
    }
}

.first-screen .waves-container > :nth-child(1) {
    right: -1500px;
    bottom: -750px;
    animation: waveAnimation 19s infinite cubic-bezier(0.36, 0.45, 0.63, 0.53) alternate;
}

.first-screen .waves-container > :nth-child(2) {
    left: -300px;
    margin: 0 auto;
    bottom: -550px;
    animation: waveAnimation 14s infinite cubic-bezier(0.36, 0.45, 0.63, 0.53) alternate;
}

.first-screen .waves-container > :nth-child(3) {
    left: -1500px;
    bottom: -400px;
    animation: waveAnimation 8s infinite cubic-bezier(0.36, 0.45, 0.63, 0.53) alternate;
}

@media (max-width: 768px) {
    .first-screen .waves-container {
        display: none;
    }
}

.first-screen .wave {
    width: 3000px;
    height: 1000px;
    position: absolute;
    mask: url("/ssr-landing-static/accent/images/wave.svg") no-repeat;
    mask-size: contain;
    -webkit-mask: url("/ssr-landing-static/accent/images/wave.svg") no-repeat;
    -webkit-mask-size: contain;
    background-color: var(--surface-brand);
}

/* socials */

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.section-container {
    padding: 90px 0;
    background-color: var(--surface-background-secondary);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;

    overflow: hidden;
}

@media (max-width: 768px) {
    .section-container {
        padding: 25px 0;
        margin-top: 18px;
        border-radius: 16px;
    }

    .mobile-wrapper {
        padding: 0 16px;
    }
}

.main-page-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    padding: 0 25px;
    text-align: center;
    white-space: pre-wrap;
}

.social-icons-container {
    display: flex;
    overflow: hidden;
    max-width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 80%, transparent);
}

.social-icon {
    width: 100%;
    height: 120px;
    z-index: 1;
    animation: infiniteScroll 40s linear infinite;
}

.social-icon:not(:first-child) {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .social-icon {
        width: initial;
        height: 80px;
    }

    .desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .tablet {
        display: none;
    }
}

/* main features */

.main-features {
    position: relative;
}

.main-features .section-container {
    padding: 130px 90px 90px;
    background-color: var(--surface-brand);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.main-features .main-page-title {
    color: #fff;
    font-size: 40px;
    text-align: center;
    white-space: initial;
}

.main-features .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;

    max-width: 1269px;
}

@media (max-width: 768px) {
    .main-features .section-container {
        padding: 52px 10px 25px;
    }

    .main-features .cards-container {
        grid-template-columns: 1fr;
        gap: 10px;

        max-width: 100%;
    }
}

.main-features .feature-card-container {
    padding: 18px 48px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    box-shadow: var(--shadow-S);
}

.main-features .icon {
    width: 80px;
    height: 80px;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--surface-brand);
}

.main-features .title-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    color: var(--surface-brand);
    white-space: pre-wrap;
}

.main-features .description-text {
    color: rgba(0, 0, 0, 0.75);
    text-align: center;
}

@media (max-width: 768px) {
    .main-features .title-text {
        font-size: 28px;
    }
}

.main-features .phone-banner-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -250px;
    overflow: hidden;
    background: url("/ssr-landing-static/accent/images/iphone-frame.png") no-repeat;
    background-size: contain;
    width: 736px;
    height: 362px;
    z-index: 99;
}

.main-features .phone-banner-container::before {
    width: calc(100% - 52px);
    height: calc(100% - 42px);
    top: 0;
    left: 0;
    position: absolute;
    margin: 21px;
    border-radius: 35px;
    content: '';
    background: rgba(var(--surface-brand), 0.3);
}

.main-features .bubbles-container {
    position: absolute;
    right: 39px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-features .bubble {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    background: #fff;
}

.main-features .bubble img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.main-features .bubble p {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.main-features .play-frame {
    width: 40px;
    height: 40px;
    background: url("/ssr-landing-static/accent/images/play-frame.svg") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

@keyframes heartAnimation {
    0% { opacity: 0; transform: rotate(-10deg) translateY(45%); }
    50% { opacity: 0.65; transform: rotate(-10deg) translateY(-15%); }
    100% { transform: rotate(-10deg) translateY(-25%); opacity: 0; }
}

.main-features .hearts-container {
    width: 450px;
    height: 350px;
    z-index: 1;
    position: absolute;
    right: 0;
    margin: 0 auto;
}

.main-features .heart {
    position: absolute;
    background: url("/ssr-landing-static/accent/images/heart.svg") no-repeat;
    background-size: contain;
}

.main-features .heart:nth-child(1) { top: 10%; left: 20%; animation: heartAnimation 2s infinite linear 0s; width: 50px; height: 50px; }
.main-features .heart:nth-child(2) { bottom: 10%; left: 20%; animation: heartAnimation 2.2s infinite linear 200ms; width: 58px; height: 58px; }
.main-features .heart:nth-child(3) { bottom: 34%; left: 26%; animation: heartAnimation 2.5s infinite linear 250ms; width: 35px; height: 35px; }
.main-features .heart:nth-child(4) { bottom: 45%; left: 5%; animation: heartAnimation 2.9s infinite linear 290ms; width: 55px; height: 55px; }
.main-features .heart:nth-child(5) { bottom: 55%; left: 35%; animation: heartAnimation 1.3s infinite linear 100ms; width: 27px; height: 27px; }
.main-features .heart:nth-child(6) { bottom: 15%; left: 10%; animation: heartAnimation 2.5s infinite linear 600ms; width: 17px; height: 17px; }
.main-features .heart:nth-child(7) { bottom: 25%; left: 40%; animation: heartAnimation 1.5s infinite linear 800ms; width: 18px; height: 18px; }
.main-features .heart:nth-child(8) { top: 25%; left: 1%; animation: heartAnimation 2.5s infinite linear 500ms; width: 29px; height: 29px; }
.main-features .heart:nth-child(9) { top: 0; left: 1%; animation: heartAnimation 2.5s infinite linear 500ms; width: 35px; height: 35px; }
.main-features .heart:nth-child(10) { top: -20px; left: 35%; animation: heartAnimation 2.5s infinite linear 500ms; width: 55px; height: 55px; }

@media (max-width: 768px) {
    .main-features .hearts-container {
        width: 90%;
        height: 33vh;
    }
    .main-features .heart {
        width: calc(50%);
        height: calc(50%);
    }
}


@media (max-width: 768px) {
    .main-features .phone-banner-container {
        max-width: calc(100vw - 32px);
        width: 100%;
        max-height: 195px;
        top: -160px;
        bottom: 250px;
    }

    .main-features .phone-banner-container::before {
        width: calc(100% - 22px);
        height: calc(100% - 22px);
        max-height: 190px;
        margin: 10px;
        border-radius: 22px;
    }

    .main-features .bubbles-container {
        right: 20px;
    }

    .main-features .bubble {
        padding: 5px 7px;
    }

    .main-features .bubble img {
        width: 8px;
        height: 8px;
    }

    .main-features .bubble p {
        font-size: 7px;
        line-height: unset;
    }
}

@media (max-width: 410px) {
    .main-features .phone-banner-container::before {
        width: calc(100% - 20px);
        height: calc(100% - 28px);
        margin: 10px;
        border-radius: 22px;
    }
}

/* cabinet features v2 */
.cabinet-features-v2 .title-container {
    text-align: center;
}

.cabinet-features-v2 .sub-title-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
}

.main-page-title {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .main-page-title {
        font-size: 32px;
    }
}

.cabinet-features-v2 .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 70px;
    width: 100%;
}

@media (max-width: 768px) {
    .cabinet-features-v2 .cards-container {
        grid-template-columns: 1fr;
        gap: 84.5px;
    }
}

.cabinet-features-v2 .feature-card-container {
    padding: 18px;
    background: var(--surface-background-secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    box-shadow: var(--shadow-S);
}

.cabinet-features-v2 .icon {
    width: 80px;
    height: 80px;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-secondary);
}

.cabinet-features-v2 .title-text {
    text-align: center;
    font-family: Inter Tight, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -0.48px;
    color: var(--text-main);
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .cabinet-features-v2 .title-text {
        font-size: 28px;
    }
}

/* cabinet preview */
.cabinet-preview {
     width: 100%;
}

@media (max-width: 768px) {
    .cabinet-preview {
        position: relative;
    }
}

.cabinet-preview .title-container {
    text-align: center;
}

.cabinet-preview .sub-title-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
}

.cabinet-preview .order-card-container {
    bottom: 10px;
    left: 0;
    transform: perspective(350px) rotateX(7deg) rotateY(0deg) skewX(0deg);
    max-width: 1200px;
    margin: 50px auto;
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
}

.cabinet-preview .order-card-container > * {
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .cabinet-preview .order-card-container {
        transform: unset;
        margin-top: 0;
    }
    .cabinet-preview .order-card-container > * {
        top: 150px;
        min-width: 900px;
        padding: 0;
        left: 0;
    }
}

.cabinet-preview .mobile-order-container {
    height: 500px;
    position: relative;
}

.cabinet-preview .mobile-order-container > div {
    height: 480px;
    bottom: unset;
    top: 20px;
    position: relative;
    width: 100%;
    max-width: 320px;
}

/* cabinet features */
.cabinet-features .title-container {
    text-align: center;
}

.cabinet-features .sub-title-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
}

.cabinet-features .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 70px;
    width: 100%;
}

@media (max-width: 768px) {
    .cabinet-features .cards-container {
        grid-template-columns: 1fr;
    }
}

.cabinet-features .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cabinet-features .visual-api-container-v2 {
    width: 450px;
    height: 225px;
    border-radius: 24px;
}

@media (max-width: 768px) {
    .cabinet-features .visual-api-container-v2 {
        width: 100%;
    }
}

.cabinet-features .title-text {
    text-align: center;
    font-family: Inter Tight, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -0.48px;
    color: var(--text-main);
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .cabinet-features .title-text {
        font-size: 28px;
    }
}

.cabinet-features .description-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 150%;
    margin-top: 10px;
    white-space: pre-wrap;
}

.visual-api-container {
    border-radius: 24px;
    padding: 16px 0 16px 20px;
    background: var(--surface-background-secondary);
    margin-top: 18px;
    position: relative;
}

.visual-api-container::after {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 18px;
    content: '';
    background: url("/ssr-landing-static/oreo/images/api.svg") no-repeat;
    background-size: contain;
}

.visual-api-container p {
    color: var(--text-main);
    font-family: "PT Root UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
}

.response-container {
    padding: 11px 15px;
    white-space: pre-wrap;
    font-family: "JetBrains Mono", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    border-radius: 16px 0 0 16px;
}

.stats-container {
    border-radius: 24px;
    padding: 22px 20px;
    background: var(--surface-background-secondary);
    margin-top: 18px;
    position: relative;
}

.stats-container::after {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 18px;
    content: '';
    background: url("/ssr-landing-static/oreo/images/stats.svg") no-repeat;
    background-size: contain;
}

.stats-container .title {
    color: var(--text-main);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.4px;
}

.stats-container .text {
    margin-top: 4px;
    color: var(--text-main);
    position: relative;
    font-family: "PT Root UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    width: fit-content;
}

.stats-container .text::after {
    width: 8px;
    height: 8px;
    content: '';
    right: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 1000px;
    position: absolute;
}

.stats-container .text.green::after {
    background: #12C78C;
}

.stats-container .text.yellow::after {
    background: #FFC000;
}

.stats-container > div:not(:first-child) {
    margin-top: 40px;
}

/* reviews */

.reviews-container {
    margin-top: 50px;
    width: 100%;
}

.small-reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .small-reviews-container {
        grid-template-columns: 1fr;
    }
}

.hint-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.hint-text {
    position: relative;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    padding-left: 42px;
    color: var(--text-secondary);
}

.hint-text::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 32px;
    height: 32px;
    mask: url("/ssr-landing-static/oreo/images/heart.svg") no-repeat;
    -webkit-mask: url("/ssr-landing-static/oreo/images/heart.svg") no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-secondary);
}

.review {
    display: flex;
    flex-direction: column;
    gap: 135px;

    background: var(--surface-background-secondary);
    border-radius: 16px;
    padding: 18px;
}

@media (max-width: 768px) {
    .review {
        gap: 30px;
    }
}

.author-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.author-name {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%; /* 18px */
    text-transform: lowercase;
}

.social-network-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-network-icon {
    width: 24px;
    height: 24px;
}

.network-name {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 90%;
}

.review-container {
}

.review-container p {
    color: var(--text-main);
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 44px */
    letter-spacing: -0.4px;
    white-space: pre-wrap;
}

@media(max-width: 768px) {
    .review-container p {
        font-size: 28px;
        font-weight: 500;
    }
}

/* FAQ */
.questions-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 50px;
    width: 100%;
}

.question-container {
    padding: 25px;
    border-radius: 16px;
    width: 100%;
    position: relative;
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-S);
    cursor: pointer;
}

.faq-title {
    color: var(--text-main);
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 90%;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 20px;
    }
}

.expanded-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
}

.expanded-text span {
    padding-top: 8px;
}

.question-container.active .expanded-text {
    max-height: 190px;
    padding-top: 90px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 25px;
    top: 25px;
    mask: url("/ssr-landing-static/oreo/images/arrow.svg") no-repeat;
    -webkit-mask: url("/ssr-landing-static/oreo/images/arrow.svg") no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-main);
    transition: transform 0.3s ease-in-out;
}

.question-container.active .arrow-icon {
    transform: rotateZ(0);
}

.arrow-icon.inactive {
    transform: rotateZ(180deg);
}

/* Reg promotion */
.registration-container {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-S);
}

.registration-container > a {
    display: block;

    margin-top: 0;
}

@media (max-width: 768px) {
    .registration-container {
        flex-direction: column;
        gap: 26px;
        text-align: center;
    }
}

.title-text {
    color: var(--text-main);
    font-feature-settings: 'ss02' on;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
}

.description-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;

    margin-top: 5px;
}

.desktop-icon {
    margin-left: 10px;
    font-size: 24px;
}

.cabinet-preview .order-card-container {
    height: 470px;
    margin-bottom: 0;
}

.cabinet-preview .order-card-container .card-container {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .cabinet-preview .order-card-container {
        position: relative;
        height: 500px;

        margin-top: 20px;
        margin-bottom: 0;
    }

    .cabinet-preview .order-card-container > div {
        height: 480px;
        bottom: unset;
        top: 20px;
        position: relative;

        width: 100%;
        max-width: 320px !important;
        min-width: unset;
    }
}
