

/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news/catalog/style.css?17544916845049*/
/* Стилизация сортировки */
.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;
}

/*Кнопка*/

.catalog-download-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalog-download-line {
  width: 100%;
  max-width: 970px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(52, 182, 255, 0) 0%,
    #38b6ff 30%,
    #1f96c6 50%,
    #38b6ff 70%,
    rgba(52, 182, 255, 0) 100%
  );
  opacity: 0.95;
  box-shadow: 0 0 14px 0 #9bd9ff44;
}
.bi-filetype-pdf {
  font-size: 2.1rem;
  transition: color 0.18s;
}

.catalog-download-btn {
  min-width: 0;
  max-width: 670px;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #23262f;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0 34px;
  position: relative;
  z-index: 1;
  transition: color 0.18s;
}
.catalog-download-btn:hover,
.catalog-download-btn:focus {
  color: #1699dc;
}
.icon-wrap {
  display: flex;
  align-items: center;
  margin-right: 3px;
}
.catalog-download-btn svg {
  display: block;
  width: 28px;
  height: 28px;
}

.catalog-download-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

/* Адаптация */
@media (max-width: 600px) {
  .catalog-download-line {
    max-width: 99vw;
  }
  .catalog-download-btn {
    font-size: 1rem;
    min-height: 44px;
    border-radius: 17px;
    padding: 0 0.8em;
    gap: 9px;
  }
  .catalog-download-btn svg {
    width: 19px;
    height: 19px;
  }
}

/* End */


/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/system.pagenavigation/.default/style.css?1745325210799*/
    .wrap_pagination {
        text-align: center;
    }

    .pagination {
        border-radius: 0;
        border-color: #dfe5e9;
        background-color: transparent;
    }

    .pagination .page-item {
        border-radius: 0;
        margin: 0 1px;
    }

    .pagination .page-item .page-link {
        color: #4c7698;
        border-radius: 5 !important;
        padding: 5px 10px;
        transition: background-color 0.3s, color 0.3s;
    }

    .pagination .page-item .page-link:hover {
        background-color: #66bedf;
        color: white;
    }
.pagination .page-item.disabled .page-link {
    color: rgb(46 52 58 / 98%);
}

    .pagination .page-item .page-link:hover .icon {
        color: white;
    }

    .pagination .page-item .page-link .icon {
        color: #acb6bc;
    }
/* End */


/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news.list/catalog-sections/style.css?17555310902234*/
.catalog-tile-new {
  /* Теперь основной градиент слева, от голубого к белому */
  background: linear-gradient(90deg, #e3f1fb 0%, #f8fcff 58%, #ffffff 100%);
  border-radius: 26px;
  min-height: 150px;
  box-shadow: 0 4px 24px rgba(68, 140, 195, 0.08);
  overflow: hidden;
  position: relative;
  display: block;
  transition: box-shadow 0.18s, transform 0.13s, background 0.33s;
}
.catalog-tile-new:hover {
  background: linear-gradient(92deg, #d1e9fa9e 2%, #e8f3fad4 65%, #fff 100%);
  box-shadow: 0 10px 38px rgba(44, 110, 185, 0.15),
    0 1.5px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px) scale(1.012);
}

.tile-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 60%;
  padding: 32px 30px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 160px;
}

.tile-title {
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
  color: #263246;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.13);
}
.tile-desc {
  font-size: 1.06rem;
  color: #48759b;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.14);
}
.tile-img {
  position: absolute;
  right: 8px;
  top: 55%;
  transform: translateY(-50%);
  height: 105%;
  max-height: 180px;
  width: auto;
  min-width: 120px;
  max-width: 54%;
  z-index: 1;
  object-fit: contain;
  background: none;
  border-radius: 0;
  pointer-events: none;
  transition: filter 0.18s, box-shadow 0.18s;
}
.catalog-tile-new:hover .tile-img {
  filter: brightness(1.07) saturate(1.12);
}

@media (max-width: 991.98px) {
  .tile-content {
    width: 100%;
    position: static;
    padding: 16px 15px 22px 15px;
    min-height: 0;
    background: #fff;
  }
  .tile-img {
    position: static;
    display: block;
    margin: 10px auto 0 auto;
    max-width: 70vw;
    max-height: 120px;
    width: auto;
    transform: none;
    box-shadow: none;
  }
  .catalog-tile-new {
    min-height: 0;
    padding-bottom: 20px;
    background: #f8fcff !important;
  }
}

@media (max-width: 575.98px) {
  .tile-title {
    font-size: 1.05rem;
  }
  .tile-content {
    padding: 11px 8px 12px 11px;
  }
  .tile-img {
    max-height: 70px;
  }
}

/* End */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news/catalog/style.css?17544916845049 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/system.pagenavigation/.default/style.css?1745325210799 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news.list/catalog-sections/style.css?17555310902234 */
