

/* Start:/local/templates/preora/css/pages/catalog.css?178522668125615*/
/* ── Баннер раздела каталога ──────────────────────────────────────────────
   Картинка товара приходит из админки с произвольными пропорциями
   (портрет 371x600, ландшафт 800x450 и т.д.), поэтому её нельзя ограничивать
   фиксированным max-height: высокая картинка вылезала вниз и наезжала на
   контент под баннером.

   Теперь .banner__bgProduct растянут от --bnrImgTop до --bnrOverhang ниже
   .banner__info, а картинка вписана в этот бокс (max-height: 100%) и прижата
   к его низу. Следствия при любых пропорциях:
     • картинка выступает за .banner__info ровно на --bnrOverhang;
     • ниже этой границы она не уходит никогда;
     • --bnrOverhang === padding-bottom у .banner, т.е. выступ всегда попадает
       в «подложку» баннера и не задевает секцию ниже.
   Правила ниже намеренно заданы через .banner__info — на детальной странице
   товара разметка баннера другая, и catalog-detail.css её не должен ловить. */

.banner {
  --bnrH: 490px;        /* высота цветной подложки баннера */
  --bnrOverhang: 75px;  /* насколько картинка выступает вниз за .banner__info */
  --bnrImgTop: 115px;   /* верхняя граница картинки, от верха .banner__info */
  --bnrPadY: 0px;       /* вертикальные отступы текстового блока */
  padding-bottom: var(--bnrOverhang);
  background: var(--bgDark);
}

.banner__info {
  width: 100%;
  height: var(--bnrH);
  padding: 0;
  background: url(/local/templates/preora/css/pages/../../img/common/bgBanner.jpg) center no-repeat;
  background-size: cover;
}

.banner__info .banner__box {
  height: 100%;
  position: relative;
}

.banner__info .banner__content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: var(--bnrPadY) 0;
}

.banner__info .banner__title {
  position: relative;
  z-index: 1;
  width: 40%;
  color: var(--bgLight);
}

.banner__bgProduct {
  position: absolute;
  top: var(--bnrImgTop);
  right: 0;
  bottom: calc(var(--bnrOverhang) * -1);
  width: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.banner__bgProduct img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

@media screen and (max-width: 1400px) {
  .banner {
    --bnrH: 380px;
    --bnrImgTop: 30px;
  }

  .banner__bgProduct {
    width: 56%;
  }
}

@media screen and (max-width: 1200px) {
  .banner__bgProduct {
    width: 50%;
  }
}

@media screen and (max-width: 1000px) {
  .banner {
    --bnrH: 400px;
    --bnrOverhang: 130px;
    --bnrImgTop: 165px;
    --bnrPadY: 60px;
  }

  .banner__info .banner__content {
    align-items: start;
    flex-direction: column;
  }

  .banner__info .banner__title {
    width: 60%;
  }

  .banner__bgProduct {
    width: 70%;
  }
}

@media screen and (max-width: 800px) {
  .banner {
    --bnrH: 320px;
    --bnrImgTop: 140px;
  }

  .banner__bgProduct {
    width: 60%;
  }
}

@media screen and (max-width: 700px) {
  .banner {
    --bnrH: 460px;
    --bnrOverhang: 100px;
    --bnrImgTop: 220px;
    --bnrPadY: 40px;
  }

  .banner__bgProduct {
    width: 80%;
  }
}

@media screen and (max-width: 660px) {
  .banner {
    --bnrH: 280px;
    --bnrOverhang: 90px;
    --bnrImgTop: 100px;
  }

  .banner__bgProduct {
    width: 74%;
  }
}

@media screen and (max-width: 430px) {
  .banner {
    --bnrOverhang: 70px;
    --bnrImgTop: 95px;
  }

  .banner__bgProduct {
    width: 80%;
  }
}

@media screen and (max-width: 380px) {
  .banner__bgProduct {
    width: 100%;
  }
}

.main {
  background: var(--bgDark);
}

.main__box {
}

.main__content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 85px;
}

.main__filters {
}

.main__filters-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  user-select: none;
}

.main__filters-top::after {
  content: "▲";
  font-size: 12px;
  transition: transform 0.2s;
}

