@import url(normalize.css);
@import url(components.css);

:root {
    --header-height: 80px;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    padding-top: var(--header-height);
}

* {
    box-sizing: border-box;
    font-family: Inter !important;
}

.app {
    display: flex;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.site-header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 1000;
    background: #FFF;
    padding-top: 16px;
    padding-bottom: 16px;
}

.site-header .lang {
    display: flex;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: #F5F5F5;
}

.site-header nav {
    display: flex;
    margin-left: auto;
    margin-right: 50px;
    overflow-x: auto;
    scrollbar-width: none; /* hide scrollbar in Firefox */
    -ms-overflow-style: none; /* hide scrollbar in IE/Edge */
}

.site-header nav::-webkit-scrollbar {
    display: none; /* hide scrollbar in Chrome/Safari */
}

.site-header nav a {
    display: flex;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
}

.site-header a {
    color: var(--Color-Static-Black, #000);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
    letter-spacing: -0.4px;
    text-decoration: none;
}

.hero .hero-description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 112px;
}

.hero .hero-description h1 {
    color: var(--Color-Static-Black, #000);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%; /* 55.68px */
    max-width: 860px;
    margin: 20px 0 16px;
}

.hero {
    overflow: hidden
}

.adaptive-drone-bag {
    display: none;
    transform-origin: top center;
    animation: droneBagSway 6.5s ease-in-out infinite;
    will-change: transform;
}

.hero .hero-description h3 {
    color: #757575;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
    letter-spacing: -0.4px;
    margin: 0;
}

.hero .hero-description-wrapper {
    margin: auto;
    display: flex;
    flex-direction: column;
}

.hero .hero-name {
    margin: 0 auto;
    width: max-content;
    color: var(--Color-Text-Neutral-White, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    display: flex;
    padding: var(--inset-sm, 8px) var(--stack-md, 12px);
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-old-2-xl, 20px);
    background: var(--Color-Static-Black, #000);
    box-shadow: 0 0 1px 0 var(--NeutralAlphaInvert-NI05, rgba(44, 58, 114, 0.05)), 0 2px 6px 0 var(--NeutralAlphaInvert-NI05, rgba(44, 58, 114, 0.05)), 0 10px 18px 0 var(--NeutralAlphaInvert-NI10, rgba(58, 76, 146, 0.10));
}

.hero video {
    display: block;
    width: 1200px;
    max-width: 100%;
    height: 480px;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    margin: 60px auto 120px;
}

.delivered-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 549px;
    max-width: 100%;
    justify-items: center;
    align-items: center;
    gap: 56px;
    margin: 48px auto 0;
}

.delivered-images img {
    width: 182.333px;
    height: 129.912px;
    aspect-ratio: 182.33 / 129.91;
    display: block;
}

.arbuz-link {
    color: var(--Color-Text-Neutral-Primary, #0F0F0F);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.delivered {
    margin-bottom: 120px;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
    margin-top: 64px;
}

.advantage-description {
    color: var(--sds-color-text-default-secondary, #757575);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
    letter-spacing: -0.4px;
}

.advantage-title {
    color: var(--Color-Static-Black, #000);
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    letter-spacing: -1.2px;
}

.advantage-number {
    display: inline-block;
    color: var(--Color-Static-Black, #000);
    font-family: Inter;
    font-size: 96px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 96px */
    letter-spacing: -1.2px;
}

.advantage-card {
    border-radius: 32px;
    background: var(--Color-BG-Neutral-Primary, #F7F7F7);
    height: 491px;
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 100%;
}

.advantage-card-content {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-card-content--top {
    margin-top: 0;
}

.distance-note {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.distance-value {
    color: #27C840;
    font-family: Inter, sans-serif;
    font-size: 128px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.2px;
}

.distance-unit {
    color: #27C840;
    font-family: Inter, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.2px;
}

.advantage {
    margin-bottom: 120px;
}

.where-we-delivered {
    margin-bottom: 120px;

    .section-badge {
        margin-left: 0;
    }
}

.section-side {
    max-width: 532px;

    .section-title {
        text-align: left;
    }

    .section-subtitle {
        text-align: left;
        width: 290px;
    }
}

.where-we-delivered-wrapper {
    display: flex;
    justify-content: space-between;
}

.section-fom form {
    display: flex;
    width: 532px;
    max-width: 100%;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 24px;
    background: #F7F7F7;
    position: relative;
}

#delivery-cta {
    text-align: center;
    width: 100%;
    margin: 4px 0;
}

.section-fom input {
    color: #5F6D70;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
    border-radius: 16px;
    border: 1px solid var(--Color-BG-Neutral-Tertiary, #D1D1D6);
    background: var(--Color-Static-White, #FFF);
    display: flex;
    padding: 16px;
    align-items: center;
    align-self: stretch;
    width: 100%;
}

.section-fom button {
    border-radius: var(--border-radius-400, 16px);
    background: #27C840;
    display: flex;
    height: 56px;
    padding: 0 var(--spacing-600, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-300, 12px);
    align-self: stretch;
    overflow: hidden;
    color: var(--text-static-white-primary, #FFF);
    text-align: center;
    text-overflow: ellipsis;
    font-size: var(--font-size-200, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-250, 22px);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.section-fom {
    position: relative;
}

.fade-in {
    animation: fadeSlideIn 220ms ease forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.where-we-delivered .section-side,
.where-we-delivered .section-fom {
    animation: fadeSlideIn 320ms ease forwards;
}

.address-unavailable-actions {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
}

.address-unavailable-actions .secondary {
    background: #F5F5F5;
    color: #0F0F0F;
    border: 1px solid var(--Color-BG-Neutral-Tertiary, #D1D1D6);
}

.address-suggestions {
    top: 85px;
    position: absolute;
    margin-top: 12px;
    width: calc(100% - 64px);
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid var(--Color-BG-Neutral-Tertiary, #D1D1D6);
    border-radius: 12px;
    background: var(--Color-Static-White, #FFF);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 9;
}

.address-bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    z-index: 1200;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--surface-general-overlay, rgba(0, 0, 0, 0.40));
}

.address-bottom-sheet-overlay.is-visible {
    display: flex;
}

.address-bottom-sheet {
    width: 100%;
    max-width: 520px;
    border-radius: 16px 16px 0 0;
    background: #FFF;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.16);
    padding: 12px 16px 20px;
    transform: translateY(100%);
    transition: transform 220ms ease;
    display: flex;
    flex-direction: column;
    gap: 12px;


}

.address-bottom-sheet.is-open {
    transform: translateY(0);
}


.address-bottom-sheet__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    height: 42px;
}


.address-bottom-sheet__close {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #0F0F0F;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;


    color: var(--text-brand-default, #45A565);

    /* Body/14-Semi-Bold */
    font-size: var(--font-size-150, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-150, 18px); /* 128.571% */
}

.address-bottom-sheet__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-bottom-sheet__form input {
    border: none;
    border-radius: var(--border-radius-400, 16px);
    background: url('../images/icons/search.svg') 16px center / 20px 20px no-repeat,
    url('../images/icons/close.svg') calc(100% - 16px) center / 20px 20px no-repeat,
    var(--component-universal-primary-default, rgba(0, 0, 0, 0.04));
    padding: 12px 44px;
    color: var(--text-general-primary, #171717);
    font-size: var(--font-size-200, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-250, 22px); /* 137.5% */
}

.address-bottom-sheet-suggestions {
    position: static;
    margin-top: 0;
    width: 100%;
    max-height: 46vh;
}

.address-sheet-open {
    overflow: hidden;
}

.address-search-form {
    .section-subtitle {
        text-align: left;
    }

}

.address-suggestions-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.address-suggestion {
    padding: 12px 16px;
    color: #0F0F0F;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    white-space: normal;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.address-suggestion-title {
    color: #0F0F0F;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 22px;
}

.address-suggestion-description {
    overflow: hidden;
    color: var(--text-general-secondary, rgba(0, 0, 0, 0.56));
    text-overflow: ellipsis;
    font-size: var(--font-size-150, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-150, 18px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.address-suggestion:hover,
.address-suggestion:focus-visible {
    background: #F5F5F5;
    outline: none;
}

.delivery-smile {
    width: 64px;
    height: 64px;
    margin: 12px 0;
    display: none;
}

.delivery-cta {
    display: none;
}

@keyframes droneBagSway {
    0% {
        transform: rotate(-4deg) translateY(0);
    }

    25% {
        transform: rotate(0deg) translateY(1px);
    }

    50% {
        transform: rotate(4deg) translateY(0);
    }

    75% {
        transform: rotate(0deg) translateY(-1px);
    }

    100% {
        transform: rotate(-4deg) translateY(0);
    }
}

.how-to-meet-the-drone {
    padding: 32px;
    border-radius: 32px;
    background: var(--Color-BG-Neutral-Primary, #F7F7F7);
    margin-bottom: 120px;

    .section-badge {
        margin-left: 0;
    }

    .section-title {
        text-align: left;
    }

    .advantages-wrapper {
        margin-top: 38px;
    }

    .advantage-card {
        background: var(--Color-Static-White, #FFF);
        box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0.04) inset;
    }
}

.be-the-first {
    padding: 60px;
    border-radius: 32px;
    background: #27C840 url("../images/feedback form descktop.png") center/cover no-repeat;
    margin-bottom: 120px;

    .section-title {
        text-align: left;
        color: #FFF;
        margin: 0;
        margin-bottom: 32px;
    }
}

.be-the-first form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    align-items: stretch;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 24px;
}

.be-the-first input {
    color: #5F6D70;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
    border-radius: 16px;
    border: 1px solid var(--Color-BG-Neutral-Tertiary, #D1D1D6);
    background: var(--Color-Static-White, #FFF);
    padding: 16px;
    width: 100%;
}

.be-the-first input::placeholder {
    color: #5F6D70;
    opacity: 1;
}

.be-the-first button {
    border-radius: 21px;
    border: 2px solid #FFF;
    background: #27C840;
    display: flex;
    height: 56px;
    padding: 0 var(--spacing-600, 24px);
    justify-content: center;
    align-items: center;
    gap: var(--spacing-300, 12px);
    align-self: stretch;
    overflow: hidden;
    color: var(--text-static-white-primary, #FFF);
    text-align: center;
    text-overflow: ellipsis;
    font-size: var(--font-size-200, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-250, 22px); /* 137.5% */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    cursor: pointer;
}

.be-the-first-description {
    color: var(--Color-Static-White, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.faq {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}

.faq-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    width: 100%;

    .section-title {
        text-align: left;
        margin: 0;
    }
}

.faq-description {
    margin: 8px 0 0;
    color: #4F5B5E;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
    width: 100%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
    border-bottom: 1.003px solid var(--Neutral-N200, #ECEEF4);
    padding-bottom: 24px;
}


.faq-item.is-open {
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    padding: 0;
    border: none;
    background: transparent;

    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 142%; /* 28.4px */
    text-align: left;
    cursor: pointer;

    color: var(--Color-Static-Black, #000);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 142%; /* 28.4px */
}

.faq-question-text {
    color: var(--Color-Static-Black, #000);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 142%; /* 28.4px */
}

.faq-icon {
    width: 16px;
    height: 9px;
    display: grid;
    place-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.faq-icon img {
    display: block;
    width: 16px;
    height: 9px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon img {
    transform: rotate(0deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.38s ease, opacity 0.32s ease;
    will-change: height;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
}

.faq-answer-content {
    color: var(--Color-Text-Neutral-Tertiary, #636366);

    /* Body/Base - Regular */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
}

.site-footer {
    padding-top: 32px;
    padding-bottom: 24px;
    background: var(--Color-Static-Black, #000);
    overflow: hidden;
    width: 100%;
}

.site-footer-links {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-bottom: 32px;
}

.site-footer-links nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer-links nav a {
    color: var(--Color-Text-Neutral-White, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.4px;
    text-decoration: none;
}

.site-footer-copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 34px;

    .copyright {
        color: rgba(255, 255, 255, 0.60);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 157.143% */
        letter-spacing: -0.4px;
        padding-top: 24px;
    }
}

.adaptive-map {
    display: none;
}

@media (width <= 1366px) {
    .container {
        max-width: 900px;
        padding: 0 16px;
    }

    .site-header .header-inner {
        flex-wrap: wrap;
        row-gap: 12px;
        align-items: center;
    }

    .site-header nav {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        gap: 8px;
        margin: 4px 0 0;
        padding: 0 16px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: none;
        z-index: 1;
    }

    .site-header nav a {
        padding: 8px 12px;
    }

    .site-header .lang {
        order: 2;
    }

}


@media (width <= 1020px) {
    .hero .hero-description h1 {
        font-size: 32px;
        line-height: 116%; /* 37.12px */
        margin-left: 16px;
    }

    .section-title {
        font-size: 32px;
        line-height: 116%; /* 37.12px */
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .arbuz-link {
        font-size: 16px;
        line-height: 20px;
    }

    .delivered-images {
        width: 240px;
        gap: 24px;
    }

    .delivered-images img {
        width: 66px;
        height: 66px;
    }

    .hero video {
        margin-top: 32px;
        padding: 0 !important;
        margin-bottom: 96px;
    }

    .section-badge {
        div {
            font-size: 14px;
            line-height: 160%; /* 22.4px */
        }
    }

    .hero .hero-description {
        margin-top: 64px;
    }

    .advantages-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .site-header {
        padding-bottom: 0;
        border-radius: 0 0 12px 12px;
    }

    .site-header nav {
        border-radius: 0 0 12px 12px;
        overflow: scroll;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 16px;
        -webkit-overflow-scrolling: touch;
        background: var(--Color-BG-Neutral-Primary, #F7F7F7);

        a {
            white-space: nowrap;
            scroll-snap-align: start;
        }
    }

    .header-inner {
        position: relative;
        padding: 0 !important;
    }

    .lang {
        margin-right: 16px;
    }

    .header-logo {
        margin-left: 16px;
    }

    .where-we-delivered-wrapper {
        display: flex;
        flex-direction: column;
    }

    .faq {
        flex-direction: column;
    }

    .site-footer-links {
        img {
            width: 135px;
            height: 40px;
            aspect-ratio: 27/8;
        }

        border-bottom: 0;
        flex-direction: column;
    }

    .site-footer-links nav {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .site-footer-copyright {
        flex-direction: column-reverse;
    }

    .delivered {
        margin-bottom: 96px;
    }

    .advantages-wrapper {
        margin-top: 32px;
    }

    .advantage-number {
        font-size: 36px;
        line-height: 120%; /* 43.2px */
    }

    .advantage-title {
        font-size: 36px;
        line-height: 120%; /* 43.2px */
    }

    .advantage {
        margin-bottom: 96px;
    }

    .where-we-delivered {
        margin-bottom: 96px;

        .section-badge {
            margin-left: auto;
        }
    }

    .section-side {
        .section-title {
            text-align: center;
        }
    }

    .section-side {
        .section-subtitle {
            text-align: center;
            width: 100%;
        }
    }

    .how-to-meet-the-drone {
        padding-top: 24px;
        padding-bottom: 24px;

        .section-badge {
            margin-left: auto !important;
        }
    }

    .how-to-meet-the-drone {
        margin-bottom: 96px;

        .section-title {
            text-align: center;
        }
    }

    .be-the-first {
        margin-left: 16px;
        margin-right: 16px;
        padding: 24px;
        margin-bottom: 96px;
    }

    .faq-title {
        font-size: 16px;
        line-height: 142%; /* 22.72px */

        .section-title {
            margin-bottom: 32px;

            br {
                display: none;
            }
        }
    }

    .faq-answer-content {
        margin-top: 27px;
    }

    .faq-item {
        padding-bottom: 20px;
    }

    .faq {
        margin-bottom: 96px;
    }

    .site-footer-logos {
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
        padding-bottom: 24px;
    }

    .adaptive-map {
        display: block;
        width: 100%;
        height: auto;

    }

    .section-fom form {
        background: unset;
        padding: 0;
    }

    .adaptive-drone-bag {
        display: block;
        width: 31%;
        position: absolute;
        right: 16px;
        top: -55px;
    }

    .be-the-first {
        position: relative;
        overflow: hidden;

        form {
            grid-template-columns: repeat(1, minmax(0, 1fr));

            .be-the-first-description {
                order: 3;
            }

            button {
                order: 4;
            }
        }
    }

    .delivery-smile {
        margin-left: auto;
        margin-right: auto;
        width: 96px;
        height: 94px;
    }

    .address-bottom-sheet {
        height: 90vh;
    }

    .address-bottom-sheet-title {
        width: 199px;
        overflow: hidden;
        color: var(--text-general-primary, #171717);
        text-align: center;
        text-overflow: ellipsis;
        font-size: var(--font-size-200, 16px);
        font-style: normal;
        font-weight: 600;
        line-height: var(--line-height-250, 22px); /* 137.5% */
    }

    .address-bottom-sheet-suggestions {
        border: unset;
        background: unset;
        box-shadow: unset;

        .address-suggestion {
            padding-left: 0;
            padding-right: 0;
        }
    }

}

@media (width > 1020px) {
    .address-bottom-sheet-overlay {
        display: none !important;
    }
}
