.pagination {
  grid-column: 2 / -2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 55px;
}

  @media (min-width: 768px) {.pagination {
    grid-column: 4 / -4;
    padding: 0 0 90px
}
  }

.pagination__list {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination__item {
  margin-right: 24px;
}

.pagination__item:last-child {
    margin-right: 0;
  }

@media (min-width: 768px) {

.pagination__item {
    margin-right: 30px
}
  }

.pagination__link {
  font-size: var(--font-size-text-m);
  color: var(--color-primary-dark);
  opacity: 0.5;
  text-decoration: none;
  font-weight: 600;
}

.pagination__link:hover,
  .pagination__link.focus-visible:focus {
    color: var(--color-default);
    opacity: 1;
    transition: 0.2s ease-out;
  }

.pagination__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 20px;
  margin-left: 30px;
}

@media (min-width: 768px) {

.pagination__btn {
    width: 25px;
    margin-left: 40px
}
  }

.pagination__btn_prev {
  margin-left: 0;
  margin-right: 30px;
  transform: rotate(180deg);
}

@media (min-width: 768px) {

.pagination__btn_prev {
    margin-right: 40px
}
  }

.pagination__icon {
  opacity: 0.45;
}

.pagination__btn:hover > .pagination__icon,
.pagination__btn:focus > .pagination__icon {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.pagination__link_current {
  opacity: 1;
  color: var(--color-default);
  border-bottom: 2px solid var(--color-default);
}

.brand-page__wrapper {
  grid-template-columns: 1fr;
  grid-column-gap: 50px;
  display: grid;
  grid-column: 2 / -2;
  padding: 0 20px;
}

@media (min-width: 768px) {

.brand-page__wrapper {
    padding: 0;
    grid-template-columns: 200px auto
}
  }

.brand-page__breadcrumbs {
  padding: 0 20px;
}

@media (min-width: 768px) {

.brand-page__breadcrumbs {
    padding: 0
}
  }

.brand-page__title {
  grid-column: 2 / -2;
  padding: 0 20px;
  margin: 10px 0 0;
  font-size: var(--font-size-title-xl);
  font-weight: 700;
}

@media (min-width: 768px) {

.brand-page__title {
    padding: 0;
    margin-top: 20px;
    text-align: left
}
  }

.brand-page__img {
  max-width: 50%;
}

@media (min-width: 768px) {

.brand-page__img {
    max-width: 100%
}
  }

.brand-page__description {
  font-size: var(--font-size-text-m);
}

@media (min-width: 768px) {

.catalog {
    margin-bottom: 80px;
    grid-template-rows: auto auto 1fr
}
  }

.catalog__breadcrumbs {
  grid-column: 2 / -2;
  padding: 0 20px;
}

@media (min-width: 768px) {

.catalog__breadcrumbs {
    padding: 0
}
  }

.catalog__wrapper, .catalog__header {
  grid-column: 2 / -2;
  display: grid;
}

@media (min-width: 768px) {

.catalog__wrapper, .catalog__header {
    grid-template-columns: 280px auto;
    grid-column-gap: 30px
}
  }

.catalog__inner {
  position: relative;
  padding: 0 20px;
}

@media (min-width: 768px) {

.catalog__inner {
    padding: 0 20px 0 0
}
  }

@media (min-width: 1280px) {

.catalog__inner {
    padding: 0
}
  }

.catalog__preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-preloader);
  z-index: 110;
}

.catalog__preloader::after {
    display: none;
  }

.catalog__title {
  padding: 0 20px;
  margin: 0 0 24px;
  font-size: var(--font-size-title-xl);
  font-weight: 700;
}

@media (min-width: 1280px) {

.catalog__title {
    padding: 0;
    margin: 0 0 40px;
    text-align: left
}
  }

.catalog__child-list-wrapper {
  grid-column: 2 / -2;
}

.catalog__child-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 20px;
}

.catalog__item-link {
  text-decoration: none;
  color: var(--color-default);
}

.catalog__item-link:hover {
    opacity: 0.8;
  }

