:root {
  --btn-color-a: #ffc100;
  --btn-color-b: #272727;
  --gfon: linear-gradient(300deg, #dedede21, #ffffff47);
  --bfon: #1f1f1fe0;
  --opi-txt: #bababa;
}
    ::-webkit-scrollbar-thumb {
        /* Укажи цвет скроллбара */
        background: #FFA200;
        /* Укажи радиус скругления скроллбара */
        border-radius: 2px;
    }
    ::-webkit-scrollbar {
        /* Укажи ширину вертикального скроллбара */
        width: 2px;
        /* Укажи высоту горизонтального скроллбара */
        height: 0px;
        /* Укажи цвет фона под скроллбаром */
        background: #000000ba;
    }
    ::selection {
        background: #F7971F; /* Safari */
    }
    ::-moz-selection {
        background: #F7971F; /* Firefox */
    }
        body {
            font-family: "Roboto", sans-serif;
            margin: 0;
        }
        button {
            font-family: "Roboto", sans-serif;
        }
        .marker {
    width: 10vh;
    transform: translate(-5vh, -10vh);
    filter: drop-shadow(0.6vh 0.6vh 0.6vh #000000b8);
}
.delivery-switcher {
    display: flex;
    border: 0.2vh solid var(--btn-color-b);
    border-radius: 1vh;
    padding: 0.7vh 1.2vh;
    position: relative;
    z-index: 2;
    margin-top: 70vh;
    color: var(--opi-txt);
    margin-bottom: 1vh;
    margin-left: 1vh;
    overflow: auto;
    max-width: fit-content;
}

.switcher-item {
    padding: 1vh 3vh;
    cursor: pointer;
    border-radius: 1vh;
    transition: background 0.3s ease;
    user-select: none;
    white-space: nowrap;
}

.switcher-item.active {
    background: var(--btn-color-a);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #000000;
}
        #delivery-status {
            padding: 10px;
        }
#suggestions {
    display: none;
    z-index: 9999999;
    position: absolute;
    background-color: var(--btn-color-a);
    padding: 10px;
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.3);
    border-radius: 1vh;
    overflow: auto;
}
li {
    margin-bottom: 2vh;
    border-bottom: 2px solid rgb(0 0 0 / 6%);
}
        .container {
            display: flex;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            z-index: 9999;
            position: relative;
            max-width: 600px;
        }
        #form {
            padding: 20px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        #form input {
            padding: 10px;
            border: none;
            border-radius: 5px;
            width: calc(100% - 20px);
            background-color: var(--btn-color-b);
            color: #ffffff;
        }
        #form button {
            padding: 10px;
            background-color: #ff6f61;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        #form button:hover {
            background-color: #ff3b2f;
        }
        #map {
            width: 100%;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
        }
        .inputdelivery {
            display: flex;
            gap: 1vh;
        }
        .address-container {
            width: 400%;
        }
        #mapoverlay {
    z-index: 1;
    position: fixed;
    width: 100%;
    height: 100vh;
    display: none;
}