.cookie-validator {
    z-index: 1000;
    position: fixed;
    left: auto;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
    width: 400px;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 40px;
}
.cookie-validator span {
    text-align: left;
}
.cookie-validator a {
    border-bottom: 1px solid #FFFFFF;
}
.cookie-text {
}
.cookie-confirmation {
    position: absolute;
    top: 20px;
    right: 20px;
    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 {
}

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

@media screen and (max-width: 750px) {

    .cookie-validator#cookie-bottom {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }
    .cookie-validator {

        font-size: 16px;
        line-height: 22px;
        width: auto;
        padding: 20px;
        box-sizing: border-box;
    }
    .cookie-confirmation {
        top: 5px;
        right: 10px;
    }

}