.cookie-validator {
    z-index: 10000000;
    position: fixed;
    background-color: #FFF;
    color: #000;
    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: 14px;
    line-height: 16px;
    padding: 16px 200px 16px 120px;
    box-shadow: 0px -1px 11px -4px rgba(29,29,27,0.4);
    font-family: Gilroy;
}

.cookie-validator a{
    text-decoration: underline;
}

.cookie-confirmation {
    position: absolute;
    right:0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    background-color: #6c6358;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #FFF;
    width: 150px;
    text-align: center;
    font-weight: normal;
}

.cookie-confirmation:hover {
    background-color: #000;
}

.cookie-confirmation span {
    position: relative;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

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

    .cookie-validator {
        padding: 16px 200px 16px 80px;
    }

}

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

@media screen and (max-width: 480px) {
    .cookie-confirmation {
        width: 100px;
    }

    .cookie-validator {
        padding: 16px 125px 16px 25px;
    }

    .cookie-validator {
        font-size: 12px;
        line-height: 14px;
    }

}