.location-popup__container {
    position: absolute;
    transform: translateX(-29%);
    left: 29%;
    top: 19px;
    z-index: 2;
    max-width: 325px;
    max-height: 135px;
    padding: 26px 30px 30px 30px;
    background: #328a27;
    box-shadow: 0 0 20px rgba(23, 37, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    width: 325px;
    height: 153px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.location-popup__container .location-popup__title {
    display: block;
    margin: 0 0 15px 0;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-popup__container .location-popup__buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    column-gap: 10px;
}

.location-popup__container .location-popup__buttons > button:hover {
    box-shadow: 0 4px 8px rgb(255 255 255 / 25%);
}

.location-popup__container .location-popup__buttons > button {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #328a27;
    color: #328a27;
    border-radius: 20px;
    padding: 10px 16px;
    min-width: 128px;
    height: 40px;
    font-size: 18px;
    line-height: 20px;
}

.location-popup__container .location-popup__buttons button.button__change {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.location-popup__container button.button--1.button__accept.button__accept-fade {
    position: relative;
    border: 1px solid #328a27;
    border-radius: 20px;
    padding: 10px 16px;
    width: 127px;
    height: 40px;
    -webkit-transition: none;
    transition: none;
    color: #328a27;
    background: #FFFFFFFF;
    overflow: hidden;
}

.location-popup__container button.button--1.button__accept.button__accept-fade .button__accept-fade_background {
    background: #E2EECFFF;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 0
}
.location-popup__container button.button--1.button__accept.button__accept-fade .button__accept-fade_text {
    position: relative;
    z-index: 1;
}

.location-popup__container span.location-popup__close-cross {
    position: absolute;
    top: 8%;
    left: 98%;
    transform: translateX(-98%) translateY(-8%);
    cursor: pointer;
}

@media (max-width: 1100px) {
    .header-desktop.header-new-container .location-popup__container {
        display: none;
    }
}

@-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
    }
}
