.cookies {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 200;
    background-color: #0c0a09;
    -webkit-box-shadow: 2px 0 20px rgba(156, 156, 156, 0.2);
    box-shadow: 2px 0 20px rgba(156, 156, 156, 0.2);
}

.cookies__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cookies__image {
    width: 5rem;
    height: 5rem;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.cookies__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cookies__text {
    line-height: 1.5;
}

.cookies__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

@media (max-width: 47.99875em) {
    .cookies {
        padding: 0 0 1.25rem;
        text-align: center;
    }

    .cookies__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.25rem;
    }

    .cookies__image {
        margin-top: -2.5rem;
    }

    .cookies__button {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
