

/* Start:/local/components/bible/detail/templates/.default/style.css?17799557657469*/
:root {
    --brand-main: #26899e;
    --brand-light: #e0f2f4;
    --brand-accent: #d1eef0;
    --text-main: #2c3e50;
    --text-muted: #6b7c93;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(38, 137, 158, 0.08);
    --shadow-md: 0 4px 20px rgba(38, 137, 158, 0.12);
    --shadow-lg: 0 8px 32px rgba(38, 137, 158, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === ГЛАВНЫЙ КОНТЕЙНЕР === */
.mainVerse {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* === ЗАГОЛОВОК === */
.verse-header h1.title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.detailHref a {
    display: inline-flex;
    align-items: center;
    color: var(--brand-main);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity var(--transition);
    margin-bottom: 28px;
}

.detailHref a:hover {
    opacity: 1;
}

/* === КОНТЕКСТ СТИХОВ === */
.verse-context {
    margin-bottom: 32px;
}

.verse-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: all var(--transition);
}

.verse-line.preview-text {
    color: var(--text-muted);
    opacity: 0.65;
    font-size: 15px;
}

.verse-line.active-text {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--brand-main);
    padding: 20px 20px;
    font-size: 20px;
    font-weight: 500;
    border-radius: var(--radius-md);
    margin: 8px 0;
}

.v-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--brand-light);
    color: var(--brand-main);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.v-num.active {
    background: var(--brand-main);
    color: var(--white);
    min-width: 32px;
    height: 32px;
    font-size: 14px;
}

/* === ПРЕМИАЛЬНЫЕ ТАБЫ === */
.premium-tabs-container {
    margin-bottom: 20px;
}

.tabs-slider {
    display: inline-flex;
    background: var(--brand-accent);
    padding: 5px;
    border-radius: var(--radius-lg);
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    color: var(--brand-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
    outline: none;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-btn.active {
    background: var(--white);
    color: var(--brand-main);
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

/* === КОНТЕНТ ТАБОВ === */
.tabs-content-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px;
    min-height: 400px;
    max-height: 620px;
    overflow-y: auto;
    border: 1px solid var(--brand-light);
}

.tab-pane {
    display: none;
    animation: fadeSlideIn 0.35s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === СКРОЛЛБАР === */
.tabs-content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.tabs-content-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.tabs-content-wrapper::-webkit-scrollbar-thumb {
    background: var(--brand-accent);
    border-radius: 10px;
}

.tabs-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--brand-main);
    opacity: 0.5;
}

/* === АДАПТИВ ДЛЯ ТАБОВ === */
/*
 * Три контрольные точки:
 * 1. < 520px — табы складываются вертикально и растягиваются на всю ширину
 * 2. 520px–768px — табы остаются горизонтальными, но меняют размеры
 * 3. > 768px — полноценный десктопный вид
 */

/* Точка 1: мобильные устройства (до 520px) */
@media (max-width: 519px) {
    .premium-tabs-container {
        margin-bottom: 16px;
    }

    /* Вертикальная раскладка табов */
    .tabs-slider {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 4px;
        gap: 4px;
        border-radius: var(--radius-md);
    }

    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 13px;
        border-radius: var(--radius-sm);
    }

    .tab-btn.active {
        box-shadow: var(--shadow-sm);
    }

    /* Контейнер контента тоже поджимаем */
    .tabs-content-wrapper {
        padding: 16px;
        min-height: 300px;
        max-height: 450px;
        border-radius: var(--radius-md);
    }
}

/* Точка 2: планшеты и небольшие экраны (520px–768px) */
@media (min-width: 520px) and (max-width: 768px) {
    .premium-tabs-container {
        margin-bottom: 18px;
    }

    /* Горизонтальная раскладка, но кнопки занимают равную ширину */
    .tabs-slider {
        display: flex;
        width: 100%;
        padding: 4px;
        gap: 4px;
    }

    .tab-btn {
        flex: 1 1 0;           /* равномерное распределение пространства */
        min-width: 0;          /* разрешаем сжиматься меньше контента */
        text-align: center;
        padding: 10px 8px;
        font-size: 13px;
        word-break: break-word; /* перенос длинных слов */
        hyphens: auto;
    }

    .tab-btn.active {
        box-shadow: var(--shadow-sm);
    }

    /* Контент */
    .tabs-content-wrapper {
        padding: 20px;
        min-height: 350px;
        max-height: 520px;
    }
}

