

/* Start:/local/templates/new/main.css?177994893216377*/
/* Импорт шрифта Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Контейнер со скроллом */
/* Контейнер со скроллом */
.scrollbar {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(38, 137, 158, 0.4) rgba(224, 242, 244, 0.5);
    padding-bottom: 15px;
}

/* 1. Общие параметры */
.scrollbar::-webkit-scrollbar {
    height: 8px; /* Чуть тоньше — выглядит элегантнее */
    width: 8px;
    cursor: pointer !important;
}

/* 2. Дорожка — полупрозрачная и нежная */
.scrollbar::-webkit-scrollbar-track {
    background: rgba(209, 238, 240, 0.4); /* Акцентный цвет с прозрачностью */
    border-radius: 12px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.03);
    margin: 0 8px;
}

/* 3. Ползунок — размытый, мягкий, с градиентом */
.scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(
            135deg,
            rgba(38, 137, 158, 0.5) 0%,
            rgba(38, 137, 158, 0.3) 100%
    );
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4); /* Белая полупрозрачная граница */
    backdrop-filter: blur(2px); /* Эффект матового стекла */
    transition: all 0.3s ease;
    cursor: pointer !important;
}

/* При наведении — становится чуть плотнее, но всё ещё мягкий */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
            135deg,
            rgba(38, 137, 158, 0.6) 0%,
            rgba(38, 137, 158, 0.4) 100%
    );
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

/* Мини-версия */
.scrollbar.min::-webkit-scrollbar {
    height: 3px;
}
.scrollbar.min::-webkit-scrollbar-thumb {
    border: none;
    background: rgba(38, 137, 158, 0.3);
}

/* Специфично для горизонтального скролла */
.scrollbar.Y::-webkit-scrollbar {
    height: 10px;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .scrollbar::-webkit-scrollbar {
        height: 3px;
    }
    .scrollbar::-webkit-scrollbar-thumb {
        background: rgba(38, 137, 158, 0.35);
        border: none;
        backdrop-filter: none;
    }
}


/* Хедер */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 109, 119, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* 2) ЛОГОТИП – фиксированные размеры ВЕЗДЕ */
.logotype {
    width:120px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-svg {
    width: 42px;    /* Чёткий фиксированный размер */
    height: 42px;
    flex-shrink: 0;
    display: block;
}

.logo-text {
    font-size: 22px;            /* Чёткий фиксированный размер */
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #006d77, #83c5be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Поиск */
.search-wrapper {
    flex: 1;
    max-width: 480px;
    margin: 0 24px;
    position: relative;
    display: block;
}

.search-wrapper input {
    width: 100%;
    height: 44px;
    padding: 0 20px 0 44px;
    border: 2px solid #e0f2f1;
    border-radius: 14px;
    font-size: 15px;
    background: #f8fcfc;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.search-wrapper input:focus {
    border-color: #006d77;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 109, 119, 0.08);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #006d77;
    font-size: 16px;
    pointer-events: none;
}

/* Навигация */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #006d77;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-link:hover {
    background: rgba(0, 109, 119, 0.08);
}

/* Выпадающее меню (Десктоп) */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(0, 48, 73, 0.15);
    border: 1px solid rgba(0, 109, 119, 0.1);
    padding: 8px;
    display: none;
    z-index: 1000;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #006d77;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown a:hover {
    background: #f0fafa;
}

/* 1) БУРГЕР – ТОЛЬКО на мобилке */
#menuToggle {
    display: none; /* Скрыт по умолчанию (десктоп) */
    align-items: center;
    justify-content: center;
    background: #f0fafa;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    color: #006d77;
    cursor: pointer;
    border-radius: 12px;
    margin-left: 12px;
}

#menuToggle:hover {
    background: #e0f4f4;
}

/* ===== АДАПТИВНОСТЬ ===== */

/* Планшеты и десктоп (768px и выше) – поиск виден */
@media (min-width: 768px) {
    .search-wrapper {
        display: block !important;
    }
}

/* Мобилка (до 768px) – поиск скрыт, бургер показан */
@media (max-width: 767px) {
    .header-inner {
        padding: 0 16px;
    }

    /* 3) Поиск исчезает ТОЛЬКО на мобилке */
    .search-wrapper {
        display: none !important;
    }

    /* 1) Бургер виден на мобилке */
    #menuToggle {
        display: flex !important;
        order: 3;
        margin-left: auto;
    }

    /* Мобильное меню */
    #mainNav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 16px;
        border-bottom: 2px solid #e0f2f1;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        z-index: 1000;
    }

    #mainNav.active {
        display: flex;
    }

    .nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #f0f7f7;
        justify-content: space-between;
    }

    .dropdown {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: #f9fdfd;
    }
}

/* Десктоп (993px и выше) – бургер скрыт */
@media (min-width: 993px) {
    #menuToggle {
        display: none !important; /* Бургер не виден на десктопе */
    }

    .nav {
        display: flex !important; /* Меню видно */
    }
}

/* Планшеты (768px - 992px) – бургер виден, поиск виден */
@media (min-width: 768px) and (max-width: 992px) {
    #menuToggle {
        display: flex !important; /* Бургер виден */
    }

    .nav {
        display: none; /* Меню скрыто */
    }

    #mainNav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 16px;
        border-bottom: 2px solid #e0f2f1;
    }

    #mainNav.active {
        display: flex;
    }

    .nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #f0f7f7;
    }

    .dropdown {
        position: static !important;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: #f9fdfd;
    }
}

/* Мелкие правки для совсем малых экранов */
@media (max-width: 480px) {
    .header-inner {
        height: 64px;
    }

    #mainNav {
        top: 64px;
    }
}
/* Убедитесь, что у родителя есть позиционирование */
.nav-item {
    position: relative;
    padding-bottom: 10px; /* Создает невидимый "мостик" под текстом */
    margin-bottom: -10px;
}

/* Настройка выпадающего списка */
.dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Устанавливает меню точно под нижней границей .nav-item */
    left: 0;
    z-index: 1000;
    margin-top: -5px; /* Убираем отступ, который создает дыру */

    /* Если визуально нужен отступ, используйте padding внутри dropdown или border */
    border-top: 10px solid transparent; /* Невидимая область для легкого перехода мыши */
    background-clip: padding-box;
}

/* Чтобы меню не скрывалось, когда мышь на "невидимой границе" */
.dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
/* ==========================================
   🌟 GEEK LOADER — стили анимаций
   ========================================== */

:root {
    --gl-color: #009999;
    --gl-duration: 0.8s;
}

/* === Контейнер === */
.gl-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 12px;
    animation: glFadeIn 0.3s ease;
}

