.geolocation {
    position: absolute;
    top: 12px;
    left: 13%;
    border: 2px solid rgb(208, 208, 208);
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
    background: rgb(255, 255, 255);
    padding: 15px 15px;
    width: 300px;
    display: none;
    z-index: 2;
}

.geolocation.active {
    /*display: block;*/
}

.geolocation-title {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.geolocation-title__text {
    color: rgba(0, 0, 0, 0.8);
    font-family: PT Sans, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0;
}

.geolocation-title__city {
    color: rgba(0, 0, 0, 0.8);
    font-family: PT Sans, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
}

.geolocation-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.geolocation-button {
    color: rgb(34, 168, 79);
    font-family: PT Sans, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: 0;
    border-radius: 8px;
    background: rgb(255, 255, 255);
    padding: 5px 10px;
    cursor: pointer;
}

.geolocation-button.active {
    cursor: unset;
    color: rgb(255, 255, 255);
    background: rgb(34, 168, 79);
}

.geolocation-button:hover {
    color: rgb(255, 255, 255);
    background: rgb(34, 168, 79);
}

.geolocation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.geolocation-choose {
    display: none;
}

.geolocation-choose .geolocation-body {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.geolocation-divider {
    background: rgb(34, 168, 79);
    width: 2px;
    height: 37px;
}

.geolocation-city {
    display: flex;
    align-items: center;
    gap: 5px;
}

.geolocation-region .geolocation-title {
    flex-wrap: wrap;
}

.geolocation-region {
    display: none;
}

.geolocation-region.active {
    display: block;
}

.geolocation-choose {
    display: none;
}

.geolocation-choose.active {
    display: block;
}

.geolocation-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M11 11L1 1M1 11L11 1' stroke='%23C4C4C4' stroke-width='2'/%3e %3c/svg%3e") 0 0 no-repeat;
    cursor: pointer;
}

.geo-modal-point {
    height: 40px;
    margin: 0;
    display: flex;
    align-items: center;
}

.geo-modal-point svg {
    width: 14px;
    height: 15px;
}

.geo-modal-switch {
    text-decoration: none;
    border: none;
    transition: .2s ease-in-out;
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-family: PT Sans, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 29px;
}

.geo-modal-switch:hover {
    opacity: 0.7;
}

.geo-select-wrap {
    position: relative;
    font-family: 'PT Sans Narrow', sans-serif;
    top: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: 0;
    color: rgba(255, 255, 255, .8);
    line-height: 26px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .geo-modal-point {
        height: unset;
    }

    .geo-modal-point svg {
        height: 14px;
        width: 14px;
    }

    .geo-select-wrap {
        font-family: 'PT Sans Narrow', sans-serif;
        top: 0;
        left: 0;
        z-index: 1;
        color: rgba(255, 255, 255, .8);
        vertical-align: top;
        line-height: 30px;
        font-size: 13px;
        display: flex;
        height: unset;
        gap: 5px;
    }

    .geo-modal-switch {
        color: rgba(255, 255, 255, .8);
        border: none;
        color: rgb(255, 255, 255);
        font-family: PT Sans, serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 17px;
        text-transform: capitalize;
    }

    .geo-modal-switch:hover {
        color: rgba(255, 255, 255, 1);
    }

    .geolocation {
        left: 0;
        right: 0;
        margin: auto;
    }
}