@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Benzin';
    src: url('Benzin/Benzin-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Benzin';
    src: url('Benzin/Benzin-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.font-benzin {
    font-family: 'Benzin', sans-serif;
    /* Якщо хочете семіболд: */
    font-weight: 600;
}


:root {
    --espeso-brown: #b36b2f;
    --red: #B53D34;
    --light-red: #d64b41;
    --light-green: #d4eec9;
    --silver: #a8a8a8;
    --latte: #fac078;
    --light-silver: #d8d8d8;
}

/* Скидання відступів і базові налаштування */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    /* Можна змінити на інший шрифт */
}

/* Загальний фон і колір тексту */
body {
    background-color: rgba(255, 255, 255, 0);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow-x: hidden;


}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/red_circle.png");
    background-size: 1200px;
    background-repeat: no-repeat;
    opacity: 0.05;
    /* Зменшення прозорості */
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.preload {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 15;

}

.preload::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    /*background-image: url("/static/thin_line_coffee_beans_pattern.jpg");*/
    background-size: 600px;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: 16;
}

.loader {
    margin-top: 20px;
    /* Відступ між логотипом та лоадером */
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 17;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.preload-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 17;
    width: 30vw;
    filter: drop-shadow(4px 5px 8px rgba(0, 0, 0, 0.34));
}

.size-logo {
    position: relative;
    max-width: 30vw;
}

.decoration {
    position: absolute;
    left: 50%;
    top: -0.25em;
    transform: translateX(-50%);
    width: 98vw;
    height: 0.5em;
    border-radius: 4em;
    background-color: var(--red);
    z-index: 4;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 0 140px;
    border-bottom: 1px solid #ddd;
    background-color: rgb(255, 255, 255);
    height: 100px;
    position: relative;
    width: 100vw;
    margin: 0 0 0 0;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);

}

/* Меню (ліворуч) */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2em;
    transition: 0.5s;
}


.main-nav a.active {
    color: var(--red);
    font-weight: 600;
}

.main-nav a:hover {
    color: #c33a2d;
    font-size: 1.24rem;
    transition: 0.5s;

}

/* Центр: логотип */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    max-height: 65px;
    position: relative;
    top: 5px
}


/* Правий блок: кошик */
.header-right {
    display: flex;
    align-items: center;
}

.cart-link {
    position: relative;
    display: inline-block;
}

.cart-link img {
    height: 32px;
    width: auto;
}

.cart-link:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--red);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Приховує бургер на великих екранах */
.burger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5;
    color: black;
}

.burger-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
}

.burger-img img {
    object-fit: cover;
    width: 100%;
}

/* Сайд-меню */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 220px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    padding-top: 100px;
    transition: left 0.3s ease;
    z-index: 4;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu li {
    padding: 16px;
    border-bottom: 1px solid #ddd;
}

.side-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
}

/* Активне меню */
.side-menu.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.close-btn:hover {
    color: var(--light-red);
}

/* Адаптив для мобільного */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .top-bar {
        padding: 0 16px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        position: static;
        transform: none;
        text-align: center;
        flex: 1;
    }

    .logo img {
        max-height: 60px;
    }

    .burger,
    .header-right {
        flex: 0 0 auto;
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80vw;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(12, 12, 12, 0.10) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: -5px -5px;
}

.main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 50px;
    padding: 4vh 0;
    width: 68vw;
    position: relative;
    margin-bottom: 4vh;
}

.main-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    width: 45vw;
    white-space: wrap;
    gap: 4vh;
}

.main-left-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    width: 45vw;
    white-space: wrap;
    /*gap: 1vh;*/
}

.main-left-top h2 {
    width: 100%;
    text-align: start;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    /*margin-bottom: 2vh;*/
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    word-spacing: 2px;
}

.main-text h2 {
    width: 100%;
    text-align: start;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 2vh;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    word-spacing: 2px;

}

.main-text h3 {
    width: 100%;
    text-align: start;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    word-spacing: 2px;
    font-size: 1.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    /*margin-bottom: 4vh;*/
}

.main-text p {
    font-family: 'Benzin', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: start;
    line-height: 4vh;
    letter-spacing: -1px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    word-spacing: 2px;
}

.main-left h2 {
    width: 100%;
    text-align: start;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 2vh;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    word-spacing: 2px;

}

.main-left p {
    line-height: 4vh;
    font-family: 'Benzin', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: start;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.10);
    word-spacing: 0px;
}

.main-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45vw;
    /*height: 100%;*/
    flex-direction: column;
    align-self: stretch;
    /*gap: 15vh;*/
    /*padding-top: 5vh;*/

}

