#ckieCsnt {
    display: none;
    position: fixed;
    bottom: 4%;
    left: 50%;
    background: #0300DC;
    color: #fff;
    padding: 20px;
    z-index: 99999;
    border-radius: 12px;
    width: 45%;
    transform: translateX(-50%);
}

#ckieCsnt.show {
    display: block !important;
}

#ckieCsnt .cookies_list_container {
    margin-top: 3%;
}

#ckieCsnt .cookies_list_container input {
    width: 1.3em;
    height: 1.3em;
    background-color: rgba(255, 255, 255, 0.63);
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
}

#ckieCsnt .cookies_list_container input:checked {
    background-color: rgb(255, 255, 255);
}

#ckieCsnt .cookies_list_container input:checked::after {
    content: '';
    display: block;
    width: 2em;
    height: 2em;
    background-image: url(../assets/images/check.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -20%;
    top: -40%;
    pointer-events: none;
}

#ckieCsnt p {
    margin: 0;
}

#ckieCsnt a {
    color: #949494 !important;
}

#ckieCsnt .ckie_cnsnt_btns {
    display: flex;
    justify-content: space-evenly;
    margin-top: 3%;
}

#ckieCsnt .ckie_cnsnt_btns button {
    color: #000000;
    border: none;
    padding: 10px 13px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 12px;
    height: auto;
    font-size: 0.9em;
    line-height: 1.5em;
    width: 45%;
}

#acptCkies {
    background-color: #ffffff;
}

#dclneCkies {
    background-color: rgba(255, 255, 255, 0.63);
}

.reopenConsentBtn_container {
    bottom: 15.5vh;
    position: fixed;
    z-index: 9999;
}

#reopenConsentBtn {
    position: absolute;
    /* left: 2vw; */
    left: 3.4vw;
    /* font-size: 1.2em; */
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    background-color: #0300DC;
    /* width: 3rem; */
    border: none;
    /* box-shadow: -1px 2px 1px 0px white;*/
}

#reopenConsentBtn img {
    width: 1.5rem;
}

@media screen and (max-width: 768px) {
    #ckieCsnt {
        width: 80%;
    }

    #ckieCsnt .ckie_cnsnt_btns button {
        line-height: 1.2em;
        padding: 10px 10px;
    }

    #reopenconsentBtn {
        left: 5vw;
    }

    .reopenConsentBtn_container {
        bottom: 17vh;
        position: fixed;
        z-index: 9999;
    }
}