.cookie-validator {
    z-index: 1000;
    position: fixed;
    left: auto;
    background: rgba(146,137,180,0.8);
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    max-width: 350px;
    text-align: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 40px;
    box-sizing: border-box;
}
.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: 20px;
    right: 20px;

}

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

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