

/* Start:/local/templates/gk-imt/styles.css?177737581010541*/
.fl-btn-container {
            max-width: 800px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
        }

        .fl-btn-title {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .fl-btn-text {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .fl-btn-demo {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }

        /* Стили для плавающей кнопки */
        .fl-btn-wrapper {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .fl-btn-main {
            background: linear-gradient(135deg, #41bb4c 0%, #34a844 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(65, 187, 76, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
            animation: fl-btn-pulse 2s infinite;
            padding: 15px 25px;
            min-width: 180px;
        }

        .fl-btn-main:hover {
            animation: none;
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(65, 187, 76, 0.7);
        }

        @keyframes fl-btn-pulse {
            0% {
                box-shadow: 0 6px 20px rgba(65, 187, 76, 0.5);
            }
            50% {
                box-shadow: 0 6px 30px rgba(65, 187, 76, 0.8);
            }
            100% {
                box-shadow: 0 6px 20px rgba(65, 187, 76, 0.5);
            }
        }

        .fl-btn-options {
            position: absolute;
            bottom: 75px;
            right: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .fl-btn-wrapper:hover .fl-btn-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .fl-btn-option {
            background: linear-gradient(135deg, #41bb4c 0%, #34a844 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            color: white;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            padding: 12px 20px;
            min-width: 180px;
            justify-content: flex-start;
        }

        .fl-btn-option:hover {
            transform: translateX(-5px);
            box-shadow: 0 6px 20px rgba(65, 187, 76, 0.6);
        }

        .fl-btn-option i {
            margin-right: 10px;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .fl-btn-option:nth-child(1) {
            transition-delay: 0.1s;
        }

        .fl-btn-option:nth-child(2) {
            transition-delay: 0.1s;
        }

        .fl-btn-option:nth-child(3) {
            transition-delay: 0.1s;
        }

        .fl-btn-option:nth-child(4) {
            transition-delay: 0.1s;
        }

        /* Модальные окна */
        .fl-btn-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .fl-btn-modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 700px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: fl-btn-modal-appear 0.4s ease;
        }

        @keyframes fl-btn-modal-appear {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fl-btn-close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #7f8c8d;
            cursor: pointer;
            transition: color 0.3s;
        }

        .fl-btn-close-modal:hover {
            color: #e74c3c;
        }

        .fl-btn-modal-title {
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }

        .fl-btn-chat-container {
            height: 500px;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .fl-btn-chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f9f9f9;
            display: flex;
            flex-direction: column;
        }

        .fl-btn-message {
            margin-bottom: 15px;
            padding: 15px;
            border-radius: 10px;
            max-width: 90%;
            line-height: 1.5;
            word-wrap: break-word;
        }

        .fl-btn-user-message {
            background: #41bb4c;
            color: white;
            margin-left: auto;
            border-bottom-right-radius: 3px;
        }

        .fl-btn-ai-message {
            background: white;
            color: #333;
            border: 1px solid #ddd;
            border-bottom-left-radius: 3px;
        }

        /* Специальные стили для медицинских ответов */
        .fl-btn-medical-advice {
            background: #f8f9fa;
            border-left: 4px solid #41bb4c;
            padding: 15px;
            margin: 10px 0;
            border-radius: 0 8px 8px 0;
        }

        .fl-btn-medical-list {
            margin: 15px 0;
            padding-left: 20px;
        }

        .fl-btn-medical-list li {
            margin-bottom: 10px;
            line-height: 1.5;
            position: relative;
            padding-left: 10px;
        }

        .fl-btn-medical-list li:before {
            content: "•";
            color: #41bb4c;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .fl-btn-examination-item {
            margin: 8px 0;
            padding: 8px 12px;
            background: #e8f5e9;
            border-radius: 6px;
            border-left: 3px solid #41bb4c;
        }

        .fl-btn-examination-name {
            font-weight: 600;
            color: #2c3e50;
        }

        .fl-btn-examination-purpose {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-top: 4px;
        }

        .fl-btn-warning {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 12px 15px;
            margin: 15px 0;
            color: #856404;
            font-size: 14px;
        }

        .fl-btn-important {
            font-weight: 600;
            color: #d63031;
        }

        .fl-btn-emergency {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            border-radius: 8px;
            padding: 12px 15px;
            margin: 15px 0;
            color: #721c24;
            font-size: 14px;
        }

        .fl-btn-emergency-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .fl-btn-symptoms-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 10px 0;
        }

        .fl-btn-symptom-tag {
            background: #f1c40f;
            color: #7d6608;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.85em;
        }

        .fl-btn-chat-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid #ddd;
            background: white;
        }

        .fl-btn-chat-input input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 16px;
            margin-right: 10px;
        }

        .fl-btn-chat-input button {
            padding: 12px 20px;
            background: linear-gradient(135deg, #41bb4c 0%, #34a844 100%);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .fl-btn-chat-input button:hover {
            transform: scale(1.05);
        }

        .fl-btn-typing-indicator {
            display: none;
            padding: 10px 15px;
            color: #7f8c8d;
            font-style: italic;
        }

        .fl-btn-typing-indicator span {
            animation: fl-btn-typing 1.5s infinite;
        }

        @keyframes fl-btn-typing {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }

        .fl-btn-main-text {
            display: flex;
            align-items: center;
        }

        .fl-btn-main-text i {
            margin-left: 8px;
            font-size: 14px;
            transition: transform 0.3s;
        }

        .fl-btn-wrapper:hover .fl-btn-main-text i {
            transform: rotate(180deg);
        }

        /* Стили для улучшенной прокрутки */
        .fl-btn-chat-messages::-webkit-scrollbar {
            width: 6px;
        }

        .fl-btn-chat-messages::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .fl-btn-chat-messages::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }

        .fl-btn-chat-messages::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
/* End */


/* Start:/local/templates/gk-imt/template_styles.css?177737776557*/
.about-company .img {
border-radius: 4rem;
width: 100%;
}
/* End */
/* /local/templates/gk-imt/styles.css?177737581010541 */
/* /local/templates/gk-imt/template_styles.css?177737776557 */
