

/* Start:/local/templates/.default/tabs/style.css?17841875021875*/
.tabs {
  width: 100%;
}

.tabs__nav {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 950px) {
  .tabs__nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.tabs__btn {
  display: inline-block;
  padding: 15px 25px;
  min-width: 215px;
  background-color: #F5F5F5;
  border: 2px solid #F5F5F5;
  color: #A1A5A7;
  font-family: TTNormsPro, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 20.02px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  position: relative;
  user-select: none;
  font-size: 24px;
  text-decoration: none !important;
}
@media (max-width: 1150px) {
  .tabs__btn {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .tabs__btn {
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .tabs__btn {
    font-size: 18px;
    padding: 12px 20px;
    min-width: auto;
  }
}
.tabs__btn:hover {
  background-color: #F6E200;
  border-color: #F6E200;
  color: #1D252D;
}
.tabs__btn--active {
  background-color: #F6E200;
  border: 2px solid #F6E200;
  color: #1D252D;
  font-style: normal;
  font-weight: 500;
  line-height: 20.02px;
  font-size: 24px;
}
@media (max-width: 1150px) {
  .tabs__btn--active {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .tabs__btn--active {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .tabs__btn--active {
    font-size: 18px;
  }
}

.tabs__content {
  position: relative;
}

.tabs__pane {
  display: none !important;
  animation: fadeIn 0.3s ease-in-out;
}
.tabs__pane--active {
  display: block !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/components/iek/hl.infobaza.search/templates/.default/style.css?17841875023899*/
@charset "UTF-8";
.hl-search-wrapper {
  margin-bottom: 30px;
}

.input-group {
  position: relative;
}
.input-group-btn {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: 50px;
}
.input-group .form-control {
  min-height: 60px;
}

.hl-search-results {
  margin-top: 20px;
  padding: 15px 0;
  border-radius: 4px;
}

.hl-back-wrapper {
  margin-bottom: 20px;
  padding: 0 15px;
}

.hl-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
}
.hl-back-btn:hover {
  text-decoration: underline;
}

.hl-search-list {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}

.hl-search-item {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid #e5e5e5;
}
.hl-search-item:last-child {
  border-bottom: none;
}
.hl-search-item:hover {
  background: #f5f5f5;
  margin: 0;
  padding: 12px 8px;
}

.hl-thumbnail {
  flex-shrink: 0;
  margin-right: 15px;
}
.hl-thumbnail img {
  border: 1px solid #ddd;
  border-radius: 4px;
  object-fit: cover;
}

.hl-item-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hl-item-name {
  font-weight: 500;
  color: #005b9f;
  text-decoration: none;
  margin-right: 8px;
}
.hl-item-name:hover {
  text-decoration: underline;
}

.hl-group {
  font-size: 0.85em;
  color: #888;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 12px;
}

.hl-no-results, .hl-error, .hl-loader {
  padding: 20px 0;
  text-align: center;
}

.hl-no-results {
  color: #999;
  font-style: italic;
}

.hl-error {
  color: #d9534f;
}

.hl-loader {
  color: #666;
  font-size: 16px;
  animation: hlPulse 1.2s ease-in-out infinite;
}

.hl-pagination {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  padding: 0 15px;
}
.hl-pagination .modern-page-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.hl-pagination .modern-page-navigation .modern-page-current,
.hl-pagination .modern-page-navigation .modern-page-previous,
.hl-pagination .modern-page-navigation .modern-page-next,
.hl-pagination .modern-page-navigation .modern-page-page {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 4px;
  transition: background 0.2s;
}
.hl-pagination .modern-page-navigation .modern-page-current:hover,
.hl-pagination .modern-page-navigation .modern-page-previous:hover,
.hl-pagination .modern-page-navigation .modern-page-next:hover,
.hl-pagination .modern-page-navigation .modern-page-page:hover {
  background: #f0f0f0;
}
.hl-pagination .modern-page-navigation .modern-page-current {
  background: #f6e200;
  color: #fff;
  border-color: #f6e200;
}
.hl-pagination .modern-page-navigation .modern-page-previous,
.hl-pagination .modern-page-navigation .modern-page-next {
  background: #f9f9f9;
}

@keyframes hlPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
/* Адаптивность: сохраняем горизонтальное расположение на мобильных */
@media (max-width: 768px) {
  .hl-search-item {
    /* Убираем flex-direction: column, оставляем row */
    padding: 8px 5px;
  }
  .hl-search-item:hover {
    padding: 8px 5px;
  }
  .hl-thumbnail {
    margin-right: 12px;
  }
  .hl-thumbnail img {
    width: 60px;
    height: 60px;
  }
  .hl-item-content {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .hl-search-item {
    padding: 6px 5px;
  }
  .hl-search-item:hover {
    padding: 6px 5px;
  }
  .hl-item-name {
    font-size: 14px;
  }
  .hl-group {
    font-size: 11px;
    padding: 0 6px;
  }
  .hl-thumbnail {
    margin-right: 10px;
  }
  .hl-thumbnail img {
    width: 50px;
    height: 50px;
  }
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/components/iek/hl.infobaza.tree/templates/.default/style.css?17841875021124*/
.faq-page .accordion-list {
    padding: 0;
}

.support-documents__acc {
    margin-top: 30px;
}

.infobaza-search-panel {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.infobaza-search-panel input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.infobaza-search-panel button {
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.back-tree {
    cursor: pointer;
    margin-bottom: 15px;
    color: #0073aa;
}

.results-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.results-item .caption {
    font-weight: bold;
}

.results-item .group-name {
    font-size: 0.9em;
    color: #666;
    margin-left: 8px;
}

.results-no {
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
}

.highlight {
    background: #fff3cd;
}

.accordion-list .accordion-list {
    padding-left: 20px;
}

.files-list {
    padding-left: 20px;
}

.accordion-item__dropdown {
    margin: 0;
    padding: 0;
}

.files-list__item {
    margin: 0 0 10px;
}

/* End */
/* /local/templates/.default/tabs/style.css?17841875021875 */
/* /local/components/iek/hl.infobaza.search/templates/.default/style.css?17841875023899 */
/* /local/components/iek/hl.infobaza.tree/templates/.default/style.css?17841875021124 */