.gl-text {
    font-size: 14px;
    color: var(--gl-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: glPulseText 1.5s ease-in-out infinite;
}

/* === Размеры === */
.gl-sm .gl-text { font-size: 11px; }
.gl-sm .gl-spinner { width: 24px; height: 24px; }
.gl-sm .gl-pulse-dot { width: 8px; height: 8px; }
.gl-sm .gl-dot { width: 6px; height: 6px; }
.gl-sm .gl-wave-bar { width: 3px; height: 16px; }
.gl-sm .gl-ring-circle { width: 24px; height: 24px; border-width: 3px; }

.gl-md .gl-spinner { width: 36px; height: 36px; }
.gl-md .gl-pulse-dot { width: 12px; height: 12px; }
.gl-md .gl-dot { width: 10px; height: 10px; }
.gl-md .gl-wave-bar { width: 4px; height: 28px; }
.gl-md .gl-ring-circle { width: 36px; height: 36px; border-width: 4px; }

.gl-lg .gl-text { font-size: 16px; }
.gl-lg .gl-spinner { width: 50px; height: 50px; }
.gl-lg .gl-pulse-dot { width: 16px; height: 16px; }
.gl-lg .gl-dot { width: 14px; height: 14px; }
.gl-lg .gl-wave-bar { width: 6px; height: 40px; }
.gl-lg .gl-ring-circle { width: 50px; height: 50px; border-width: 5px; }

/* === 1. SPINNER (классический) === */
.gl-spinner {
    position: relative;
}

.gl-spinner-blade {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gl-color);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    opacity: 0.2;
    animation: glSpinBlade var(--gl-duration) linear infinite;
}

.gl-spinner-blade:nth-child(1) { transform: rotate(0deg) translateX(-50%); animation-delay: 0s; }
.gl-spinner-blade:nth-child(2) { transform: rotate(45deg) translateX(-50%); animation-delay: 0.1s; }
.gl-spinner-blade:nth-child(3) { transform: rotate(90deg) translateX(-50%); animation-delay: 0.2s; }
.gl-spinner-blade:nth-child(4) { transform: rotate(135deg) translateX(-50%); animation-delay: 0.3s; }
.gl-spinner-blade:nth-child(5) { transform: rotate(180deg) translateX(-50%); animation-delay: 0.4s; }
.gl-spinner-blade:nth-child(6) { transform: rotate(225deg) translateX(-50%); animation-delay: 0.5s; }
.gl-spinner-blade:nth-child(7) { transform: rotate(270deg) translateX(-50%); animation-delay: 0.6s; }
.gl-spinner-blade:nth-child(8) { transform: rotate(315deg) translateX(-50%); animation-delay: 0.7s; }

/* === 2. PULSE === */
.gl-pulse {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gl-pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gl-color);
    animation: glPulse 1.4s ease-in-out infinite;
}

.gl-pulse-dot:nth-child(2) { animation-delay: 0.2s; }
.gl-pulse-dot:nth-child(3) { animation-delay: 0.4s; }

/* === 3. DOTS (перепрыгивающие) === */
.gl-dots {
    display: flex;
    gap: 6px;
}

.gl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gl-color);
    animation: glBounce 1.4s ease-in-out infinite;
}

.gl-dot:nth-child(2) { animation-delay: 0.16s; }
.gl-dot:nth-child(3) { animation-delay: 0.32s; }

/* === 4. WAVE (волна) === */
.gl-wave {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.gl-wave-bar {
    width: 4px;
    height: 30px;
    background: var(--gl-color);
    border-radius: 4px;
    animation: glWave 1.2s ease-in-out infinite;
}

.gl-wave-bar:nth-child(2) { animation-delay: 0.1s; }
.gl-wave-bar:nth-child(3) { animation-delay: 0.2s; }
.gl-wave-bar:nth-child(4) { animation-delay: 0.3s; }
.gl-wave-bar:nth-child(5) { animation-delay: 0.4s; }

/* === 5. RING (кольцо) === */
.gl-ring-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(0,0,0,0.1);
    border-top-color: var(--gl-color);
    animation: glSpin 1s linear infinite;
}

/* === Оверлей === */
.gl-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: glFadeIn 0.3s ease;
}

/* === Состояние контейнера === */
.gl-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

/* === Анимации === */
@keyframes glSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glSpinBlade {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

@keyframes glPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes glBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
}

@keyframes glWave {
    0%, 60%, 100% { transform: scaleY(0.4); opacity: 0.3; }
    30% { transform: scaleY(1); opacity: 1; }
}

@keyframes glPulseText {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes glFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.gl-fade-out {
    animation: glFadeOut 0.3s ease forwards;
}

@keyframes glFadeOut {
    to { opacity: 0; transform: scale(0.95); }
}

/* End */


/* Start:/local/templates/new/seo.css?17799502023676*/
:root {
    --brand-main: #26899e;
    --brand-light: #e0f2f4;
    --brand-accent: #d1eef0;
    --text-main: #2c3e50;
}

/* Общий контейнер с премиальной тенью */
.premium-seo-wrapper {
    margin: 60px 0 40px;
    background: #ffffff;
    border-radius: 16px;
    position: relative;
    /* Сложная многослойная тень для объема */
    box-shadow:
            0 4px 6px -1px rgba(38, 137, 158, 0.05),
            0 10px 30px -5px rgba(38, 137, 158, 0.1);
    border: 1px solid rgba(38, 137, 158, 0.15);
    overflow: hidden;
}

/* Декоративная линия вверху */
.premium-seo-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-main), var(--brand-accent));
}

/* Контентная область */
#seo-accordion {
    position: relative;
    max-height: 180px; /* Прижатый вид в начале */
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 40px 0;
}

/* Стилизация текста */
.seo-content-body {
    font-family: 'Georgia', serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
}

.seo-content-body h2 {
    font-size: 22px;
    color: var(--brand-main);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

/* Акцентный абзац (первый) */
.seo-content-body p:first-of-type {
    font-size: 16px;
    color: var(--text-main);
    opacity: 0.9;
    border-left: 3px solid var(--brand-main);
    padding-left: 20px;
    margin-bottom: 25px;
}

/* Плавная маска (градиент стал выше и мягче) */
.seo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.95) 80%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease;
}

#seo-accordion.seo-expanded .seo-overlay {
    opacity: 0;
}

/* Нижняя панель с кнопкой */
.seo-action-bar {
    padding: 0 40px 35px;
    background: #fff;
    display: flex;
    justify-content: center;
    margin-top: -10px; /* Приподнимаем кнопку к тексту */
    position: relative;
    z-index: 3;
}

/* Премиальная кнопка */
#seo-toggle-trigger {
    background: #fff;
    color: var(--brand-main);
    border: 1px solid var(--brand-accent);
    padding: 12px 35px;
    border-radius: 50px; /* Скругленные края для modern look */
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 137, 158, 0.1);
}

#seo-toggle-trigger:hover {
    background: var(--brand-main);
    color: #fff;
    border-color: var(--brand-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 137, 158, 0.2);
}

#seo-toggle-trigger svg {
    transition: transform 0.4s ease;
}

#seo-accordion.seo-expanded ~ .seo-action-bar svg {
    transform: rotate(180deg);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .premium-seo-wrapper {
        margin: 30px 10px;
        border-radius: 12px;
    }
    #seo-accordion {
        padding: 30px 20px 0;
    }
    .seo-action-bar {
        padding: 0 20px 25px;
    }
}

/* End */


