.cookie-popup {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: auto;
    max-height: 100vh;
    padding: 24px;
}

@media (max-width:1439.98px) {
    .cookie-popup {
        padding: 10px;
    }
}

.cookie-content {
    width: 100%;
    max-width: 574px;
    display: flex;
    align-items: center;
    padding: 4px 16px;
    gap: 16px;
    background: #FFFFFF;
    box-shadow: 3px 11px 29px rgba(125, 138, 152, 0.25);
    border-radius: 20px;
}

.cookie-icon {
    min-width: 52px;
}
.cookie-text {
    display: flex;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 145%;
    /* or 17px */
    align-items: center;
    color: #1D1E21;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
}
.cookie-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;

    width: 105px;
    height: 48px;

    background: #EAECFF;
    border-radius: 30px;

    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;
    color: #141517;

}

@media (max-width:1439.98px) {
    .cookie-btn {
        font-size: 14px;
    }
}

@media (any-hover: hover) {
    .cookie-btn:hover {
        opacity: 0.9;
    }
}


.settings {
    background: none;
    color: #fff;
    text-decoration: none;
    text-align: center;
}