.location-popup__container {
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 2;
    max-width: 420px;
    width: 100%;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #DEDEDE;
}

.location-popup__container .location-popup__title {
    display: block;
    padding: 0 30px 20px 0;
    font: 500 26px/31px 'Oceanic Grotesk Compact', sans-serif;
    color: #1E1E1E;
}

.location-popup__container .location-popup__buttons {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.location-popup__container .location-popup__buttons > button {
    width: 100%;
}

.location-popup__container span.location-popup__close-cross {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.location-popup__container span.location-popup__close-cross img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.button__accept-fade_background {
    display: none;
}

@media screen and (max-width: 767px) {
    .location-popup__container {
        top: 50px;
        padding: 14px;
    }

    .location-popup__container .location-popup__title {
        font-size: 18px;
        line-height: 22px;
        padding:  0 20px 16px 0;
    }

    .location-popup__container span.location-popup__close-cross {
        top: 17px;
        right: 14px;
        width: 16px;
        height: 16px;
    }
}

@-webkit-keyframes background {
    0% {
        background-size: 100%
    }
    to {
        background-size: 10000%
    }
}

@keyframes background {
    0% {
        background-size: 100%
    }
    to {
        background-size: 10000%
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes slide {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
