    /* Круглая кнопка с телефоном */
        .phone-button {
            position: fixed;
            bottom: 5%;
            right: 5%;
            width: 80px;
            height: 80px;
            background-color: #ef0d50;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 1000;
            animation: none;
        }

        /* Анимация подергивания */
        @keyframes wiggle {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(20deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(-25deg); }
            100% { transform: rotate(0deg); }
        }

        /* Класс для запуска анимации подергивания */
        .animate {
            animation: wiggle 0.5s;
        }

        /* Иконка телефона */
        .phone-button::before {
            content: none;
        }

        /* Модальное окно */
        .modal {
            display: none; /* Скрыто по умолчанию */
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 10% auto;
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 20px;

            border: 1px solid #888;
            width: 300px;
            border-radius: 10px;
            position: relative;
            text-align: center;
        }

        .close {
            color: #aaa;
            position: absolute;
            top: -5px;
            right: 10px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
        }

        /* Таймер */
        .timer {
            width: 50px;
            height: 50px;
            border: 3px solid #ef0d50;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            /*margin: 20px auto;*/
            font-size: 18px;
            padding-top: 7px;
            color: #ef0d50;
            /* Скрыт по умолчанию */
            display: none;
        }

        /* Сообщение об успехе */
        .success-message {
            display: none;
            color: green;
            font-weight: bold;
            margin-top: 20px;
        }

        /* Сообщение об ошибке */
        .error-message {
            display: none;
            color: red;
            font-weight: bold;
            margin-top: 10px;
        }

        /* Сообщение ожидания */
        .waiting-message {
            display: none;
            font-size: 18px;
            font-weight: bold;
            margin-top: 20px;
        }
        .timer-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 20px auto;
    display: none; /* Скрыт по умолчанию */
}

.timer-svg {
    transform: rotate(-90deg);
    width: 100px;
    height: 100px;
}

.timer-circle-bg {
    fill: none;
    stroke: #ef0d50;
    stroke-width: 10;
    opacity: 0.2;
}

.timer-circle {
    fill: none;
    stroke: #ef0d50;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 283; /* 2 * PI * r (r=45) */
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #ef0d50;
}