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