.main-photo {
    width: 90%;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

.main-photo img {
    object-fit: cover;
    width: 100%;
}

.padding-top {
    padding-top: 16vh;
}

.main-logo {
    width: 80%;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    /*border-radius: 1em;*/
    /*box-shadow: 0 1px 30px rgba(0, 0, 0, 0.15);*/
}

.main-logo img {
    object-fit: cover;
    width: 100%;
    filter: drop-shadow(4px 5px 8px rgba(0, 0, 0, 0.34));
}

.italic {
    font-style: italic;
}

.margin-bottom {
    margin-bottom: 4vh;
}

.con-quote {
    background: rgba(214, 75, 65, 0.8);
    padding: 10px 20px;
    border-radius: 0.8em;
}

.margin-top {
    margin-top: 2vh;
}

#owner {
    display: flex;
}

@media screen and (max-width: 768px) {
    .wrapper {
        width: 94vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main {
        flex-direction: column-reverse;
        width: 100%;
    }

    .main-left-top {
        padding: 0 3vw;
    }

    .main-text {
        padding: 0 3vw;
    }

    .main-left,
    .main-right {
        width: 100%;
    }

    .main-left h2,
    .main-text h2 {
        font-size: 1.2rem;
        white-space: wrap;
    }

    .main-text h3 {
        font-size: 1rem;
        white-space: wrap;
        margin-top: 4vh;
        margin-bottom: 2vh;
    }

    .main-left p,
    .main-text p {
        font-size: 0.9rem;
        line-height: 3vh;
        white-space: wrap;
        letter-spacing: 0.05em;
        font-weight: 500;
    }

    .con-quote {
        white-space: wrap;
        margin-right: 2vw;

    }

    #owner {
        flex-direction: column;
    }
}

.contacts {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    gap: 40px;
    margin-bottom: 4vh;
}

.footer-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: Rubik, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 4vh auto 0;
    opacity: 0.8;
    max-width: 1200px;
    gap: 30px;
}

.contacts-footer {
    display: flex;
    flex-direction: row;
    width: auto;
    align-items: center;
    gap: 30px;
}

.contacts p {
    font-family: Unbounded, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.9;
    white-space: nowrap;
}

.style {
    text-decoration: none;
    color: #000000;
    opacity: 0.9;
    font-family: Unbounded, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    white-space: nowrap;

}

.style.active {
    opacity: 0.9;
    font-family: Unbounded, sans-serif;
    font-weight: 400;
    color: black;
    text-decoration: none;
}

.style a {
    text-decoration: none;
    color: black;
}

.style a:hover,
.style a:visited,
.style a:active,
.style a:focus {
    text-decoration: none;
    color: black;
}

.navigator {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

}

.mg-10-bot {
    margin-bottom: 3vh;
}

.navigator a {
    text-decoration: none;
    text-underline: none;
    color: var(--light-red);
    padding: 0.5vh 0;
    font-weight: 500;
    font-family: "Unbounded", sans-serif;
    font-size: 1.2rem;
    transition: 0.5s;

}

.navigator a:hover {
    font-size: 1.22rem;
    transition: 0.5s;
    color: var(--red);
}

.payment-icons img {
    width: 30px;
    height: auto;
    margin: 0 5px;
}

.about-icon img {
    width: 50px;
    height: auto;
    margin: 0 5px;
}