/* Точка 3: общие адаптивные правки для всего (до 768px) */
@media (max-width: 768px) {
    .mainVerse {
        padding: 16px;
    }

    .verse-header h1.title {
        font-size: 22px;
    }

    .verse-line.active-text {
        font-size: 17px;
        padding: 16px;
    }

    .verse-line {
        font-size: 15px;
    }

    .verse-line.preview-text {
        font-size: 14px;
    }

    .detailHref a {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Точка 4: десктопы (769px и выше) */
@media (min-width: 769px) {
    /* Ничего не переопределяем — базовые стили уже заданы для десктопа */
}

/* End */


/* Start:/local/components/bible/audio/templates/.default/style.css?172984956561*/
.audioTitle{
    margin-left:20px;
    font-weight:bold;
}
/* End */


/* Start:/local/components/main/breadCrumbs/templates/.default/style.css?17806441032553*/
/* Контейнер */
.mainBreadCrumbsComponent.new-style {
    margin: 15px 20px 25px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.mainBreadCrumbsComponent.new-style:hover {
    box-shadow: 0 4px 12px rgba(0, 109, 119, 0.12);
}

.mainBreadCrumbsComponent.new-style .Breadcrumbs.Flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Элемент списка */
.mainBreadCrumbsComponent.new-style .bc-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

/* Иконка домика для первого элемента (Главная) */
.mainBreadCrumbsComponent.new-style .bc-item:first-child .bc-link .home-icon {
    display: inline-flex;
    margin-right: 4px;
    vertical-align: middle;
}

.mainBreadCrumbsComponent.new-style .bc-item:first-child .bc-link .home-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* Ссылка (цвет #006d77) */
.mainBreadCrumbsComponent.new-style .bc-link {
    color: #006d77;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.mainBreadCrumbsComponent.new-style .bc-link:hover {
    color: #004d54;
    background: rgba(0, 109, 119, 0.08);
    text-decoration: none;
}

/* Разделитель (стильная стрелка) */
.mainBreadCrumbsComponent.new-style .bc-separator {
    display: flex;
    align-items: center;
    margin: 0 6px;
    color: #b0c4c6; /* Нейтральный серо-голубой */
    opacity: 0.6;
}

.mainBreadCrumbsComponent.new-style .bc-separator svg {
    width: 10px;
    height: 10px;
}

/* Текущая страница (жирная, с фоном) */
.mainBreadCrumbsComponent.new-style .bc-current {
    color: #006d77;
    font-weight: 600;
    background: rgba(0, 109, 119, 0.1);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: default;
}

/* Адаптивность */
@media (max-width: 768px) {
    .mainBreadCrumbsComponent.new-style {
        margin: 10px 12px 18px;
        padding: 8px 12px;
    }
    .mainBreadCrumbsComponent.new-style .bc-item {
        font-size: 12px;
    }
}

/* End */


/* Start:/local/components/dictionaries/lopuhin.chapter/templates/.default/style.css?17806441036523*/
/* Контейнер для центрирования */
.lph-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 50px 0;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Основная карточка */
.lph-premium-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #eef4f5;
    box-shadow: 0 10px 40px rgba(38, 137, 158, 0.06);
    overflow: hidden;
}

/* Светлая премиальная шапка */
.lph-premium-card__header {
    padding: 40px 50px 30px;
    background: linear-gradient(180deg, #ccecf2 0%, #ffffff 100%);
    text-align: left;
    border-bottom: 1px solid #f0f7f8;
}

.lph-premium-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.lph-premium-card__icon-wrap {
    width: 32px;
    height: 32px;
    background: #e0f2f4;
    color: #26899e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.lph-premium-card__icon-wrap svg {
    width: 20px;
    height: 20px;
}

.lph-premium-card__badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #26899e;
    font-weight: 700;
}

.lph-premium-card__title {
    margin: 0;
    font-size: 26px;
    color: #2c3e50;
    line-height: 1.2;
    font-weight: 700;
}

.lph-premium-card__subtitle {
    display: block;
    margin-top: 8px;
    color: #26899e;
    font-weight: 400;
    font-size: 20px;
}

/* Контентная область */
.lph-premium-card__body {
    padding: 30px 50px 40px;
}

.lph-premium-card__collapse {
    position: relative;
    max-height: 280px; /* Высота превью */
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lph-premium-card__collapse.is-expanded {
    max-height: 20000px; /* Большой запас высоты */
}

.lph-premium-card__text-content {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5a6a;
}

.lph-premium-card__text-content p {
    margin-bottom: 20px;
}

/* Затухание текста */
.lph-premium-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff 95%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lph-premium-card__collapse.is-expanded .lph-premium-card__overlay {
    opacity: 0;
}

/* Кнопка управления */
.lph-premium-card__footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.lph-expand-button {
    background: #ffffff;
    border: 1px solid #d1e5e8;
    padding: 14px 34px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.lph-expand-button:hover {
    border-color: #26899e;
    background: #f7fbfc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38,137,158,0.1);
}

.lph-expand-button__text {
    color: #26899e;
    font-weight: 700;
    font-size: 15px;
}

.lph-expand-button__icon {
    transition: transform 0.5s ease;
    color: #26899e;
}

.lph-premium-card__collapse.is-expanded + .lph-premium-card__footer .lph-expand-button__icon {
    transform: rotate(180deg);
}

/* Адаптивность */
@media (max-width: 768px) {
    .lph-premium-card__header, .lph-premium-card__body {
        padding: 25px 20px;
    }
    .lph-premium-card__title { font-size: 20px; }
    .lph-premium-card__subtitle { font-size: 17px; }
}
/* Специальный стиль для выделения курсива (тег em) */
/* Деликатное выделение курсива (em) в стиле премиальной цитаты */
.lph-premium-card__text-content em {
    font-style: italic;
    /* Используем классический шрифт с засечками для контраста с основным текстом */
    font-family: "Georgia", "Times New Roman", serif;
    color: #2c4a4f; /* Глубокий темный оттенок, близкий к цвету сайта */

    /* Создаем эффект цитаты через легкий фон и левую границу */
    display: inline-block;
    padding: 2px 8px 2px 12px;
    margin: 0 4px;
    background: rgba(38, 137, 158, 0.04); /* Едва уловимый тон фирменного цвета */
    border-left: 2px solid #26899e; /* Тонкий вертикальный акцент */

    /* Мягкое скругление углов справа */
    border-radius: 0 4px 4px 0;

    /* Плавное вписывание в межстрочный интервал */
    line-height: inherit;
    position: relative;
    top: -1px;
}

/* Оптимизация для строчного текста, чтобы выделение не "раздувало" абзац */
.lph-premium-card__text-content p em {
    display: inline;
    padding: 0 0 0 8px; /* Оставляем отступ только слева для линии */
    margin: 0 6px 0 4px;
    border-left: 2px solid rgba(38, 137, 158, 0.4); /* Линия чуть светлее в потоке текста */
    background: none; /* Убираем фон для строчного текста, оставляя только линию */
    border-radius: 0;
}

/* Если em занимает отдельную строку или является крупным блоком */
.lph-premium-card__text-content > em,
.lph-premium-card__text-content blockquote em {
    display: block;
    font-size: 1.05em;
    padding: 15px 25px;
    margin: 25px 0;
    background: linear-gradient(90deg, #f9fdfd 0%, #ffffff 100%);
    border-left: 3px solid #26899e;
    color: #1a3c42;
    box-shadow: none;
}

/* Убираем стандартное подчеркивание, если em является ссылкой */
.lph-premium-card__text-content em a {
    text-decoration: none;
    color: inherit;
}
@media (max-width: 900px) {
    .lph-container {
        padding: 0 !important;
    }
    .lph-premium-card__text-content{
        font-size:12px !important;
    }
}

/* End */


/* Start:/local/components/bible/verse/templates/copy/style.css?1710407820813*/
.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;
}
/* End */


/* Start:/local/components/bible/chapter2/templates/.default/style.css?17806441032724*/
.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;
}
.tabsRemain {
    margin-top: 0px !important;
}
.tabRemainResultBlock {
    min-height: 300px !important;
    max-height: 300px !important;
}
.mainScroll .main {
    margin-bottom: 10px !important;
    border-bottom: 1px solid var(--color-title-background);;
}
.chapterBlock .preview{
    font-size:12px;
    color: grey;
    margin-bottom: 10px;
}
/* End */


/* Start:/local/components/bible/strong/templates/.default/style.css?173210083933*/
.strongCode{
    color:black;
}
/* End */


/* Start:/local/components/bible/strong.detail/templates/.default/style.css?17799553613108*/
/* Контейнер карточки */
.strong-item-card {
    background: #ffffff;
    border: 1px solid #eef2f3;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s ease;
}

.strong-item-card:hover {
    box-shadow: 0 4px 15px rgba(38, 137, 158, 0.08);
}

/* Заголовок */
.strong-item-header {
    margin-bottom: 10px;
}

.strong-item-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    font-size: 15px; /* Уменьшено для компактности */
    margin-bottom: 2px;
}

.strong-num {
    font-weight: 700;
    color: var(--text-main);
    font-family: inherit;
}

.strong-word {
    color: var(--brand-main);
    font-weight: 700;
    font-size: 1.1em;
}

.strong-main-trans {
    color: var(--text-main);
    font-weight: 500;
}

.strong-brief-mean {
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

/* Контентная часть */
.strong-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.strong-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.strong-speech-badge {
    background: var(--brand-light);
    color: var(--brand-main);
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.strong-sinodal-list {
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
}

.strong-more-link {
    color: var(--brand-main);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--brand-main);
}

/* Премиальная кнопка */
.strong-item-footer {
    margin-top: 14px;
    border-top: 1px solid #f8fafb;
    padding-top: 12px;
}

.strong-btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--brand-main);
    border: 1.5px solid var(--brand-main);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
}

.strong-btn-premium svg {
    width: 14px;
    height: 14px;
}

.strong-btn-premium:hover {
    background: var(--brand-main);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(38, 137, 158, 0.3);
}

/* Адаптивы для мобильных устройств */
@media (max-width: 480px) {
    .strong-item-card {
        padding: 12px;
        margin-bottom: 10px;
    }

    .strong-item-title {
        font-size: 14px;
    }

    .strong-btn-premium {
        width: 100%; /* На совсем маленьких экранах кнопка на всю ширину удобнее для нажатия пальцем */
        padding: 8px 12px;
    }

    .strong-brief-mean {
        font-size: 12px;
    }
}

/* End */


/* Start:/local/components/bible/parallels/templates/main/style.css?17307239511642*/
.bibleParallels .parallelPaths{
    display: flex;
    font-size: 12px;
}
.bibleParallels  .pathFullItem{
    font-size:12px;
}
.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;
}
.pathFullItem {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--color-light);
}
.path.blue{
    margin-right:10px;
}
.close{
    display:none;
}
/* End */


