#cookie-banner, #cookie-settings {
    position: fixed;
    bottom: 20px;
    right: 0;
    background: #F3F3F3;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 20px;
    font-family: sans-serif;
    transition: transform 0.3s ease;
    z-index: 9999;
    left: calc((100% - 1600px) / 2);
    max-width: 750px;
    border-radius: 4px;
}
#cookie-banner p,
#cookie-settings {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.015em;
}
#cookie-banner p a {
    color: #0D52DC;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.015em;
}
#cookie-banner p a:hover {
    text-decoration: underline;
}
@media (max-width: 1777px) and (min-width: 1151px) {
    #cookie-banner, #cookie-settings {
        left: 5%;
    }
}

#cookie-banner.hidden, #cookie-settings.hidden {
    transform: translateY(100%);
}
.cookie-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.cookie-buttons,
.cookie-buttons-container {
    margin-top: 15px;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
}
.cookie-buttons button {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 178px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookie-buttons button:hover {
    box-shadow: 0 0 4px black;
}
.cookie-buttons .accept {
    background-color: #797979;
    border-radius: 3px;
    color: white;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.cookie-buttons .reject {
    background: none;
    border: 1px solid #797979;
    color: #6B6B6B;
}
.cookie-link {
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
    color: #6B6B6B;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.category-checkboxes {
    margin-top: 10px;
}
#cookie-settings p {
    font-size: 14px;
}
.category-checkboxes label {
    display: block;
    margin: 5px 0;
}