.cv2-consent {
    position: fixed;
    z-index: 10000;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 70rem;
    margin: 0 auto;
    padding: 1rem 1.125rem;
    color: #f7fbff;
    background: #102f43;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.75rem;
    box-shadow: 0 1rem 3rem rgba(5, 24, 37, 0.28);
}

.cv2-consent[hidden] {
    display: none;
}

.cv2-consent__copy {
    max-width: 48rem;
}

.cv2-consent__copy strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 1rem;
}

.cv2-consent__copy p {
    margin: 0;
    color: rgba(247, 251, 255, 0.86);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cv2-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.625rem;
}

.cv2-consent__button {
    min-height: 2.625rem;
    padding: 0.625rem 0.9rem;
    font: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 0.4rem;
}

.cv2-consent__button--primary {
    color: #102f43;
    background: #f2c14e;
    border: 1px solid #f2c14e;
}

.cv2-consent__button--secondary {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.cv2-consent-settings {
    min-height: 1.75rem;
    padding: 0.25rem 0.125rem;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0.25rem;
    font: inherit;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    opacity: 0.64;
    text-decoration: none;
    text-underline-offset: 0.2em;
    transition: color 160ms ease, opacity 160ms ease;
}

.cv2-consent-settings:hover {
    opacity: 0.92;
    text-decoration: underline;
}

.cv2-consent__button:focus-visible,
.cv2-consent-settings:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .cv2-consent {
        align-items: stretch;
        flex-direction: column;
        gap: 0.875rem;
    }

    .cv2-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .cv2-consent__actions {
        grid-template-columns: 1fr;
    }
}