/* Start:/local/style/main.css?17806441049251*/
:root {
    --color-main: #e8f1f7;
    --color-placeholder: #b0b4b7;
    --color-border: #e2e8e9;
    --color-font: #4d4c54;
    --color-input: #1d1d1f;
    --color-title-background:#006ec5;
    --color-quote:#006ec5;
    --color-title-background2: #6bb8f5;
    --color-title-background3: #c4edff;
    --color-red: #fb5e5e;
    --color-green: #00bd00;
    --color-light: #e0f1ff;
    --color-white: white;
    --color-title-azure2: #00a9ee;
    --color-title-azure: #027294;
    --color-violet: violet;
    --color-violetLight: #fad9fa;
}
.flex{
    display : flex;
}
.mobileNoFlex{
    display : flex;
}
@media screen and (max-width: 699px) {
    .mobileNoFlex {
        display: block !important;
    }
}
.flexCenter{
    justify-content: center;
    align-items: center;
    display: flex;
}
.flexLeft{
    justify-content: flex-start;
    align-items: center;
    display: flex;
}
.button {
    font-size: 14px;
    background-color: var(--color-title-azure);
    border-radius: 5px;
    width: 130px;
    text-align: center;
    padding: 5px 10px;
    color: var(--color-white);
    cursor: pointer;
    text-decoration: none;
    margin: 0 20px;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
.title2{
    font-weight:bold;
    margin: 20px 0;
    font-size: 18px;
    color:black !important;
}
.title3{
    font-weight:bold;
    margin: 5px 0;
    font-size: 14px;
}
.number{
    font-weight:bold;
    margin-right: 10px;
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
    width: 40px;
}
.number.small {
    width: 10px !important;
    margin-left: 20px;
}
.quote{
    margin: 10px 0 20px 0;
    color: var(--color-title-azure);
    font-size: 14px;
    font-weight: bold;
}
.right {
    width: 100%;
    text-align: right;
}
.verse{
    color: var(--color-title-background) !important;
}
.opacity{
    opacity: 0;
}
.button.small{
    padding: 5px 10px !important;
    font-size: 10px;
    width: auto;
    background-color: var(--color-title-background) !important;
}
.popupOpenButtonData{
    cursor: pointer;
}
.imgListItem img{
    width: 145px;
    cursor: zoom-in;
    border: 1px solid var(--color-title-azure);
    border-radius: 5px;
    margin: 5px 5px;
}
.imgsList{
    max-width: 100%;
    overflow-x: auto;
    margin: auto;
    justify-content: center;
}
.nowrap{
    white-space: nowrap;
}
.popupOpenButton{
    cursor:pointer;
}
.copyText{
    cursor:pointer;
}
.tooltip{
    position:absolute;
    z-index:999;
    left:-9999px;
    background-color: white;
    padding:5px;
    border:1px solid var(--color-title-azure);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.tooltip p{
    margin:0;
    color: black;
    background-color:white;
    padding:2px 7px;
}
.scrollbar{
    cursor:pointer !important;
}
.shadow{
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.scrollbar.Y::-webkit-scrollbar {
    /* ширина scrollbar */
    height: 10px !important;               /* ширина scrollbar */
    cursor:pointer !important;
               /* ширина scrollbar */
}
.scrollbar.Y::-webkit-scrollbar-thumb {
    width: 50px !important;
    cursor:pointer !important;
}
.scrollbar.Y.min::-webkit-scrollbar {
    height: 1px !important;
}
.scrollbar.Y.min::-webkit-scrollbar-thumb {
    width: 2px !important;
}
.scrollbar::-webkit-scrollbar {
    width: 10px;               /* ширина scrollbar */
    cursor:pointer !important;
}
.scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    cursor:pointer;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background: white;        /* цвет дорожки */
}
.scrollbar::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--color-title-background3);    /* цвет плашки */
    border-radius: 10px;       /* закругления плашки */
    border: 1px solid white;  /* padding вокруг плашки */
    cursor:pointer !important;
}
.searchInput {
    width:500px;
    font-size:12px;
    max-width: 90%;
    height: 28px;
    padding: 0 20px;
    border: 1px solid var(--color-title-azure);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: white;
    color: var(--color-input);
    outline: none;
    margin-bottom: 10px;
}
.searchInput.shadow {
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: 1px solid var(--color-title-azure);
}
.lineMargin{
    width: 100%;
    border-top: 1px solid var(--color-title-azure);
    margin: 10px 0px 30px 0px;
    opacity: 0.5;
}
html{
    overflow-y:hidden;
}
.mainScroll{
    overflow-y:auto;
    height: 85vh;
}
.mainScroll .main{
    margin-bottom: 50px !important;
}
.noResultSearch{
    font-weight:bold;
    margin-left:10px;
    font-size:12px;
}
.mainBlock{
    margin : 20px;
}
.BibleVerseComponent{
    color: black !important;
}
.BibleVerseComponent .path a{
    color: var(--color-title-azure) !important;
}
.BibleChapterComponent .verse {
    color: black !important;
}
.BibleVerseComponent .copy  {
    width: 30px;
    min-width: 30px;
    height: 25px;
    overflow: hidden;
    cursor: pointer;
}
.BibleVerseComponent .copy .ok {
    position: relative;
//top: -2px;
}
.BibleVerseComponent .copy.active .ok {
    display: block;
}
.BibleVerseComponent .copy .ok,.BibleVerseComponent .copy.active .svg {
    display: none;
}
.verseText{
    color:black !important;
}
.verseText.noActive{
    opacity: 0.7;
}
.verseText.active{
// background-color: var(--color-title-azure);
}
.copyBlock{
    width:60px;
    min-width:60px;
    max-width:60px;
}
.symphonyDetail .copyBlock{
    width:120px !important;
    min-width:120px !important;
    max-width:120px !important;
}
@media (max-width:700px) {
    .searchInput {
        width: 300px;
    }
    .mainBlock{
        margin : 0px;
    }
    .symphonyDetail .copyBlock{
        width:80px !important;
        min-width:80px !important;
        max-width: 80px !important;
        margin-right: 10px;
    }
}

