#cc-main {
    --cc-font-family: Arial, Helvetica, sans-serif;
    --cc-z-index: 999999;
    --cc-modal-border-radius: 8px;
    --cc-btn-border-radius: 6px;

    --cc-btn-primary-bg: #78bff0;
    --cc-btn-primary-color: #fff;
    --cc-btn-primary-border-color: #78bff0;
    --cc-btn-primary-hover-bg: #5caee6;
    --cc-btn-primary-hover-border-color: #5caee6;

    --cc-btn-secondary-bg: #fff;
    --cc-btn-secondary-color: #333;
    --cc-btn-secondary-border-color: #c9c9c9;
    --cc-btn-secondary-hover-bg: #f5f5f5;
    --cc-btn-secondary-hover-border-color: #bdbdbd;

    --cc-toggle-on-bg: #78bff0;
}

/* Consent modal card */
#cc-main .cm {
    max-width: 480px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
}

/* Leave room for the custom X button */
#cc-main .cm__title {
    padding-right: 42px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
}

#cc-main .cm__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #555;
}

/* Custom session-only close button */
#cc-main .cc-session-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 30px;
    line-height: 28px;
    font-weight: 300;
    cursor: pointer;
}

#cc-main .cc-session-close:hover {
    color: #111;
}



/* Preferences modal */
#cc-main .pm {
    --cc-modal-border-radius: 0;
    --cc-btn-primary-bg: #000;
    --cc-btn-primary-color: #fff;
    --cc-btn-primary-border-color: #000;
    --cc-btn-primary-hover-bg: #222;
    --cc-btn-primary-hover-border-color: #222;
    --cc-toggle-on-bg: #000;
}

#cc-main .pm__title {
    font-size: 30px;
    font-weight: 400;
}

#cc-main .pm__section-title {
    font-size: 22px;
    font-weight: 400;
}

#cc-main .pm__section-desc {
    font-size: 15px;
    line-height: 1.45;
}



@media (max-width: 767px) {
    #cc-main .cm {
        max-width: calc(100% - 20px);
    }

    #cc-main .cm__title {
        font-size: 22px;
    }

    #cc-main .cm__desc {
        font-size: 15px;
    }

    #cc-main .cc-session-close {
        top: 14px;
        right: 14px;
    }

    .cookie-settings-float {
        left: 10px;
        bottom: 10px;
        font-size: 13px;
    }
}