.gdpr {
    display: table;
    width: 100%;
    left: 0;
    z-index: 10000000;
    background-color: #f0f0f1;
    color: #252526;
    line-height: 21px;
    padding: 20px;
    border: 4px solid #fff;
    font-family: proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 13px;
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    border-bottom: 0;
    box-shadow: 0 0 7px #000;
}
.gdpr.gdpr--hidden {
    display: none;
}

.gdpr__message a,
.gdpr__message a:hover {
    color: #18b43a;
    font-weight: 700;
}

.gdpr__message,
.gdpr__buttons {
    display: table-cell;
}

.gdpr__buttons {
    text-align: right;
    width: 40px;
}

@media (min-width: 625px) {
    .gdpr {
        left: 50%;
        max-width: 625px;
        margin-left: -312px;
    }
}

.gdpr__close {
    width: 22px;
    height: 22px;
    position: relative;
    border-radius: 50%;
    border: 1px solid #252526;
    cursor: pointer;
    z-index: 2;
    display: inline-block;
}
.gdpr__close-before,
.gdpr__close-after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    border-radius: 0;
    top: 10px;
    z-index: 0;
    background-color: #252526;
}
.gdpr__close-before {
    left: 4px;
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
}
.gdpr__close-after {
    -ms-transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
    right: 4px;
}
