.cookie-alert {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    z-index: 100;
}

.cookie-alert__container {
    max-width: 940px;
    margin: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.14);
    border-radius: 4px;
}

.cookie-alert__left {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.cookie-alert__right {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.cookie-alert__btn {
    font-family: Lato;
    width: 88px;
    height: 45px;
    background: #FFFFFF;
    border: 1px solid #9DCA79;
    box-sizing: border-box;
    border-radius: 4px;
    margin: 24px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #7AAF4F;
}
.cookie-alert__btn:hover {
    color: #6b9847;
}

.cookie-alert__img {
    margin: 24px;
    height: 45px;
}

@media screen and (max-width: 768px) {
    .cookie-alert__container {
        display: block;
    }

    .cookie-alert__left {
        margin-right: 0;
    }

    .cookie-alert__btn {
        width: 100%;
    }
}

.cookie-alert__text {
    font-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #838587;
}

