@layer base {button,[role="button"] {cursor: pointer;}}
/* mobile */

    @media screen and (max-width: 768px) {
        #InnerPageTopBoxBreadcrumbs {
            display: block;
        }
    }
[v-cloak] {
            display: none;
        }

        /* ============================================
           ТУМБЛЕР (Toggle Switch) В СТИЛЕ PHOTOSHOP
           ============================================ */

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 40px;
            height: 22px;
            flex-shrink: 0;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #cbd5e1;
            border-radius: 34px;
            transition: 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
        }

        .toggle-slider::before {
            content: "";
            position: absolute;
            height: 16px;
            width: 16px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.3s ease;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch input:checked + .toggle-slider {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
        }

        .toggle-switch input:checked + .toggle-slider::before {
            transform: translateX(18px);
        }

        .toggle-switch input:focus + .toggle-slider {
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
        }

        .toggle-switch input:disabled + .toggle-slider {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Анимация пульсации при включении */
        .toggle-switch input:checked + .toggle-slider::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.15);
            animation: togglePulse 0.5s ease;
        }

        @keyframes togglePulse {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        /* Маленький размер тумблера для заголовка */
        .toggle-switch-sm {
            width: 32px;
            height: 18px;
        }

        .toggle-switch-sm .toggle-slider::before {
            height: 12px;
            width: 12px;
            left: 3px;
            bottom: 3px;
        }

        .toggle-switch-sm input:checked + .toggle-slider::before {
            transform: translateX(14px);
        }

        /* ============================================
           ОСТАЛЬНЫЕ СТИЛИ
           ============================================ */

        /* Все стили обернуты в #PublicConstructorPageView */
        #PublicConstructorPageView {
            width: 100%;
            cursor: default;
        }

        /* Анимации для слайдов */
        #PublicConstructorPageView .slide-left-enter-active,
        #PublicConstructorPageView .slide-left-leave-active {
            transition: transform 0.3s ease-out;
        }

        #PublicConstructorPageView .slide-left-enter-from,
        #PublicConstructorPageView .slide-left-leave-to {
            transform: translateX(-100%);
        }

        #PublicConstructorPageView .slide-left-enter-to,
        #PublicConstructorPageView .slide-left-leave-from {
            transform: translateX(0);
        }

        /* Анимация спиннера */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        #PublicConstructorPageView .animate-spin {
            animation: spin 1s linear infinite;
        }

        /* Анимация печатания */
        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0.6);
                opacity: 0.4;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        #PublicConstructorPageView .animate-bounce {
            animation: bounce 1.4s ease-in-out infinite;
        }

        /* Кастомный скроллбар */
        #PublicConstructorPageView .overflow-y-auto::-webkit-scrollbar,
        #PublicConstructorPageView .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }

        #PublicConstructorPageView .overflow-y-auto::-webkit-scrollbar-track,
        #PublicConstructorPageView .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        #PublicConstructorPageView .overflow-y-auto::-webkit-scrollbar-thumb,
        #PublicConstructorPageView .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #d1d1d1;
            border-radius: 3px;
        }

        #PublicConstructorPageView .overflow-y-auto::-webkit-scrollbar-thumb:hover,
        #PublicConstructorPageView .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #b1b1b1;
        }

        /* Обводка для всех компонентов при наведении */
        #PublicConstructorPageView.Constructor--editable .component-container {
            transition: outline 0.15s ease, outline-offset 0.15s ease;
            width: 100%;
        }

        #PublicConstructorPageView.Constructor--editable .component-container[data-component-code="UICommonLayout"] {
            outline: none !important;
            outline-offset: 0 !important;
        }

        #PublicConstructorPageView .component-container[data-component-code="UICommonLayout"]:hover {
            outline: none !important;
            outline-offset: 0 !important;
            box-shadow: none !important;
        }

        #PublicConstructorPageView input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            background: transparent;
            height: 4px;
            position: relative;
        }

        #PublicConstructorPageView input[type="range"]:focus {
            outline: none;
        }

        #PublicConstructorPageView input[type="range"]::-webkit-slider-runnable-track {
            height: 4px;
            background: #e5e7eb;
            border-radius: 8px;
            margin: 0;
        }

        #PublicConstructorPageView input[type="range"]::-moz-range-track {
            height: 4px;
            background: #e5e7eb;
            border-radius: 8px;
            margin: 0;
        }

        #PublicConstructorPageView input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            background: #3b82f6;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: -6px;
            position: relative;
            top: 50%;
            transform: translateY(0);
        }

        #PublicConstructorPageView input[type="range"]::-webkit-slider-thumb:hover {
            background: #2563eb;
            transform: translateY(0) scale(1.2);
        }

        #PublicConstructorPageView input[type="range"]::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: #3b82f6;
            border-radius: 50%;
            cursor: pointer;
            border: none;
            transition: all 0.2s;
        }

        #PublicConstructorPageView input[type="range"]::-moz-range-thumb:hover {
            background: #2563eb;
            transform: scale(1.2);
        }

        #PublicConstructorPageView input[type="range"]::-moz-range-progress {
            background-color: #3b82f6;
            height: 4px;
            border-radius: 8px;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] {
            display: block;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="1"] {
            min-height: 400px;
            margin: 0 auto;
            display: none;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="2"] {
            display: none;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="0"] {
            display: none;
        }

        .app-load {
            display: block !important;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="0"] img {
            max-height: 80px;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="0"] .toolbar-top {
            display: none;
        }

        #PublicConstructorPageView [data-grid="UILayout"] [data-grid-index="1"] {
            min-height: 0 !important;
            max-width: 100% !important;
            margin: auto !important;
        }

        #PublicConstructorPageView .component-toolbar {
            position: absolute;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border: 1px solid #e2e8f0;
            display: flex;
            gap: 2px;
            padding: 4px;
            z-index: 20;
            transition: all 0.15s ease;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.98);
        }

        #PublicConstructorPageView .component-toolbar.toolbar-top {
            top: -48px;
            transform-origin: bottom right;
        }

        #PublicConstructorPageView .component-toolbar.toolbar-bottom {
            bottom: -48px;
            transform-origin: top right;
        }

        #PublicConstructorPageView .component-toolbar {
            animation: toolbarFadeIn 0.15s ease;
        }

        @keyframes toolbarFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        #PublicConstructorPageView .component-toolbar button {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
            color: #64748b;
            font-size: 14px;
        }

        #PublicConstructorPageView .component-toolbar button:hover {
            background: #f1f5f9;
            color: #1e293b;
        }

        #PublicConstructorPageView .component-toolbar button:active {
            transform: scale(0.92);
        }

        #PublicConstructorPageView .component-toolbar .bi {
            font-size: 14px;
        }

        #PublicConstructorPageView .component-toolbar .w-px {
            width: 1px;
            background: #e2e8f0;
            margin: 0 4px;
        }

        #PublicConstructorPageView .component-toolbar .bg-blue-100.text-blue-600 {
            background: #dbeafe;
            color: #2563eb;
        }

        @media (max-width: 640px) {
            #PublicConstructorPageView .component-toolbar {
                padding: 3px;
                gap: 1px;
                border-radius: 10px;
            }

            #PublicConstructorPageView .component-toolbar button {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            #PublicConstructorPageView .component-toolbar.toolbar-top {
                top: -42px;
            }

            #PublicConstructorPageView .component-toolbar.toolbar-bottom {
                bottom: -42px;
            }
        }

        #PublicConstructorPageView .component-container[data-component-code="UICommonLayout"] .component-toolbar {
            display: none !important;
        }

        #PublicConstructorPageView .drag-over {
            border-color: #8b5cf6 !important;
            background-color: #f3e8ff !important;
        }

        #PublicConstructorPageView #InnerPageTopBox {
            margin-bottom: 24px;
        }

        #PublicConstructorPageView .overlay-fixed {
            pointer-events: all;
            z-index: 9999;
        }

        /* ============================================
           СТИЛИ ДЛЯ КНОПОК ВСТАВКИ (+ сверху/снизу)
        ============================================ */
        #PublicConstructorPageView .component-container .insert-buttons-wrapper {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 25;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        #PublicConstructorPageView .component-container:hover .insert-buttons-wrapper {
            opacity: 1;
            pointer-events: auto;
        }

        #PublicConstructorPageView .component-container .insert-buttons-wrapper.top {
            top: -24px;
            transform: translateX(-50%) translateY(-4px);
        }

        #PublicConstructorPageView .component-container:hover .insert-buttons-wrapper.top {
            transform: translateX(-50%) translateY(0);
        }

        #PublicConstructorPageView .component-container .insert-buttons-wrapper.bottom {
            bottom: -24px;
            transform: translateX(-50%) translateY(4px);
        }

        #PublicConstructorPageView .component-container:hover .insert-buttons-wrapper.bottom {
            transform: translateX(-50%) translateY(0);
        }

        #PublicConstructorPageView .insert-buttons-container {
            display: flex;
            gap: 4px;
            background: white;
            padding: 3px 5px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
            border: 1px solid #e2e8f0;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.95);
        }

        #PublicConstructorPageView .insert-btn {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: #94a3b8;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-size: 12px;
        }

        #PublicConstructorPageView .insert-btn:hover {
            background: #f1f5f9;
            color: #1e293b;
        }

        #PublicConstructorPageView .insert-btn-up:hover {
            background: #dbeafe;
            color: #2563eb;
        }

        #PublicConstructorPageView .insert-btn-down:hover {
            background: #dbeafe;
            color: #2563eb;
        }

        #PublicConstructorPageView .insert-btn:active {
            transform: scale(0.9);
        }

        #PublicConstructorPageView .component-container[data-component-code="UICommonLayout"] .insert-buttons-wrapper {
            display: none !important;
        }

        /* ============================================
           СТИЛИ ЧАТА В СТИЛЕ МЕССЕНДЖЕРА
        ============================================ */

        #PublicConstructorPageView .chat-messages-container {
            scroll-behavior: smooth;
        }

        #PublicConstructorPageView .chat-message-wrapper {
            margin-bottom: 1.25rem;
        }

        #PublicConstructorPageView .message-bubble {
            padding: 0.875rem 1rem;
            border-radius: 1rem;
            word-wrap: break-word;
            position: relative;
        }

        #PublicConstructorPageView .message-bubble-assistant {
            background: #f3f4f6;
            border: 1px solid #e5e7eb;
            border-bottom-left-radius: 4px;
            color: #1f2937;
        }

        #PublicConstructorPageView .message-bubble-user {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-bottom-right-radius: 4px;
            color: white;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
        }

        #PublicConstructorPageView .message-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        #PublicConstructorPageView .message-timestamp {
            font-size: 0.65rem;
            color: #9ca3af;
            margin-top: 0.25rem;
            padding: 0 0.25rem;
        }

        #PublicConstructorPageView .message-user .message-timestamp {
            padding-right: 0.5rem;
        }

        #PublicConstructorPageView .message-assistant .message-timestamp {
            padding-left: 0.5rem;
        }

        #PublicConstructorPageView .typing-indicator {
            display: flex;
            gap: 0.35rem;
            align-items: center;
            padding: 0.25rem 0;
            width: 50px;
        }

        #PublicConstructorPageView .typing-indicator span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #9ca3af;
            animation: typingBounce 1.4s ease-in-out infinite;
        }

        #PublicConstructorPageView .typing-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }

        #PublicConstructorPageView .typing-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingBounce {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.4;
            }
            30% {
                transform: translateY(-8px);
                opacity: 1;
            }
        }

        #PublicConstructorPageView .chat-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 1.25rem;
            color: #1f2937;
            font-size: 0.875rem;
            line-height: 1.6;
            resize: none;
            transition: all 0.2s ease;
            outline: none;
            font-family: inherit;
            min-height: 52px;
            max-height: 200px;
            overflow-y: auto;
        }

        #PublicConstructorPageView .chat-textarea:focus {
            border-color: #8b5cf6;
            background: white;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
        }

        #PublicConstructorPageView .chat-textarea::placeholder {
            color: #9ca3af;
        }

        #PublicConstructorPageView .chat-textarea:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background: #f3f4f6;
        }

        #PublicConstructorPageView .chat-input-area {
            background: white;
            padding: 0.75rem 0.5rem 0.25rem 0.5rem;
            border-top: 1px solid #f3f4f6;
        }

        #PublicConstructorPageView .message-bubble-assistant {
            width: fit-content;
        }

        /* Стили для Monaco Editor контейнеров */
        #PublicConstructorPageView #monaco-html-editor,
        #PublicConstructorPageView #monaco-js-editor,
        #PublicConstructorPageView #monaco-css-editor {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border-radius: 8px;
            overflow: hidden;
        }

        /* Стили для textarea базы данных */
        #PublicConstructorPageView .database-textarea {
            min-height: 400px;
            height: 100%;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            font-size: 14px;
            line-height: 1.6;
            padding: 1rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            color: #1f2937;
            resize: none;
            outline: none;
            width: 100%;
        }

        #PublicConstructorPageView .database-textarea:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
        }

        #PublicConstructorPageView .toolbar-top {
            margin-top: 24px;
        }

        #PublicConstructorPageView .toolbar-bottom {
            margin-bottom: 68px;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="0"] .removeComponent {
            display: none !important;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="0"] .insert-buttons-wrapper {
            display: none;
        }


        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="2"] .insert-buttons-wrapper {
            display: none;
        }


        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="0"] .component-toolbar {
            right: calc(100vw - 70px);
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="2"] .component-toolbar {
            right: calc(100vw - 70px);
            top: 5px;
        }

        #PublicConstructorPageView [data-grid="UICommonLayout"] [data-grid-index="2"] .removeComponent {
            display: none !important;
        }

        html body #PublicConstructorPageView img.social-icon {
            filter: none !important;
        }

        #PublicConstructorPageView [data-grid="UILayout"] [data-grid-index="0"] {
            display: block;
        }

        /* Динамический CSS компонентов - уже обернут в #PublicConstructorPageView */
        
