.bee-consent[hidden],
.bee-consent-settings[hidden] {
    display: none !important;
}

.bee-consent {
    position: fixed;
    z-index: 100000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    color: #242424;
    font-family: inherit;
}

.bee-consent__content {
    display: flex;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgb(36 36 36 / 14%);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgb(0 0 0 / 24%);
    gap: 24px;
    align-items: center;
}

.bee-consent__copy {
    flex: 1 1 auto;
}

.bee-consent__copy h2 {
    margin: 0 0 8px;
    color: #242424;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.bee-consent__copy p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.bee-consent__copy a {
    color: #805d00;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bee-consent__actions {
    display: grid;
    flex: 0 0 390px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bee-consent__actions button {
    min-height: 48px;
    padding: 10px 14px;
    border: 2px solid #242424;
    border-radius: 4px;
    background: #fff;
    color: #242424;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: normal;
    text-transform: none;
}

.bee-consent__actions button:hover,
.bee-consent__actions button:focus-visible {
    background: #242424;
    color: #fff;
}

.bee-consent__actions button:focus-visible,
.bee-consent-settings:focus-visible {
    outline: 3px solid #f3a91a;
    outline-offset: 3px;
}

.bee-consent-settings {
    position: fixed;
    z-index: 99999;
    bottom: 14px;
    left: 14px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgb(255 255 255 / 45%);
    border-radius: 4px;
    background: #242424;
    box-shadow: 0 6px 24px rgb(0 0 0 / 20%);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
}

@media (max-width: 760px) {
    .bee-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .bee-consent__content {
        display: block;
        max-height: calc(100vh - 24px);
        padding: 18px;
        overflow-y: auto;
    }

    .bee-consent__actions {
        grid-template-columns: 1fr;
        margin-top: 16px;
    }
}
