.cookie__block {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 24px;
    padding: 32px;
    z-index: 99999;
    display: none;
}

.cookie__container {
    width: 100%;
    max-width: 1600px;
    padding: 32px;
    background: #eeedf3;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.2);
}

.cookie__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 32px;
    row-gap: 20px;
}

.cookie__text {
    font-size: 12px;
    line-height: 1.4;
}

.cookie__text a {
    text-decoration: underline;
}
.cookie__text a:hover {
    text-decoration: none;
}

.cookie__text p {
    margin: 0;
}

.cookie__buttons {
    display: flex;
    align-items: center;
    column-gap: 20px;
    row-gap: 20px;
}

.cookie__buttons .btn {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .cookie__row {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .cookie__buttons {
        flex-direction: column;
    }
    
    .cookie__buttons .btn {
        display: block;
        width: 100%;
    }
    
    .cookie__btn--all {
        order: 1;
    }
    
    .cookie__btn--required {
        order: 2;
    }

    .cookie__container {
        padding: 16px;
    }
}