#cookieLawBar {
    -webkit-text-size-adjust: none;
    position: fixed;
    /*top: 0;*/
    bottom: 0px;
    left: 0;
    width: 100%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #333333;
    overflow: hidden;
    z-index: 600;
    text-align: center;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    perspective: 1000px;
}

#cookieLawBar .notification {
    display: block;
    text-decoration: none;
    min-height: 35px;
    padding: 12px 5px;
    overflow: hidden;
    margin: 0 auto 0 auto;
    opacity:0.90;
    filter:alpha(opacity=90); /* For IE8 and earlier */
    background-color: #000;
}

#cookieLawBar .notification.hasClick {
    cursor: pointer;
}
#cookieLawBar .notification .closeButton{
    background-color: #FFFFFF;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    margin-left: 8px;
    margin-top: 3px;
    padding: 0;
    width: 24px;
    text-align: center;
}

#cookieLawBar .messageCookie, #cookieLawBar .messageCookie a {
    /*font-family: Arial;*/
    font-size: 14px;
    color: #FFF;
    line-height: 15px;
    font-weight: normal;
    padding: 0;
    display: inline-block;
}
#cookieLawBar .messageCookie a{
    text-decoration: underline;
}

#cookieLawBar i {
     font-style: italic!important;
}

@media all and (max-width: 767px) {
    #cookieLawBar .notification {
        padding: 15px;
        text-align: left;
    }

    #cookieLawBar .messageCookie, 
    #cookieLawBar .messageCookie a {
        font-size: 13px;
        line-height: 20px;
    }
}

@-webkit-keyframes slideDown {
    0%   {
        opacity: 0; 
        -webkit-transform: rotateX(-90deg);
    }
    100%   {
        opacity: 1; 
        -webkit-transform: rotateX(0deg);
    }
}
@-webkit-keyframes slideUp {
    0%   {
        opacity: 1; 
        -webkit-transform: rotateX(0deg);
    }
    100%   {
        opacity: 0; 
        -webkit-transform: rotateX(-90deg);
    }
}

@-moz-keyframes slideDown {
    0%   {
        opacity: 0; 
        -moz-transform: rotateX(-90deg);
    }
    100%   {
        opacity: 1; 
        -moz-transform: rotateX(0deg);
    }
}
@-moz-keyframes slideUp {
    0%   {
        opacity: 1; 
        -moz-transform: rotateX(0deg);
    }
    100%   {
        opacity: 0; 
        -moz-transform: rotateX(-90deg);
    }
}

@-o-keyframes slideDown {
    0%   {
        opacity: 0; 
        -o-transform: rotateX(-90deg);
    }
    100%   {
        opacity: 1; 
        -o-transform: rotateX(0deg);
    }
}
@-o-keyframes slideUp {
    0%   {
        opacity: 1; 
        -o-transform: rotateX(0deg);
    }
    100%   {
        opacity: 0; 
        -o-transform: rotateX(-90deg);
    }
}

#cookieLawBar .animateIn {
    -webkit-animation: slideDown 300ms;
    -moz-animation: slideDown 300ms;
    -o-animation: slideDown 300ms;
}

#cookieLawBar .animateOut {
    -webkit-animation: slideUp 300ms;
    -moz-animation: slideUp 300ms;
    -o-animation: slideUp 300ms;
}

#cookieBarText, #cookieBarText i{
    font-size: 14px;
}

