.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: 40px;
    height: 40px;
    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;
    margin: 0 30px;
}
.cookie-validator a{
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}
.cookie-validator a {

}
.cookie-validator svg, .cookie-validator i {
    z-index: 1;
    position: absolute;
    right: 10px;
    font-size: 20px;
    width: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 2px;
    border-radius: 1px;
}
.cookie-validator svg:hover, .cookie-validator i:hover {
    color: #000;
    background: #FFF;
}

.cookie-validator#cookie-top {
    top: 0;
}
.cookie-validator#cookie-top svg, .cookie-validator#cookie-top i {
    top: 10px;
}
.cookie-validator#cookie-bottom {
    bottom: 0;
}
.cookie-validator#cookie-bottom svg, .cookie-validator#cookie-bottom i {
    bottom: 10px;
}
@media screen and (max-width: 750px) {
    .cookie-validator {
        line-height: 26px;
        height: auto;
        font-size: 14px;
        padding: 10px 0;
    }
    .cookie-validator span {
        text-align: justify;
        margin: 0 60px 0 30px;
    }
    .cookie-validator#cookie-top {
        top: 60px;
        height: auto;
    }

    .cookie-validator#cookie-top svg, .cookie-validator#cookie-top i {
        top: 10px;
        font-size: 30px;
    }
    .cookie-validator#cookie-bottom svg, .cookie-validator#cookie-bottom i {
        bottom: 20px;
        font-size: 30px;
    }
}