.cookie-banner {
display: none; position: fixed;
bottom: 15px;
left: 15px;
z-index: 9999;
background: #000;
color: #fff;
padding: 16px;
border-radius: 8px;
max-width: 360px;
font-size: 13px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
line-height: 1.45;
}
.cookie-buttons {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
gap: 10px;
margin-top: 10px;
}
.cookie-button {
background: rgb(22, 29, 106); color: #fff;
border: none;
padding: 6px 12px;
border-radius: 4px;
cursor: pointer;
flex-grow: 1;
text-align: center;
transition: opacity 0.2s ease; }
.cookie-button:hover {
opacity: 0.8;
} .cookie-button-secondary {
background: #666;
} .cookie-banner a {
color: #fff;
text-decoration: underline;
}
.wd-cookie-manage-wrap {
padding: 0 15px 16px;
text-align: center;
}
.wd-cookie-manage-link {
color: #161d6a;
font-size: 14px;
text-decoration: underline;
}
.wd-cookie-manage-link:hover {
opacity: 0.8;
}   .cookie-settings-modal {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: 10000;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-settings-modal.is-visible {
display: flex;
opacity: 1;
visibility: visible;
}
.cookie-settings-content {
background-color: #fff;
color: #333;
padding: 25px;
border-radius: 8px;
max-width: 500px;
width: 90%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
position: relative;
max-height: 80vh;
overflow-y: auto;
transform: scale(0.95);
transition: transform 0.3s ease;
}
.cookie-settings-modal.is-visible .cookie-settings-content {
transform: scale(1);
}
.cookie-settings-close-button {
position: absolute;
top: 10px;
right: 15px;
background: none;
border: none;
font-size: 28px;
line-height: 1;
font-weight: bold;
cursor: pointer;
color: #aaa;
padding: 5px;
}
.cookie-settings-close-button:hover {
color: #000;
}
.cookie-setting-category {
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.cookie-setting-category:last-of-type {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.cookie-setting-category label {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-weight: bold;
}
.cookie-setting-category input[type="checkbox"] {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.cookie-setting-description {
font-size: 0.9em;
color: #666;
margin-top: 5px;
margin-left: 26px;
line-height: 1.4;
}
.cookie-settings-actions {
margin-top: 25px;
padding-top: 15px;
border-top: 1px solid #eee;
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: flex-end;
}
.cookie-settings-actions .cookie-button {
flex-grow: 0;
min-width: 160px;
padding: 12px 16px;
border-radius: 4px;
background-color: rgb(22, 29, 106);
color: #fff;
box-shadow: none;
}
.cookie-settings-actions .cookie-button-secondary {
background-color: #f2f4f8;
color: #161d6a;
border: 1px solid #c7cddb;
}
.cookie-settings-actions #cookie-settings-save {
background-color: #161d6a;
color: #fff;
}
.cookie-settings-actions #cookie-settings-accept-all {
background-color: #161d6a;
color: #fff;
}
.cookie-settings-actions #cookie-settings-reject-all {
background-color: #111827;
color: #fff;
border-color: #111827;
}
@media (max-width: 480px) {
.cookie-banner {
left: 0;
right: 0;
bottom: 0;
border-radius: 0;
max-width: 100%;
font-size: 12px;
}
.cookie-buttons {
flex-direction: row;
justify-content: space-between;
gap: 5px;
}
.cookie-button {
padding: 8px;
font-size: 11px;
}
}
@media (max-width: 480px) {
.cookie-settings-content {
padding: 15px;
max-height: 90vh;
}
.cookie-settings-actions {
justify-content: center;
}
.cookie-settings-actions .cookie-button {
width: 100%;
text-align: center;
}
}