.section {
    margin: 0 auto;
    width: 91%;
    padding: 0 15px;
    max-width: 1162px;
    -webkit-box-sizing: border-box;
    position: relative;
    zoom: 1;
    color: black;
}

.chose-pickup {
    background-color: #c4ffc4;
    border-radius: 5px;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
}

.chose-pickup_map {
    height: 35px;
    width: 90px;
    padding: 5px;
    background-color: #c4ffc4;
    border-radius: 5px;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 15px;
}

.wrapper_stores {
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    border-radius: 20px;
    display: flex;
    width: 100%;
}

.pickups_list {
    max-height: 700px;
    overflow-y: scroll;

}
.pickups_list::-webkit-scrollbar {
    width: 20px;
}

.pickups_list::-webkit-scrollbar-track {
    background-color: transparent;
}

.pickups_list::-webkit-scrollbar-thumb {
    background-color: #a7ffc1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

.pickups_list::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

.left_menu {
    width: 30%;
    border-right: 1px solid #d6dee1;
    animation: fade 0.3s forwards;
    padding: 15px;
}
#map {
    width: 70%;
    border-radius: 30px;
    animation: fade 0.3s forwards;
}

ymaps {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.units {
    display: none;
    flex-direction: column;
    gap: 10px;
    animation: fade 0.3s forwards;
}

.go_to_map {
    width: 100%;
}
.go_to_map button {
    width: 100%;
    border: 0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.unit {
    /*display: none;*/
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 5px;
    background-color: #f6f6f6;
    cursor: pointer;
    border-radius: 5px;
    animation: fade 0.3s forwards;
}

.city_name{
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 5px;
    background: #f6f6f6;
    cursor: pointer;
    border-radius: 5px;
    animation: fade 0.6s forwards;
}

.back_btn {
    display:  flex;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}

.stores {
    display: none;
    font-size: 16px !important;
    line-height: 22px;
    color: #242424;
    animation: fade 0.3s forwards;
}
.shop {
    padding: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    animation: fade 0.3s forwards;
    /*backdrop-filter: blur(200px);*/
    border-radius: 5px;
}

.shop:hover {
    background: #f6f6f6;
}

.schedule {
    font-size: 14px;
    line-height: 20px;
    color: #8b8b8b;
    margin-top: 3px;
}

.unit-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.rotateUp {
    animation: rotateUp 0.5s forwards;
}

.rotateDown {
    animation: rotateDown 0.5s forwards;
}


.slider-maps {
    width: 100%;
    max-width: 800px;
    height: 250px;
    position: relative;
    overflow: hidden; /* <===  */
    border-radius: 15px;
}

.slide-map {
    width: 100%;
    max-width: 800px;
    height: 250px;
    position: absolute;
    transition: all 0.5s;
}

.slide-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    z-index: 10px;
    cursor: pointer;
    background-color: #fff;
    font-size: 18px;
}
.btn:active {
    transform: scale(1.1);
}
.btn-prev {
    top: 45%;
    left: 2%;
}

.btn-next {
    top: 45%;
    right: 2%;
}


:root {
    --primary-color: #2cd22a;
    --secondary-color: #e6f9e9;
}


.container_tabs {
    display: none;
    align-items: center;
    justify-content: center;
}
.tabs {
    display: flex;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
}
.tabs * {
    z-index: 2;
}
input[type="radio"] {
    display: none;
}
.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 200px;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
}
.notification {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-left: 0.75rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transition: 0.15s ease-in;
}
input[type="radio"]:checked + label {
    color: var(--primary-color);
}
input[type="radio"]:checked + label > .notification {
    background-color: var(--primary-color);
    color: #fff;
}
input[id="radio-1"]:checked ~ .glider {
    transform: translateX(0);
}

input[id="radio-2"]:checked ~ .glider {
    transform: translateX(100%);
}

.glider {
    position: absolute;
    display: flex;
    height: 54px;
    width: 200px;
    background-color: var(--secondary-color);
    z-index: 1;
    border-radius: 99px;
    transition: 0.25s ease-out;
}
@media (max-width: 700px) {
    .tabs {
        transform: scale(0.6);
    }
}


@media screen and (max-width: 500px) {
    .left_menu {
        border-right: 0;
        width: 100%;
    }
    .container_tabs {
        display: flex;
    }

    .slider-maps {
        height: 200px;
    }

    .wrapper_stores {
        height: 500px;
        font-size: 14px;
        overflow-y: scroll;
    }

    .pickups_list{
        overflow-y: unset;
    }

    .wrapper_stores::-webkit-scrollbar {
        width: 20px;

    }

    .wrapper_stores::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .wrapper_stores::-webkit-scrollbar-thumb {
        background-color: #a7ffc1;
        border-radius: 20px;
        border: 6px solid transparent;
        background-clip: content-box;
    }

    .wrapper_stores::-webkit-scrollbar-thumb:hover {
        background-color: #a8bbbf;
    }

    .section {
        width: 100%;
    }


    #map {
        width: 100%;
    }
}

.balloon_wraper {
    width: 100%;
}

@media screen and (min-width: 377px) and (max-width: 499px){
    .balloon_wraper {
        width: 70%;
    }
}

@keyframes rotateDown {
    from {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes rotateUp {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(180deg);
    }
}

@keyframes fade {

    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes leftToRight {
    from {
        transform: translate(-30px);
        /* filter: blur(10px); */
    }
}