.cookie-validator {
    z-index: 10000000;
    position: fixed;
    background-color: #1D1D1B;
    color: #FFF;
    text-align: left;
    right:0;
    left: 0;
    bottom: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    line-height: 16px;
    padding: 16px 100px 16px 25px;
}

.cookie-confirmation {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border: 1px solid #FFF;
    -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;
    padding: 5px 10px;
    background-color: #FFF;
    color: #1D1D1B;
    font-family: "ITC Avant Garde Gothic Std", sans-serif;
}

@media screen and (max-width: 1024px) {
    .cookie-validator {
        padding: 16px 95px 16px 16px;
    }
}

@media screen and (max-width: 480px) {
    .cookie-validator {
        font-size: 12px;
        line-height: 14px;
    }
}