.main-text,
.navigator,
.contacts {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .main-left-top {
        display: grid;
        grid-template-columns: 1fr auto;
        /* ліва колонка + контакти справа */
        gap: 20px;
    }

    .main-text,
    .navigator {
        grid-column: 1;
        /* ліва колонка */
        white-space: nowrap;
    }

    .contacts {
        grid-column: 1;
        /* праворуч */
        text-align: right;
        flex-direction: row;
        align-items: center;

        gap: 10px;
    }

    .contacts-info {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .navigator {
        margin-top: 10px;
    }

}


.decoration-1 {
    /*position: absolute;*/
    /*left: 50%;*/
    /*top: -0.25em;*/
    /*transform: translateX(-50%);*/
    width: 90%;
    height: 0.2em;
    border-radius: 4em;
    background-color: var(--red);
    z-index: 4;
    margin-bottom: 4vh;
}

.about-bottom {
    /*border-top: 2px dashed var(--espeso-brown);*/
    /*border-bottom: 2px dotted var(--espeso-brown);*/
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    /*background-color: #fdfdfd;*/
    text-align: center;
    /*border-top: 1px solid #eee;*/
}

.about-section {
    max-width: 300px;
    margin: 20px;
}

.about-section h3 {
    font-family: Unbounded, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0;
}

.about-section p {
    font-family: Unbounded, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #444;
}

.about-icon {
    font-size: 32px;
    color: var(--red);
    margin-bottom: 10px;
}

.location-section .map-image {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    margin-top: 10px;
}

.about-location-text {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    /*border-top: 2px dotted var(--espeso-brown);*/
    background-color: #fff;
}

.about-location-text div {
    margin: 20px;
    max-width: 300px;
}

.about-location-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

footer {
    /*background: linear-gradient(*/
    /*        145deg,*/
    /*        #dcdcdc 0%,*/
    /*        #cfcfcf 10%,*/
    /*        #bfbfbf 20%,*/
    /*        #a9a9a9 30%,*/
    /*        #bfbfbf 40%,*/
    /*        #cfcfcf 50%,*/
    /*        #dcdcdc 60%,*/
    /*        #cfcfcf 70%,*/
    /*        #bfbfbf 80%,*/
    /*        #a9a9a9 90%,*/
    /*        #bfbfbf 95%,*/
    /*        #dcdcdc 100%*/
    /*);*/
    background: white;
    /*background-blend-mode: soft-light;*/
    padding: 60px 40px 20px 40px;
    border-top: 1px solid #ddd;
    width: 100%;
    color: #1f1f1f;
    /*background-image: url("/static/bg-coffee.png");*/
    /*background-size: 400px;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 3;

}

.footer-content {
    width: 100%;
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: Rubik, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 4vh;
    opacity: 0.6;

}

.footer-content p {
    text-align: center;
    margin-left: 2vw;
}


.payment-icons {
    cursor: pointer;
    transition: 0.3s;
}

.payment-icons:hover {
    transform: scale(1.1);
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.5));
    transition: 0.3s;
}

.payment-icons img {
    width: 30px;
    height: auto;
    margin: 0 5px;
}

#contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    #contacts {
        flex-direction: column;
    }

    .payment-icons {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(50vw - 60px);
    height: 100%;
    gap: 20px;

}

.map-container {
    width: calc(50vw - 60px);
    height: 54vh;
    border: 2px solid #ddd;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-right {
    background: rgba(236, 236, 236, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 54vh;
    margin: 2vh 0;
    gap: 20px;
    width: calc(50vw - 60px);
    padding: 30px 20px 0 20px;
    border-radius: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: -2vh;

}

.input {
    width: 40vw;
    height: 44px;
    background-color: #05060f0a;
    border-radius: .5rem;
    padding: 0 1rem;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
}

.input-text {
    width: 40vw;
    height: 14vh;
    background-color: #05060f0a;
    border-radius: .5rem;
    padding: 0 1rem;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
}

.label {
    display: block;
    margin-bottom: .3rem;
    font-size: .9rem;
    font-weight: bold;
    color: #05060f99;
    transition: color .3s cubic-bezier(.25, .01, .25, 1) 0s;
}

.input:hover,
.input:focus,
.input-group:hover .input {
    outline: none;
    border-color: #05060f;
}

.input-group:hover .label,
.input:focus {
    color: #05060fc2;
}


.submit-button {
    background-color: #dddddd;
    border: none;
    color: #1b1b1b;
    cursor: pointer;
    outline: none;
    border-radius: 1.8em;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;

}

.submit-button:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
    background-color: #ececec;
    transform: translateY(2px) scale(1.05);
    transition: 0.3s;

}



/* === CART === */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 98;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-items {
    padding: 10px 12px;
    overflow-y: auto;
    flex: 1;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.cart-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-title {
    font-weight: 700;
    font-size: .95rem;
}

.cart-opts {
    color: #666;
    font-size: .85rem;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 4px 8px;
}

.cart-qty button {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.cart-qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.cart-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: .9rem;
}

.cart-remove:hover {
    color: var(--light-red);
}

.cart-footer {
    border-top: 1px solid #eee;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary .cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cart-btn {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.cart-btn.primary {
    background: var(--light-red);
    border-color: var(--light-red);
    color: #000;
}

.cart-btn.primary:hover {
    transform: translateY(-1px);
}

.cart-btn.ghost:hover {
    background: #f6f6f6;
}

@media (max-width: 480px) {
    .cart-item {
        grid-template-columns: 64px 1fr auto;
    }

    .cart-thumb {
        width: 64px;
        height: 64px;
    }
}

.cart-count.pulse {
    animation: bump .4s ease;
}

@keyframes bump {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    #contacts {
        flex-direction: column;
        gap: 8vh;
    }

    .footer-left {
        width: calc(100vw - 60px);
        height: 50vh;
    }

    .map-container {
        width: calc(100vw - 60px);
    }

    .footer-right {
        width: calc(100vw - 60px);
        padding: 0 20px 0 20px;
        height: 50vh;
    }

    .input {
        width: calc(100vw - 100px);

    }

    .input-text {
        width: calc(100vw - 100px);
    }
}