.cookie {
    position: fixed;
    bottom: 0;
    background: #FFFFFF;
    z-index: 99;
    width: 100%;
}

.cookie__wrapper {
    max-width: 1350px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.cookie__column {
    display: flex;
    align-items: center;
    padding: 17px 0;
}

.cookie__img {
    width: auto;
    height: 22px;
    margin-right: 14px;
}

.cookie__text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    color: #000000;
    margin-bottom: 0;
}

.cookie__link {
    color: #000000;
    text-decoration: underline;
}

.cookie__link:hover, .cookie__link:active, .cookie__link:visited {
    color: #000000;
}

.cookie__button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    background-color: #C20D20;
    color: #FFFFFF;
    border: none;
    border-radius: 64px;
    padding: 10px 16px;
}

@media screen and (max-width: 1350px) {
    .cookie__wrapper {
        max-width: 100%;
        width: 100%;
        padding: 16px 24px;
    }
}

@media screen and (max-width: 375px) {
    .cookie__img {
        display: none;
    }    
}