#qliviaCookieConsent {
    position: fixed;
    z-index: 4;
    bottom: 5%;
    left: 1%;
    width: 96%;
    padding: 1%;
    color: white;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    font-size: 80%;
    display: none;
    align-items: center;
    justify-content: space-between;
}

#qliviaCookieConsent a {
    font-size: 120%;
}

#qliviaCookieConsent div:nth-of-type(2) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40%;
}

#qliviaCookieConsent button {
    border: 1px solid #00d400;
    padding: 2%;
    font-size: 120%;
    border-radius: 20px;
    color: white;
    background-color: transparent;
}

#qliviaCookieConsentAllow {
    background-color: #00d400 !important;
    padding: 2%;
    font-size: 120%;
    border-radius: 20px;
    border: 0;
    color: black !important;
}

#qliviaCookieConsentManageFloatBtn
{
    background-color: #00d400 !important;
    padding: 1%;
    font-size: 120%;
    border-radius: 20px;
    border: 0;
    color: black;
    position:fixed;
    bottom:2%;
    right:2%;
    font-size:100%;
    display:none;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}

#qliviaCookieConsentManage {
    position: fixed;
    z-index: 4;
    top:20%;
    color: white;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    width: 40%;
    left: 29%;
    padding: 1%;
    display:none;
}

#qliviaCookieConsentManage>div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#qliviaCookieConsentManage>div>div{
    display:flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    margin-left:2%;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #00d400;
}

input:focus+.slider {
    box-shadow: 0 0 1px #00d400;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

#shadow{
    position:fixed;
    z-index:3;
    background-color: rgba(0, 0, 0, 0.5);
    height:100%;
    width:100%;
    top:0;
    display:none;
    backdrop-filter: blur(1px);
}

@media (max-width:900px) {
    #qliviaCookieConsent {
        flex-direction: column;
        width: 94%;
        padding: 2%;
        bottom:2%;
    }

    #qliviaCookieConsent h1 {
        font-size: 170%;
    }

    #qliviaCookieConsent div:nth-of-type(2) {
        width: 100%;
        flex-direction: column;
    }

    #qliviaCookieConsent a{
        margin-bottom:1%;
    }

    #qliviaCookieConsent button{
        margin-top:1%;
        margin-bottom:1%;
        width:90%;
    }

    #qliviaCookieConsentManage{
        width:90%;
        left:5%;
        font-size:90%;
    }
    #qliviaCookieConsentManageFloatBtn{
        padding:2%;
        font-size:100%;
    }
}