@charset "UTF-8";
:root {
  --desktop-min-width: 1200px;
  --color-main: #2d639f;
  --color-main-light: #C0DFFD;
  --color-opposite: #F4B400;
  --color-opposite-light: #ffe59c;
  --color-customized-grey-dark: #3f4858;
  --color-customized-grey-light: #e9ebef;
  --color-text: var(--color-customized-grey-dark);
  --color-customized-grey-medium: #95b0ce;
  --color-grey-medium: #808080;
  --header-bg-height: 50px;
  --cat-tools-item-height: 3em;
  --cat-tools-icon-size: 1em;
  --cat-tools-icon-margin-top: .4em;
  --cat-tools-icon-margin-right: .7em;
  --photo-sides-ratio: calc(3/4);
}
@media (max-width: 1199px) {
  :root {
    --content-horizontal-padding: 5px;
  }
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/Lato-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  src: url(fonts/Lato-Italic.ttf) format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: bold;
  src: url(fonts/Lato-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: bold;
  src: url(fonts/Lato-BoldItalic.ttf) format("truetype");
}
body {
  margin: 0;
  font-family: Lato;
  font-size: 16px;
  color: var(--color-text);
}

* {
  box-sizing: border-box;
}

#content {
  margin-bottom: 6em;
}
@media (max-width: 1199px) {
  #content {
    padding: 0 var(--content-horizontal-padding);
  }
}
@media (min-width: 1200px) {
  #content {
    width: 100%;
    box-sizing: border-box;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
  }
}

a[href] {
  color: var(--color-main);
}
a[href]:hover {
  color: var(--color-text);
}