.catalog__child-item-img-container {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.catalog__child-item-title {
  font-size: var(--font-size-title);
}

.catalog__child-item-link {
  display: flex;
  text-decoration: none;
  color: var(--color-default);
  flex-direction: row;
  font-size: var(--font-size-text-m);
}

@media (min-width: 768px) {

.catalog__child-item-link {
    flex-direction: column
}
  }

.catalog__filter-wrapper {
  padding: 0 15px;
}

@media (min-width: 768px) {

.catalog__filter-wrapper {
    padding: 0
}
  }

.catalog-list {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 26px 0 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  grid-gap: 24px;
  list-style: none;
}

@media (min-width: 768px) {

.catalog-list {
    padding: 15px 0 75px
}
  }

.catalog-item__link {
  text-decoration: none;
  color: var(--color-default);
}

.catalog-list__empty-message {
  font-size: var(--font-size-text-xl);
  display: block;
  text-align: center;
  margin: 30px 0;
  font-weight: 800;
}

@media (min-width: 768px) {

.catalog-list__empty-message {
    margin: 60px 0
}
  }

.wish-list-add {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  margin-right: 8px;
  border: 1px solid var(--color-default);
  border-radius: var(--border-radius-rounded);
  font-weight: 600;
  background-color: var(--color-transparent);
  transition: border-color 0.2s ease-in;
  font-size: var(--font-size-zero);
}

.wish-list-add:hover,
  .wish-list-add.focus-visible:focus {
    background-color: var(--color-accent);
    color: var(--color-white);
    transition: background-color 0.2s ease-out;
    cursor: pointer;
  }

.wish-list-add__icon {
  width: 16px;
  height: 16px;
}

.wish-list-add__icon_is-favorite:not(._favorite) {
  display: none;
}

.wish-list-add__icon_not-favorite._favorite {
  display: none;
}

.wish-list-add_img-path {
  fill: none;
  stroke: var(--color-default);
}

.wish-list-add:hover .wish-list-add_img-path,
.wish-list-add:focus .wish-list-add_img-path {
  transition: fill 0.2s ease-out;
  fill: var(--color-white);
}

.wish-list-add:active .wish-list-add__icon_is-favorite {
  display: block;
}

.wish-list-add:active .wish-list-add__icon_not-favorite {
  display: none;
}

.wish-list-add_img {
  width: 20px;
  height: 20px;
}

.wish-list-add-catalog__icon {
  fill: var(--color-primary);
  transition-duration: 0.2s;
  transition-property: fill;
}

.wish-list-add-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  height: 50px;
  padding: 0;
  margin: 0;
  margin-right: 30px;
  border: none;
  color: var(--color-accent);
  font-weight: 600;
  background-color: var(--color-transparent);
}

.wish-list-add-catalog:hover,
  .wish-list-add-catalog.focus-visible:focus {
    border-color: var(--color-caution);
    cursor: pointer;
  }

.wish-list-add-catalog:hover .wish-list-add-catalog__icon {
    fill: var(--color-accent);
    transition: fill 0.2s ease-out;
  }