.BibleChapterComponent .verse {
    color: black !important;
}
.chapterBlock .copy  {
    width: 30px;
    min-width: 30px;
    height: 16px;
    overflow: hidden;
    cursor: pointer;
}
.chapterBlock .copy .ok {
    position: relative;
//top: -2px;
}
.chapterBlock .copy  svg{
    position:relative;
    top: 3px;
}
.chapterBlock .copy.active .ok {
    display: block;
}
.chapterBlock .copy .ok,.chapterBlock .copy.active .svg {
    display: none;
}
.verseText.noActive{
    opacity: 0.7;
}
.verseText.active{
    //border-bottom: 1px solid var(--color-title-azure);
}
.copyBlock{
    width:60px;
}
.BibleChapterComponent .title, .BibleChapterComponent  h1{
    margin-block-end: 0px !important;
    margin-bottom: 0px !important;
}
.BibleChapterComponent  .verseText .svgInfo{
    cursor:pointer;
}
.BibleChapterComponent  .verseText .svgInfo svg path{
    fill: var(--color-title-azure) !important;
    cursor:pointer;
}
.bibleParallels{
    padding: 0px 10px 10px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 10px 0;
}
.bibleParallels .parallelPaths{
    display: flex;
    font-size: 12px;
    flex-wrap: wrap;
}
.bibleParallels .parallelPaths .pathParallel{
    white-space: nowrap;
    color: var(--color-title-azure);
    cursor: pointer;
    margin-right: 10px;
}
.bibleParallels  .pathFullItem{
    font-size:12px;
}
.bibleParallels  .pathFullItem .path{
    font-size:12px;
    width: 70px !important;
    min-width: 70px !important;
    margin-bottom: 2px;
}
.bibleParallels  .pathFullItem,.bibleParallels.active  .parallelPaths{
    display:none;
}
.bibleParallels.active  .pathFullItem{
    display:flex;
}
.bibleParallels .parallelView{
    font-size:14px;
    margin-bottom: 10px;
}
.bibleParallels .parallelView span{
    font-size:12px;
    color: var(--color-title-azure);
    cursor:pointer;
}
.bibleParallels .parallelView .parallelNoActive, .bibleParallels.active  .parallelView .parallelViewActive{
    display:none;
}
.bibleParallels.active .parallelView .parallelNoActive{
    display: inline-block;
}
.bibleParallels .close{
    cursor:pointer;
    position:relative;
    top: 5px;
    width:100%;
    text-align:right;
    z-index: 9999;
}
.quoteVerseCheckbox{
    min-width: 15px;
}
.BibleVerseComponent .opacityVerse {
    color: var(--color-title-azure);
}
@media (max-width: 1400px) {
    .tgChannel {
        margin-right: 30px;
    }
}
@media (max-width: 460px) {
    .quoteDetailTextArticle{
        font-size: 10px;
    }
    .path {
        width: 60px;
        min-width: 60px;
    }
    .copyBlock {
        width: 100px;
    }
    .verseItem{
        position: relative;
        left: -10px;
    }
    .searchResult {
        padding: 5px 5px 5px 5px !important;
    }
}
/* End */


