.cookie-popup {
    display: none;
    background-color: #3758b2;
    border-radius: 20px;
    position: fixed;
    z-index: 11;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
    flex-direction: column;
    z-index: 99999;
    width: 90%;
    padding: 20px;
    bottom: 20px;
    right: 5%;
    gap: 12px;
    align-items: flex-start;
}

.cookie-popup--show {
    display: flex;
}

.cookie-popup .cookie-popup__button {
    --btn-height: 48px;
    --btn-border: 1px;
    --btn-px: 22px;
    --btn-py: 10px;
    --btn-radius: 0.5;
    
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    border-radius: calc(var(--btn-radius) * var(--btn-height));
    padding: var(--btn-py) var(--btn-px);
    background-color: #fff;
    color: #042171;
    border: #fff solid;
    border-color: #fff;
    text-align: center;
    line-height: 100%;
    cursor: pointer;
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
    outline: none;
    margin: 0;
}

.cookie-popup .cookie-popup__button:hover {
    opacity: 0.8;
}

@media(min-width: 768px) {
    .cookie-popup {
        flex-direction:row;
        width: 90%;
        padding: 16px;
        bottom: 40px;
        right: 5%;
        align-items: center;
    }
}

@media(min-width: 1024px) {
    .cookie-popup {
        width:789px;
        padding: 24px;
        bottom: 60px;
        right: 40px;
    }
}

@media(min-width: 1440px) {
    .cookie-popup {
        width:846px;
        padding: 24px 20px;
    }
}

@media(min-width: 1920px) {
    .cookie-popup {
        width:1076px;
        padding: 30px;
        right: 60px;
    }
}

.cookie-popup__description {
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 140%;
    width: 100%;
}

@media(min-width: 768px) {
    .cookie-popup__description {
        width:76%;
    }
}

@media(min-width: 1024px) {
    .cookie-popup__description {
        width:75%;
    }
}

.cookie-popup__link {
    font-weight: 400;
    color: #fff !important;
    font-size: 16px;
    line-height: 140%;
    border-bottom: 1px solid #fff;
}

.cookie-popup__link:hover {
    border-bottom: none;
}