.privacy {
    min-height: 60vh;
    background: #fff;
    z-index: 80;
    position: relative;
}

.privacy > div > div {
    padding: 0 20px;
}

.policytext {
    margin: 20px 0;
    color: #808080;
    text-align: justify;
}

.policytext p {
    text-align: justify;
    margin-bottom: 20px;
}

.policytext ul {
    margin-top: 20px;
}

.policytext ul > li {
    margin: 0 0 20px;
}

.policytext a {
    color: royalblue;
    text-decoration: none;
}
    .policytext a:hover {
        text-decoration: underline;
    }

    body.lock {
        overflow: hidden!important;
    }
    

    #cookiebackdrop {
        position: fixed;
        z-index: 9998;
        background-color: transparent;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        transition: all 0.4s ease;
        transform: scale(0);
    }
    
    #cookiebackdrop.backdrop {
        background-color: #130318ad;
        transform: scale(1);
    }




#cookieconsent {
    position: fixed;
    z-index: 9999;
    display: none;
    background-color: #16001a;
    color: #F5C597;
}

#cookieconsent.FI, #cookieconsent.FS {
    width: 100%;
    min-height: 70px;
    border-radius: 0;
    padding: 15px;
    left: 0;
    top: auto;
    bottom: 0;
}

#cookieconsent.FS {
    bottom: auto;
    top: 0;
}

#cookieconsent.BC {
    max-width: min(40%, 500px);
    border-radius: 5px;
    padding: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px 2px #202020;
}


#cookieconsent.BE {
    max-width: min(40%, 500px);
    border-radius: 5px;
    padding: 15px;
    left: 1em;
    bottom: 1em;
    box-shadow: 0 0 14px 2px #202020;
}


#cookieconsent.BD {
    max-width: min(40%, 500px);
    border-radius: 5px;
    padding: 15px;
    right: 1em;
    bottom: 1em;
    box-shadow: 0 0 14px 2px #202020;
}

#cookieconsent ul {
    text-align: center;
    list-style: none;
    padding: 0;
}

#cookieconsent ul > li {
    display: inline-block;
    padding: 10px 15px 0;
}

#cookieconsent ul > li > a {
    text-decoration: none;
    color: #cfcfcf;
}

#cookieconsent ul > li > a:hover {
    text-decoration: underline;
}

#cookieconsent > div:last-child {
    display: inline-block;
}



@media screen and (max-width: 980px) {

    #cookieconsent.BD, #cookieconsent.BE {
        max-width: min(60%, 500px);
    }
}

@media screen and (max-width: 700px) {

    #cookieconsent.BD, #cookieconsent.BE {
        max-width: min(80%, 500px);
    }
}

@media screen and (max-width: 480px) {

    #cookieconsent.BD, #cookieconsent.BE {
        max-width: none;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
        border-radius: 0;
    }

}