.cookie-popup {
    display: none
}
.cookie-popup__window {
    /*width: 42rem;*/
    background-color: #fff;
    border-radius: 1.667rem;
    padding: 20px;
    align-items: center;
    gap: 1rem;
    position: fixed;
    left: 8rem;
    bottom: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .25);
    z-index: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.cookie-popup__text {
    line-height: 120%
}
.cookie-popup .button {
    background: #ffa700;
    display: flex;
    padding: 12px 24px;
    border-radius: 24px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
}

.cookie-popup .button:hover {
    background-color: #000;
}
.cookie-popup.is-active {
    display: block
}

@media screen and (max-width: 767px) {
    .cookie-popup__window {
        width: calc(100% - 2rem);
        flex-direction: column;
    
    }
    .cookie-popup__window {
        left: 1rem;
        bottom: 3rem;
    }
}