#fp-consent-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9999;
    background: #FFFFFF;
    color: #212121;
    font-size: 1rem;
    line-height: 1.4;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12)
}

#fp-consent-banner.is-visible {
    display: flex
}

.fp-consent-inner {
    max-width: 645px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0 1rem
}

.fp-consent-actions {
    display: flex;
    gap: 8px;
    margin-left: 16px;
    line-height: 20px
}

#fp-consent-accept {
    padding: 1rem;
    border-radius: 2rem;
    border: none;
    background: #333;
    color: #FFF;
    font-weight: 600;
    cursor: pointer;
    transition: background 100ms ease
}

#fp-consent-accept:hover {
    background: #000
}

#fp-consent-decline {
    border: none;
    background: none;
    color: #5A524A;
    cursor: pointer
}

#fp-consent-decline:hover {
    color: #000
}

.fp-consent-fab {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9998;
    border: none;
    border-radius: 999px;
    padding: .65rem 1rem;
    background: #333;
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    gap: .45rem
}

.fp-consent-fab::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23e3e3e3"%3E%3Cpath d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-75 29-147t81-128.5q52-56.5 125-91T475-881q21 0 43 2t45 7q-9 45 6 85t45 66.5q30 26.5 71.5 36.5t85.5-5q-26 59 7.5 113t99.5 56q1 11 1.5 20.5t.5 20.5q0 82-31.5 154.5t-85.5 127q-54 54.5-127 86T480-80Zm-60-480q25 0 42.5-17.5T480-620q0-25-17.5-42.5T420-680q-25 0-42.5 17.5T360-620q0 25 17.5 42.5T420-560Zm-80 200q25 0 42.5-17.5T400-420q0-25-17.5-42.5T340-480q-25 0-42.5 17.5T280-420q0 25 17.5 42.5T340-360Zm260 40q17 0 28.5-11.5T640-360q0-17-11.5-28.5T600-400q-17 0-28.5 11.5T560-360q0 17 11.5 28.5T600-320ZM480-160q122 0 216.5-84T800-458q-50-22-78.5-60T683-603q-77-11-132-66t-68-132q-80-2-140.5 29t-101 79.5Q201-644 180.5-587T160-480q0 133 93.5 226.5T480-160Zm0-324Z"/%3E%3C/svg%3E')
}

.fp-consent-fab:hover {
    background: #000
}

@media only screen and (max-width:768px) {
    .fp-consent-fab {
        display: none
    }

    .fp-consent-actions {
        flex-direction: column
    }
}