.main__filters-top.collapsed::after {
  transform: rotate(180deg);
}

/* От 800px панель фильтров всегда раскрыта: ни стрелки, ни курсора, ни сворачивания */
@media screen and (min-width: 800px) {
  .main__filters-top {
    cursor: default;
  }

  .main__filters-top::after {
    content: none;
  }

  .main__filters-list.hidden {
    display: block;
  }
}

.main__filters-title {
  font-size: 24px;
}

.main__filters-reset {
  font-size: 12px;
}

.main__filters-list {
  margin-top: 36px;
}

.main__filters-list.hidden {
  display: none;
}

.main__filters-item {
  position: relative;
  border-bottom: 1px solid var(--textAccentLightTransparent);

  &:last-of-type {
    border: none;
  }
}

.main__filters-item.active {
  .main__filters-mark::before {
    opacity: 1;
  }

  .main__filters-choice {
    pointer-events: all;
    height: auto;
    opacity: 1;
    margin-bottom: 20px;
  }
}

.main__filters-item.active .main__filters-mark::before {
  opacity: 1;
}

.main__filters-item.active .main__filters-choice {
  pointer-events: all;
  height: auto;
  opacity: 1;
  margin-bottom: 20px;
}

.main__filters-heading {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.main__filters-title {
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 16px;
}

.main__filters-mark {
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  &::after,
  &::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--textAccentLight);
  }

  &::before {
    rotate: 90deg;
    opacity: 0;
  }
}