#block0c732[v-cloak] { display: none; }
#block0c732 a { transition: color 0.2s ease-in-out; }
#block0c732 .block0c732-top-link:hover,
#block0c732 .block0c732-phone-link:hover,
#block0c732 .block0c732-mobile-link:hover,
#block0c732 .block0c732-mobile-toggle:hover { color: #ae892b !important; }
#block0c732 .block0c732-nav-link:hover { color: #ae892b !important; background-color: rgba(255,255,255,0.1); }
#block0c732 .block0c732-nav-active { color: #ae892b !important; font-weight: 600; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px; }

[v-cloak] { display: none; }
  #block5b8421-hero {
    background-image: url('/Modules/Storage/Storage/Files/Wc2beebb0/D43d125d0/F6a7c30e878054S82a57cf8.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

[v-cloak] { display: none; }

.block153d22-card {
  background-color: #ffffff;
  border: 1px solid #dce1e8;
  box-shadow: 0 1px 2px rgba(2, 18, 47, 0.05);
}

.block153d22-card:hover {
  border-color: #ae892b;
  box-shadow: 0 4px 12px rgba(2, 18, 47, 0.1);
  transform: translateY(-2px);
}


  [v-cloak] { display: none; }
  .blockfe1423-card { border-width: 1px; border-style: solid; }
  .blockfe1423-card:hover {
    border-color: #ae892b;
    box-shadow: 0 10px 30px rgba(2,18,47,0.08);
    transform: translateY(-4px);
  }
  .blockfe1423-icon { transition: background-color 0.3s ease, color 0.3s ease; }
  .blockfe1423-card:hover .blockfe1423-icon {
    background-color: #ae892b;
    color: #ffffff;
  }


[v-cloak] { display: none; }

[v-cloak] {
    display: none;
}

.blockf0f726-container {
    background-color: #ffffff;
}

.blockf0f726-header {
    border-color: #dce1e8;
    text-align: center;
}

.blockf0f726-title {
    color: #02122F;
}

.blockf0f726-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 4px;
    background-color: #ae892b;
    border-radius: 9999px;
    margin: 1rem auto 0;
}

