.cookies-alert {
    display: flex;
    z-index: 9999999;
    width: 100%;
    position: fixed;
    bottom: 0;
    margin-bottom: 40px;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}
.cookies-alert-box {
    display: flex;
    align-items: center;
    border-radius: 30px;
    background-color: #fff;
    flex-direction: row;
    box-shadow: 0 0 8px gray;
}
@media screen and (max-width: 768px) {
    .cookies-alert-box {
        background-color: transparent;
        flex-direction: column-reverse;
        box-shadow: none;
    }
}
.cookies-alert-box__text {
    padding: 13px 30px;
    font-size: 12px;
}
@media screen and (max-width: 768px) {
    .cookies-alert-box__text {
        font-size: 13px;
        border-radius: 0;
        background-color: #fff;
        flex-direction: row;
        box-shadow: 0 0 8px gray;
    }
}

.cookies-alert-box__link {
    color: #042E84;
    text-decoration: underline;
    display: inline;
}
.cookies-alert-box__button {
    cursor: pointer;
    margin-right: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #CBCBCB;
    text-align: center;
    font-size: 16px;
    align-self: unset;
}
@media screen and (max-width: 768px) {
    .cookies-alert-box__button {
        align-self: flex-end;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 0;
    }
}