.capsule-consent[hidden] {
    display: none !important;
}

.capsule-consent {
    position: fixed;
    z-index: 2147483000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid #dfe6df;
    border-radius: 14px;
    background: #fff;
    color: #202520;
    box-shadow: 0 14px 45px rgba(18, 37, 22, .18);
    font-family: inherit;
}

.capsule-consent__copy {
    max-width: 650px;
}

.capsule-consent__copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.capsule-consent__copy p {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.45;
}

.capsule-consent__copy a {
    color: #315f36;
    font-size: 13px;
    text-decoration: underline;
}

.capsule-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.capsule-consent__actions button,
.capsule-consent-settings {
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid #315f36;
    border-radius: 8px;
    background: #fff;
    color: #315f36;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.capsule-consent__actions button.is-primary {
    background: #315f36;
    color: #fff;
}

.capsule-consent-settings {
    position: fixed;
    z-index: 2147482999;
    bottom: 0;
    left: 16px;
    min-height: 30px;
    padding: 5px 10px;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
    background: #fff;
    font-size: 11px;
}

@media (max-width: 760px) {
    .capsule-consent {
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: block;
        padding: 17px;
    }

    .capsule-consent__actions {
        justify-content: stretch;
        margin-top: 14px;
    }

    .capsule-consent__actions button {
        flex: 1 1 100%;
    }
}