.blockf0f726-subtitle {
    color: #5a6a7a;
}

.blockf0f726-card {
    background-color: #ffffff;
    border-color: #dce1e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blockf0f726-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(2, 18, 47, 0.1);
    border-color: #ae892b;
}

.blockf0f726-icon {
    background-color: #f5f7fa;
    color: #1a3a5c;
}

.blockf0f726-text {
    color: #2c3e50;
}

[v-cloak] {
    display: none;
}

[v-cloak] {
  display: none;
}
.block314c28-glightbox img {
  transition: transform 0.3s ease;
}
.block314c28-glightbox:hover img {
  transform: scale(1.05);
}

[v-cloak] { display: none; } #blockf34329 { scroll-margin-top: 100px; } #blockf34329 img { transition: transform 0.3s ease; } #blockf34329 img:hover { transform: scale(1.02); }

@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

[v-cloak] {
  display: none;
}

#block2edf30 .swiper {
  padding-bottom: 55px;
}

#block2edf30 .swiper-slide {
  height: auto;
}

#block2edf30 .swiper-button-prev,
#block2edf30 .swiper-button-next {
  color: #ae892b !important;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(2, 18, 47, 0.15);
  transition: all 0.2s ease;
}

#block2edf30 .swiper-button-prev:hover,
#block2edf30 .swiper-button-next:hover {
  color: #ffffff !important;
  background: #ae892b;
}

