/* 33558 / Сайт - Доработка - Добавить всплывающее уведомление об использовании куки / ртм_AndreyAA / Начало */

.rtm-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #265995e0;
    color: #daecff;
    padding: 16px 15px 15px 25px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9000000000000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
    backdrop-filter: blur(4px);
    font-size: 15px;
}

.rtm-cookie-consent__text {
    margin-right: 25px;
    flex-grow: 1;
}

.rtm-cookie-consent__text span {
    display: inline-block;
}

.rtm-cookie-consent__button {
    background: #daecff;
    color: #1e4b7d;
    border: none;
    padding: 6px 22px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.rtm-cookie-consent__button:hover {
    background: #ffffff;
}

@media (max-width: 768px) {
    .rtm-cookie-consent {
        flex-direction: column;
        text-align: center;
    }

    .rtm-cookie-consent__text {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .rtm-cookie-consent__text span {
        display: inline;
    }

    .rtm-cookie-consent__button {
        width: 100%;
    }
}

/* 33558 / Сайт - Доработка - Добавить всплывающее уведомление об использовании куки / ртм_AndreyAA / Конец */