.whatsapp {
  background-image: url(images/whatsapp/white.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.whatsapp:hover {
  background-image: url(images/whatsapp/hover.svg);
}

.tg {
  background-image: url(images/telegram/white.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.tg:hover {
  background-image: url(images/telegram/hover.svg);
}

.breadcrumbs {
  display: flex;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  color: #808080;
  font-size: 12px;
}
@media (min-width: 1200px) {
  .breadcrumbs {
    --margin-lateral: 0;
  }
}
.breadcrumbs-afs_wrapper {
  justify-content: flex-start !important;
}
.breadcrumbs-item:not(:first-child)::before {
  content: ">";
  padding: 0 0.5em;
}

.afs-wrapper {
  display: flex;
}
.afs-wrapper:not(.afs-vertical) {
  justify-content: center;
}
.afs-vertical {
  flex-direction: column;
  max-height: 100%;
}
.afs-wrapper:not(.afs-vertical) .afs-aperture:not(.afs-for_swipe) {
  overflow-x: auto;
}
.afs-vertical .afs-aperture:not(.afs-for_swipe) {
  overflow-y: auto;
}
.afs-wrapper:not(.afs-vertical) .afs-for_swipe {
  overflow-x: hidden;
}
.afs-vertical .afs-for_swipe {
  overflow-y: hidden;
}
.afs-arrow {
  flex-shrink: 0; /* необходимо,
чтобы контент не расплющивал стрелки по бокам */
  padding: 1em; /* так обеспечиваются универсальные отступы
для любой ориентации стрелок */
  color: #808080;
  border: 1px solid;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.afs-arrow:not(.afs-disabled):hover {
  color: #000;
}
.afs-prev::before {
  content: "◀";
}
.afs-vertical .afs-prev::before {
  content: "▲";
}
.afs-next::before {
  content: "▶";
}
.afs-vertical .afs-arrow {
  flex-direction: column;
}
.afs-vertical .afs-next::before {
  content: "▼";
}
.afs-disabled {
  color: #D0D0D0;
  cursor: default;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
}
.lightbox.lightbox-open {
  display: block;
}
.lightbox .lightbox-afs.afs-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.lightbox .afs-aperture {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lightbox .lightbox-content {
  display: flex;
  height: 100%;
}
.lightbox .lightbox-slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.lightbox .lightbox-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
}
.lightbox .afs-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  visibility: hidden;
}
.lightbox .afs-arrow.afs-prev {
  left: 0;
}
.lightbox .afs-arrow.afs-next {
  right: 0;
}
@media (hover: hover) {
  .lightbox .lightbox-slide img {
    max-width: 95vw;
    max-height: 95vh;
  }
  .lightbox .afs-arrow {
    top: 50%;
    bottom: auto;
    width: auto;
    height: auto;
    transform: translateY(-50%);
    z-index: 1;
    padding: 0.3em 0.45em;
    font-size: 3rem;
    border: none;
    color: #808080;
    cursor: pointer;
    visibility: visible;
  }
  .lightbox .afs-arrow:not(.afs-disabled):hover {
    color: #C0C0C0;
  }
  .lightbox .afs-arrow.afs-disabled {
    visibility: hidden;
  }
  .lightbox .afs-arrow.afs-prev {
    left: 0.2em;
  }
  .lightbox .afs-arrow.afs-next {
    right: 0.2em;
  }
}

body.lightbox-lock {
  overflow: hidden;
}

h1 {
  margin-top: 0;
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 0;
}

.price {
  white-space: nowrap;
}
.price::after {
  content: "руб.";
  color: #808080;
}

button, .button {
  font: inherit;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  height: 2.5em;
  padding: 0 1em;
}
button:not(:hover), .button:not(:hover) {
  color: var(--color-main);
  background-color: transparent;
  border-color: var(--color-main);
}
button:hover, .button:hover {
  --c: var(--color-opposite-light);
  border-color: var(--c);
  background-color: var(--c);
}
button.button--opposite_light, .button.button--opposite_light {
  color: black;
  border-color: var(--bgc);
  background-color: var(--bgc);
}
button.button--opposite_light:not(:hover), .button.button--opposite_light:not(:hover) {
  --bgc: var(--color-opposite-light);
}
button.button--opposite_light:hover, .button.button--opposite_light:hover {
  --bgc: var(--color-opposite);
}

.button--dark:not(:hover) {
  --c: var(--color-main);
  border-color: var(--c);
  background-color: var(--c);
  color: white;
}
.button--dark:hover {
  --c: var(--color-opposite);
  border-color: var(--c);
  background-color: var(--c);
  color: black;
}

input, textarea, select {
  font: inherit;
  box-sizing: border-box;
  border: 1px solid var(--color-customized-grey-medium);
}
input:hover, textarea:hover, select:hover {
  border-color: var(--color-customized-grey-dark);
}
input:focus, textarea:focus, select:focus {
  border-color: black;
}
input.invalid, input.invalid:hover, input.invalid:focus, textarea.invalid, textarea.invalid:hover, textarea.invalid:focus, select.invalid, select.invalid:hover, select.invalid:focus {
  border-color: red;
}

input[type=text],
input[type=tel],
input[type=password],
input[type=email],
input[type=number],
select,
textarea {
  min-width: 0;
  padding: 0.5em;
  background-color: white;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--color-grey-medium);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

header {
  --header-bg-color: var(--color-main);
  --burger-width: var(--header-bg-height);
  --burger-height: var(--header-bg-height);
  position: relative;
}
@media (max-width: 1199px) {
  header {
    display: flex;
  }
}
@media (min-width: 1200px) {
  header {
    --burger-width: 0px;
    --logo-width: 160px;
    --menu-shift-left: var(--burger-width) + var(--logo-width);
    --menu-shift-right: 270px;
  }
}
header .logo {
  background-image: url(images/logo/white-428x150.png);
  background-repeat: no-repeat;
  background-size: auto calc(100% - 10px);
  background-position: center center;
}
@media (max-width: 1199px) {
  header .logo {
    flex-grow: 1;
  }
}
@media (min-width: 1200px) {
  header .logo {
    width: var(--logo-width);
    background-position-x: 0;
  }
}

.header-logo_and_burger, .header-contacts {
  height: var(--header-bg-height);
  background-color: var(--header-bg-color);
}
.header-logo_and_burger {
  display: flex;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .header-logo_and_burger, .header-contacts {
    position: absolute;
    z-index: 1;
    top: 0;
  }
  .header-logo_and_burger {
    left: calc(( 100% - 1200px ) / 2);
  }
  .header-contacts {
    right: calc(( 100% - 1200px ) / 2);
  }
}
.header-contacts {
  display: flex;
}
@media (max-width: 1199px) {
  .header-contacts {
    --icon-clickable-width: var(--header-bg-height);
    --icon-visible-width: 30px;
  }
}
@media (min-width: 1200px) {
  .header-contacts {
    --icon-clickable-width: var(--header-bg-height);
    --icon-visible-width: 30px;
  }
}
.header-contacts-icon {
  width: var(--icon-clickable-width);
  background-size: var(--icon-visible-width);
}
@media (max-width: 1199px) {
  .header-contacts .phone {
    background-image: url(images/phone/white.svg);
    background-size: var(--bg-size) auto;
    background-repeat: no-repeat;
    background-position-y: center;
    cursor: pointer;
    --bg-size: 25px;
    width: var(--icon-clickable-width);
    margin-right: calc((var(--header-bg-height) - var(--icon-clickable-width)) / 2);
    background-position-x: center;
    font-size: 0;
  }
}
@media (min-width: 1200px) {
  .header-contacts .phone {
    white-space: nowrap;
    background: none;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 0.5em;
  }
  .header-contacts .phone[href] {
    color: white;
  }
  .header-contacts .phone[href]:hover {
    color: var(--color-main-light);
  }
}
@media (max-width: 1199px) {
  header:not(.header-menu_is_on) .header-menus {
    display: none;
  }
  .header-menus {
    position: absolute;
    z-index: 2;
    top: 100%;
    width: 100%;
    max-height: 100%;
  }
}
.header-menu_1 > a, .header-menu_2 > a {
  text-decoration: none;
}
.header-menu_1 > a[is_current="1"], .header-menu_2 > a[is_current="1"] {
  font-weight: bold;
}
.header-menu_1 > a[href] {
  color: white;
}
.header-menu_1 > a[href]:hover {
  color: var(--color-main-light);
}
.header-menu_2 {
  background-color: white;
  border-bottom: 2px solid var(--color-main);
}
.header-menu_2 > a {
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .header-menu_1, .header-menu_2 {
    padding: 0.25em 0;
  }
  .header-menu_1 > a, .header-menu_2 > a {
    display: block;
    padding: 0.5em 1em;
  }
  .header-menu_1 {
    background-color: var(--header-bg-color);
    border-top: 2px solid white;
  }
  .header-menu_1 > a {
    color: white;
  }
}
@media (min-width: 1200px) {
  .header-bg_line {
    position: absolute;
  }
  .header .nav_menu_icon, .header-logo, .header-contacts {
    position: absolute;
    top: 0;
    z-index: 1;
    height: var(--header-bg-height);
  }
  .header-menu_1, .header-menu_2 {
    display: flex;
  }
  .header-menu_1 > a, .header-menu_2 > a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-menu_1 {
    justify-content: space-evenly;
    height: var(--header-bg-height);
    background-color: var(--header-bg-color);
    padding-left: calc(( 100% - 1200px ) / 2 + var(--menu-shift-left));
    padding-right: calc(( 100% - 1200px ) / 2 + var(--menu-shift-right));
  }
  .header-menu_1 > a {
    color: white;
  }
  .header-menu_2 {
    width: 100%;
    box-sizing: border-box;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
    font-size: 18px;
    justify-content: space-between;
    height: var(--header-bg-height);
  }
}
@media (min-width: 1200px) {
  .header--no_menus .logo {
    background-position-x: var(--content-horizontal-padding);
  }
}
.header--no_menus .nav_menu_icon {
  display: none;
}

.nav_menu_icon {
  --icon-size: 20px;
  width: var(--burger-width);
  height: var(--burger-height);
  background-image: url(images/burger/white.svg);
  background-size: var(--icon-size) var(--icon-size);
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.nav_menu_icon:hover {
  background-image: url(images/burger/hover.svg);
}

footer {
  display: grid;
  grid-row-gap: 1.5em;
  margin-top: auto;
  color: white;
  background-color: var(--color-main);
}
@media (max-width: 1199px) {
  footer {
    padding: 1.5em 2em 2em;
  }
}
@media (max-width: 719px) {
  footer {
    grid-column-gap: 1em;
    grid-template-areas: "email phone" "vk telegram" "address address";
  }
}
@media (min-width: 720px) and (max-width: 1199px) {
  footer {
    grid-column-gap: 2em;
  }
}
@media not all and (max-width: 719px) {
  footer {
    padding-top: 1.5em;
    padding-bottom: 2em;
    grid-template-areas: "email phone vk telegram" "address address address address ";
  }
}
@media (min-width: 1200px) {
  footer {
    width: 100%;
    box-sizing: border-box;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
  }
}
footer a[href] {
  color: white;
}
footer a[href]:hover {
  color: var(--color-main-light);
}

.footer-phone {
  grid-area: phone;
}
.footer-email {
  grid-area: email;
}
.footer-address {
  grid-area: address;
}
.footer-vk {
  grid-area: vk;
}
.footer-telegram {
  grid-area: telegram;
}
.footer-phone {
  white-space: nowrap;
  text-decoration: none;
}
.footer-address-part {
  white-space: nowrap;
}

.product_item {
  --price-fz: var(--title-fz);
}
.product_item-photo {
  display: block;
  position: relative;
  border-style: solid;
  border-width: 1px;
}
.product_item-photo:not(:hover) {
  border-color: var(--color-customized-grey-light);
}
.product_item-photo:hover {
  border-color: var(--color-main);
}
.product_item-photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  box-sizing: content-box;
  padding-bottom: calc(100% / var(--photo-sides-ratio));
}
.product_item-photo-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_item-title {
  display: block;
  margin: 1em 0 0.5em;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: var(--title-fz);
}
.product_item-price {
  text-align: center;
  margin: 0.5em 0;
  font-size: var(--price-fz);
  font-weight: bold;
}
@media (min-width: 1200px) {
  .product_item {
    --title-fz: 16px;
    --props-fz: 14px;
  }
}
@media (max-width: 1199px) {
  .product_item {
    --title-fz: 14px;
    --props-fz: 12px;
  }
}
.product_item-properties {
  text-align: center;
  color: var(--color-customized-grey-dark);
  font-style: italic;
  font-size: var(--props-fz);
}

.lightbox .afs-arrow:not(.afs-disabled) {
  color: var(--color-main);
}
.lightbox .afs-arrow:not(.afs-disabled):hover {
  color: var(--color-main-light);
}

.cat-text {
  margin: 2em 0 3em;
}
.cat-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --gap: .5em;
  gap: var(--gap);
  margin: 3em 0;
}
.cat-filters-toggle, .cat-sort {
  flex-basis: calc((100% - (var(--n) - 1) * var(--gap)) / var(--n));
  height: var(--cat-tools-item-height);
}
@media (min-width: 1200px) {
  .cat-filters-toggle, .cat-sort {
    --n: 4;
  }
}
@media (min-width: 720px) and (max-width: 1199px) {
  .cat-filters-toggle, .cat-sort {
    --n: 2;
  }
}
@media (max-width: 719px) {
  .cat-filters-toggle, .cat-sort {
    --n: 1;
  }
}
.cat-filters-toggle, .cat-sort-options > label {
  display: flex;
  align-items: center;
}
.cat-filters-toggle::before, .cat-sort-options > label::before {
  content: "";
  width: var(--cat-tools-icon-size);
  height: var(--cat-tools-icon-size);
  margin-top: var(--cat-tools-icon-margin-top);
  margin-right: var(--cat-tools-icon-margin-right);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 719px) {
  .cat-filters-toggle::before {
    margin-left: 15%;
  }
}
@media not all and (max-width: 719px) {
  .cat-filters-toggle {
    justify-content: center;
  }
}
.cat-filters-toggle::before {
  background-image: url(/css/images/filters/normal.svg);
}
.cat-filters-toggle:hover::before {
  background-image: url(/css/images/filters/hover.svg);
}
.cat-filters-toggle {
  display: none;
}
.cat-sort {
  position: relative;
}
.cat-sort-options {
  position: absolute;
  width: 100%;
  background-color: white;
  /*&:not(&--expanded) > label:has(> input:checked),
  &--expanded > label:first-child*/
}
.cat-sort-options > label {
  font: inherit;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  height: 2.5em;
  padding: 0 1em;
  width: 100%;
  height: var(--cat-tools-item-height);
  padding-left: 20%;
}
.cat-sort-options > label:not(:hover) {
  color: var(--color-main);
  background-color: transparent;
  border-color: var(--color-main);
}
.cat-sort-options > label:hover {
  --c: var(--color-opposite-light);
  border-color: var(--c);
  background-color: var(--c);
}
.cat-sort-options > label > input {
  display: none;
}
.cat-sort-options:not([data-expanded="1"]) > label:not(:has(> input:checked)) {
  display: none;
}
.cat-sort-options > label:has(> input:checked)::before {
  background-image: url(/css/images/sort/normal.svg);
}
.cat-sort-options > label:has(> input:checked):hover::before {
  background-image: url(/css/images/sort/hover.svg);
}
.cat-count {
  margin: 3em 0;
  text-align: center;
  color: var(--color-grey-medium);
}
.cat-products {
  display: grid;
  grid-template-columns: repeat(var(--columns-count), 1fr);
  gap: 2em;
}
@media (min-width: 1200px) {
  .cat-products {
    --columns-count: 4;
  }
}
@media (min-width: 720px) and (max-width: 1199px) {
  .cat-products {
    --columns-count: 3;
  }
}
@media (max-width: 719px) {
  .cat-products {
    --columns-count: 2;
  }
}
.cat-filters {
  grid-template-columns: repeat(var(--n), 1fr);
  gap: 0.5em;
  --item-pad-v: .75em;
}
.cat-filters:not(.cat-filters--expanded) {
  display: none;
}
.cat-filters--expanded {
  display: grid;
}
@media (min-width: 1200px) {
  .cat-filters {
    --n: 4;
  }
}
@media (min-width: 720px) and (max-width: 1199px) {
  .cat-filters {
    --n: 2;
  }
}
@media (max-width: 719px) {
  .cat-filters {
    --n: 1;
  }
}
.cat-filters-item-title {
  color: var(--color-main);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
  align-items: center;
  min-height: 3em;
  padding-left: 1em;
  padding-right: 1em;
  border: 1px solid var(--color-customized-grey-medium);
}
.cat-filters-item-title::before {
  content: "\e909";
  font-family: icomoon;
  text-align: center;
  font-size: 75%;
  transform: rotate(-180deg);
  transition: transform 0.2s;
}
.cat-filters-item-title--expanded::before {
  transform: rotate(-90deg);
}
.cat-filters-item-title::before {
  flex-basis: 1em;
  margin-right: 0.75em;
}
.cat-filters-item-title:hover {
  background-color: var(--color-opposite-light);
  border-color: var(--color-opposite-light);
  color: unset;
}
.cat-filters-item-title:not(.cat-filters-item-title--expanded) + .cat-filters-item-field {
  display: none;
}
.cat-filters-item-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1em;
}
.cat-filters-item-field > label {
  flex-basis: 100%;
}
.cat-filters-item-field > label:not(:last-child) {
  margin-bottom: 0.75em;
}
.cat-filters-item-field input[type=number] {
  margin: 0 0.5em;
  width: 4em;
}
.cat-filters-item-field input[name*=price] {
  width: 5em;
}
.cat-filters-item-field-range {
  display: flex;
  align-items: center;
}
.cat-filters-item-field-range-name {
  width: 1.5em;
  text-align: right;
}
.cat-filters button {
  height: auto;
  padding-top: var(--item-pad-v);
  padding-bottom: var(--item-pad-v);
}
.cat-filters button:not([type=reset]) {
  grid-column: 1;
}
.cat-filters-toggle::after, .cat-filters-item-title::after {
  --radius: 1em;
  content: var(--cat-filled-filters-count);
  height: calc(2 * var(--radius));
  margin-left: auto;
  font-weight: bold;
  background: var(--color-customized-grey-medium);
  border-radius: var(--radius);
  min-width: calc(2 * var(--radius));
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  color: white;
  font-size: 75%;
}
.cat-filters-toggle::after {
  margin-left: var(--radius);
}
.cat-pages {
  margin-top: 4em;
}
.cat-pages-list {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
@media not all and (max-width: 719px) {
  .cat-pages-list {
    flex-basis: 50%;
  }
}
@media (max-width: 719px) {
  .cat-pages-list {
    flex-wrap: wrap;
  }
}
.cat-pages-list > a {
  --side: 2.5em;
  width: var(--side);
  height: var(--side);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-style: solid;
  border-width: 1px;
}
.cat-pages-list > a[href]:not(:hover) {
  border-color: var(--color-main);
}
.cat-pages-list > a[href]:hover {
  --c: var(--color-opposite-light);
  border-color: var(--c);
  background-color: var(--c);
}
.cat-pages-list > a:not([href]) {
  --c: var(--color-main-light);
  border-color: var(--c);
  background-color: var(--c);
}
.cat-pages-show_more {
  white-space: nowrap;
}
@media not all and (max-width: 719px) {
  .cat-pages-show_more {
    --p: 6em;
    padding-left: var(--p);
    padding-right: var(--p);
  }
}
@media (max-width: 1199px) {
  .cat-pages-show_more {
    order: -1;
  }
}
@media (max-width: 719px) {
  .cat-pages-show_more {
    flex-basis: 100%;
    margin-bottom: 1em;
  }
}

body.cat-busy .cat-tools, body.cat-busy .cat-filters, body.cat-busy .cat-count, body.cat-busy .cat-products, body.cat-busy .cat-pages {
  opacity: 0.5;
  cursor: wait;
}

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