.main__filters-choice {
  opacity: 0;
  height: 0;
  pointer-events: none;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main__filters-choice-item {
}

.main__filters-choice-name {
  font-family: var(--Bounded);
  font-weight: 400;
  font-size: 14px;
}

.main__filters-submit {
  margin-top: 24px;
  width: 100%;
}

/* ── Power range: manual "от / до" entry above the checkbox list ──
   Lives inside .main__filters-choice, so it collapses with the accordion.
   Colours come from currentColor / the same border token the filter rows use,
   so the block follows the surrounding text in both themes. */
.main__filters-range {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main__filters-range-inputs {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.main__filters-range-input {
  width: 100%;
}

.main__filters-range-field {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

@media screen and (max-width: 660px) {
  .main__filters-range-field {
  }
}

.main__filters-range-label {
  font-family: var(--Bounded);
  font-weight: 400;
  font-size: 14px;
}

.main__filters-range-input {
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 10px;
  font-family: var(--Bounded);
  font-weight: 400;
  font-size: 14px;
  color: inherit;
  background: transparent;
  border: 1px solid var(--textAccentLightTransparent);
  border-radius: 4px;
}

.main__filters-range-input:focus {
  outline: none;
  border-color: currentColor;
}

/* Native spinners crowd a field this narrow */
.main__filters-range-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.main__filters-range-input::-webkit-outer-spin-button,
.main__filters-range-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.main__filters-range-submit {
  width: 100%;
  padding: 10px !important;
  margin-bottom: 20px;
}

/* ── "4800 кВА": opens the request form instead of filtering ──
   Deliberately unlike the checkbox rows around it — outlined and accented,
   so it reads as an action, not as another option to tick. */
.main__filters-choice-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: var(--linkAccentLight);
  background: transparent;
  border: 1px solid var(--linkAccentLight);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.main__filters-choice-quote-hint {
  font-family: var(--Bounded);
  font-weight: 400;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0.75;
}

@media (any-hover: hover) {
  .main__filters-choice-quote:hover {
    color: var(--bgLight);
    background: var(--linkAccentLight);
  }
}

.main__filters-choice-quote:active {
  color: var(--bgLight);
  background: var(--linkAccentDark);
  border-color: var(--linkAccentDark);
}

/* ── Модалка запроса мощности (include_parts/quote-modal.php) ──
   Не путать с панелью заявки из шапки: та выезжает сбоку и описана в layout.css.
   Здесь обычный центрированный диалог; z-index выше 1100, на котором лежит
   .header__application, и выше 800 у .transitionContainer. */
.quoteForm {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.quoteForm.active {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.quoteForm__overlay {
  position: fixed;
  inset: 0;
  background: var(--textDark);
  opacity: 0.6;
}

/* margin: auto центрирует диалог по вертикали, пока он помещается в экран,
   и отдаёт прокрутку оверлею, когда перестаёт помещаться */
.quoteForm__box {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 560px;
  padding: 40px;
  background: var(--bgLight);
  border: 1px solid var(--btnNotActive);
  border-radius: 16px;
}

/* Селектор из двух классов намеренно: бандл страницы подключается раньше шаблонного,
   поэтому .cross { position: relative } из base.css перебивает одноклассовое правило —
   крестик остаётся в потоке и съезжает на заголовок. */
.quoteForm__cross.cross {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.quoteForm__title {
  font-size: 30px;
  padding-right: 40px;
}

.quoteForm__desc {
  margin-top: 12px;
  font-weight: 500;
  line-height: 140%;
}

.quoteForm__power {
  margin-top: 16px;
  padding: 12px 16px;
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 14px;
  color: var(--linkAccentLight);
  background: var(--textAccentLightTransparent);
  border-radius: 8px;
}

.quoteForm__form {
  margin-top: 32px;
}

.quoteForm__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.quoteForm__form > .quoteForm__item:first-of-type {
  margin-top: 0;
}

.quoteForm__item-title {
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 16px;
}

.quoteForm__textarea {
  resize: vertical;
}

.quoteForm__file {
  margin-top: 24px;
}

.quoteForm__file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quoteForm__file-list:not(:empty) {
  margin-bottom: 12px;
}

.quoteForm__file-btn input[type="file"] {
  display: none;
}

.quoteForm__file-name {
  font-size: 14px;
  word-break: break-all;
}

.quoteForm__file-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--textMiddleLight);
}

.quoteForm__file-error {
  font-size: 12px;
  color: var(--error);
}

.quoteForm__agree {
  margin-top: 24px;
}

.quoteForm__agree-text {
  font-size: 12px;
  line-height: 140%;
}

.quoteForm__agree-link {
  color: var(--linkAccentLight);
  text-decoration: underline;
}

.quoteForm__submit {
  margin-top: 24px;
}

.quoteForm__result {
  margin-top: 20px;
  font-weight: 500;
  line-height: 140%;
}

.quoteForm__result--error {
  color: var(--error);
}

@media screen and (max-width: 600px) {
  /* Ни флекса, ни margin: auto — на узком экране диалог занимает весь экран, а любой
     остаток высоты, который авто-отступы превратили бы в полосу фона снизу, забирает
     сама коробка через min-height */
  .quoteForm.active {
    display: block;
    padding: 0;
  }

  .quoteForm__box {
    margin: 0;
    max-width: none;
    min-height: 100%;
    padding: 24px 16px 40px;
    border: 0;
    border-radius: 0;
  }

  .quoteForm__cross.cross {
    top: 12px;
    right: 12px;
  }

  .quoteForm__title {
    font-size: 22px;
    padding-right: 32px;
  }
}

/* ── Categories list (sections.php) ── */
.categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 0 60px 0;
}

.categories__item {
  padding: 28px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 46px;
  border-radius: 24px;
  background: var(--bgLight);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.categories__item.open {
  margin-bottom: 10px;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-radius: 14px;
  padding: 20px 14px;

  .categories__item-img {
    aspect-ratio: inherit;
  }

  .categories__item-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title btn"
      "desc btn";
    gap: 0 12px;
    align-items: center;
  }

  .categories__item-title {
    font-size: 18px;
    grid-area: title;
  }

  .categories__item-desc {
    grid-area: desc;
  }

  .categories__item-link {
    grid-area: btn;
  }

  .categories__products {
    padding: 0;
  }
}

/* Products listed under their category while a filter is applied */
.categories__products {
  padding: 5px 0 35px;
}

.categories__item-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  max-height: 162px;
  background: var(--bgLight);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.categories__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  transform: scale(1.1);
}

.categories__item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.categories__item-title {
  font-family: var(--Bounded);
  font-weight: 600;
  font-size: 22px;
  color: var(--textDark);
}

.categories__item-desc {
  font-size: 15px;
  color: var(--textDark);
  opacity: 0.7;
  line-height: 1.5;
}

.categories__item-link {
  align-self: flex-start;
  margin-top: 8px;
}

@media (hover: hover) {
  .categories__item:hover .categories__item-img img {
    transform: scale(1.2);
  }
}

@media screen and (max-width: 1400px) {
  .categories__item.open {
    padding: 14px;

    .categories__item-desc {
      font-size: 14px;
    }
  }
}

@media screen and (max-width: 1200px) {
  .categories__item.open {
    grid-template-columns: 50px 1fr !important;
    gap: 24px !important;

    .categories__item-content {
      display: flex;
      align-items: start;
    }
  }
}

@media screen and (max-width: 1000px) {
  .categories__item.open {
    grid-template-columns: 50px 1fr !important;
    gap: 24px !important;

    .categories__item-title {
      font-size: 14px;
    }

    .categories__item-desc {
      font-size: 10px;
    }

    .categories__item-link {
      width: 200px;
      padding: 10px;
    }
  }
}

@media screen and (max-width: 700px) {
  .categories {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .categories__item-title {
    font-size: 18px;
  }

  .main__contentSections {
    .categories__item {
      gap: 24px;
      grid-template-columns: 20vw 1fr !important;
    }

    .categories__item.open {
      margin: 0;
    }

    .categories__item-content {
      gap: 6px;
    }

    .categories__products {
      padding: 0 0 10px;
    }
  }
}

@media screen and (max-width: 520px) {
  .main__contentSections {
    .categories__item {
      gap: 24px !important;
      grid-template-columns: 1fr !important;
    }

    .categories__item-title {
      font-size: 18px !important;
    }

    .categories__item-desc {
      font-size: 12px !important;
    }

    .categories__item-link {
      width: 100% !important;
    }
  }
}

/* ── Section page extras ── */
.main__catalog-item-power {
  padding: 0 20px 14px;
  font-size: 13px;
  font-family: var(--Bounded);
  font-weight: 500;
  color: var(--textAccentLight);
}

.main__downloads {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── Element spec table (single) ── */
.specification__single {
  max-width: 640px;
}

/* ── Banner subtitle (back-link to section) ── */
.banner__subtitle {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.75;
}

.main__catalog-empty {
  color: var(--textMiddle, #6b7280);
  font-size: 16px;
}

.main__catalog-emptyMain {
  height: 0;
}

.main__catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  justify-content: space-between;
  gap: 30px;
}

.main__catalog-item {
  display: block;
  border-radius: 24px;
  background: var(--bgLight);
}

.main__catalog-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.main__catalog-item-gallery {
  padding: 20px 20px 0;
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
}

.main__catalog-item-img {
  width: 100%;
  height: 100%;
  padding-bottom: 33px;

  img {
    transform: scale(0.8);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.main__catalog-item-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.main__catalog-item-title {
  padding: 0 20px;
  margin: 10px 0;
  font-size: 16px;
  font-family: var(--Bounded);
  font-weight: 600;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-height: calc(16px * 3 * 1.55);
}

.main__catalog-item-download {
  display: flex;
  flex-direction: column;
  position: relative;
}

.main__catalog-item-download-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  cursor: pointer;
  margin: 10px 20px 20px auto;
}

.main__catalog-item-download-open {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  top: 0;
  background: var(--textAccentLight);
  border-radius: 0 0 24px 24px;
  padding: 10px 20px 20px;
  pointer-events: none;
  opacity: 0;
  z-index: 20;
}

.main__catalog-item-download-open.active {
  opacity: 1;
  pointer-events: all;
}

.main__catalog-item-download-open-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  cursor: pointer;
  margin-left: auto;
}

.main__catalog-item-download-formats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.main__catalog-item-download-link {
  color: var(--bgLight);
  line-height: 100%;
  border-bottom: 1px solid var(--bgLight);
}

.main__bottom {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.main__btn {
}

.main__nums {
  display: flex;
  align-items: center;
}

.main__num {
  font-size: 18px;
  line-height: 100%;
  font-family: var(--Bounded);
  font-weight: 400;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--textDark);
  opacity: 0.8;
}

.main__num.active {
  opacity: 1;
  font-weight: 700;
  background: var(--bgLight);
}

.main__next {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--textAccentLight);
  position: relative;

  &::after {
    content: "";
    border-top: 2px solid var(--bgLight);
    border-right: 2px solid var(--bgLight);
    width: 8px;
    height: 8px;
    border-radius: 2px;
    rotate: 45deg;
  }
}

@media (hover: hover) {
  .main__catalog-item:hover {
    .main__catalog-item-img {
      img {
        transform: scale(0.9);
      }
    }
  }

  .main__catalog-item-title:hover {
    color: var(--linkAccentDark);
  }

  .main__catalog-item-download-icon:hover {
    transform: scale(1.1);
  }

  .main__catalog-item-download-open-icon:hover {
    transform: scale(1.1);
  }

  .main__catalog-item-download-link:hover {
    border-bottom-color: transparent;
  }

  .main__num:hover {
    opacity: 1;
  }

  .main__next:hover {
    background: var(--linkAccentDark);
  }
}

@media screen and (max-width: 1400px) {
  .main__catalog-item-title {
    font-size: 14px;
    font-weight: 500;
  }
}

@media screen and (max-width: 1340px) {
  .main__catalog {
    gap: 40px 20px;
  }
}

@media screen and (max-width: 1200px) {
  .main__content {
    gap: 60px;
  }

  .main__filters-title {
    font-size: 14px;
  }

  .main__catalog-item-download-icon {
    width: 20px;
    height: 20px;
    margin: 0 20px 20px auto;
  }

  .main__catalog-item-download-open {
    top: -10px;
  }

  .main__catalog-item-download-open-icon {
    width: 20px;
    height: 20px;
  }

  .main__num {
    font-size: 14px;
    width: 30px;
  }

  .main__next {
    margin-left: 6px;
  }

  .main__contentSections {
    .categories__item {
      padding: 18px;
      gap: 34px;
      border-radius: 14px;
      grid-template-columns: 170px 1fr;
    }

    .categories__item-title {
      font-size: 20px;
    }

    .categories__item-desc {
      font-size: 13px;
    }

    .categories__item-link {
      width: 240px;
      padding: 16px;
    }
  }
}

@media screen and (max-width: 1000px) {
  .main__content {
    gap: 80px;
  }

  .main__filters-list {
    margin-top: 24px;
  }

  .main__filters-heading {
    padding: 16px 0;
  }

  .main__catalog {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .main__catalog-item-download-icon {
    width: 30px;
    height: 30px;
    margin: 10px 20px 20px auto;
  }

  .main__catalog-item-download-open {
    top: 0;
  }

  .main__catalog-item-download-open-icon {
    width: 30px;
    height: 30px;
  }

  .main__bottom {
    flex-direction: column;
    gap: 40px;
  }

  .main__btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .main__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main__filters-list {
    margin-top: 16px;
  }

  .main__catalog-item {
    border-radius: 16px;
  }

  .main__catalog-item-download-open {
    border-radius: 0 0 16px 16px;
    gap: 10px;
  }

  .main__num {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 560px) {
  .main__content {
    gap: 40px;
  }

  .main__catalog {
    gap: 30px 10px;
  }

  .main__catalog-item-gallery {
    padding: 10px 10px 0;
  }

  .main__catalog-item-title {
    font-size: 12px;
    margin: 0 0 10px;
    padding: 0 10px;
  }

  .main__catalog-item-download-icon {
    margin-bottom: 10px;
  }

  .main__catalog-item-download-icon,
  .main__catalog-item-download-open-icon {
    width: 24px;
    height: 24px;
  }

  .main__catalog-item-pagination {
    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
    }
  }

  .main__catalog-item-download-open {
    padding: 10px 10px 16px;
  }

  .main__catalog-item-download-link {
    font-size: 12px;
  }

  .main__num {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .main__next {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 420px) {
  .main__catalog-item {
    border-radius: 12px;
  }

  .main__catalog-item-title {
    font-size: 10px;
    margin: 0;
  }

  .main__catalog-item-download-open {
    border-radius: 0 0 12px 12px;
  }
}

/* End */
/* /local/templates/preora/css/pages/catalog.css?178522668125615 */
