/*
 * Atlantic Wellness Center optional services consent UI
 */

.awc-consent-banner {
    position: fixed;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 999999;

    display: flex;

    align-items: center;

    gap: 20px;

    max-width: 1000px;

    margin-left: auto;
    margin-right: auto;

    padding: 15px 18px;

    background: #fff;
    color: #222;

    border:
        1px solid
        rgba(0, 0, 0, 0.15);

    border-radius: 6px;

    box-shadow:
        0 3px 18px
        rgba(0, 0, 0, 0.18);

    font-size: 14px;
    line-height: 1.45;
}


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


.awc-consent-text {
    flex: 1;
}


.awc-consent-text > strong {
    display: block;

    margin-bottom: 3px;

    font-size: 16px;
}


.awc-consent-text p {
    margin: 0;
}


.awc-consent-text a {
    text-decoration: underline;
}


.awc-consent-buttons {
    display: flex;

    flex-shrink: 0;

    gap: 8px;
}


.awc-consent-button {
    padding: 8px 14px;

    border:
        1px solid
        #337ab7;

    border-radius: 4px;

    font: inherit;
    font-weight: 600;

    cursor: pointer;
}


.awc-consent-decline {
    background: #fff;
    color: #337ab7;
}


.awc-consent-accept {
    background: #337ab7;
    color: #fff;
}


.awc-consent-button:hover,
.awc-consent-button:focus {
    opacity: 0.85;
}


.awc-consent-button:disabled {
    opacity: 0.6;

    cursor: default;
}


.awc-consent-status {
    margin-top: 4px;

    font-size: 13px;
}


/*
 * Placeholder shown where an Aloha/ReviewWave form or review
 * widget has been intentionally blocked before consent.
 */
.awc-third-party-placeholder {
    margin: 15px 0;

    padding: 18px;

    background: #f7f7f7;

    border: 1px solid #ddd;

    text-align: center;
}


.awc-third-party-placeholder p {
    margin: 0 0 12px;
}


@media (max-width: 767px) {

    .awc-consent-banner {
        display: block;

        left: 8px;
        right: 8px;
        bottom: 8px;
    }


    .awc-consent-buttons {
        margin-top: 12px;
    }


    .awc-consent-button {
        flex: 1;
    }
}