/* Start:/local/components/main/pager/templates/.default/style.css?17806432612919*/
.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;
}
.bibleSelect{
    width:50px;
    height:20px;
    text-align:center;
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 700;
    color: var(--color-title-azure);
    cursor:pointer;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
}
.bibleSelect::-ms-expand { display: none; }
.bibleSelect:hover { border-color: #888; }
.bibleSelect:focus { border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}
.bibleSelect option {
    font-weight:normal;
    border-radius:5px;
}
.bibleSelect option.blue {
    background-color: var(--color-title-background);
    color: white !important;
    font-weight:bold;
}
*[dir="rtl"] .bibleSelect, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}
.scrollbar.Y.min::-webkit-scrollbar {
    width: 5px !important;
    height: 20px !important;
}
.scrollbar.Y.min::-webkit-scrollbar-thumb {
    width: 2px !important;
    height: 2px !important;
}
.scrollbar.Y.min::-webkit-scrollbar-track {
    width: 2px !important;
    height: 2px !important;
}
/* End */
/* /local/components/bible/detail/templates/.default/style.css?17799557657469 */
/* /local/components/bible/audio/templates/.default/style.css?172984956561 */
/* /local/components/main/breadCrumbs/templates/.default/style.css?17806441032553 */
/* /local/components/dictionaries/lopuhin.chapter/templates/.default/style.css?17806441036523 */
/* /local/components/bible/verse/templates/copy/style.css?1710407820813 */
/* /local/components/bible/chapter2/templates/.default/style.css?17806441032724 */
/* /local/components/bible/strong/templates/.default/style.css?173210083933 */
/* /local/components/bible/strong.detail/templates/.default/style.css?17799553613108 */
/* /local/components/bible/parallels/templates/main/style.css?17307239511642 */
/* /local/components/main/pager/templates/.default/style.css?17806432612919 */
