

/* 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/search/templates/.default/style.css?17853081892837*/
:root {
    --gb-brand: #26899e;
    --gb-brand-light: #e0f2f4;
    --gb-brand-accent: #d1eef0;
    --gb-text: #2c3e50;
    --gb-radius: 12px;
    --gb-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gb-dict-main {
    margin: 20px 0;
    font-family: inherit;
}

/* Секция поиска */
.gb-dict-search-section {
    max-width: 500px;
    margin-bottom: 24px;
}

.gb-dict-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.gb-dict-input {
    width: 100%;
    height: 48px;
    padding: 10px 16px 10px 48px;
    border: 2px solid var(--gb-brand-light);
    border-radius: 14px;
    font-size: 16px;
    color: var(--gb-text);
    transition: all 0.25s ease;
    background: #fff;
}

.gb-dict-input:focus {
    outline: none;
    border-color: var(--gb-brand);
    box-shadow: 0 0 0 4px rgba(38, 137, 158, 0.1);
}

.gb-dict-search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Область результатов и Лоадер */
.gb-dict-results-wrapper {
    position: relative;
    min-height: 200px; /* Чтобы лоадеру было где крутиться */
}

.gb-dict-loader-overlay {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
    backdrop-filter: blur(2px);
    transition: all 0.3s;
}

.gb-dict-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gb-brand-light);
    border-top: 3px solid var(--gb-brand);
    border-radius: 50%;
    animation: gbspin 0.8s linear infinite;
}

@keyframes gbspin {
    to { transform: rotate(360deg); }
}

/* Сетка карточек */
.gb-dict-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки по умолчанию */
    gap: 12px;
}

.gb-dict-item-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: var(--gb-radius);
    transition: all 0.2s ease;
}

.gb-dict-item-card:hover {
    border-color: var(--gb-brand);
    box-shadow: var(--gb-shadow);
    transform: translateY(-2px);
}

.gb-dict-item-card a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--gb-text);
    font-size: 14px;
    font-weight: 500;
}

.gb-dict-item-card:hover a {
    color: var(--gb-brand);
}

/* Адаптируемость */
@media (max-width: 1024px) {
    .gb-dict-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gb-dict-list { grid-template-columns: 1fr; }
    .gb-dict-search-section { max-width: 100%; }
}

/* End */
/* /local/components/main/breadCrumbs/templates/.default/style.css?17806441032553 */
/* /local/components/dictionaries/search/templates/.default/style.css?17853081892837 */