.wish-list-add_favorite {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.wish-list-add_favorite .wish-list-add_img-path {
  fill: var(--color-white);
  stroke: none;
}

.seo-text {
  grid-column: 2 / -2;
  padding: 0 20px 55px;
}

@media (min-width: 768px) {

.seo-text {
    grid-column: 7 / -2;
    padding: 0 0 55px
}

    .seo-text_bottom {
      grid-column: 6 / -6;
    }
  }

.product-info {
  box-sizing: border-box;
  grid-column: 2 / -2;
  margin: 0 0 52px;
  padding: 0 20px;
  width: 100%;
}

@media (min-width: 768px) {

.product-info {
    display: grid;
    grid-template-areas:
      'slider info'
      'slider params';
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    grid-column-gap: 5%;
    align-self: flex-start;
    max-width: none;
    margin: 0
}
  }

@media (min-width: 1280px) {

.product-info {
    grid-column-gap: 100px;
    grid-template-columns: 650px 450px;
    padding: 0
}
  }

.product-info__wrapper {
  grid-area: info;
  border-bottom: 1px solid var(--color-border-grey);
  margin-bottom: 30px;
}

.product__info-review-code {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product__info-code {
  font-size: var(--font-size-text);
  color: var(--color-primary);
}

.product__info-quantity-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.product__info-quantity {
  color: var(--color-success);
  font-size: var(--font-size-text);
}

.product-info__select-block {
  border-bottom: 1px solid var(--color-border-grey);
  margin-bottom: 30px;
}

.product-info__select-quantity {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.product-info__select-quantity-title {
  font-size: var(--font-size-text);
}

.product-info__detail-wrapper {
  grid-area: params;
}

.product-info__breadcrumbs {
  padding: 0 20px;
}

.product-info__breadcrumbs .breadcrumbs__item_current {
    display: none;
  }

@media (min-width: 1280px) {

.product-info__breadcrumbs {
    padding: 0;
    margin-bottom: 20px
}
  }

@media (min-width: 768px) {

.product-info__slider {
    grid-area: slider
}
  }

.product__info-title {
  display: inline-block;
  margin: 0 0 16px;
  font-size: var(--font-size-title-m);
  font-weight: 600;
}

@media (min-width: 768px) {

.product__info-title {
    box-sizing: border-box;
    line-height: var(--line-height-l);
    margin: 30px 0 20px
}
  }

.product-info__rating {
  margin-bottom: 0;
}

@media (min-width: 768px) {

.product-info__price {
    margin-bottom: 0;
    height: 20px
}
  }

.product-info__subtitle {
  color: var(--color-default);
  font-size: var(--font-size-text-m);
  font-weight: 600;
}

.product-info__form {
  margin-bottom: 30px;
}

@media (min-width: 768px) {

.product-info__form {
    grid-area: form
}
  }

.product-info__size-link {
  display: inline-block;
  margin-left: 3px;
  border-bottom: 1px dashed var(--color-primary-dark);
  font-size: var(--font-size-text);
  font-weight: 500;
  color: var(--color-primary-dark);
  opacity: 1;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}

@media (min-width: 768px) {

.product-info__size-link {
    margin-left: 17px
}

    .product-info__size-link:hover,
    .product-info__size-link.focus-visible:focus {
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.3s ease-out;
    }
  }

.product-info__detail-btn {
  position: relative;
  margin: 0 0 25px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 15px;
  border: none;
  appearance: none;
  background-color: var(--color-transparent);
}

.product-info__detail-btn:hover,
  .product-info__detail-btn.focus-visible:focus {
    text-decoration: none;
    cursor: pointer;
  }

.product-info__detail-btn::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: url('/themes/stroypost/assets/img/icon/select-black.svg');
    background-repeat: no-repeat;
    background-size: auto 4px;
    background-position: center;
  }

@media (min-width: 768px) {

.product-info__detail-btn {
    margin-bottom: 20px
}
  }

.product-info__detail-btn_open {
  margin-bottom: 0;
}

.product-info__detail-btn_open::after {
    transform: rotate(180deg);
    background-position: center center;
  }

.product-info__detail-text {
  margin-top: 22px;
}

.product-info__detail-text > * {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.product-info__detail-text_visually-hidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border-width: 0;
  height: 1px;
  width: 1px;
  margin-left: -1px;
}

@media (min-width: 768px) {

.product-info__color {
    margin-bottom: 26px
}
  }

.product-info__color-heading {
  display: inline-block;
  margin-bottom: 17px;
}

@media (min-width: 768px) {

.product-info__color-heading {
    margin-bottom: 16px
}
  }

.product-info__color-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
  margin: 0;
  padding: 0 0 25px;
  grid-gap: 5px;
  list-style: none;
}

@media (min-width: 768px) {

.product-info__color-list {
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: 0;
    grid-gap: 20px
}
  }

.product-info__color-item {
  position: relative;
  background-color: var(--color-primary-light);
}

.product-info__color-item_active::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: -9px;
    right: -9px;
    border-radius: var(--border-radius-circle);
    background-color: var(--color-default);
    background-image: url('/themes/stroypost/assets/img/icon/checked.svg');
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    z-index: 2;
  }

