.v2-app .v2-consent-card,
.v2-app .v2-consent-card * {
    box-sizing: border-box;
}

.v2-app .v2-consent-card {
    width: 360px;
    max-width: 100%;
    min-height: 218px;
    padding: 20px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #f1f2f9, 0 4px 32px -4px rgba(111, 108, 143, 0.12), 0 3px 12px -2px rgba(170, 170, 190, 0.06);
    color: #6f6c8f;
    font-family: "Inter", Arial, sans-serif;
}

.v2-app .v2-consent-card__header {
    min-width: 0;
    height: 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.v2-app .v2-consent-card__title,
.v2-app .v2-consent-card__description {
    min-width: 0;
    margin: 0;
    color: #6f6c8f;
    font-size: 16px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.v2-app .v2-consent-card__title {
    padding-bottom: 0;
    font-weight: 600;
    line-height: 1.6;
}

.v2-app .v2-consent-card--locked .v2-consent-card__header::after {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    content: "";
}

.v2-app .v2-consent-card__close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f1f1f1;
    color: #999999;
    cursor: pointer;
    font: 400 32px/1 Arial, sans-serif;
    appearance: none;
}

.v2-app .v2-consent-card__close span {
    transform: translateY(-1px);
}

.v2-app .v2-consent-card__close:hover {
    background: #e7e7e7;
    color: #6f6c8f;
}

.v2-app .v2-consent-card__close:focus-visible {
    outline: 3px solid var(--v2-color-focus, #68a8ff);
    outline-offset: 2px;
}

.v2-app .v2-consent-card__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 14px;
}

.v2-app .v2-consent-card__description {
    min-height: 52px;
    font-weight: 400;
    line-height: 1.6;
}

.v2-app .v2-consent-card__actions {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.v2-app .v2-consent-card .v2-consent-card__action {
    width: 100%;
    min-width: 0;
    height: 44px;
    min-height: 44px;
    flex: 1 1 0;
    padding: 12px 24px;
    border: 0;
    border-radius: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 14px;
}

.v2-app .v2-consent-card .v2-consent-card__action:hover,
.v2-app .v2-consent-card .v2-consent-card__action:focus-visible {
    background: #292a2d;
    color: #ffffff;
}

.v2-app .v2-cookie-popup[hidden],
.v2-app .v2-age-gate[hidden] {
    display: none;
}

.v2-app .v2-cookie-popup {
    position: fixed;
    z-index: 12000;
    right: 24px;
    bottom: 24px;
    width: 360px;
    max-width: calc(100% - 48px);
}

.v2-app .v2-age-gate {
    position: fixed;
    z-index: 13000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-y: auto;
    background: rgba(32, 33, 36, 0.72);
}

.v2-app.v2-age-gate-open {
    overflow: hidden;
}

.v2-app .v2-consent-preview {
    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
}

@media (max-width: 767px) {
    .v2-app .v2-cookie-popup {
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
        max-width: none;
    }

    .v2-app .v2-age-gate {
        padding: 16px;
    }

    .v2-app .v2-consent-preview {
        width: calc(100% - 32px);
    }
}

@media (max-width: 359px) {
    .v2-app .v2-consent-card {
        padding: 16px;
    }

    .v2-app .v2-consent-card__title,
    .v2-app .v2-consent-card__description {
        font-size: 15px;
    }

    .v2-app .v2-consent-card .v2-consent-card__action {
        padding-right: 16px;
        padding-left: 16px;
    }
}
