.rihlatk-cookie {
    --ck-ink: #142B54;
    --ck-mid: #3F6EAE;
    --ck-blue: #147DFB;
    --ck-muted: #667085;
    --ck-line: #E3E5E8;
    --ck-soft: #F3F7FC;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background: #fff;
    border-top: 1px solid var(--ck-line);
    box-shadow: 0 -18px 48px -24px rgba(20, 43, 84, 0.28);
    color: var(--ck-ink);
    font-family: inherit;
    animation: rihlatk-cookie-in 0.28s ease;
}
.rihlatk-cookie,
.rihlatk-cookie * { box-sizing: border-box; }
.rihlatk-cookie__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px 18px;
}
.rihlatk-cookie__copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}
.rihlatk-cookie__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #E8F3FF;
    color: var(--ck-blue);
    border: 1px solid #D4E6FA;
}
.rihlatk-cookie__ico svg {
    width: 18px;
    height: 18px;
    display: block;
}
.rihlatk-cookie__text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--ck-ink);
}
.rihlatk-cookie__text a {
    color: var(--ck-blue);
    font-weight: 700;
    text-decoration: none;
    margin-inline-start: 6px;
    white-space: nowrap;
}
.rihlatk-cookie__text a:hover {
    color: var(--ck-mid);
}
.rihlatk-cookie__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.rihlatk-cookie__ok {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--ck-blue);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
}
.rihlatk-cookie__ok:hover,
.rihlatk-cookie__ok:focus-visible {
    background: var(--ck-mid);
    color: #fff;
}
.rihlatk-cookie__ok:focus-visible,
.rihlatk-cookie__x:focus-visible {
    outline: 2px solid var(--ck-blue);
    outline-offset: 2px;
}
.rihlatk-cookie__x {
    appearance: none;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ck-soft);
    color: var(--ck-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
.rihlatk-cookie__x:hover {
    background: #E8F3FF;
    color: var(--ck-blue);
}
.rihlatk-cookie__x svg {
    width: 14px;
    height: 14px;
    display: block;
}
html.rihlatk-cookie-on .rihlatk-wa-float {
    bottom: calc(24px + var(--rihlatk-cookie-h, 88px));
}
@keyframes rihlatk-cookie-in {
    from { transform: translateY(16px); opacity: 0; }
    to { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .rihlatk-cookie { animation: none; }
}
@media (max-width: 720px) {
    .rihlatk-cookie__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px 16px;
        gap: 12px;
    }
    .rihlatk-cookie__actions {
        justify-content: flex-end;
    }
    .rihlatk-cookie__ok {
        flex: 1 1 auto;
    }
    html.rihlatk-cookie-on .rihlatk-wa-float {
        bottom: calc(18px + var(--rihlatk-cookie-h, 140px));
    }
}