/* Start:/local/style/bible.css?17346778306295*/
.bookAnchor{
    color: var(--color-title-background);
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.path{
    width: 100px;
    min-width: 100px;
    color: var(--color-title-azure);
    cursor:pointer;
}
.searchBold{
    font-weight: bold;
}
.bookListHrefs{
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}
.bookListHrefs .bookHref{
    margin-bottom:5px;
}
.bookListHrefs .bookHref a{
    color: var(--color-title-azure);
    border-bottom: 1px dotted var(--color-title-azure);
    margin-right: 20px;
    cursor:pointer;
}
.BibleVerseComponent .title1{
    color: black !important;
}
.BibleVerseComponent .copy  {
    width: 30px;
    min-width: 30px;
    height: 25px;
    overflow: hidden;
    cursor: pointer;
}
.BibleVerseComponent .copy .ok {
    position: relative;
//top: -2px;
}
.BibleVerseComponent .copy.active .ok {
    display: block;
}
.BibleVerseComponent .copy .ok,.BibleVerseComponent .copy.active .svg {
    display: none;
}
.verseText.noActive{
    opacity: 0.7;
}
.verseText.active{
// background-color: var(--color-title-azure);
}
.copyBlock{
    width:60px;
}
.BibleVerseComponent.full .copyBlock{
    width: 50px !important;
    min-width: 50px !important;
    margin-right: 10px;
}
.BibleVerseComponent.full .path.quoteDetailTextArticle{
    width: 10px !important;
    min-width: 10px !important;
    top: -8px !important;
}

.copyBlocks .copy  {
    width: 30px;
    min-width: 30px;
    height: 25px;
    overflow: hidden;
    cursor: pointer;
}
.copyBlocks .copy .ok {
    position: relative;
//top: -2px;
}
.copyBlocks .copy.active .ok {
    display: block;
}
.copyBlocks .copy .ok,.copyBlocks .copy.active .svg {
    display: none;
}
.verseText.noActive{
    opacity: 0.7;
}
.verseText.active{
// background-color: var(--color-title-azure);
}
.searchResultText .copyBlock{
    width:120px !important;
    max-width:120px !important;
    min-width:120px !important;
}
.copyBlock{
    width:120px;
}
.path{
    position: relative;
    top: 3px;
}
.MainPagerComponent .inputChapterBlock svg path {
// stroke: var(--color-title-background);
}
.MainPagerComponent .inputChapterBlock .next svg,.MainPagerComponent .inputChapterBlock .preview svg {
    position:relative;
    top: 1px;
}
.MainPagerComponent .inputChapterBlock svg {
    width: 25px !important;
    height: 25px !important;
    cursor: pointer;
}
.MainPagerComponent .inputChapterBlock{
    margin-left: 30px;
}
.MainPagerComponent .chapterGo{
    width: 23px;
    height: 23.6px;
    background-color: var(--color-title-background);
    position: relative;
    top: -1px;
    z-index: 1;
    left: -10px;
    margin-right: -10px;
    cursor:pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.MainPagerComponent .chapterGo svg path {
    stroke: white !important;
    fill: white !important;
}
.MainPagerComponent .inputChapterNumber{
    margin: 0 5px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    text-align: center;
    outline: none;
    border: 1px solid var(--color-title-background);
    background-color: white;
    color: var(--color-title-background);
    font-size: 14px;
    position: relative;
    top: -1px;
    z-index: 2;
}
.bottomNavigation{
    font-size: 12px;
}
.bottomNavigation a{
    color: black !important;
}
.bottomNavigation svg{
    position:relative;
    top: 3px;
    margin: 0 10px;
}
.BibleChapterComponent .verse {
    color: black !important;
}
.chapterBlock .copy  {
    width: 30px;
    min-width: 30px;
    height: 16px;
    overflow: hidden;
    cursor: pointer;
}
.chapterBlock .copy .ok {
    position: relative;
//top: -2px;
}
.chapterBlock .copy  svg{
    position:relative;
    top: 3px;
}
.chapterBlock .copy.active .ok {
    display: block;
}
.chapterBlock .copy .ok,.chapterBlock .copy.active .svg {
    display: none;
}
.verseText.noActive{
    opacity: 0.7;
}
.verseText.active{
    border-bottom: 1px solid var(--color-title-azure);
}
.copyBlock{
    width:60px;
}
.BibleChapterComponent .title, .BibleChapterComponent  h1{
    margin-block-end: 0px !important;
    margin-bottom: 0px !important;
}
.BibleChapterComponent  .verseText .svgInfo{
    cursor:pointer;
}
.BibleChapterComponent  .verseText .svgInfo svg path{
    fill: var(--color-title-azure) !important;
    cursor:pointer;
}
.bibleParallels{
    padding: 0px 10px 10px 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 10px 0;
}
.bibleParallels .parallelPaths{
    display: flex;
    font-size: 12px;
    flex-wrap: wrap;
}
.bibleParallels .parallelPaths .pathParallel{
    white-space: nowrap;
    color: var(--color-title-azure);
    cursor: pointer;
    margin-right: 10px;
}
.bibleParallels  .pathFullItem{
    font-size:12px;
}
.bibleParallels  .pathFullItem .path{
    font-size:12px;
    width: 70px !important;
    min-width: 70px !important;
    margin-bottom: 2px;
}
.bibleParallels  .pathFullItem,.bibleParallels.active  .parallelPaths{
    display:none;
}
.bibleParallels.active  .pathFullItem{
    display:flex;
}
.bibleParallels .parallelView{
    font-size:14px;
    margin-bottom: 10px;
}
.bibleParallels .parallelView span{
    font-size:12px;
    color: var(--color-title-azure);
    cursor:pointer;
}
.bibleParallels .parallelView .parallelNoActive, .bibleParallels.active  .parallelView .parallelViewActive{
    display:none;
}
.bibleParallels.active .parallelView .parallelNoActive{
    display: inline-block;
}
.bibleParallels .close{
    cursor:pointer;
    position:relative;
    top: 5px;
    width:100%;
    text-align:right;
    z-index: 9999;
}
.quoteVerseCheckbox{
    min-width: 15px;
}

@media (max-width: 460px) {
    .quoteDetailTextArticle{
        font-size: 10px;
    }
    .path {
        width: 60px;
        min-width: 60px;
    }
    .copyBlock {
        width: 100px;
    }
    .verseItem{
        position: relative;
        left: -10px;
    }
    .searchResult {
        padding: 5px 5px 5px 5px !important;
    }
}
/* End */


/* Start:/local/style/articles.css?17021304961218*/
.mainWorkArea{
    max-width: 800px;
    margin: 20px auto ;
    font-size: 12px;
    overflow: hidden;
}
.titleArticle{
    font-weight:bold;
    text-align:center;
    width: 100%;
    font-size: 20px;
    margin-bottom: 20px
}
.detailTextArticle{
    font-size: 16px;
}
.detailTextArticle .quoteDetailTextArticle{
    color: var(--color-quote);
    white-space: nowrap
}
.mainWorkArea .quoteDetailTextArticle,.mainWorkArea.short .quoteDetail,.mainWorkArea.short .view,.mainWorkArea .noView{
    display: none;
}

.mainWorkArea.short .noView, .mainWorkArea.short .quoteDetailTextArticle{
      display: inline-block;
  }
.BibleVerseComponent{
    margin: 10px 5px;
    max-width: 800px;
    color: var(--color-title-azure);
}
.BibleVerseComponent .path{
    margin-top: 10px;
    color: var(--color-quote);
    width: 100%;
    text-align: right;
}
.quoteDetailTextArticle{
    color: var(--color-title-azure);
    font-size: 14px;
    font-weight: bold;
}
.download{
    width: 20px;
    position: relative;
    top:5px;
}
.fileDownload{
    font-size: 14px;
    color: black;
    font-weight: bold;
}
.titleFiles{
    font-size: 18px;
    font-weight:BOLD;
}
/* End */


/* Start:/local/components/bible/popup/templates/main/style.css?17021304961028*/
.main.opacity {
    opacity: 0.2;
}

.closePopupContainer{
    width: 100%;
    text-align: right;
}
.closePopup {
    margin: 10px;
    width: 30px;
    cursor: pointer;
}

.popupContainer {
    display: none;
    width: 99%;
    height: 99%;
    position: fixed;
    left: 0;
    top: 0;
}

.popupContainer.active {
    display: flex;
}

.popup {
    border: 2px solid var(--color-main);
    border-radius: 2%;
    background-color: white;
    margin: auto;
    max-width: 800px;
    width: 79%;
    height: 69%;
    align-items: center;
    justify-content: center;
}

.contentPopup {
    overflow: auto;
    height: 89%;
    margin: 0px 20px 20px 40px;
}
.imgPopup img{
    max-width: 100%;
    max-height: 100%;
}
.imgPopup{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

@media (max-width: 850px) {
    .popup {
        max-width: 800px;
        width: 95% !important;
        height: 95% !important;
    }
}
/* End */


/* Start:/local/templates/new/styles.css?177997377029627*/
:root {
    --color-main: #e8f1f7;
    --color-placeholder: #b0b4b7;
    --color-border: #e2e8e9;
    --color-font: #4d4c54;
    --color-input: #1d1d1f;
    --color-title-background: #006ec5;
    --color-title-background2: #6bb8f5;
    --color-red: #fb5e5e;
    --color-green: #00bd00;
    --color-grey: grey;
    --color-light: #e0f1ff;

/ / --color-title-azure: #00a9ee;
    --color-title-azure: #008bc1;
    --color-violet: violet;
    --color-violetLight: #fff1ff;
    --color-female: #c507f8;
}

.unselectable {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                           not supported by any browser */
}

.selecetedItemValue.active {
    background-color: var(--color-light);
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid var(--color-title-azure);
}

.inputSelect {
    padding-right: 20px;
    cursor: pointer;
    background-color: var(--color-white);
    border: 1.5px solid var(--color-title-background);
    color: var(--color-title-background);
    border-radius: 5px;
    margin: 0px 0px;
    height: 30px;
    width: 300px;
}

.checkbox {
    width: 15px;
    height: 15px;
    cursor: pointer;
    box-shadow: var(--color-title-background2) 0px 0px 6px 0px inset;
    background-color: var(--color-main);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    margin-right: 10px;
}

.Breadcrumbs.Flex {
    font-size: 12px;
    flex-wrap: wrap;
    display: flex;
    align-items: end;
}

.Breadcrumbs.Flex .bc {
    font-size: 12px;
}

.Breadcrumbs.Flex .rightRowBc svg {
    width: 20px !important;
    height: 20px !important;
    position: relative;
    top: 6px;
}

.tablebodytext {
    display: none;
}

.checkbox.active {
    box-shadow: var(--color-title-background2) 0px 0px 6px 0px inset;
    background-color: var(--color-title-background);
}

.filterTest.noActive .DesctopFlex {
    display: none;
}

.filterTest.noActive {
    width: 90%;
    background: linear-gradient(var(--color-main), white);
    border-radius: 0px;
    padding: 0px;
    border: 0px solid var(--color-title-azure);
}

.filterTest.noActive .btn1 {
    display: none;
}

.filterTest.noActive .btn2 {
    display: inline-block;
}

.filterTest .btn2 {
    display: none;
}

.selectMulty {
    width: 200px;
    background-color: white;
    border: 1px solid var(--color-title-background2);
    padding: 2px;
    border-top-right-radius: 5px;
}

.selectMulty .list {
    display: none;
    height: 200px;
    overflow-y: scroll;
    position: absolute;
    background-color: white;
    width: 200px;
    border: 1px solid var(--color-title-background2);
    padding: 2px;
    margin-left: -3px;
    border-top: 1px solid var(--color-placeholder);
    border-bottom-right-radius: 5px;
}

.selectMulty.active .list {
    display: block;
}

.selectItem {
    padding: 2px 10px;
    cursor: pointer;
}

.groupFilter {
    width: 30%;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--color-title-background);
    margin: 20px 0px;
    opacity: 0.5;
}

.right {
    width: 100%;
    margin: 0 auto;
    text-align: right;
}

.nameVerseWord {
    width: 90% !important;
}

.red {
    color: var(--color-red);
}

.redBlock {
    background-color: var(--color-red);
    color: white;
}

.greenBlock {
    background-color: var(--color-green);
    color: white;
}

.answerText {
    display: none;
}

.active .answerText {
    display: inline-block;
}

.viewAnswer {
    cursor: pointer;
}

.answerText {
    color: var(--color-title-azure);
}

.variantTest {
    width: auto;
    display: inline-block;
    padding: 2px 3px;
    border-radius: 3px;
    margin-bottom: 3px;
    cursor: pointer;
    caret-color: transparent;
}

.groupButton {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filterTest {
    width: 90%;
    background: linear-gradient(var(--color-main), white);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--color-title-azure);
}

.bigTextarea {
    width: 470px;
    min-height: 400px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 20px;
    margin-left: 0px;
    padding: 10px;
    border: 1px solid var(--color-placeholder);
    outline: none;
    resize: none;
}

.button {
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #533eca;
    border: 1px solid rgba(0, 0, 0, 0);
    font-family: Roboto, sans-serif;
    line-height: 12px;
    font-size: 12px;
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #fff;
    overflow: hidden;
}

.formData {
    width: 500px;
    min-height: 300px;
    border-radius: 20px;
    border: 1px solid var(--color-placeholder);
    background-color: var(--color-main);
    padding: 0px 40px;
}

.colorTitleBackground {
    color: var(--color-title-background);
}

.bold {
    font-weight: bold;
}

.verticalCenter {
    display: flex;
    justify-content: center;
    align-content: space-between;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.tabContainer {
    margin-top: 20px;
}

.cutText {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
}

.tabTtitleElment.active {
    border-bottom: 3px solid white !important;
}

.border {
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
    border: 1px solid var(--color-title-background);

}

.tabTtitleElment {
    width: 200px;
    height: 40px;
    position: relative;
    top: 3px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid var(--color-title-background);
    border-bottom: none;
}

.tabTtitleElment.noActive {
    background-color: var(--color-border);
    background: linear-gradient(var(--color-main), white);
}

.tabContent {
    border-top: 1px solid var(--color-title-background);
    border-right: 1px solid var(--color-title-background);
    border-top-right-radius: 20px;
    padding: 20px;
}

.dottedNav {
    text-decoration: none !important;
    cursor: pointer;
    color: var(--color-title-azure) !important;
    margin-right: 10px;
    border-bottom: 1px dotted var(--color-title-azure);
    margin-bottom: 10px;
    margin-top: 10px;
}

.title1 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.title2 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.title3 {
    font-size: 18px;
    margin: 10px 0px;
}

.title4 {
    font-size: 14px;
}

.center {
    text-align: center;
}

.blue {
    color: var(--color-title-background) !important;
}

.azure {
    color: var(--color-title-azure) !important;
}

.cursiv {
    font-style: italic;
}

.font {
    font-size: 20px;
}

.bold {
    font-weight: bold;
}

.right {
    width: 100%;
    text-align: right;
}

.noDisplay {
    display: none !important;
}

.noDecoration {
    text-decoration: none;
}

.bc img {
    width: 15px;
    height: 10px;
    position: relative;
    top: 0px;
    cursor: pointer;
    margin: 0 10px;
}

.marginLeft {
    margin-left: 20px;
}

.margin {
    margin: 0px 10px 20px 0px;
}

.title {
    font-size: 26px;
    color: var(--color-title-font);
    width: 100%;
    text-align: left;
    font-weight: bold;
/ / text-transform: uppercase;
    margin: 20px 0px;
}

.previewText {
    font-size: 22px;
    color: black;
}

.main {
    margin: 2% 2%;
}

.topMenu {
    width: 100%;
    height: 80px;
    background-color: var(--color-main);
    overflow: hidden;
    text-align: left;
}

.contentTopMenu {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
}

.logo {
    width: 10%;
    margin-left: 1%;
}

.pointer {
    cursor: pointer;
}

.menu {
    width: 40%;
    display: flex;
    text-align: left;
    margin: 0 40px 0 80px;
    flex-direction: row-reverse;
}

.menuRight {
    width: 50%;
    text-align: right;
}

.search {
    width: 40%;
    margin-right: 10%;
}

.logo img {
    margin: 10px;
    max-height: 60px;
}

body {
    margin: 0px;
    max-width: 1600px;
    margin: 0 auto;

}

#bx-panel {
    display: none !important;
}

.resultQuoteDeatil {
    display: none;
}

.resultQuoteDeatil.active {
    display: block;
}

.triangle img {
    width: 15px;
    height: 15px;
    position: relative;
    top: 7px;
    cursor: pointer;
}

.triangle.active .close {
    display: inline;
}

.triangle.active .open {
    display: none;
}

.triangle .close {
    display: none;
}

.triangle .open {
    display: inline;
}

.quoteList .group_title {
    font-size: 22px;
}

.qouteItem {
    margin: 10px 20px;
}

.triangle_big {
    margin-right: 5px;
    cursor: pointer;
}

.littleTitle {
    font-size: 20px;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    background-color: var(--color-title-background2);
    padding: 2px 2px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.itemTitle a {
    text-decoration: none;
    font-size: 22px;
    color: var(--color-font);
}

.main {

}

.search_input {
    width: 90%;
    height: 43px;
    margin-bottom: 0;
    padding: 0 20px;
    border: 1px solid var(--color-placeholder);
    border-radius: 58px;
    background-color: white;
    color: var(--color-input);
    font-size: 16px;
    outline: none;
}

.menuItem {
    margin: 0 5%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuItem a {
    color: var(--color-title-background);
    text-decoration: none;
    font-size: 22px;
}

.menuItemMobile {
    margin: 10px 4%;
    font-size: 18px;
    display: block;
    text-align: right;
}

.menuItemMobile a {
    color: var(--color-title-background);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.whitePodmenu {
    display: none;
}

.whitePodmenu.active {
    display: block;
}

.width24 {
    width: 24%;
}

.width30 {
    width: 30%;
}

.width50 {
    width: 48%;
}

.width100 {
    width: 100%;
}

.paddingRight {
    padding-right: 10px;
}


input {
    outline: none;
}

input::-moz-placeholder {
    color: var(--color-placeholder);
}

input::-webkit-input-placeholder {
    color: var(--color-placeholder);
}

/*Стили для списка книг*/

.leftColumn, .rightColumn {
    padding: 2%;
}

.zavet_title {
    font-size: 20px;
    color: white;
    font-weight: 700;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    background-color: var(--color-title-background);
    padding: 1% 2%;
    padding-left: 20px;
    margin-bottom: 5px;
}

.group_title {
    text-align: left;
    margin: 10px 0px;
/ / background-color: var(--color-main);
    border-radius: 10px;
    color: var(--color-font);
    font-weight: bold;
}

.group {
    border-radius: 10px;
    background-color: var(--color-main);
    padding: 2%;
}

.bookName a:hover {
    color: var(--color-title-background);
}

.menuMobile {
    cursor: pointer;
}

.whitePodmenu {
    position: absolute;
    width: 100%;
    height: auto;

    z-index: 101;
    background-color: white;
    border-bottom: 1px solid var(--color-title-background);
}

.nav-item:last-child .dropdown {
    left: auto; /* Отменяем привязку к левому краю */
    right: 0; /* Привязываемся к правому краю родителя */
}

/* На случай, если нужно для всех вложенных элементов меню */
/* Если выпадашка вылезает за экран, просто добавьте класс 'dropdown-right' на нужный элемент */
.dropdown.dropdown-right {
    left: auto;
    right: 0;
}

@media screen and (min-width: 1440px) {
    .verseText {
        font-size: 16px !important;
    }

    .rubric4 {
        display: flex !important;
    }

    .leftColumn, .rightColumn {
        padding: 20px 20px 0px 0px;
        width: 50%;
    }

    .bookName a {
        line-height: 36px;
        font-size: 24px;
        text-decoration: none;
        color: #4d4c54;
    }

    .bibleList {
        width: 100%;
        display: flex;
    }

    .menuMobile {
        display: none;
    }

    .group_title {
        font-size: 22px;
    }

    .fullBookName {
        display: block;
    }

    .smallBookName {
        display: none;
    }

    .font {
        font-size: 16px;
    }

    .DesctopFlex {
        display: flex;
    }
}

@media screen and (min-width: 768px)   and (max-width: 1439px) {
    .verseText {
        font-size: 14px !important;
    }

    .rubric3 {
        display: flex !important;
    }

    .leftColumn, .rightColumn {
        padding: 20px 20px 0px 0px;
        width: 50%;
    }

    .bookName a {
        line-height: 26px;
        text-decoration: none;
        font-size: 18px;
        color: #4d4c54;
    }

    .bibleList {
        width: 100%;
        display: flex;
    }

    .menuMobile {
        display: none;
    }

    .group_title {
        font-size: 22px;
    }

    .menu {
        display: none;
    }

    .menuMobile {
        display: flex;
        width: 28%;
        flex-direction: row-reverse;
    }

    .menuMobile img {
        display: flex;
        width: 15%;
        margin-right: 10%;
    }

    .search {
        width: 50%;
    }

    .fullBookName {
        display: none;
    }

    .font {
        font-size: 14px;
    }

    .DesctopFlex {
        display: flex;
    }
}

@media screen and (max-width: 767px)  and (min-width: 360px) {
    .rubric2 {
        display: flex !important;
    }

    .bibleList {
        width: 95%;
        display: block !important;
    }

    .bookName a {
        line-height: 26px;
        text-decoration: none;
        color: #4d4c54;
        font-size: 18px;
        font-weight: bold;
    }

    .zavet_title {
        font-size: 22px;
    }

    .group_title {
        font-size: 18px;
    }

    .menu {
        display: none;
    }

    .search {
        width: 63%;
    }

    .search_input {
        height: 33px;
        font-size: 12px;
    }

    .logo {
        width: 20%;
    }

    .menuMobile {
        display: flex;
        width: 32%;
        flex-direction: row-reverse;
    }

    .menuMobile img {
        display: flex;
        width: 30%;
        margin: 12%;
    }

    .fullBookName {
        display: none;
    }

    .font {
        font-size: 14px;
    }

    .groupFilter {
        width: 100%;
    }
}

@media screen and (max-width: 359px) {
    .rubric1 {
        display: flex !important;
    }

    .bibleList {
        width: 95%;
        display: block !important;
    }

    .bookName a {
        line-height: 22px;
        text-decoration: none;
        color: #4d4c54;
        font-size: 22px;
        font-weight: bold;
    }

    .zavet_title {
        font-size: 22px;
    }

    .group_title {
        font-size: 18px;
    }

    .menu {
        display: none;
    }

    .search {
        width: 43%;
    }

    .search_input {
        height: 33px;
        font-size: 12px;
    }

    .logo {
        width: 25%;
    }

    .menuMobile {
        display: flex;
        width: 32%;
        flex-direction: row-reverse;
    }

    .menuMobile img {
        display: flex;
        width: 30%;
        margin: 12%;
    }

    .fullBookName {
        display: none;
    }

    .font {
        font-size: 14px;
    }

    .groupFilter {
        width: 100%;
    }
}

/*--Стили для списка книг*/

/*Стили для главы */
.pager {
    display: flex;
    margin: 20px 0px;
}

.pagerCantainer {
    width: 15px;
    height: 15px;
    background-color: var(--color-title-background2);
    margin: 3px;
    padding: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    border-top-right-radius: 5px;
}

.pagerCantainer a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.pagerCantainer.active {
    background-color: var(--color-title-background);
}

.verse {
    display: flex;
    font-size: 22px;
    margin-bottom: 0.3%;
}

.offset {
    margin-top: 10px;
}

.mainCenter {
    max-width: 1100px;
    margin: 0 auto;
}

.verseNumber {
    color: var(--color-title-azure);
    margin-right: 0.2%;
    min-width: 25px;
}

.verseNumber.bigPath {
    min-width: 120px;
}

.bookNameTitle {
    font-size: 30px;
    margin-top: 2%;
}

.borderPopup {
    border: 3px solid var(--color-title-background2);
    margin: 20px 20px;
    padding: 10px;
    border-radius: 10px;
}

.borderPopup .verse {
    color: var(--color-placeholder);
}

.borderPopup .verse.blue {
    color: var(--color-title-background);
}

.borderPopup .verse.black {
    color: var(--color-font);
}

/*--Стили для главы*/

/*Стили для поиска */
.searchResult .verseNumber {
    width: 120px;
    min-width: 120px;
}

.chapterByVerseAjax .verseNumber {
    width: 30px;
    min-width: 30px;
}

.searchResult .verseText {

}

.searchResult {
    padding: 20px 20px 20px 10px;
}

.searchDetail {
    padding: 20px 20px 0px 20px;
}

.alphabetList {
    display: flex;
}

.alphabetList a {
    color: black;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    margin: 10px;
}

.searchSymphony, .searchRubric {
    width: 95%;
    max-width: 1000px;
}

.titleLittle {
    margin: 20px 20px;
    font-size: 20px;
}

.letterWord a {
    text-decoration: none;
    color: black;

}

.letterBlockA {
    text-decoration: none;
    color: var(--color-title-background);
    font-weight: bold;
    margin-bottom: 5px;
}

.black {
    color: black;
}

.letterBlock {
    margin: 20px;
    width: 20%;
}

.Flex {
    display: flex;
}

@media screen and (min-width: 768px)   and (max-width: 1439px) {

    .title {
        font-size: 24px;
    }

    .letterBlock {
        margin: 20px;
        width: 27%;
    }

    .lineFlex {
        width: 32% !important;
    }
}

@media screen and (max-width: 767px)  and (min-width: 360px) {
    .alphabetList a {
        font-size: 20px !important;
        margin: 3px;
    }

    .marginLeft {
        margin-left: 15px;
    }

    .title {
        font-size: 22px;
    }

    .letterBlock {
        margin: 20px;
        width: 40%;
    }

    .lineFlex {
        width: 40% !important;
    }

    .verseText {
        font-size: 14px !important;
    }

    .verseNumber.bigPath {
        min-width: 100px !important;
        font-size: 16px !important;
    }
}

@media screen and (max-width: 359px) {
    .alphabetList a {
        font-size: 16px !important;
        margin: 3px;
    }

    .tabTtitleElment {
        width: 150px;
    }

    .marginLeft {
        margin-left: 10px;
    }

    .title {
        font-size: 20px;
    }

    .letterBlock {
        margin: 20px;
        width: 100%;
    }

    .lineFlex {
        width: 100% !important;
    }

    .verseNumber.bigPath {
        min-width: 80px !important;
        font-size: 16px !important;
    }

    .verseText {
        font-size: 14px !important;
    }

    .main {
        margin: 2%;
    }
}

/*--Стили для поиска */

/*Стили для симфонии */
.symphonyDetail .previewText {
    margin-bottom: 10px;
}

.lineFlex {
    width: 20%;
}

.Width {
    width: 100% !important;
}

.symphonyFlex, .alphabetList.Flex {
    width: 100%;
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap;
}

.wrap {
    margin: auto;
    flex-wrap: wrap;
}

.symphonyBlockItem {
    width: 150px !important;
}

/*--Стили для симфонии */

audio {
    border: 1px solid var(--color-title-azure);
    border-radius: 20px;
    height: 30px !important;
    width: 350px !important;
}

audio:hover {
    transform: scale(1.01);
    filter: drop-shadow(2px 3px 3px #333);
}

.tgHref a {
    color: var(--color-title-azure);
    font-size: 20px;
    font-weight: bold;
}

.tgHref {
    padding: 10px 20px;
    width: fit-content;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: var(--color-border);
    background: linear-gradient(var(--color-main), white);
}

/* Сброс и база */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #e0fbfc 0%, #c4e9ed 50%, #98c1d9 100%);
    min-height: 100vh;
    color: #003049;
}

/* --- Ссылка ТГ в десктопном хедере --- */
.tg-desktop-link {
    text-decoration: none;
    margin-right: 15px;
}

.tgChannel {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #24A1DE; /* Фирменный цвет ТГ */
    padding: 8px 14px;
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s;
}

.tgChannel:hover {
    transform: scale(1.05);
    background: #2296cc;
}

.tgChannel svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* --- Логика отображения ТГ --- */

/* На десктопе: показываем в хедере, скрываем в мобильном меню */
.tg-desktop-link {
    display: block;
}

.tg-mobile-item {
    display: none;
}

/* На мобилке (до 992px) */
@media (max-width: 992px) {
    .tg-desktop-link {
        display: none;
    }

    /* Прячем из шапки */
    .tg-mobile-item {
        display: block;
    }

    /* Показываем внутри бургера */
    .tg-mobile-item .nav-link {
        color: #24A1DE !important;
        font-weight: 700;
        background: rgba(36, 161, 222, 0.1);
    }
}

/* Исправление вылетания меню "Досуг" */
.dropdown-right {
    left: auto !important;
    right: 0 !important;
}

/* Фиксированные размеры логотипа */
.logotype {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logotype svg {
    width: 40px !important;
    height: 40px !important;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #006d77;
}

/* Скрыть поиск на мобилках */
@media (max-width: 768px) {
    .search-wrapper {
        display: none !important;
    }

    html {
        height: auto !important; /* Строго высота экрана */
    }
}

/* Планшеты: скрываем текст внутри кнопки ТГ, оставляем иконку */
@media (min-width: 768px) and (max-width: 1224px) {
    .tgChannel span {
        display: none; /* Скрываем текст */
    }

    .tgChannel {
        padding: 8px; /* Делаем кнопку квадратной (компактной) */
        aspect-ratio: 1 / 1;
        justify-content: center;
    }

    .tgChannel svg {
        margin: 0; /* Убираем отступ */
    }
}

.mainScroll {
    background-color: white;
    height: auto !important;
}

body {
    max-width: 1200px !important;
}

 body {
    height: 100vh; /* Строго высота экрана */
    overflow: hidden; /* Запрещаем общий скролл страницы */
    display: flex; /* Включаем flexbox для body */
    flex-direction: column; /* Элементы идут сверху вниз */
}

/* Шапка всегда занимает столько места, сколько ей нужно */
.header {
    flex-shrink: 0;
    position: relative; /* Убираем fixed, если он был, flex сам прижмет её к верху */
    z-index: 100;
}

/* Основной блок, который должен скроллиться */
.mainScroll {
    flex-grow: 1; /* Занимает всё оставшееся пространство */
    overflow-y: auto; /* Включаем скролл только здесь */
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iPhone */
}

/* Исправляем вылет подменю вправо */
.dropdown-right {
    left: auto !important;
    right: 0 !important;
}

/* Скрываем текст ТГ на планшетах (то, что вы просили ранее) */
@media (max-width: 1100px) {
    .tg-desktop-link .tgChannel span {
        display: none;
    }

    .tgChannel {
        padding: 8px;
    }
}
/* ===== СТИЛЬНЫЕ ЗАГОЛОВКИ СЕКЦИЙ ===== */

.section-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-bottom: 28px;
    position: relative;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0px;
    letter-spacing: -0.03em;
    color: #222;
    position: relative;
    transition: color 0.3s ease;
}

/* Декоративная полоска слева от заголовка */
.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--brand-main);
    border-radius: 4px;
    margin-right: 14px;
    vertical-align: middle;
    transition: height 0.3s ease;
}

/* Красивый акцент снизу при наведении */
.section-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-main), var(--brand-accent));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-link:hover::after {
    width: 100%;
}

/* Стрелка "Все каналы" */
.section-link .section-arrow {
    display: none; /* Если стрелка отдельно, убираем дубль */
}

/* Если стрелка внутри ссылки */
.section-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-title span::after {
    content: '→';
    display: inline-block;
    font-weight: 400;
    font-size: 22px;
    color: var(--brand-main);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-link:hover .section-title span::after {
    transform: translateX(8px) scale(1.1);
}



.section-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-main);
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 20px;
    background: var(--brand-light);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.section-arrow:hover {
    background: var(--brand-main);
    color: #fff;
    transform: translateX(3px);
}

.section-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.section-arrow:hover::after {
    transform: translateX(4px);
}

/* ===== АДАПТИВ ===== */

@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .section-title::before {
        height: 22px;
        width: 3px;
        margin-right: 10px;
    }

    .section-link {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        letter-spacing: -0.02em;
    }
}

/* End */
/* /local/templates/new/main.css?177994893216377 */
/* /local/templates/new/seo.css?17799502023676 */
/* /local/style/main.css?17806441049251 */
/* /local/style/bible.css?17346778306295 */
/* /local/style/articles.css?17021304961218 */
/* /local/components/bible/popup/templates/main/style.css?17021304961028 */
/* /local/templates/new/styles.css?177997377029627 */
