

/* 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 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news/catalog/style.css?17544916845049 */
