html, body{
    user-select: none;
}
#footer{
    position: fixed;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 5vh;
    min-height: 5vh;
    max-height: 5vh;
    bottom: 0;
    left: 0;
    z-index: 999;
}
.footer{
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 5vh;
    min-height: 5vh;
    max-height: 5vh;
}
.footer-list{
    position: absolute;
    bottom: 0;
    left: 25px;
    height: 5vh;
    min-height: 5vh;
    max-height: 5vh;
    width: 320px;
    max-width: 320px;
    display: inline-flex;
    align-items: center;
    color: rgb(200,200,200);
    list-style: none;
}
li.footer-item{
    width: auto;
    margin-left: 15px;
    font-size: 0.7em;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}
li.footer-item:hover{
    color: rgb(0,0,0);
    mix-blend-mode: difference;
    transition: 0.2s;
}
h1.footer-company-name{
    position: absolute;
    right: 25px;
    height: 5vh;
    min-height: 5vh;
    max-height: 5vh;
    width: auto;
    font-size: 0.7em;
    letter-spacing: 2px;
    color: rgb(200,200,200);
    text-transform: uppercase;
    font-weight: 200;
    display: inline;
    align-content: center;
    cursor: pointer;
    transition: 0.2s;
}

h1.footer-company-name:hover{
    color: rgb(0,0,0);
    mix-blend-mode: difference;
    transition: 0.2s;
}

@media (min-width: 279px) and (max-width: 823px) {
    /*
    #privacyContainer, #cookieContainer {
        width: 100vw;
        float: left;
        clear: both;
        margin: 0px;
        padding: 0px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 100px;
        font-family: 'Mulish', sans-serif;
      }
    */
    #footer{
        position: fixed;
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: 3.5vh;
        min-height: 3.5vh;
        max-height: 3.5vh;
        bottom: 12.5px;
        left: 0;
        z-index: 999;
    }
    .footer-list{
        position: absolute;
        bottom: 0;
        left: 25px;
        height: 3.5vh;
        min-height: 3.5vh;
        max-height: 3.5vh;
        width: 100vw;
        max-width: 100vw;
        display: inline-flex;
        align-items: center;
        color: rgb(200,200,200);
        list-style: none;
    }
    h1.footer-company-name{
        position: absolute;
        right: 0px;
        height: 3.5vh;
        min-height: 3.5vh;
        max-height: 3.5vh;
        width: 100vw;
        font-size: 0.7em;
        letter-spacing: 2px;
        color: rgb(200,200,200);
        text-transform: uppercase;
        font-weight: 200;
        display: inline;
        align-content: center;
        justify-content: center;
        cursor: pointer;
        text-align: center;
        transition: 0.2s;
        bottom: 20px;
    }
}