.cookie-agreement {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: white;
    z-index: 9999999999;
    display: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.cookie-agreement .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 100%;
    margin: 20px auto;
    padding-right: 15px;
    padding-left: 15px;
}

.cookie-agreement__image {
    background-image: url("/bitrix/components/citrus/tszh.cookie.agreement/templates/.default/img/cookie.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-width: 30px;
    min-height: 30px;
}

.cookie-agreement__text {
    font-size: 12px;
    margin: 0 32px;
}

.cookie-agreement__button {
    font-size: 12px;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #3F3F3F;
    min-width: 170px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-agreement__button:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .cookie-agreement .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-agreement__image {
        display: none;
    }

    .cookie-agreement__text {
        min-width: 100%;
        margin: 0;
    }

    .cookie-agreement__button {
        margin-top: 16px;
        min-width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
