/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #23225e;
    color: #ffffff;
    padding: 20px 30px;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#cookie-consent-banner h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #ffffff;
}

#cookie-consent-banner p {
    margin: 0 0 15px;
    font-size: 14px;
    color: #ffffffcc;
}

.cookie-consent-button {
    display: inline-block;
    padding: 8px 18px;
    margin: 5px 5px 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.btn-success {
    background: #ffffff;
    color: #23225e;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-grayscale {
    background: #888888;
    color: #ffffff;
}

.cookie-consent-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.cookie-consent-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    cursor: pointer;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

}