.evcm-banner {
position: fixed;
left: 50%;
width: min(1120px, calc(100vw - 24px));
transform: translateX(-50%);
z-index: 999999;
background: var(--evcm-bg, #ffffff);
color: var(--evcm-text, #1e293b);
border: 1px solid var(--evcm-border, #d9e1ea);
border-radius: 10px;
box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
font-size: 14px;
line-height: 1.5;
overflow: hidden;
}
html.evcm-has-consent .evcm-banner {
display: none !important;
}
.evcm-banner::before {
content: none;
}
.evcm-banner::after {
content: none;
}
.evcm-banner--bottom {
bottom: 16px;
}
.evcm-banner--top {
top: 16px;
box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}
.evcm-banner--center {
top: 50%;
transform: translate(-50%, -50%);
width: min(680px, calc(100vw - 24px));
border-radius: 12px;
box-shadow: 0 22px 52px rgba(15, 23, 42, 0.11);
}
.evcm-banner__inner {
position: relative;
padding: 20px 22px;
display: grid;
grid-template-columns: minmax(0, 1.25fr) minmax(240px, auto);
align-items: center;
gap: 18px;
}
.evcm-banner--center .evcm-banner__inner {
grid-template-columns: 1fr;
text-align: center;
justify-items: center;
}
.evcm-banner__content {
min-width: 0;
max-width: 66ch;
}
.evcm-banner__title {
font-size: 18px;
font-weight: 700;
letter-spacing: -0.01em;
margin: 0 0 8px 0;
color: var(--evcm-text, #1e293b);
}
.evcm-banner__text {
margin: 0;
max-width: 64ch;
color: var(--evcm-muted, #526274);
line-height: 1.6;
}
.evcm-banner__meta {
margin: 10px 0 0;
}
.evcm-banner__link {
color: var(--evcm-link, #1d4ed8);
text-decoration: underline;
text-underline-offset: 0.18em;
font-weight: 600;
}
.evcm-banner__link:hover {
color: var(--evcm-link-hover, #1e40af);
}
.evcm-banner__actions {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 8px;
min-width: 0;
align-self: center;
}
.evcm-banner__actions .evcm-btn {
min-width: 140px;
} .evcm-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 11px 16px;
border: 1px solid transparent;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
white-space: nowrap;
font-family: inherit;
line-height: 1;
}
.evcm-btn--primary {
background: var(--evcm-primary, #2563eb);
color: #fff;
border-color: var(--evcm-primary, #2563eb);
}
.evcm-btn--primary:hover {
background: var(--evcm-primary-hover, #1d4ed8);
border-color: var(--evcm-primary-hover, #1d4ed8);
}
.evcm-btn:focus-visible,
.evcm-modal__close:focus-visible,
.evcm-accordion__trigger:focus-visible {
outline: 2px solid var(--evcm-primary, #2563eb);
outline-offset: 2px;
}
.evcm-btn--secondary {
background: var(--evcm-surface, #f8fafc);
color: var(--evcm-text, #1e293b);
border-color: var(--evcm-border, #d9e1ea);
}
.evcm-btn--secondary:hover {
background: var(--evcm-bg, #ffffff);
border-color: var(--evcm-primary, #2563eb);
}
.evcm-btn--outline {
background: transparent;
color: var(--evcm-link, #1d4ed8);
border-color: var(--evcm-border, #d9e1ea);
}
.evcm-btn--outline:hover {
background: var(--evcm-surface, #f8fafc);
border-color: var(--evcm-link, #1d4ed8);
color: var(--evcm-link-hover, #1e40af);
} .evcm-modal {
position: fixed;
inset: 0;
z-index: 1000000;
display: flex;
align-items: center;
justify-content: center;
}
.evcm-modal__overlay {
position: absolute;
inset: 0;
background: rgba(15, 23, 42, 0.38);
}
.evcm-modal__dialog {
position: relative;
background: var(--evcm-bg, #ffffff);
color: var(--evcm-text, #1e293b);
border: 1px solid var(--evcm-border, #d9e1ea);
border-radius: 12px;
width: min(720px, calc(100vw - 24px));
max-width: 720px;
max-height: 85vh;
display: flex;
flex-direction: column;
box-shadow: 0 20px 48px rgba(15, 23, 42, 0.13);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
font-size: 14px;
overflow: hidden;
}
.evcm-modal__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 18px 20px 14px;
border-bottom: 1px solid var(--evcm-border, #d9e1ea);
background: var(--evcm-bg, #ffffff);
}
.evcm-modal__header h2 {
margin: 0;
font-size: 20px;
font-weight: 700;
letter-spacing: -0.01em;
color: var(--evcm-text, #1e293b);
}
.evcm-modal__close {
position: relative;
background: var(--evcm-bg, #ffffff);
border: 1px solid var(--evcm-border, #d9e1ea);
width: 36px;
height: 36px;
border-radius: 8px;
cursor: pointer;
color: var(--evcm-text, #1e293b);
padding: 0;
line-height: 0;
font-size: 0;
display: inline-grid;
place-items: center;
flex-shrink: 0;
transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.evcm-modal__close::before,
.evcm-modal__close::after {
content: '';
position: absolute;
width: 14px;
height: 1.75px;
border-radius: 999px;
background: currentColor;
}
.evcm-modal__close::before {
transform: rotate(45deg);
}
.evcm-modal__close::after {
transform: rotate(-45deg);
}
.evcm-modal__close:hover {
background: var(--evcm-surface, #f8fafc);
border-color: var(--evcm-primary, #2563eb);
}
.evcm-modal__body {
padding: 18px 20px 20px;
overflow-y: auto;
flex: 1;
}
.evcm-modal__body > p {
margin: 0 0 16px;
color: var(--evcm-muted, #526274);
line-height: 1.65;
max-width: 64ch;
}
.evcm-modal__footer {
padding: 14px 20px 18px;
border-top: 1px solid var(--evcm-border, #d9e1ea);
display: grid;
grid-auto-flow: column;
grid-auto-columns: minmax(180px, max-content);
gap: 8px;
justify-content: flex-end;
background: var(--evcm-bg, #ffffff);
} .evcm-category {
border: 1px solid var(--evcm-border, #d9e1ea);
border-radius: 8px;
padding: 16px;
margin-bottom: 14px;
background: var(--evcm-bg, #ffffff);
transition: border-color 0.18s ease, background 0.18s ease;
}
.evcm-category__header {
display: flex;
align-items: flex-start;
}
.evcm-category__label {
display: flex;
align-items: flex-start;
gap: 12px;
cursor: pointer;
flex: 1;
flex-wrap: wrap;
}
.evcm-category__label strong {
font-size: 15px;
line-height: 1.35;
} .evcm-category__checkbox {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}
.evcm-category__toggle {
position: relative;
display: inline-block;
width: 44px;
height: 24px;
background: #cbd5e1;
border-radius: 12px;
transition: background 0.2s;
flex-shrink: 0;
}
.evcm-category__toggle::after {
content: '';
position: absolute;
top: 2px;
left: 2px;
width: 20px;
height: 20px;
background: #fff;
border-radius: 50%;
transition: transform 0.2s;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.evcm-category__checkbox:checked + .evcm-category__toggle {
background: var(--evcm-primary, #2563eb);
}
.evcm-category__checkbox:checked + .evcm-category__toggle::after {
transform: translateX(20px);
}
.evcm-category__checkbox:disabled + .evcm-category__toggle {
opacity: 0.7;
cursor: not-allowed;
}
.evcm-category__badge {
font-size: 11px;
background: var(--evcm-surface, #f8fafc);
padding: 4px 10px;
border-radius: 999px;
font-weight: 600;
color: var(--evcm-text, #1e293b);
opacity: 0.7;
margin-left: auto;
white-space: nowrap;
}
.evcm-category__desc {
margin: 10px 0 0 56px;
font-size: 13px;
color: var(--evcm-muted, #526274);
line-height: 1.5;
max-width: 58ch;
} .evcm-accordion__trigger {
display: inline-flex;
align-items: center;
gap: 6px;
background: transparent;
border: 0;
padding: 0;
margin: 12px 0 0 56px;
font-size: 12px;
font-weight: 600;
color: var(--evcm-link, #1d4ed8);
cursor: pointer;
font-family: inherit;
line-height: 1;
}
.evcm-accordion__trigger:hover {
color: var(--evcm-link-hover, #1e40af);
text-decoration: underline;
text-underline-offset: 0.16em;
}
.evcm-accordion__icon {
display: inline-block;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
transition: transform 0.2s;
}
.evcm-accordion__trigger[aria-expanded="true"] .evcm-accordion__icon {
transform: rotate(180deg);
}
.evcm-accordion__panel {
margin: 12px 0 0;
padding-top: 12px;
border-top: 1px solid var(--evcm-border, #d9e1ea);
overflow: hidden;
}
.evcm-accordion__panel[hidden] {
display: none;
}
.evcm-accordion__empty {
margin: 0;
padding: 8px 12px;
font-size: 12px;
opacity: 0.6;
font-style: italic;
}
.evcm-accordion__table-shell {
overflow: hidden;
border: 1px solid var(--evcm-border, #d9e1ea);
border-radius: 8px;
background: var(--evcm-bg, #ffffff);
}
.evcm-accordion__table {
width: 100%;
border-collapse: collapse;
table-layout: auto;
font-size: 12px;
line-height: 1.4;
background: transparent;
}
.evcm-accordion__table th:nth-child(1),
.evcm-accordion__table td:nth-child(1) {
width: 26%;
}
.evcm-accordion__table th:nth-child(2),
.evcm-accordion__table td:nth-child(2) {
width: 16%;
}
.evcm-accordion__table th,
.evcm-accordion__table td {
text-align: left;
padding: 8px 10px;
border-bottom: 1px solid rgba(15, 23, 42, 0.06);
vertical-align: top;
overflow-wrap: anywhere;
}
.evcm-accordion__table th {
font-weight: 600;
color: var(--evcm-muted, #526274);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.03em;
white-space: nowrap;
background: var(--evcm-surface, #f8fafc);
}
.evcm-accordion__table code {
display: inline-block;
max-width: 100%;
background: rgba(0, 0, 0, 0.05);
padding: 1px 5px;
border-radius: 3px;
font-size: 11px;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
}
.evcm-accordion__provider {
display: block;
font-size: 11px;
color: #637286;
margin-top: 2px;
} .evcm-cookie-table-wrap {
display: grid;
gap: 22px;
}
.evcm-cookie-table-section h3 {
margin: 0 0 12px;
font-size: clamp(1.15rem, 1rem + 0.45vw, 1.5rem);
letter-spacing: -0.015em;
}
.evcm-cookie-grid {
overflow: hidden;
border: 1px solid var(--evcm-border, #d9e1ea);
border-radius: 10px;
background: var(--evcm-bg, #ffffff);
box-shadow: 0 12px 24px rgba(15, 23, 42, 0.035);
}
.evcm-cookie-grid__row {
display: grid;
grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) minmax(0, 1.75fr) minmax(112px, 0.7fr);
gap: 14px 18px;
align-items: start;
padding: 12px 16px;
border-bottom: 1px solid var(--evcm-border, #d9e1ea);
}
.evcm-cookie-grid__row:last-child {
border-bottom: 0;
}
.evcm-cookie-grid__row--head {
padding-top: 12px;
padding-bottom: 12px;
background: var(--evcm-surface, #f8fafc);
}
.evcm-cookie-grid__row--head .evcm-cookie-grid__cell {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--evcm-muted, #526274);
}
.evcm-cookie-grid__body .evcm-cookie-grid__row:nth-child(even) {
background: var(--evcm-surface, #f8fafc);
}
.evcm-cookie-grid__body .evcm-cookie-grid__row:hover {
background: var(--evcm-bg, #ffffff);
}
.evcm-cookie-grid__cell {
min-width: 0;
overflow-wrap: anywhere;
}
.evcm-cookie-grid__body .evcm-cookie-grid__cell--duration {
text-align: right;
}
.evcm-cookie-grid__cell-label {
display: none;
}
.evcm-cookie-grid__name {
display: inline-block;
max-width: 100%;
padding: 4px 8px;
border-radius: 6px;
background: var(--evcm-surface, #f8fafc);
color: #1d2b3c;
font-size: 13px;
font-weight: 700;
line-height: 1.45;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
}
.evcm-cookie-grid__text,
.evcm-cookie-grid__duration {
color: var(--evcm-text, #1e293b);
line-height: 1.58;
font-size: 13.5px;
}
.evcm-cookie-grid__duration {
font-weight: 600;
color: #203246;
white-space: nowrap;
}
.evcm-cookie-grid__body .evcm-cookie-grid__cell--provider .evcm-cookie-grid__text {
color: var(--evcm-muted, #526274);
font-size: 13px;
}
.evcm-cookie-grid__body .evcm-cookie-grid__cell--description .evcm-cookie-grid__text {
color: var(--evcm-muted, #526274);
}
.evcm-cookie-grid__body .evcm-cookie-grid__cell--name {
padding-right: 4px;
}
.evcm-cookie-grid__body .evcm-cookie-grid__cell--duration .evcm-cookie-grid__duration {
display: inline-block;
padding: 4px 0 0;
}
@media (max-width: 980px) {
.evcm-banner__inner {
grid-template-columns: 1fr;
align-items: stretch;
}
.evcm-banner__content {
max-width: none;
}
.evcm-banner__actions {
justify-content: flex-start;
width: 100%;
}
.evcm-banner--center .evcm-banner__actions {
max-width: 100%;
}
.evcm-accordion__table th:nth-child(1),
.evcm-accordion__table td:nth-child(1) {
width: 30%;
}
.evcm-cookie-grid__row {
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
gap: 14px 18px;
}
.evcm-cookie-grid__row--head {
display: none;
}
.evcm-cookie-grid__cell-label {
display: block;
margin-bottom: 5px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.03em;
text-transform: uppercase;
color: #66758a;
}
.evcm-cookie-grid__body .evcm-cookie-grid__cell--duration {
text-align: left;
}
} @media (max-width: 768px) {
.evcm-banner {
width: calc(100vw - 16px);
}
.evcm-banner--bottom {
bottom: 8px;
}
.evcm-banner--top {
top: 8px;
}
.evcm-banner__inner {
grid-template-columns: 1fr;
align-items: stretch;
text-align: left;
padding: 18px 18px 20px;
gap: 16px;
}
.evcm-banner__actions {
flex-direction: column;
width: 100%;
}
.evcm-btn {
width: 100%;
padding: 10px 14px;
font-size: 13px;
}
.evcm-modal__dialog {
width: calc(100vw - 16px);
max-height: calc(100vh - 16px);
border-radius: 12px;
}
.evcm-modal__header,
.evcm-modal__body,
.evcm-modal__footer {
padding-left: 18px;
padding-right: 18px;
}
.evcm-modal__footer {
grid-auto-flow: row;
grid-auto-columns: 1fr;
}
.evcm-category__desc {
margin-left: 0;
margin-top: 10px;
}
.evcm-accordion__trigger {
margin-left: 0;
}
.evcm-category__badge {
margin-left: 0;
}
.evcm-cookie-grid__row {
grid-template-columns: 1fr;
gap: 12px;
padding: 14px 16px;
}
.evcm-accordion__table-shell {
overflow: visible;
border: 0;
background: transparent;
box-shadow: none;
}
.evcm-accordion__table {
min-width: 0;
border-collapse: separate;
border-spacing: 0;
background: transparent;
}
.evcm-accordion__table thead {
display: none;
}
.evcm-accordion__table,
.evcm-accordion__table tbody,
.evcm-accordion__table tr,
.evcm-accordion__table td {
display: block;
width: 100% !important;
}
.evcm-accordion__table tr {
margin-bottom: 12px;
padding: 14px;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 14px;
background: rgba(255, 255, 255, 0.94);
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.evcm-accordion__table td {
border-bottom: 0;
padding: 0;
}
.evcm-accordion__table td + td {
margin-top: 10px;
padding-top: 10px;
border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.evcm-accordion__table td::before {
content: attr(data-label);
display: block;
margin-bottom: 5px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.03em;
text-transform: uppercase;
color: #66758a;
}
}