
/** COOKIE NOTIFICATION */

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.cookie-notification {
    position: fixed;
    left: 0px;
    bottom: 0px;

    background-color: #5a5a5a;
    border: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: #fff;
    font-weight: bold;
    margin: 0 -15px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    z-index: 999;
    padding-top: 7px;
    padding-bottom: 6px;

    animation: 1s ease-out 0s 1 slideInFromLeft;

}

.cookie-notification .text {
    padding: 0 15px;
    display: block;
}

.cookie-notification a {
    background-color: #303030;
    border: 1px solid rgba(0,0,0,.1);
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    line-height: 19px;
    padding: 4px 8px;
    text-decoration: none;
    white-space: nowrap;
}

/** /COOKIE NOTIFICATION */

