.cookie{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #f8f8f8;
    z-index: 999;
}
.cookie__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

.cookie__text{
    font-size: 15px;
    text-align: left;
    color: #756657;
    font-weight: bold;
    max-width: 75%;
}
@media (max-width: 520px) {
    .cookie__wrapper{
        flex-flow: column;
    }
    .cookie__text{
        max-width: 100%;
        margin-bottom: 15px;
    }
}