.product-info__color-link {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {

.product-info__color-link {
    border: 1px solid var(--color-input)
}

    .product-info__color-link:hover,
    .product-info__color-link.focus-visible:focus {
      border: 1px solid var(--color-primary-dark);
    }
  }

.product-info__color-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__size-list {
  display: grid;
  grid-gap: 2px;
  max-width: calc(36px * 7 + 12px);
  grid-template-columns: repeat(var(--grid-column-count, 7), 36px);
  padding: 0;
  margin-top: 15px;
  margin-bottom: 30px;
  list-style: none;
}

.product-info__size-item {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-table);
}

.product-info__btn-block {
  display: flex;
  position: relative;
}

.product-info__preloader {
  position: absolute;
  top: 10px;
  right: 110px;
}

@media (min-width: 768px) {

.product-info__preloader {
    right: 130px
}
  }

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.product-info__btn {
  width: calc(100% - 60px);
  max-width: 280px;
  font-weight: 600;
}

.product-info__btn_not-available {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary-dark);
    pointer-events: none;
    cursor: not-allowed;
  }

.product-info__btn:disabled {
    cursor: default;
  }

.product-info__btn._shopaholic-loading {
    position: relative;
  }

.product-info__btn._shopaholic-loading::after {
      content: '';
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      position: absolute;
      display: block;
      background-color: var(--color-transparent-white);
    }

.product-info__btn._shopaholic-loading::before {
      content: '';
      width: 30px;
      height: 30px;
      position: absolute;
      display: block;
      left: calc(50% - 15px);
      top: calc(50% - 15px);
      background-image: url('/themes/stroypost/assets/img/preloader.svg');
      background-size: 100%;
      background-repeat: no-repeat;
      animation-name: rotate;
      animation-duration: 1000ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }

.product-info__color-img-container {
  display: block;
}

.product-info__color-preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-semi-transparent);
}

.product-info__color-preloader::after {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
  }

.product-info__color-img-container:not(.lazy-finish) + .product-info__color-preloader {
  display: block;
}

.product-info__tooltip {
  position: absolute;
  bottom: calc(100% + 25px);
  display: none;
  left: 170px;
}

.product-info__tooltip_visible {
    display: block;
  }

.product-info__shipping-info {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}

@media (min-width: 768px) {

.product-info__shipping-info {
    justify-content: center
}
  }

.product-info__shipping-info-img {
  padding-right: 10px;
}

.product-info__shipping-info-text {
  font-size: var(--font-size-text);
  color: var(--color-default);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.product-info__shipping-info-text:hover {
    opacity: 0.8;
  }

.product-info__tab-title {
  position: relative;
  margin-bottom: 15px;
}

.product-info__tab-title_open {
  position: relative;
}

.product-info__tab-title_open::after {
    transform: rotate(45deg);
    top: calc(50% - 1px);
  }

.product-info__tab-container {
  display: none;
}

.product-info__tab-container_open {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}

.product-info__tab-pagination {
  display: none;
}

.product-info__tab-pagination_open {
  display: block;
}

@media (min-width: 768px) {

.product-info__tab-pagination_open {
    display: none
}
  }

.product-info__certificates-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-info__certificates-list-item {
  margin-bottom: 20px;
}

.product-info__certificates-list-link {
  font-size: var(--font-size-text);
  text-decoration: none;
  color: var(--color-default);
  padding: 7px 0 0 40px;
  height: 30px;
  position: relative;
}

.product-info__certificates-list-link::before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    display: block;
    top: 0;
    background-image: url('/themes/stroypost/assets/img/icon/file.svg');
    background-size: 100%;
    background-repeat: no-repeat;
  }

.product-info__certificates-list-link:hover {
    opacity: 0.8;
  }

.product-info__weight {
  font-size: var(--font-size-text);
}


/*# sourceMappingURL=brand-page.css.map*/