/* CSS */
/* GDPR BANNER */

#banner{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 25px 0px 25px 0px;
    margin: 0 auto;
    min-height: 95px;
    z-index: 2000;

    box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.2);

    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    -webkit-transform:translateY(100%);
    -moz-transform:translateY(100%);
    transform:translateY(100%);

    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    transition: all 800ms ease;
}

#banner.trans{
    -webkit-transform:translateY(0);
    -moz-transform:translateY(0);
    transform:translateY(0);
}

#banner .notification{
    display:block;
    margin-right:340px;
    color:#000;
}

#banner .notification a,
#banner .notification a:visited{
    padding-bottom:1px;
    color:#000;
}

#banner .notification a:hover{
    color: #000;
}

#banner .notification a:after{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 1px;
    background: #111;
}

#banner .right{
    position: absolute;
    top: 0px;
    right: 20px;
}

@media (max-width:768px) {
    #banner .notification{
        margin-right:0px;
    }

    #banner .right{
        position: relative;
        top: auto;
        right: auto;
        margin-top: 25px;
    }
}
