.cookie-block {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(243, 243, 241, 1);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.cookie-block__container {
    display: flex;
    flex-direction: column;
}
.cookie-block__container a{
    color: rgba(54,54,54,1);
    text-decoration: underline;
}
.cookie-block__close {
    align-self: flex-end;
    cursor: pointer;
    font-weight: bold;
}
.cookie-block__buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.cookie-block__unconfirm,
.cookie-block__confirm {
    cursor: pointer;
    padding: 8px 12px;
    background-color: #eee;
}
.cookie-block__confirm {
    background-color: rgba(54,54,54,1);
    color: white;
}