#cookie.nt-cookie {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: #1a1a1a;
    color: #f3f3f3;
    z-index: 10050;
    position: fixed;
    left: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 1.45;
    padding: 16px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, .28);
}
#cookie.nt-cookie .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
#cookie.nt-cookie .nt-cookie-text {
    flex: 1 1 auto;
    min-width: 0;
}
#cookie.nt-cookie .nt-cookie-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #fff;
}
#cookie.nt-cookie a {
    color: #fff;
    text-decoration: underline !important;
}
#cookie.nt-cookie .nt-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}
#cookie .cookie-btn,
#cookie .nt-cookie-btn {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #c31438;
    border: 1px solid #c31438;
    border-radius: 4px;
    margin: 0;
    white-space: nowrap;
    min-height: 40px;
    line-height: 1.2;
}
#cookie .nt-cookie-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}
#cookie .nt-cookie-btn--muted {
    background: #4a4a4a;
    border-color: #4a4a4a;
}
#nt-cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 10060;
}
#nt-cookie-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 520px;
    max-height: calc(100vh - 32px);
    overflow: auto;
    background: #fff;
    color: #222;
    z-index: 10070;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
    padding: 24px 22px 18px;
}
#nt-cookie-panel h2 {
    font-size: 20px;
    margin: 0 28px 12px 0;
}
#nt-cookie-panel p {
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.5;
}
#nt-cookie-panel .nt-cookie-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}
.nt-cookie-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #ececec;
}
.nt-cookie-row:last-of-type {
    border-bottom: 1px solid #ececec;
    margin-bottom: 16px;
}
.nt-cookie-row strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}
.nt-cookie-row span {
    display: block;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}
.nt-cookie-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex: 0 0 44px;
    margin-top: 2px;
}
.nt-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.nt-cookie-switch i {
    position: absolute;
    inset: 0;
    background: #cfcfcf;
    border-radius: 99px;
    pointer-events: none;
}
.nt-cookie-switch i::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
}
.nt-cookie-switch input:checked + i {
    background: #c31438;
}
.nt-cookie-switch input:checked + i::after {
    left: 23px;
}
.nt-cookie-switch input:disabled + i {
    background: #8a8a8a;
}
.nt-cookie-switch input:focus-visible + i {
    outline: 2px solid #c31438;
    outline-offset: 2px;
}
#nt-cookie-panel .nt-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}
#nt-cookie-panel .nt-cookie-btn {
    padding: 8px 14px;
    min-height: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #c31438;
    border: 1px solid #c31438;
    border-radius: 4px;
    cursor: pointer;
}
#nt-cookie-panel .nt-cookie-btn--ghost {
    background: #fff;
    color: #c31438;
}
.nt-cookie-reopen {
    display: inline;
    margin-left: 12px;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
body.nt-cookie-open {
    overflow: hidden;
}
@media (max-width: 767px) {
    #cookie.nt-cookie .inner {
        flex-direction: column;
        align-items: stretch;
    }
    #cookie.nt-cookie .nt-cookie-actions {
        justify-content: stretch;
    }
    #cookie .nt-cookie-btn {
        flex: 1 1 auto;
        text-align: center;
    }
}
