/* v1.116 - Cookie consent vzhled v barvách IP systém */
.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 16px;
    background: rgba(16, 24, 64, .24);
    box-sizing: border-box;
}

.cookie-consent__panel {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 64, .18);
    border-top: 6px solid #e21e25;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(16, 24, 64, .22);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    color: #101840;
}

.cookie-consent h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    color: #101840;
}

.cookie-consent p {
    margin: 0;
    color: #344054;
    line-height: 1.45;
}

.cookie-consent__details {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.cookie-consent__option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 12px 14px;
}

.cookie-consent__option span span,
.cookie-consent__option div span {
    display: block;
    margin-top: 3px;
    color: #667085;
    font-size: 13px;
}

.cookie-consent__option input {
    width: 22px;
    height: 22px;
    accent-color: #e21e25;
}

.cookie-consent__badge {
    background: #101840;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.cookie-consent__note {
    font-size: 13px;
}

.cookie-consent__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    min-width: 170px;
}

.cookie-consent .btn {
    border: 0;
    border-radius: 10px;
    padding: 11px 14px;
    font-weight: 800;
    cursor: pointer;
    background: #e21e25;
    color: #ffffff;
    text-align: center;
}

.cookie-consent .btn.secondary {
    background: #eef2f7;
    color: #101840;
}

.cookie-consent .btn:hover {
    filter: brightness(.96);
}

@media (max-width: 760px) {
    .cookie-consent__panel {
        grid-template-columns: 1fr;
    }

    .cookie-consent__actions {
        min-width: 0;
    }
}
