:root {
    --consent-bar-bg: #212121;
    --consent-bar-color: #fff;
}

.bottom-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--consent-bar-bg);
    color: var(--consent-bar-color);
    padding: 10px;
    text-align: center;
    z-index: 99999;
}

.button-consent-container {
    display: inline-block;
}

.bottom-consent-bar .button-consent-container .button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #007bff;
    color: black;
    background: var(--consent-bar-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    z-index: 99999;
}

/* Style the buttons that are used to open and close the accordion panel */
.consent-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.consent-accordion.active,
.consent-accordion:hover { 
    background-color: #ccc;
}

.consent-accordion input {
    width: 3rem;
    height: 3rem;
    margin: 0;
}

.consent-accordion input:checked {
    accent-color: green;
}

.consent-links a{
    color: #000000;
    font-size: 14px;
}

/* Style the accordion panel. Note: hidden by default */
.consent-panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

.consent-links {
    width: 100%;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
}
#consentModal {
    z-index: 100000;
}

@media only screen and (max-width: 767px) {
    .consent-accordion {
        font-size: 1rem;
    }

    .consent-accordion input {
        width: 2rem;
        height: 2rem;
        margin: 0;
    }
}

/* .bottom-consent-bar .button-consent-container .btn-consent-options-denied{
    display: none;
} */

@media(max-width:576px) {
    .suport-consent-bar{
        position: fixed;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0 , 0, 0.6);
        width: 100%;
        height: 100%;
        z-index: 1000;
    }
    .bottom-consent-bar{
        margin-top: 20px;
        background-color: rgba(255, 255, 255, 0.8);
        color: var(--text-black);
    }
    .button-consent-container {
        width: 100%;
    }
    .bottom-consent-bar a{
        color: var(--blue);
    }
    .bottom-consent-bar .button-consent-container .btn-consent-accept{
        background-color: #d3dc81;
        border: 1px solid var(--blue);
        border-width: .5px;
        color: var(--white-color) !important;
        font-size: 18px;
        width: 97%;
    }

    .bottom-consent-bar .button-consent-container .btn-consent-options{
        border: 2px solid var(--blue);
        width: 45%;
    }
   
    .bottom-consent-bar .button-consent-container .btn-consent-options-denied{
        display: initial;
    }
    .modal-backdrop{
        display: none !important;
    }
}