@charset "UTF-8";
@font-face {
  font-family: "PF Bulletin Sans Pro";
  font-display: swap;
  src: url("../fonts/PFBulletinSansProBold.woff2") format("woff2"), url("../fonts/PFBulletinSansProBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PF Bulletin Sans Pro";
  font-display: swap;
  src: url("../fonts/PFBulletinSansProLight.woff2") format("woff2"), url("../fonts/PFBulletinSansProLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "PF Bulletin Sans Pro";
  font-display: swap;
  src: url("../fonts/PFBulletinSansProMedium.woff2") format("woff2"), url("../fonts/PFBulletinSansProMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "PF Bulletin Sans Pro";
  font-display: swap;
  src: url("../fonts/PFBulletinSansProRegular.woff2") format("woff2"), url("../fonts/PFBulletinSansProRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "PF Bulletin Sans Pro", sans-serif, sans-serif;
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "PF Bulletin Sans Pro", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  padding: 0 0.9375rem;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value:before {
  content: "";
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

._select-open .select__value:before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
          box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3fb8af;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
          box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
          box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
          transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

body.popup-show::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs__title {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
}

.tabs__title._tab-active {
  border: 1px solid #000;
}

.tabs__content {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

body {
  color: #1A1A1A;
}

.zhaluzi-wrapper {
  font-size: 18px;
}

.zh_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #AD1A37;
  color: #ffffff;
  cursor: pointer;
}

.zh_button:hover {
  background-color: #c52141;
  color: #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

/*
.icon-menu {
	display: none;
	@media (max-width: $mobile) {
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span,
		&::before,
		&::after {
			content: "";
			transition: all 0.3s ease 0s;
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
		}
		&::before {
			top: 0px;
		}
		&::after {
			bottom: 0px;
		}
		span {
			top: calc(50% - 1px);
		}
		.menu-open & {
			span {
				transform: scale(0);
			}
			&::before {
				transform: rotate(-45deg);
				top: calc(50% - 1px);
			}
			&::after {
				transform: rotate(45deg);
				bottom: calc(50% - 1px);
			}
		}
	}
}
*/
.header__img {
  max-width: 100%;
  width: 100%;
}

.footer__img {
  max-width: 100%;
  width: 100%;
}

.zhaluzi-wrapper {
  padding-top: 60px;
}

.container {
  width: 70%;
  margin: auto;
  position: relative;
  /*height: 100%;*/
}

@media (max-width: 1366px) {
  .container {
    width: 85%;
    margin: auto;
    position: relative;
    /*height: 100%;*/
  }
}
@media (max-width: 1185px) {
  .container {
    width: 90%;
  }
}
.catalog__top {
  margin-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*align-items: center;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  .catalog__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.zh_breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.zh_breadcrumb__item-link {
  color: rgba(0, 0, 0, 0.5);
}

.zh_breadcrumb__item:last-child {
  color: #AD1A37;
}

.catalog__heading {
  margin: 30px auto 0;
  text-align: center;
}

.catalog__heading h1 {
  margin-bottom: 5px;
  font-size: 35px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .catalog__heading h1 {
    font-size: 28px;
  }
}
.catalog__heading span {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}

.catalog__main {
  padding-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 1440px) {
  .catalog__main {
    gap: 30px;
  }
}
@media (max-width: 972px) {
  .catalog__main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .catalog__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.catalog__filters {
  max-width: 280px;
  width: 100%;
}

@media (max-width: 972px) {
  .catalog__filters {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media (max-width: 768px) {
  .catalog__filters {
    max-width: 100%;
  }
}
.catalog__filters-spollers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.catalog__filters-item {
  max-height: 340px;
  -webkit-box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.06);
}

.catalog__filters-plane-item {
  padding: 25px;
  -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 35px rgba(0, 0, 0, 0.06);
  font-weight: 500;
}

.catalog__filters-plane-item .catalog__filters-label-block:not(:last-child) {
  margin-bottom: 0;
}

.catalog__filters-item .simplebar-track.simplebar-vertical {
  bottom: 8px;
}

.catalog__filters-item .simplebar-track.simplebar-vertical::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 2.5px;
  background-color: rgba(195, 33, 65, 0.13);
}

.catalog__filters-item .simplebar-scrollbar::before {
  width: 4.6px;
  background-color: #C32141;
  border-radius: 0;
  opacity: 1;
}

.catalog__filters-item .simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

.arrow-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.catalog__filters-item-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  outline: transparent;
  border: 1px solid transparent;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.catalog__filters-item-title:focus-visible {
  border-color: #AD1A37;
}

.catalog__filters-item-title._spoller-active:focus-visible {
  border-bottom: none;
}

.catalog__filters-item-title._spoller-active:focus-visible + .catalog__filters-item-body {
  border-color: #AD1A37;
  border-top: none;
}

.catalog__filters-item-title._spoller-active .arrow-icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.catalog__filters-item-title .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.catalog__filters-item-body {
  max-height: 256px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 0 25px 30px;
  border: 1px solid transparent;
}

.catalog__filters-item-title._spoller-active + .catalog__filters-item-body_splitted,
.catalog__filters-item-body_splitted .simplebar-content {
  display: grid;
}

.catalog__filters-item-body[hidden] {
  display: none;
}

.catalog__filters-item-body_splitted,
.catalog__filters-item-body_splitted .simplebar-content {
  display: grid;
  /*grid-template-columns: repeat(1, minmax(0, 50%));*/
  gap: 24px;
}

.catalog__filters-item-body_splitted .simplebar-content::before,
.catalog__filters-item-body_splitted .simplebar-content::after {
  display: none;
}

.catalog__filters-item-body_splitted .catalog__filters-label-block:not(:last-child) {
  margin-bottom: 0;
}

.catalog__filters-label-block:not(:last-child) {
  margin-bottom: 24px;
}

.catalog__filters-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  font-size: 20px;
  cursor: pointer;
}

.catalog__filters-label::before {
  content: "";
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #D2D2D2;
  border-radius: 7px;
  background-repeat: no-repeat;
  background-position: center;
}

.catalog__filters-input:checked + .catalog__filters-label::before {
  background-image: url("../img/icons/icon-check.svg");
}

.catalog__filters-item-slider span {
  margin-bottom: 35px;
  display: block;
  font-size: 20px;
}

.catalog__filters-item-body_slider {
  padding: 0 40px 30px 25px;
}

.catalog__filters-item-slider:not(:last-child) {
  margin-bottom: 30px;
}

.catalog__filters-item-slider .noUi-horizontal {
  height: 2.5px;
  background-color: rgba(195, 33, 65, 0.13);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.catalog__filters-item-slider .noUi-tooltip {
  border: none;
  padding: 0;
  bottom: 170%;
  font-size: 20px;
  color: #AD1A37;
}

.catalog__filters-item-slider .noUi-handle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ad1a37;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

.catalog__filters-item-slider .noUi-origin {
  top: -3px;
}

.catalog__filters-item-slider .noUi-handle::before {
  display: none;
}

.catalog__filters-item-slider .noUi-handle::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.39);
}

.catalog__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 972px) {
  .catalog__products {
    max-width: 49.4%;
  }
}
@media (max-width: 768px) {
  .catalog__products {
    max-width: 100%;
  }
}
.bx-filter-container-modef:empty {
  display: none;
}

.catalog__products-list {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 295px));
  gap: 35px 28px;
}

@media (max-width: 1440px) {
  .catalog__products-list {
    grid-template-columns: repeat(2, minmax(0, 310px));
    gap: 35px;
  }
}
@media (max-width: 972px) {
  .catalog__products-list {
    grid-template-columns: repeat(1, minmax(0, 100%));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .catalog__products-list {
    grid-template-columns: repeat(2, minmax(0, 50%));
    gap: 30px;
  }
}
@media (max-width: 525px) {
  .catalog__products-list {
    grid-template-columns: repeat(1, minmax(0, 100%));
    gap: 30px;
  }
}
.product-item-cart__image-wrapper {
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.product-item-cart__stickers {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.stiker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 32px;
  font-size: 20px;
  font-weight: 500;
  background-color: #ffffff;
  color: #AD1A37;
}

@media (min-width: 120em) {
  .stiker {
    min-width: 4.75rem;
  }
}
@media (min-width: 20em) and (max-width: 120em) {
  .stiker {
    min-width: clamp(3.125rem, 2.8rem + 1.625vw, 4.75rem);
  }
}
@media (max-width: 20em) {
  .stiker {
    min-width: 3.125rem;
  }
}
@media (min-width: 120em) {
  .stiker {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 120em) {
  .stiker {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  }
}
@media (max-width: 20em) {
  .stiker {
    font-size: 1rem;
  }
}
.stiker.stiker_reverse {
  background-color: #AD1A37;
  color: #ffffff;
}

.product-item-cart__slider {
  position: relative;
}

.product-item-cart__slide {
  position: relative;
}

.square-expand-item {
  padding-top: 100%;
}

.product-item-cart__slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-item-cart__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.product-item-cart__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.product-item-cart__pagination .swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.product-item-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}

.product-item-cart__info-item {
  margin-bottom: 20px;
  font-size: 16px;
}

.product-item-cart__info-item strong {
  color: #AD1A37;
  font-weight: 400;
}

.product-item-cart__price {
  margin-right: 15px;
  font-size: 20px;
  font-weight: 700;
}

.product-item-cart__articul {
  color: #8D8D8D;
}

.product-item-cart__btn {
  font-size: 18px;
  color: #AD1A37;
  border: 1px solid #D7ACB6;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  padding: 10px 36px;
}

.product-item-cart__btn:hover {
  background-color: #AD1A37;
  color: #ffffff;
}

.catalog__products-pagination {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.catalog__products-pagination .prev-page {
  font-size: 0;
  width: 57px;
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #AD1A37;
}

.catalog__products-pagination .next-page {
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 14px 25px;
  height: 57px;
  background-color: #AD1A37;
  color: #ffffff;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .catalog__products-pagination .next-page {
    width: 57px;
    height: 57px;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .catalog__products-pagination .next-page span {
    display: none;
  }
}
@media (max-width: 525px) {
  .catalog__products-pagination .next-page,
.catalog__products-pagination .prev-page {
    width: 40px;
    height: 40px;
  }
}
.catalog__products-pagination-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.catalog__products-pagination-form label,
.catalog__products-pagination-form span {
  font-size: 20px;
  font-weight: 500;
}

.catalog__products-pagination-form input {
  width: 60px;
  height: 34px;
  border: 1px solid rgba(173, 26, 55, 0.27);
  padding: 10px 5px;
  font-weight: 500;
  color: #AD1A37;
  text-align: center;
}

.catalog__products-pagination-form input:focus {
  border: 1px solid #AD1A37;
  outline: transparent;
}

.zh_open-filter {
  display: none;
}

@media (max-width: 768px) {
  .zh_open-filter {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: center;
  }
}
#filters-mobile {
  padding: 0;
}

#filters-mobile .popup__wrapper {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

#filters-mobile .popup__close {
  margin-left: auto;
  margin-bottom: 10px;
}

#filters-mobile .popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0;
  min-height: 100vh;
  background-color: #ffffff;
}

.zh_product__top {
  margin-bottom: 36px;
}

.zh_product__card {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media (max-width: 1366px) {
  .zh_product__card {
    gap: 30px;
  }
}
@media (max-width: 972px) {
  .zh_product__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .zh_product__card {
    margin-bottom: 50px;
  }
}
.zh_product__slider {
  max-width: 42%;
}

@media (max-width: 1366px) {
  .zh_product__slider {
    max-width: 50%;
  }
  .zh_product__info {
    max-width: 50%;
  }
}
@media (max-width: 972px) {
  .zh_product__slider,
.zh_product__info {
    max-width: 100%;
  }
}
.zh_product__slider-big {
  position: relative;
  margin-bottom: 16px;
}

.zh_product__slider-big .swiper-slide,
.zh_product__slider-small .swiper-slide {
  position: relative;
}

.zh_product__slider-big img,
.zh_product__slider-small img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zh_product__slider-small .swiper-slide {
  border: 3px solid transparent;
}

.zh_product__slider-small .swiper-slide.swiper-slide-thumb-active {
  border-color: #ad1a37;
}

.zh_product__slider-small img {
  cursor: pointer;
}

.zh_product__title {
  margin-bottom: 18px;
  font-size: 35px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .zh_product__title {
    font-size: 28px;
  }
}
.zh_product__article {
  margin-bottom: 50px;
  display: block;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .zh_product__article {
    margin-bottom: 40px;
  }
}
.zh_product__heading {
  margin-bottom: 18px;
  display: block;
  color: #ad1a37;
}

.zh_product__chars {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.zh_product__chars button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 90px;
  min-height: 35px;
  border: 1px solid rgba(173, 26, 55, 0.27);
  background: rgba(173, 26, 55, 0.05);
  font-weight: 500;
  color: #AD1A37;
  cursor: pointer;
}

.zh_product__chars button.tabs__title._tab-active {
  color: #ffffff;
  background-color: #AD1A37;
  border-color: #AD1A37;
}

.zh_product__price {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.zh_product__price strong {
  font-size: 35px;
  font-weight: 500;
}

.zh_product__add-to-cart {
  margin-bottom: 50px;
  min-height: 57px;
  padding: 14px 45px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media (max-width: 525px) {
  .zh_product__add-to-cart {
    max-width: 100%;
  }
}
.zh_product__descr {
  margin-bottom: 50px;
}

.zh_product__descr strong {
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.zh_product__descr p {
  line-height: 140%;
}

.zh_product__heading_black {
  margin-bottom: 25px;
  display: block;
  font-weight: 500;
}

.zh_product__showmore-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}

.zh_product__showmore-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.zh_product__showmore-content span:first-child {
  min-width: 170px;
}

.zh_product__showmore-content span:last-child {
  color: #ad1a37;
}

.zh_product__showmore-btn {
  margin-top: 10px;
  color: rgba(26, 26, 26, 0.5);
  text-decoration: underline;
}

.zh_product__similar {
  margin-bottom: 85px;
}

.zh_product__similar-title {
  margin-bottom: 32px;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .zh_product__similar-title {
    font-size: 28px;
  }
}
.zh_product__similar-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 25%));
  gap: 50px;
}

@media (max-width: 1440px) {
  .zh_product__similar-list {
    gap: 30px;
  }
}
@media (max-width: 972px) {
  .zh_product__similar-list {
    grid-template-columns: repeat(2, minmax(0, 50%));
  }
}
@media (max-width: 525px) {
  .zh_product__similar-list {
    grid-template-columns: repeat(1, minmax(0, 100%));
  }
}
.zh_product__tabs .tabs__content {
  border: none;
  padding: 0;
}

.zh_product__slider-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background-image: url("../img/icons/p-left.svg");
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.zh_product__slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

.zh_product__slider-btn.swiper-button-prev {
  left: 10px;
}

.zh_product__slider-btn.swiper-button-next {
  right: 10px;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}

.zh_cart__top {
  margin-bottom: 36px;
}

.zh_cart__main {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}

@media (max-width: 1440px) {
  .zh_cart__main {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .zh_cart__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.zh_cart__info {
  max-width: 870px;
  width: 100%;
}

@media (max-width: 1024px) {
  .zh_cart__info {
    max-width: 100%;
  }
}
.zh_cart__title {
  margin-bottom: 40px;
  font-size: 35px;
  font-weight: 500;
}

.basket-items-list-table {
  margin-bottom: 55px;
  width: 100%;
  border: 0px !important;
}

.basket-items-list-table tr {
  border: 0px !important;
}

.basket-items-list-table td {
  border: 0px !important;
}

.basket-items-list-table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  border: 0px !important;
}

.zh_cart__item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .zh_cart__item-container {
    padding: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
  }
}
.zh_cart__item-descriptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
}

@media (max-width: 1366px) {
  .zh_cart__item-descriptions {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .zh_cart__item-descriptions {
    width: calc(100% - 70px);
  }
}
@media (max-width: 525px) {
  .zh_cart__item-descriptions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (max-width: 440px) {
  .zh_cart__item-descriptions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.zh_cart__item-img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 525px) {
  .zh_cart__item-img {
    height: 100%;
  }
}
.basket-item-info-name {
  margin-bottom: 10px;
}

.zh_cart__item-property-value {
  color: #AD1A37;
}

.zh_cart__item-amount {
  margin-left: auto;
}

.zh_basket-item-block-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(173, 26, 55, 0.27);
}

@media (max-width: 768px) {
  .zh_basket-item-block-amount {
    display: none;
  }
}
.zh_basket-item-block-amount_mobile {
  display: none;
}

@media (max-width: 768px) {
  .zh_basket-item-block-amount_mobile {
    margin-top: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.zh_basket-item-amount-btn-minus,
.basket-item-amount-btn-plus {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.zh_basket-item-amount-btn-minus::after,
.basket-item-amount-btn-plus::after,
.basket-item-amount-btn-plus::before,
.basket-item-amount-btn-plus::before {
  content: "";
  background-color: #ad1a37;
}

.zh_basket-item-amount-btn-minus::after,
.basket-item-amount-btn-plus::after {
  width: 12px;
  height: 1px;
}

.basket-item-amount-btn-plus::before {
  -webkit-transform: translate(6px, 0.5px);
          transform: translate(6px, 0.5px);
  height: 12px;
  width: 1px;
}

.zh_basket-item-amount-filed-block {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.zh_basket-item-amount-filed {
  width: 100%;
  height: 100%;
  text-align: center;
  outline: transparent;
  font-weight: 500;
}

.zh_basket-item-amount-filed:focus-within {
  outline: 1px solid #AD1A37;
}

@media (max-width: 768px) {
  .zh_cart__item-price {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.zh_cart__item-price-text {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
}

.zh_cart__item-price-text_mobile {
  display: none;
}

@media (max-width: 440px) {
  .zh_cart__item-price {
    display: none;
  }
  .zh_cart__item-price-text {
    margin-top: 10px;
    display: block;
  }
}
.zh_cart__item-remove {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(173, 26, 55, 0.27);
  background: rgba(173, 26, 55, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .zh_cart__item-remove {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
.zh_cart__item-remove-icon {
  width: 9px;
  height: 9px;
}

.zh_cart__clear-cart-btn-wrapper {
  margin-bottom: 60px;
  text-align: right;
}

.zh_cart__clear-cart-btn {
  margin-left: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.zh_cart__tabs-btn {
  min-height: 49px;
  border: 1px solid rgba(173, 26, 55, 0.27);
  background-color: rgba(173, 26, 55, 0.05);
  color: #ad1a37;
  font-weight: 500;
  border-radius: 0;
  padding: 10px 33px;
}

.zh_cart__tabs-btn._tab-active {
  background-color: #ad1a37;
  color: #ffffff;
  border: none;
  border-radius: 0;
}

.zh_cart__tabs-navigation {
  margin-bottom: 35px;
  gap: 10px;
}

@media (max-width: 525px) {
  .zh_cart__tabs-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.zh_cart__tabs-content {
  border: none;
  padding: 0;
}

.zh_cart__tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (max-width: 1440px) {
  .zh_cart__tabs-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .zh_cart__tabs-list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .zh_cart__tabs-list .zh_cart__tabs-item-title {
    width: 90%;
  }
}
.zh_cart__tabs-list li {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
}

.zh_cart__tabs-item-title {
  line-height: 1.4;
  max-width: 180px;
  width: 100%;
}

.zh_cart__tabs-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media (max-width: 1500px) {
  .zh_cart__tabs-list li {
    padding: 10px 15px;
  }
  .zh_cart__tabs-item-title {
    max-width: 160px;
  }
}
.zh_cart__tabs-list li.active .zh_cart__tabs-btn {
  background-color: #ad1a37;
  color: #ffffff;
}

@media (max-width: 525px) {
  .zh_cart__tabs-list li .zh_cart__tabs-btn {
    width: 100%;
  }
}
.zh_cart__tabs-time {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 25px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1440px) {
  .zh_cart__tabs-time {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .zh_cart__tabs-time {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    margin-left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.zh_cart__tabs-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .zh_cart__tabs-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.zh_cart__tabs-input {
  width: 100%;
  padding: 20px;
  height: 60px;
  border: 1px solid rgba(173, 26, 55, 0.3);
  outline: transparent;
}

.zh_cart__tabs-input:focus-within {
  outline: 1px solid #ad1a37;
}

.zh_cart__tabs-input::-webkit-input-placeholder {
  color: #e7bbc3;
}

.zh_cart__tabs-input::-moz-placeholder {
  color: #e7bbc3;
}

.zh_cart__tabs-input:-ms-input-placeholder {
  color: #e7bbc3;
}

.zh_cart__tabs-input::-ms-input-placeholder {
  color: #e7bbc3;
}

.zh_cart__tabs-input::placeholder {
  color: #e7bbc3;
}

.zh_cart__resume {
  max-width: 400px;
  width: 100%;
  padding: 38px;
  -webkit-box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width: 1440px) {
  .zh_cart__resume {
    padding: 25px;
  }
}
@media (max-width: 1024px) {
  .zh_cart__resume {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .zh_cart__resume {
    padding: 15px;
  }
}
.zh_cart__resume-select {
  position: relative;
  font-family: Arial;
}

.zh_cart__resume-select select {
  display: none; /*hide original SELECT element: */
}

.zh_cart__resume-list {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.zh_cart__resume-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zh_cart__resume-list-last {
  margin-top: 65px;
}

.zh_cart__resume-list-last span {
  color: #ad1a37;
}

.zh_cart__resume-list li strong {
  font-size: 20px;
  font-weight: 500;
}

li.zh_cart__resume-list-last strong {
  font-size: 35px;
  font-weight: 500;
}

.select_zh_cart__resume-select {
  margin-bottom: 10px;
}

.select_zh_cart__resume-select .select__title {
  border: 1px solid rgba(173, 26, 55, 0.27);
  background: rgba(173, 26, 55, 0.05);
}

.select_zh_cart__resume-select .select__value {
  padding: 25px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.select_zh_cart__resume-select .select__value:before {
  margin-left: 16px;
  background-image: url("../img/icons/arrow-bottom.svg");
  width: 8px;
  height: 6px;
  background-repeat: no-repeat;
  -ms-flex-item-align: center;
      align-self: center;
}

.select_zh_cart__resume-select .select__content {
  color: #ad1a37;
  font-weight: 500;
}

.select_zh_cart__resume-select .select__options {
  top: 52px;
}

.select_zh_cart__resume-select .select__option {
  padding: 15px 20px;
}

.select_zh_cart__resume-select .select__option:hover {
  background-color: rgba(173, 26, 55, 0.08);
}

.zh_cart__resume-btn {
  width: 100%;
  min-height: 57px;
  padding: 14px 32px;
  font-weight: 500;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header .header-menu {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header .header-menu nav {
  width: 100%;
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .header-menu nav {
    display: none;
  }
}
.header .header-menu button {
  border: 2px solid rgba(173, 26, 55, 0.15);
  height: 57px;
  background: transparent;
  max-width: 173px;
  width: 100%;
  margin-right: 100px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ad1a37;
}

.header .header-menu button.active, .header .header-menu button:hover {
  background: rgba(173, 26, 55, 0.05);
}

.header .header-menu li ul a {
  padding: 15px 20px;
}

.header .header-menu li ul {
  padding: 0;
}

.header .header-menu li ul a {
  height: 40px !important;
}

.header .header-menu li ul a {
  background: #ffffff;
}

.header .header-menu li ul {
  position: absolute;
  display: none;
  z-index: 10;
}

.header .header-menu li:hover ul {
  background: #fff;
  padding: 5px 0;
  display: block;
  max-width: 260px;
  width: 100%;
}

.header .header-menu nav > ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .header-menu nav > ul > li > a {
  height: 75px;
}

.header .header-menu nav > ul .active {
  color: #ad1a37;
}

.header .header-menu nav > ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 22px;
}

.header .phone-header {
  font-weight: 700;
  font-family: "PF Bulletin Sans Pro", sans-serif;
  line-height: 34px;
  color: #1a1a1a;
  text-decoration: none;
  margin-left: auto;
}

.header_menu.fixed_menu_right {
  z-index: 2000;
}

@media only all and (min-width: 992px) {
  .header_menu {
    display: none;
  }
}
@media only all and (min-width: 1290px) {
  .header .phone-header {
    font-size: 28px;
  }
}
.container_center {
  height: auto;
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .phone-header {
    font-size: 16px;
  }
}
.header .call-me-maybe {
  background: rgba(173, 26, 55, 0.05);
  border: 2px solid rgba(173, 26, 55, 0.2);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ad1a37;
  height: 52px;
  max-width: 188px;
  width: 100%;
  cursor: pointer;
}

.header .call-me-maybe:hover {
  background: rgba(173, 26, 55, 0.2);
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .call-me-maybe {
    display: none;
  }
}
.header .social {
  margin: 0 20px 0 35px;
}

.header .social svg {
  border-radius: 7px;
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .social {
    display: none;
  }
}
.header-top {
  background: #f1f1f1;
  line-height: 150%;
  font-size: 16px;
  padding: 11px 0;
}

.header-top a {
  text-decoration: none;
  color: #000;
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header-top {
    display: none;
  }
}
@media only all and (min-width: 1290px) {
  .header-bottom {
    padding: 15px 0 0;
  }
}
@media only all and (min-width: 0) and (max-width: 1289px) {
  .header-bottom {
    padding: 15px 0;
  }
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .dot {
  margin-right: 10px;
}

.header .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .item:not(:last-child) {
  margin-right: 50px;
}

.menu-items {
  border-top: 1px solid #fbf3f5;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  display: none;
  -webkit-box-shadow: 0 10px 16px -11px rgba(0, 0, 0, 0.1098039216);
          box-shadow: 0 10px 16px -11px rgba(0, 0, 0, 0.1098039216);
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .menu-items {
    display: none !important;
  }
}
.menu-items .container {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  padding: 35px 15px;
}

.menu-items .menu-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.menu-items .menu-column a {
  font-size: 18px;
  color: #000;
  display: inline-block;
  margin-bottom: 8px;
  text-decoration: none;
}

.menu-items .menu-column a:hover {
  color: #ad1a37;
}

.menu-items .column-heading {
  font-size: 18px;
  min-height: 24px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

.header .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .info {
    display: none;
  }
}
.header .info .itm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .info .itm:not(:last-child) {
  margin-right: 45px;
}

.header .container {
  max-width: 1330px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.header .info a {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1a1a1a;
  text-decoration: none;
}

.header .info .marker {
  font-size: 16px;
  line-height: 150%;
  color: #7e7e7e;
}

.header .logotype img {
  display: block;
  height: auto;
}

@media only all and (min-width: 1290px) {
  .header .logotype img {
    max-width: 100%;
  }
}
@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .logotype img {
    max-width: 135px;
  }
}
@media only all and (min-width: 1290px) {
  .header .logotype {
    margin-right: 65px;
  }
}
@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .logotype {
    padding-right: 20px;
  }
}
.header .container-menu {
  -webkit-box-shadow: 0 4px 35px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0 4px 35px rgba(0, 0, 0, 0.0588235294);
  margin-top: 16px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only all and (min-width: 0) and (max-width: 1289px) {
  .header .container-menu {
    display: none;
  }
}
.header .container-menu a:hover {
  color: #ad1a37;
}

.header .header-menu nav > ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "PF Bulletin Sans Pro", sans-serif !important;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 22px;
}

@media only all and (min-width: 1290px) {
  .burger {
    display: none;
  }
}
.burger .line {
  width: 30px;
  height: 2px;
  display: block;
  background: #000;
}

.burger .line:not(:last-child) {
  margin-bottom: 6px;
}

.header .dot {
  background: #ad1a37;
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
}

.before_footer {
  -webkit-box-shadow: 0 4px 54px 2px rgba(5, 19, 46, 0.12);
          box-shadow: 0 4px 54px 2px rgba(5, 19, 46, 0.12);
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.before_footer .center_footer_map {
  padding: 0;
}
.before_footer .center_footer_map .h3 {
  font-size: 24px;
  color: #4D4D4D;
  margin-bottom: 40px;
  text-transform: none;
}
.before_footer .center_footer_map ul {
  margin-bottom: 40px;
}
.before_footer .center_footer_map ul li a {
  font-weight: 400;
  font-size: 18px;
  color: rgba(77, 77, 77, 0.5) !important;
  font-family: PFBulletinSansPro-Regular, sans-serif !important;
}
.before_footer .center_footer_map ul li + li {
  margin-top: 13px;
}

@media (max-width: 768px) {
  .before_footer {
    -webkit-box-shadow: 0 4px 54px 2px rgba(5, 19, 46, 0.12);
            box-shadow: 0 4px 54px 2px rgba(5, 19, 46, 0.12);
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .before_footer .center_footer_map {
    padding: 0;
  }
  .before_footer .center_footer_map .h3 {
    font-size: 18px;
    color: #4D4D4D;
    margin-bottom: 20px;
    text-transform: none;
  }
  .before_footer .center_footer_map ul {
    margin-bottom: 20px;
  }
  .before_footer .center_footer_map ul li a {
    font-weight: 400;
    font-size: 9px;
    font-size: 14px !important;
    color: rgba(77, 77, 77, 0.5) !important;
    font-family: PFBulletinSansPro-Regular, sans-serif !important;
  }
  .before_footer .center_footer_map ul li + li {
    margin-top: 13px;
  }
}
.footer {
  background: #ededed;
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer .center_footer_bottom .address_footer {
  color: #1a1a1a;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.footer-top__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.footer-top__addressies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-top__addres-link {
  font-size: 16px;
  line-height: 150%;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}

.footer-top__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-top__phone {
  font-weight: 700;
  font-size: 24px;
  font-family: PFBulletinSansPro-Bold, sans-serif;
  line-height: 160%;
  color: #4d4d4d;
  white-space: nowrap;
}

.footer-top__btn {
  height: 52px;
  padding: 16px 20px;
  color: #ad1a37;
  font-family: PFBulletinSansPro-Medium, sans-serif;
  font-size: 16px;
  border: 2px solid rgba(173, 26, 55, 0.2);
  white-space: nowrap;
}
.footer-top__btn:hover {
  color: #fff;
  border-color: #ad1a37;
  background: #ad1a37;
}

.footer-top__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer-top__soc a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-bottom__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-right: 20px;
}

.footer-bottom__pay {
  width: 100%;
  max-width: 440px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-bottom__pay img {
  width: 100%;
}

.footer-bottom__create {
  margin-left: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-top__contacts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .footer-bottom__reviews {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-bottom__pay {
    padding: 0;
  }
  .footer-bottom__create {
    margin-left: 0;
  }
}/*# sourceMappingURL=style.css.map */