#block2edf30 .swiper-button-prev:after,
#block2edf30 .swiper-button-next:after {
  font-size: 18px;
  font-weight: 700;
}

#block2edf30 .swiper-pagination-bullet {
  background: #dce1e8;
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.2s ease;
}

#block2edf30 .swiper-pagination-bullet-active {
  background: #ae892b;
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  #block2edf30 .swiper-button-prev,
  #block2edf30 .swiper-button-next {
    display: none;
  }

  #block2edf30 .swiper {
    padding-bottom: 35px;
  }
}

[v-cloak]{display:none!important}.blockc6ad31-section{background-color:#f5f7fa}.blockc6ad31-inner{width:100%;max-width:1400px}.blockc6ad31-review-card{border:1px solid #dce1e8;background-color:#ffffff;transition:border-color .3s ease,box-shadow .3s ease}.blockc6ad31-review-card:hover{border-color:#ae892b;box-shadow:0 16px 32px rgba(2,18,47,.12)}.blockc6ad31-review-media{position:relative;overflow:hidden;aspect-ratio:9/16}.blockc6ad31-review-card img{transition:transform .5s ease;will-change:transform}.blockc6ad31-review-card:hover img{transform:scale(1.05)}.blockc6ad31-review-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(2,18,47,.85),rgba(2,18,47,.15) 45%,rgba(2,18,47,0));opacity:0;transition:opacity .3s ease}.blockc6ad31-review-card:hover .blockc6ad31-review-overlay{opacity:1}.blockc6ad31-review-action{position:absolute;left:1rem;right:1rem;bottom:1rem;opacity:0;transform:translateY(8px);transition:opacity .3s ease,transform .3s ease}.blockc6ad31-review-card:hover .blockc6ad31-review-action{opacity:1;transform:translateY(0)}.blockc6ad31-glightbox{cursor:zoom-in}.blockc6ad31-button-primary:hover{background-color:#0f2a47!important}

[v-cloak] { display: none; } .block3f7f32-animate { opacity: 0; } .block3f7f32-card { transition: border-color 0.2s ease, box-shadow 0.2s ease; } .block3f7f32-card:hover { border-color: #ae892b; box-shadow: 0 4px 12px rgba(2,18,47,0.1); } #block3f7f32-contact a[target='_blank'] { transition: background-color 0.2s ease; } #block3f7f32-contact a[target='_blank']:hover { background-color: #ae892b; }

[v-cloak] {
    display: none !important;
}

#block664c5-footer {
    background-color: #f5f7fa;
    border-top: 1px solid #dce1e8;
}

#block664c5-footer a {
    text-decoration: none;
}

