.cookie {
    width: 100%;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10004;
    text-align: left;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookie.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie__info {
    font-size: 15px;
    line-height: 25px;
    margin: 0;

    a {
        color: #D41461;
        text-decoration: underline;
    }

    a:hover {
        text-decoration: none;
    }
}

.cookie__info-wrapper {
    padding: 0 12px 40px;
}

.cookie__button-wrapper {
    padding: 0 12px 30px 0;
    text-align: end;
}

@media (max-width: 991px) {
    .cookie {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cookie__info-wrapper {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 30px;
    }

    .cookie__button-wrapper {
        text-align: start;
        padding-right: 0;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .cookie {
        padding: 20px 0;
    }

    .cookie__info-wrapper {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 20px;
    }

    .cookie__button-wrapper {
        padding-bottom: 10px;
    }
}