

/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news/RPK/style.css?17538756603526*/
/* Стилизация сортировки */
.select-outer {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.select-outer select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Стили переключателей вида */
.display-type {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.display-type .label_show {
  font-size: 0.85rem;
  color: #6c757d;
  margin-right: 10px;
}

.view-button {
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 6px;
  border: 1px solid #c0ccd3;
  background: #f8f9fa;
  color: #495057;
  margin-left: 5px;
  transition: background-color 0.3s ease;
}

.view-button i {
  font-size: 1.1rem;
}

.view-button:hover,
.view-button.cur {
  background: #79c4ef;
  color: #fff;
}

/* Анимация */
.btn i {
  transition: transform 0.2s ease-in-out;
}

.btn:hover i {
  transform: translateX(4px);
}

/* Контейнер с иконкой */
.position-relative {
  position: relative;
}

/* Иконка раскрытия (стрелочка вниз) */
.select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s ease-in-out;
}

/* Анимация раскрытия (вращение иконки вниз при активации select) */
select:focus + .select-icon {
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 600px) {
  .select-outer {
    margin-bottom: 6px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .select-outer select {
    font-size: 12px;
    padding: 7px 28px 7px 8px;
    border-radius: 5px;
    min-width: 0;
  }

  .select-icon {
    font-size: 1rem;
    right: 9px;
  }

  .display-type {
    justify-content: flex-start;
    margin: 3px 0 8px 0;
    gap: 2px;
  }

  .display-type .label_show {
    margin-right: 8px;
    font-size: 11px;
  }

  .view-button {
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 5px;
    margin-left: 3px;
    padding: 0;
    line-height: 28px;
    border: 1px solid #d0dae0;
    background: #f7fafd;
    color: #495057;
    transition: background 0.18s, color 0.18s;
  }

  .view-button i {
    font-size: 1.05em;
  }

  .view-button.cur,
  .view-button:active,
  .view-button:focus {
    background: #59b1e9;
    color: #fff;
    border-color: #59b1e9;
  }

  .view-button:hover:not(.cur) {
    background: #eaf5fb;
    color: #1976d2;
  }
}

/* Для десктопа — чуть больше отступы и размер */
@media (min-width: 601px) {
  .select-outer select {
    font-size: 14px;
    padding: 8px 36px 8px 10px;
    border-radius: 7px;
  }
  .select-icon {
    font-size: 1.25rem;
    right: 15px;
  }
  .view-button {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 6px;
    margin-left: 6px;
  }
}

/* Общие правки */
.select-outer {
  position: relative;
  width: 100%;
  min-width: 0;
}
.select-outer select {
  width: 100%;
  border: 1px solid #ced4da;
  background: #fff;
  transition: border-color 0.2s;
}
.select-outer select:focus {
  border-color: #79c4ef;
  outline: none;
}
.display-type {
  display: flex;
  align-items: center;
}
.display-type .label_show {
  color: #6c757d;
}
.view-button {
  cursor: pointer;
  outline: none;
}

/* End */


/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news.detail/RPK/style.css?17543535327464*/
/* ------------------------------
   Основные переменные (цвета, размеры)
------------------------------- */
:root {
  --primary-color: #5db0ce;
  --primary-hover: #4e97b4;
  --dark-bg: #3a4656;
  --badge-bg: rgba(95, 148, 195, 0.18);
  --badge-color: #b7dbfa;
  --radius: 38px;
  --shadow: 0 8px 32px rgba(34, 145, 255, 0.1);
}

/* ------------------------------
   Карточка решения (контейнер)
------------------------------- */
.solution-hero-card {
  display: flex;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

/* ------------------------------
   Левая часть: Фото
------------------------------- */
.solution-hero-left,
.solution-hero-right {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 46px 32px; — для явного управления можно раскомментировать */
}

.solution-hero-left {
  background: #f5f5f5;
}

.solution-hero-left img {
  max-height: 380px;
  max-width: 100%;
  border-radius: 0;
  object-fit: contain;
  margin: 0 auto;
}

/* ------------------------------
   Правая часть: Плашка с текстом
------------------------------- */
.solution-hero-right {
  background: var(--dark-bg);
  color: #fff;
  /* justify-content: flex-start; — если нужен отступ слева */
}

/* ------------------------------
   Внутренний блок плашки
------------------------------- */
.solution-dark-block {
  max-width: 600px;
  padding: 46px 32px;
}

/* ------------------------------
   Бейдж (раздел или категория)
------------------------------- */
.solution-badge {
  background: var(--badge-bg);
  color: var(--badge-color);
  font-size: 1rem;
  border-radius: 10px;
  margin-bottom: 1.4rem;
  padding: 7px 20px 7px 16px;
  display: inline-block;
  letter-spacing: 0.01em;
}

/* ------------------------------
   Заголовок карточки
------------------------------- */
.solution-title {
  /* Можно добавить font-size, font-weight по необходимости */
}

/* ------------------------------
   Описание (подзаголовок)
------------------------------- */
.solution-desc {
  color: #c4d3e0;
}

/* ------------------------------
   Список преимуществ/фичей
------------------------------- */
.solution-list {
  margin: 0 0 1.5rem 0;
  padding-left: 1.3em;
  color: #e9f5fe;
  font-size: 1.16rem;
  line-height: 1.7;
}
.solution-list li {
  margin-bottom: 0.2em;
}

/* ------------------------------
   CTA Кнопка (яркая, акцентная)
------------------------------- */
.solution-cta-btn {
  margin-top: 1.2rem;
  padding: 1.05rem 2.7rem;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 1rem;
  background: linear-gradient(90deg, #60baf9 0%, #4687ee 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, box-shadow 0.18s, transform 0.13s;
  outline: none;
  position: relative;
  overflow: hidden;
}

.solution-cta-btn i {
  font-size: 1.5em;
  vertical-align: -0.15em;
  margin-right: 0.55em;
  transition: color 0.17s;
}

.solution-cta-btn:hover,
.solution-cta-btn:focus {
  background: linear-gradient(90deg, #4687ee 0%, #60baf9 100%);
  box-shadow: 0 8px 42px 0 rgba(61, 143, 255, 0.28),
    0 2px 14px rgba(44, 122, 219, 0.15);
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  text-decoration: none;
}

.solution-cta-btn:active {
  background: #386ed6;
  color: #fff;
  box-shadow: 0 2px 10px rgba(61, 143, 255, 0.16);
  transform: scale(0.98);
}

/* Назад */

.solution-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgb(210 242 255);
  color: #42484e;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 12px 16px 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 2px 10px rgba(34, 145, 255, 0.05);
  position: relative;
}

.solution-back-link:hover,
.solution-back-link:focus {
  background: #eaf6fd;
  color: #3a4656;
  text-decoration: none;
  box-shadow: 0 3px 18px rgba(34, 145, 255, 0.1);
}

.solution-back-link i {
  font-size: 1.2em;
  margin-right: 0.18em;
  transition: transform 0.15s;
}

.solution-back-link:hover i {
  transform: translateX(-3px);
}

/* ------------------------------
   Мобильная адаптация
------------------------------- */
@media (max-width: 991px) {
  .solution-dark-block {
    max-width: 600px;
    padding: 1px 10px;
  }
  .solution-hero-card {
    flex-direction: column;
    border-radius: 16px;
  }
  .solution-hero-left,
  .solution-hero-right {
    padding: 22px 12px;
  }
  .solution-title {
    font-size: 2rem;
  }
  .solution-badge {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

/* ===== Стилизация табов решений ===== */
.solution-tabs-bar {
  /* background: #f7fbfd; */
  /* border-radius: 16px; */
  padding: 8px 14px;
  /* display: flex; */
  /* align-items: center; */
  gap: 2px;
  /* box-shadow: 0 2px 12px rgba(34, 145, 255, 0.03); */
  /* margin-bottom: 24px; */
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 26px 10px 18px;
  border-radius: 10px;
  color: #287198;
  font-size: 1.08rem;
  font-weight: 550;
  display: flex;
  align-items: center;
  transition: background 0.18s, color 0.16s;
  position: relative;
  outline: none;
}
.tab-btn i {
  font-size: 1.13em;
  opacity: 0.76;
  margin-right: 6px;
}
.tab-btn.active,
.tab-btn:hover,
.tab-btn:focus {
  background: #2291ffb3;
  color: #fff;
}
.tab-divider {
  width: 1px;
  height: 28px;
  background: #287198;
  margin: 0 8px;
  border-radius: 1.5px;
  align-self: center;
  opacity: 0.6;
}

/* Контейнер вкладок */
.solution-tab-content {
  /* background: #e0f0f6; */
  /* border-radius: 18px; */
  /* min-height: 180px; */
  /* box-shadow: 0 2px 16px rgba(34, 145, 255, 0.05); */
  /* border-left: 5px solid #2291ff; */
  /* padding: 38px 34px; */
  font-size: 1.06rem;
  color: #1e2e3e;
}

/* Таблицы */
.solution-tab-content table {
  width: 100% !important;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2em;
  box-shadow: 0 2px 14px rgba(34, 145, 255, 0.08);
}
.solution-tab-content th,
.solution-tab-content td {
  border: 1px solid #a5c3d3;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9em;
}
.solution-tab-content th {
  background: #f4f9ff;
  font-weight: 700;
}
.solution-tab-content td {
  background: #deecf1;
}
.solution-tab-content table p {
  margin-bottom: 0 !important;
}
.solution-tab-content img {
  display: block; /* Сделать блочным элементом */
  margin: 24px auto; /* Автоматические отступы по бокам — по центру */
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Адаптив */
@media (max-width: 991px) {
  .solution-tabs-bar {
    flex-wrap: wrap;
    padding: 4px 2px;
    border-radius: 10px;
  }
  .tab-btn {
    font-size: 1rem;
    padding: 7px 12px 7px 10px;
    margin-bottom: 2px;
  }
  .solution-tab-content {
    border-radius: 10px;
    padding: 18px 10px;
    font-size: 1em;
  }
}

/* End */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news/RPK/style.css?17538756603526 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news.detail/RPK/style.css?17543535327464 */