#block664c5-footer h3,
#block664c5-menu-title,
#block664c5-contacts-title,
#block664c5-docs-title {
    color: #02122F;
}

#block664c5-site-name {
    color: #02122F;
    font-weight: 700;
}

#block664c5-logo-img {
    /* Убрано min-width: 150px, чтобы логотип не деформировался */
}

#block664c5-description,
#block664c5-contacts-address span,
#block664c5-contacts-worktime span {
    color: #5a6a7a;
}

#block664c5-docs-empty p,
#block664c5-copyright,
#block664c5-made {
    color: #8c9aa8;
}

#block664c5-bottom {
    border-color: #dce1e8;
}

.block664c5-menu-link,
.block664c5-doc-link,
.block664c5-contact-link {
    color: #5a6a7a;
    transition: color 0.2s ease;
}

.block664c5-menu-link:hover,
.block664c5-doc-link:hover,
.block664c5-contact-link:hover {
    color: #ae892b;
}

.block664c5-menu-link-active {
    color: #ae892b !important;
    font-weight: 500;
}

.block664c5-social-link {
    border: 1px solid #dce1e8;
    background-color: #ffffff;
    border-radius: 0.5rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.block664c5-social-link:hover {
    border-color: #ae892b;
    background-color: #f5f7fa;
    box-shadow: 0 4px 12px rgba(2, 18, 47, 0.08);
}

.block664c5-social-link .social-icon {
    filter: none !important;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.block664c5-social-link:hover .social-icon {
    opacity: 1;
}

#block664c5-contacts-list .bi,
#block664c5-docs-list .bi {
    color: #ae892b;
}

@media (max-width: 768px) {
    #block664c5-grid {
        gap: 2rem;
    }
}
/* CSS классы темы */
         .ui_body_color_bg { background: #ffffff; }  .ui_body_color_text { color: #ffffff; }  .ui_general_color_bg { background: #02122F; }  .ui_general_color_text { color: #02122F; }  .ui_additional_color_bg { background: #1a3a5c; }  .ui_additional_color_text { color: #1a3a5c; }  .ui_active_color_bg { background: #ae892b; }  .ui_active_color_text { color: #ae892b; }  .ui_text_color { color: ; }
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slideUp {
    animation: slideUp 0.4s ease-out;
}

#CookieCodeWidget .hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
html body {
        overflow-y: scroll !important;
        margin: 0 !important;
    }

    [v-cloak] {
        display: none !important;
    }