.cookie-acceptance {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    left: auto;
    right: 0;
    max-width: 100%;
    width: 100%;
    padding: 15px;
    background-color: white;
    border-radius: 0;
    box-shadow: 0 5px 30px -8px #000;
    z-index: 999;
}

.cookie-acceptance p {
    margin: 0;
    font-size: 16px;
    text-align: left;
    color: #6b6b6b;
    line-height: 22px;
}

.cookie-acceptance a {
    color: #106eea;
    transition: all .3s ease;
    text-decoration: none;
}

.cookie-acceptance a:hover {
    color: #03228f;
    text-decoration: unset;
}

@media (min-width: 576px) {
    .cookie-acceptance {
        column-gap: 10px !important;
        align-items: center !important;
    }
}

@media (max-width: 575px) {
    .cookie-acceptance {
        display: flex;
        text-align: left;
    }
}