.cookie-validator {
    z-index: 1000;
    position: fixed;
    left: 0; right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #f2f2f2;
    font-size: 12px;
    line-height: 60px;
    height: 60px;
    font-weight: 100;
    letter-spacing: 1px;
    text-align: center;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cookie-validator span {
    display: inline-block;
    text-align: center;
}
.cookie-validator a {

}
.cookie-text {
    margin: 0 30px;
}
.cookie-confirmation {
    border: 1px solid #F2F2F2;
    line-height: 22px;
    margin: 0;
    padding: 2px 6px;
    border-radius: 5px;
    cursor: pointer;

    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cookie-confirmation:hover {
    background: #F2F2F2;
    color: #000;
}

.cookie-validator#cookie-top {
    top: 0;
}
.cookie-validator#cookie-bottom {
    bottom: 0;
}

@media screen and (max-width: 750px) {
    .cookie-validator {
        line-height: 40px;
        height: 40px;
        font-size: 16px;
    }
    .cookie-validator#cookie-top {
        top: 76px;
    }
}