#cc-main {
    --cc-font-family: "helvetica-lt-pro", sans-serif;
    --cc-bg: #e5d6b3;
    --cc-footer-bg: #e5d6b3;
    --cc-btn-primary-bg: #213848;
    --cc-separator-border-color: #213848;
    --cc-footer-border-color: #213848;
}

.cookie-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #213848;
    color: #e5d6b3;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cookie-floating-btn:hover {
    transform: scale(1.1);
}