/* Исправление положения кнопки звонка */
.call-widget {
    position: fixed !important; /* Фиксированное положение */
    bottom: 20px !important; /* Отступ от низа */
    right: 20px !important; /* Отступ от правого края */
    z-index: 9999 !important; /* Поверх всех элементов */
    width: 65px !important; /* Размер кнопки */
    height: 65px !important;
    border-radius: 50% !important;
    background-color: #ff4500 !important; /* Цвет кнопки */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 30px !important;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease-in-out !important;
    cursor: pointer !important;
}

/* Адаптация для планшетов */
@media (max-width: 1024px) {
    .call-widget {
        width: 55px !important;
        height: 55px !important;
        bottom: 15px !important;
        right: 15px !important;
        font-size: 26px !important;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .call-widget {
        width: 50px !important;
        height: 50px !important;
        bottom: 10px !important;
        right: 10px !important;
        font-size: 24px !important;
    }
}

/* Исправление возможных перекрытий */
.t-popup_show .call-widget {
    display: none !important; /* Скрываем кнопку при открытых всплывающих окнах */
}

/* Анимация появления */
.call-widget {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


