@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap");
:root {
  --font-family: "Intro";
  --content-width: 1480px;
  --container-offset: 35px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
}
@media (max-width: 1500px) {
  :root {
    --container-offset: 25px;
  }
}
@media (max-width: 992px) {
  :root {
    --container-offset: 15px;
  }
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Intro";
  src: url("../fonts/../fonts/Intro.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  height: 100%;
  font-size: 16px;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
body::before {
  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;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 4;
}
body.mask::before {
  opacity: 1;
}

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

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

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

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

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-page__h2 {
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.main-page__h2 img {
  margin: 0px 20px 0px 0px;
}
@media (max-width: 992px) {
  .main-page__h2 img {
    width: 100%;
    max-width: 45px;
  }
}
@media (max-width: 767px) {
  .main-page__h2 img {
    max-width: 30px;
    margin: 0px 10px 0px 0px;
  }
}
@media (max-width: 576px) {
 /* .main-page__h2 img {
    display: none;
  }*/
}
@media (max-width: 1500px) {
  .main-page__h2 {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .main-page__h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .main-page__h2 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .main-page__h2 {
    font-size: 26px;
  }
}

.header {
  position: fixed;
  height: 170px;
  width: calc(100% - 350px);
  background: #581717;
  top: 0;
  right: 0;
  -webkit-transition: height 0.3s ease 0s;
  -o-transition: height 0.3s ease 0s;
  transition: height 0.3s ease 0s;
  z-index: 4;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1350px) {
  .header__top {
    height: 40px;
  }
}
.header._header-scroll {
  height: 95px;
  border-radius: 0 0 10px 10px;
}
.header._header-scroll .header__top {
  height: 35px;
}
.header._header-scroll .bottom-header {
  height: 60px;
}
@media (max-width: 1350px) {
  .header._header-scroll {
    border-radius: 0;
  }
}
@media (max-width: 1500px) {
  .header {
    width: calc(100% - 320px);
  }
}
@media (max-width: 1350px) {
  .header {
    width: 100%;
    height: 120px;
  }
}

.menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__logo {
  display: none;
}
@media (max-width: 767px) {
  .menu__logo {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0px 0px 50px 0px;
  }
  .menu__logo img {
    width: 100%;
  }
}
.menu__body {
  width: 100%;
}
@media (max-width: 767px) {
  .menu__body {
    position: fixed;
    left: -110%;
    top: 0;
    height: 100%;
    z-index: 2;
    -webkit-transition: left 0.3s ease 0s;
    -o-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    background: #ffffff;
    padding: 50px 15px 20px 15px;
    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;
  }
  .menu__body.menu--active {
    left: 0;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0px 270px 0px 0px;
}
.menu__list li a {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ffffff;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .menu__list li a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .menu__list li a {
    color: #282828;
    font-size: 26px;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .menu__list li:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 1250px) {
  .menu__list {
    margin: 0px 200px 0px 0px;
  }
}
@media (max-width: 992px) {
  .menu__list {
    margin: 0px 100px 0px 0px;
  }
}
@media (max-width: 767px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
}
.icon-menu {
  display: none;
}
@media (max-width: 767px) {
  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 3;
    background: transparent;
    border: none;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 1px);
  }
  .icon-menu.burger--active span {
    width: 0;
  }
  .icon-menu.burger--active::before, .icon-menu.burger--active::after {
    background-color: #282828;
  }
  .icon-menu.burger--active::before {
    top: calc(50% - 2px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .icon-menu.burger--active::after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.search-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Inter";
  font-weight: 800;
  font-size: 14px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ffffff;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.search-header__btn svg {
  margin: 0px 8px 0px 0px;
}
@media (any-hover: hover) {
  .search-header__btn:hover {
    opacity: 0.6;
  }
}
.search-header__body {
  position: fixed;
  height: auto;
  right: 0;
  top: -110%;
  -webkit-transition: top 0.3s ease 0s;
  -o-transition: top 0.3s ease 0s;
  transition: top 0.3s ease 0s;
  z-index: 3;
  background: #ffffff;
  width: calc(100% - 350px);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 350px);
  flex: 0 1 calc(100% - 350px);
}

.search-header__body._active {
    display: block;
}

@media (max-width: 1500px) {
  .search-header__body {
    width: calc(100% - 320px);
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 320px);
    flex: 0 1 calc(100% - 320px);
  }
}
@media (max-width: 1350px) {
  .search-header__body {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.search-header__form {
  height: 100%;
}
.search-header__close {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 200px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.search-header__close::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1500px) {
  .search-header__close {
    right: 150px;
  }
}
@media (max-width: 1250px) {
  .search-header__close {
    right: 140px;
  }
}
@media (max-width: 767px) {
  .search-header__close {
    display: none;
  }
}
@media (any-hover: hover) {
  .search-header__close:hover {
    opacity: 0.6;
  }
}
.search-header__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Inter";
  font-weight: 800;
  font-size: 14px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  width: 100px;
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.search-header__submit svg {
  margin: 0px 9px 0px 0px;
}
@media (max-width: 767px) {
  .search-header__submit svg {
    margin: 0px 5px 0px 0px;
  }
}
@media (max-width: 1500px) {
  .search-header__submit {
    right: 30px;
  }
}
@media (max-width: 1200px) {
  .search-header__submit {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .search-header__submit {
    width: 80px;
    right: 15px;
  }
}
@media (any-hover: hover) {
  .search-header__submit:hover {
    opacity: 0.6;
  }
}
.search-header._active .search-header__body {
  top: 0;
}

.search-header-input {
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(40, 40, 40, 0.1);
}
.search-header-input input {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  padding: 5px 50px 5px 40px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  background: #fff;
}
.search-header-input input::-webkit-input-placeholder {
  color: #282828;
}
.search-header-input input::-moz-placeholder {
  color: #282828;
}
.search-header-input input:-ms-input-placeholder {
  color: #282828;
}
.search-header-input input::-ms-input-placeholder {
  color: #282828;
}
.search-header-input input::placeholder {
  color: #282828;
}
@media (max-width: 1500px) {
  .search-header-input input {
    padding: 5px 30px;
  }
}
@media (max-width: 1200px) {
  .search-header-input input {
    height: 55px;
    padding: 5px 20px;
  }
}
@media (max-width: 767px) {
  .search-header-input input {
    height: 50px;
    padding: 5px 15px;
    font-size: 16px;
  }
}

.output-search ul {
  padding: 0 40px;
}
.output-search ul:empty {
  display: none;
}
.output-search ul li {
  border-bottom: 1px solid rgba(40, 40, 40, 0.1);
}
.output-search ul li.only-link .title {
  color: #ed1c24;
}
.output-search ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.output-search ul li a .img {
  width: 120px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  height: 80px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0px 25px 0px 0px;
}
.output-search ul li a .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .output-search ul li a .img {
    width: 100px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    height: 60px;
    margin: 0px 15px 0px 0px;
  }
}
@media (max-width: 767px) {
  .output-search ul li a .img {
    display: none;
  }
}
.output-search ul li a .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
@media (max-width: 992px) {
  .output-search ul li a .title {
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .output-search ul li a .title {
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .output-search ul li a .title {
    font-size: 14px;
  }
}
.output-search ul li a .price {
  font-family: "Inter";
  font-weight: 300;
  font-size: 30px;
  line-height: 46px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin-left: auto;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .output-search ul li a .price {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .output-search ul li a .price {
    font-size: 18px;
  }
}
@media (max-width: 1500px) {
  .output-search ul li a {
    padding: 20px 0;
  }
}
@media (max-width: 1200px) {
  .output-search ul li a {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .output-search ul li a {
    gap: 10px;
  }
}
@media (any-hover: hover) {
  .output-search ul li a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1500px) {
  .output-search ul {
    padding: 0 30px;
  }
}
@media (max-width: 1200px) {
  .output-search ul {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .output-search ul {
    padding: 0 15px;
  }
}

.bottom-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 110px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.bottom-header__catalog-btn {
  display: none;
  font-size: 14px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #fff;
  width: 127px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bottom-header__catalog-btn svg {
  margin: 0px 5px 0px 0px;
}
@media (max-width: 1350px) {
  .bottom-header__catalog-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1350px) {
  .bottom-header {
    height: 80px;
  }
}

.info-bottom-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info-bottom-header__item:not(:last-child) {
  margin: 0px 72px 0px 0px;
}
@media (max-width: 1500px) {
  .info-bottom-header__item:not(:last-child) {
    margin: 0px 30px 0px 0px;
  }
}
@media (max-width: 1350px) {
  .info-bottom-header {
    display: none;
  }
}

.item-info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-info-header__img {
  margin: 0px 15px 0px 0px;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (max-width: 1500px) {
  .item-info-header__img img {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .item-info-header__img:hover {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
  }
}
@media (max-width: 1500px) {
  .item-info-header__img {
    width: 35px;
    margin: 0px 10px 0px 0px;
  }
}
.item-info-header__text {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ffffff;
}
.item-info-header__text span,
.item-info-header__text a {
  font-family: "Intro";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ffffff;
  display: block;
  margin: 6px 0px 0px 0px;
}
@media (max-width: 1500px) {
  .item-info-header__text span,
  .item-info-header__text a {
    font-size: 15px;
  }
}
.item-info-header__text a {
  position: relative;
}
.item-info-header__text a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: width 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-info-header__text a:hover::after {
    width: 0;
  }
}

.header-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.header-cart__img {
  margin: 0px 15px 0px 0px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header-cart__img:hover {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
  }
}
.header-cart__mobile-count {
  display: none;
}
@media (max-width: 576px) {
  .header-cart__mobile-count {
    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;
    position: absolute;
    color: #581717;
    background: #fff;
    border-radius: 50%;
    width: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    height: 20px;
    top: -5px;
    right: 5px;
  }
}
.header-cart__title {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ffffff;
}
@media (max-width: 576px) {
  .header-cart__title {
    display: none;
  }
}
.header-cart__value {
  font-family: "Intro";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ffffff;
  display: block;
  margin: 6px 0px 0px 0px;
  position: relative;
}
.header-cart__value::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: width 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
@media (max-width: 767px) {
  .header-cart__value {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .header-cart__value {
    display: none;
  }
}
@media (any-hover: hover) {
  .header-cart:hover .header-cart__value::after {
    width: 0;
  }
}

.footer {
  background: #282828;
  position: relative;
  z-index: 1;
}
.top-footer {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.top-footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1250px) {
  .top-footer__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .top-footer__right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1500px) {
  .top-footer {
    padding: 25px 0;
  }
}
@media (max-width: 1250px) {
  .top-footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.info-top-footer {
  margin: 0px 30px 0px 0px;
}
.info-top-footer__item:not(:last-child) {
  margin: 0px 0px 30px 0px;
}
@media (max-width: 1250px) {
  .info-top-footer__item:not(:last-child) {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .info-top-footer__item:not(:last-child) {
    margin: 0px 0px 0 0px;
  }
}
@media (max-width: 1250px) {
  .info-top-footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 767px) {
  .info-top-footer {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0;
    
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.item-info-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-info-footer__img {
  margin: 0px 15px 0px 0px;
}
@media (max-width: 1500px) {
  .item-info-footer__img {
    margin: 0px 10px 0px 0px;
  }
}
.item-info-footer__text {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.item-info-footer__text span, .item-info-footer__text a {
  font-family: "Intro";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  display: block;
  margin: 6px 0px 0px 0px;
}
@media (max-width: 1500px) {
  .item-info-footer__text span, .item-info-footer__text a {
    font-size: 16px;
  }
}
.item-info-footer__text a {
  position: relative;
}
.item-info-footer__text a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: width 0.3s ease 0s;
  -o-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-info-footer__text a:hover::after {
    width: 0;
  }
}

.address-top-footer {
  padding: 0px 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.address-top-footer__title {
  font-size: 18px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin: 0px 0px 15px 0px;
}
@media (max-width: 1500px) {
  .address-top-footer__title {
    font-size: 16px;
    line-height: 22px;
    margin: 0px 0px 10px 0px;
  }
}
.address-top-footer__phone {
  padding: 0px 0px 0px 30px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.address-top-footer__phone::before {
  content: "";
  width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  background: url("../img/icons/phone.svg") center center no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}
.address-top-footer__phone a {
  display: block;
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (any-hover: hover) {
  .address-top-footer__phone a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 1500px) {
  .address-top-footer__phone a {
    font-size: 14px;
    line-height: 20px;
  }
}
.address-top-footer__phone:not(:last-child) {
  margin: 0px 0px 17px 0px;
}
.address-top-footer__time {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  position: relative;
  padding: 0px 0px 0px 30px;
}
.address-top-footer__time::before {
  content: "";
  width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  background: url("../img/icons/time.svg") center center no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}
@media (max-width: 1500px) {
  .address-top-footer {
    padding: 0px 20px;
  }
}
@media (max-width: 1250px) {
  .address-top-footer {
    border: none;
  }
}
@media (max-width: 992px) {
  .address-top-footer {
    padding: 0px 10px;
  }
}
@media (max-width: 767px) {
  .address-top-footer {
    display: none;
  }
}

.bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.bottom-footer__copyright {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #FFFFFF;
}
.bottom-footer__dev {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bottom-footer__dev img {
  margin: 0px 0px 0px 3px;
}
@media (any-hover: hover) {
  .bottom-footer__dev:hover {
    opacity: 0.6;
  }
}
@media (max-width: 1500px) {
  .bottom-footer {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
  }
}

.wrapper-aside {
  position: fixed;
  width: 350px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  left: 0;
  top: 0;
  height: 100%;
  overflow: auto;
  -webkit-transition: left 0.3s ease 0s;
  -o-transition: left 0.3s ease 0s;
  transition: left 0.3s ease 0s;
  -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  background: #fff;
  z-index: 1;
}
@media (max-width: 1500px) {
  .wrapper-aside {
    width: 320px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
  }
}
@media (max-width: 1350px) {
  .wrapper-aside {
    left: -110%;
    z-index: 11;
  }
  .wrapper-aside.catalog--active {
    left: 0;
  }
}
@media (max-width: 767px) {
  .wrapper-aside {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

.main-aside {
  height: 100%;
  padding: 28px 30px 28px 30px;
}
/*.main-aside__close-btn {
  display: none;
}
@media (max-width: 1350px) {
  .main-aside__close-btn {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 3;
    background: transparent;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .main-aside__close-btn::before, .main-aside__close-btn::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
  }
  .main-aside__close-btn::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .main-aside__close-btn::after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}*/
.main-aside__logo {
  display: block;
  max-width: 252px;
  width: 100%;
  margin: 0px 0px 30px 0px;
}
.main-aside__logo img {
  width: 100%;
}
.left-menu__list li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.left-menu__list li:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.left-menu__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  padding: 20px 0;
}
.left-menu__list li a .left-menu__img {
  position: relative;
  margin: 0px 30px 0px 0px;
  width: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
}
.left-menu__list li a .left-menu__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (any-hover: hover) {
  .left-menu__list li a:hover {
    opacity: 0.6;
  }
}
.body-cart {
  width: 525px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -110%;
  -webkit-transition: right 0.3s ease 0s;
  -o-transition: right 0.3s ease 0s;
  transition: right 0.3s ease 0s;
  z-index: 11;
  background: #FFFFFF;
  padding: 20px 0px 0px 0px;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.body-cart.menu--active {
  right: 0;
}
.body-cart__close {
  background: #F4F4F4;
  width: 54px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 54px;
  flex: 0 0 54px;
  height: 54px;
  border-radius: 50%;
  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;
  position: absolute;
  top: 10px;
  left: -27px;
}
@media (max-width: 767px) {
  .body-cart__close {
    right: 15px;
    left: unset;
  }
}
.body-cart__container {
  padding: 0px 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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: 767px) {
  .body-cart__container {
    padding: 0 10px;
  }
}
.body-cart__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0px 0px 15px 0px;
}
@media (max-width: 767px) {
  .body-cart__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.body-cart__title {
  font-size: 32px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.body-cart__count {
  font-size: 32px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ED1C24;
}
.body-cart__bottom {
  padding: 15px 50px 15px 50px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px -6px 54px rgba(0, 0, 0, 0.13);
  box-shadow: 0px -6px 54px rgba(0, 0, 0, 0.13);
}
@media (max-width: 767px) {
  .body-cart__bottom {
    padding: 15px 10px;
  }
}
.body-cart__add-more {
  font-size: 12px;
  color: #282828;
  border: 2px solid #282828;
  border-radius: 10px;
  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;
  width: 100%;
  margin: 0px 0px 20px 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.body-cart__add-more svg {
  margin: 0px 8px 0px 0px;
}
.body-cart__add-more svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .body-cart__add-more:hover {
    background: #282828;
    color: #fff;
  }
  .body-cart__add-more:hover svg path {
    fill: #fff;
  }
}
@media (max-width: 767px) {
  .body-cart__add-more {
    margin: 0px 0px 10px 0px;
  }
}
.body-cart__pay {
  font-size: 16px;
  color: #FFFFFF;
  background: #282828;
  border-radius: 10px;
  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;
  height: 60px;
  width: 100%;
}
@media (any-hover: hover) {
  .body-cart__pay:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .body-cart__pay {
    height: 55px;
  }
}
.body-cart__info-text {
  font-family: "Inter";
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  color: #282828;
  border: 2px dashed #282828;
  border-radius: 10px;
  opacity: 0.7;
  padding: 10px 15px 10px 60px;
  margin: 20px 0px 0px 0px;
}
.body-cart__info-text b {
  font-weight: 600;
}
.body-cart__info-text p {
  margin: 0;
}
.body-cart__info-text p:not(:last-child) {
  margin: 0px 0px 5px 0px;
}
@media (max-width: 767px) {
  .body-cart__info-text {
    padding: 8px 10px;
    margin: 10px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .body-cart {
    width: 100%;
  }
}

.content-body {
  height: auto;
  max-height: 480px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 480px;
  flex: 1 0 480px;
}
.content-body__item:not(:last-child) {
  margin: 0px 0px 10px 0px;
}
.content-body .simplebar-track.simplebar-vertical {
  right: -15px;
}
@media (max-width: 767px) {
  .content-body .simplebar-track.simplebar-vertical {
    right: -11px;
  }
}
@media (max-height: 920px) {
  .content-body {
    max-height: 440px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 440px;
    flex: 1 0 440px;
  }
}
@media (max-height: 880px) {
  .content-body {
    max-height: 400px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 400px;
    flex: 1 0 400px;
  }
}
@media (max-height: 835px) {
  .content-body {
    max-height: 360px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 360px;
    flex: 1 0 360px;
  }
}
@media (max-height: 795px) {
  .content-body {
    max-height: 300px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 300px;
    flex: 1 0 300px;
  }
}
@media (max-height: 735px) {
  .content-body {
    max-height: 260px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 260px;
    flex: 1 0 260px;
  }
}

.item-content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  padding: 10px 30px 10px 10px;
  background: #F8F8F8;
  border-radius: 8px;
  position: relative;
}
.item-content-body__img {
  width: 130px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 130px;
  flex: 0 0 130px;
  height: 100px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin: 0px 24px 0px 0px;
}
.item-content-body__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .item-content-body__img {
    width: 90px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    height: 70px;
    margin: 0px 10px 0px 0px;
  }
}
.item-content-body__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.item-content-body__remove {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12px;
  flex: 0 0 12px;
  height: 12px;
  opacity: 0.3;
  cursor: pointer;
}
@media (any-hover: hover) {
  .item-content-body__remove:hover {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .item-content-body__remove {
    top: 5px;
    right: 10px;
  }
}
.item-content-body__title {
  font-size: 16px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 10px 0px;
}
@media (max-width: 576px) {
  .item-content-body__title {
    font-size: 14px;
    line-height: 16px;
  }
}
.item-content-body__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.item-content-body__price {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
@media (max-width: 767px) {
  .item-content-body {
    padding: 8px;
  }
}

.info-body-cart__item:not(:last-child) {
  margin: 0px 0px 10px 0px;
}
.info-body-cart:not(:last-child) {
  margin: 0px 0px 10px 0px;
}

.item-info-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.item-info-cart__title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: 18px;
  color: #282828;
}
.item-info-cart__number {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: 18px;
  color: #282828;
}

.item-info-cart--sale .item-info-cart__number {
  color: #508526;
}

.item-info-cart--total .item-info-cart__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
}
.item-info-cart--total .item-info-cart__number {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
}

.breadcrumbs {
  padding: 30px 0;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 0;
}
.breadcrumbs__list li:not(:last-child) {
  padding: 0px 36px 0px 0px;
}
.breadcrumbs__item {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #282828;
  position: relative;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: 15px;
  color: rgba(0, 0, 0, 0.1);
  top: 0;
}
.breadcrumbs__item:first-child a {
  position: relative;
  width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  background: url("../img/icons/home.svg") center center no-repeat;
  opacity: 1;
}
.breadcrumbs__item a {
  color: #282828;
  opacity: 0.3;
  display: block;
}
@media (any-hover: hover) {
  .breadcrumbs__item a:hover {
    opacity: 0.7;
  }
}
.breadcrumbs__item.active {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 12px 0;
  }
}

.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;
}

.swiper-grid .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 105px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 105px;
  flex: 0 0 105px;
}
.quantity__button {
  width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  border: 2px solid #282828;
  border-radius: 50%;
  cursor: pointer;
}
@media (any-hover: hover) {
  .quantity__button:hover {
    opacity: 0.6;
  }
}
.quantity__button_minus {
  background: url("../img/icons/quantity-minus.svg") center center no-repeat;
}
.quantity__button_plus {
  background: url("../img/icons/quantity-plus.svg") center center no-repeat;
}
.quantity__input {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.quantity__input input {
  background: transparent;
  border: none;
  outline: none;
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #282828;
  width: 100%;
  max-width: 25px;
}
@media (max-width: 576px) {
  .quantity__input {
    font-size: 0px;
  }
}
@media (max-width: 576px) {
  .quantity {
    width: 70px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
  }
}

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;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

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

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-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);
  -ms-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);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: 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;
}

.popup__close {
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  top: 20px;
  right: 20px;
  background: url("../img/icons/close.svg") 0 0/cover no-repeat;
  cursor: pointer;
}
@media (max-width: 767px) {
  .popup__close {
    width: 24px;
    height: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    z-index: 2;
  }
}

.popup-product .popup__content {
  max-width: 970px;
  padding: 0;
}
.popup-product .popup__close {
  width: 70px;
  height: 70px;
  background: url("../img/icons/close-popup.svg") center center no-repeat #fff;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  border: none;
  outline: none;
  cursor: pointer;
  top: 40px;
  right: -35px;
}
@media (any-hover: hover) {
  .popup-product .popup__close:hover {
    background-color: rgb(224, 224, 224);
  }
}
@media (max-width: 992px) {
  .popup-product .popup__close {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .popup-product .popup__close {
    width: 40px;
    height: 40px;
    background: url("../img/icons/close-popup.svg") center center/45% no-repeat #fff;
    top: 10px;
    right: 10px;
  }
}
.popup-product__top {
  background: #F4F4F4;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.popup-product__img {
  width: 100%;
  height: 570px;
  position: relative;
}
.popup-product__img::before {
  content: "";
  width: 100%;
  height: 145px;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 237, 237, 0)), to(#EDEDED));
  background: -o-linear-gradient(top, rgba(237, 237, 237, 0) 0%, #EDEDED 100%);
  background: linear-gradient(180deg, rgba(237, 237, 237, 0) 0%, #EDEDED 100%);
  bottom: 0;
  z-index: 2;
}
.popup-product__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 133px;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 237, 237, 0)), to(#EDEDED));
  background: -o-linear-gradient(top, rgba(237, 237, 237, 0) 0%, #EDEDED 100%);
  background: linear-gradient(180deg, rgba(237, 237, 237, 0) 0%, #EDEDED 100%);
  z-index: 1;
}
.popup-product__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 992px) {
  .popup-product__img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .popup-product__img {
    height: 280px;
  }
}
@media (max-width: 576px) {
  .popup-product__img {
    height: 240px;
  }
}
.bottom-popup-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 60px 50px 60px;
}
.bottom-popup-product__left {
  max-width: 540px;
}
@media (max-width: 992px) {
  .bottom-popup-product__left {
    max-width: unset;
  }
}
.bottom-popup-product__title {
  font-family: "Intro";
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 767px) {
  .bottom-popup-product__title {
    font-size: 26px;
    line-height: 1;
    margin: 0px 0px 10px 0px;
  }
}
.bottom-popup-product__weight {
  margin: 0px 0px 20px 0px !important;
}
@media (max-width: 767px) {
  .bottom-popup-product__weight {
    margin: 0px 0px 10px 0px !important;
  }
}
.bottom-popup-product__desc {
  font-family: "Inter";
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
@media (max-width: 767px) {
  .bottom-popup-product__desc {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  .bottom-popup-product__right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px 0px 0px 0px;
  }
}
@media (max-width: 767px) {
  .bottom-popup-product__right {
    margin: 10px 0px 0px 0px;
  }
}
@media (max-width: 576px) {
  .bottom-popup-product__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.bottom-popup-product__price {
  font-family: "Inter";
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 40px 0px;
}
@media (max-width: 992px) {
  .bottom-popup-product__price {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .bottom-popup-product__price {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .bottom-popup-product__price {
    margin: 0px 0px 10px 0px;
  }
}
.bottom-popup-product__buy {
  font-size: 22px;
  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;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  width: 250px;
  height: 60px;
  background: #282828;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .bottom-popup-product__buy:hover {
    opacity: 0.6;
  }
}
@media (max-width: 576px) {
  .bottom-popup-product__buy {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .bottom-popup-product {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .bottom-popup-product {
    padding: 0 10px 10px 10px;
  }
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  max-height: 400px;
  overflow: auto;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

@font-face {
  font-family: "lg";
  src: url("data:font/woff2;base64,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") format("woff2"), url("data:font/woff;base64,d09GRgABAAAAABLgAAsAAAAAEpQAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIGIGNtYXAAAAFoAAAApAAAAKSI7DN0Z2FzcAAAAgwAAAAIAAAACAAAABBnbHlmAAACFAAADjgAAA44V8bBEWhlYWQAABBMAAAANgAAADYbqSuuaGhlYQAAEIQAAAAkAAAAJAeuA91obXR4AAAQqAAAAHAAAABwZgALDmxvY2EAABEYAAAAOgAAADonfiQgbWF4cAAAEVQAAAAgAAAAIAAmAI5uYW1lAAARdAAAAUoAAAFKqFVCHnBvc3QAABLAAAAAIAAAACAAAwAAAAMD7AGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QoDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAIgAAAAeABAAAwAOAAEAIOAa4B3gM+Bw4JXg8uH/4g3jEugN6Qr//f//AAAAAAAg4BrgHeAz4HDglODy4f/iDOMR6A3pAP/9//8AAf/jH+of6B/TH5cfdB8YHgweABz9GAMXEQADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAAEAFYAAQOqA1UAAwATACMAJwAAAREzEQcyNzY1NCcmIyIHBhUUFxYTMhcWFRQHBiMiJyY1NDc2ExEzEQIqVoCMZWVlZYyMZWVlZYywfX19fbCwfX19fTBWAQEBVP6srGVljIxlZWVljIxlZQMAfX2wsH19fX2wsH19/awBVP6sAAMAVgABA6oDVQAPAB8AIgAAJTI3NjU0JyYjIgcGFRQXFhMyFxYVFAcGIyInJjU0NzYTEQUCAIxlZWVljIxlZWVljLB9fX19sLB9fX19WgEAVWVljIxlZWVljIxlZQMAfX2wsH19fX2wsH19/ZYBgMAAAAAAAwBVAAADqwNVABQAKQA+AAABITIXFhURFAcGIyEiJyY1ETQ3NjMHERQXFjMhBgcGIyEiJyY1ETQ3NjclISIHBhURFBcWMyEyNzY1ETQnJiMBgAGrNSUmJiU1/lU1JiUlJjXVDA0RAiQOISEp/lU1JSYYGCYCgP5VEgwNDQwSAasRDQwMDREDVSUmNf5WNSYlJSY1Aao1JiWy/d0SDA0lGBgmJTUBqykhIQ1dDA0S/lYSDQwMDRIBqhIMDQABANYAgQMqAtUACwAAAQcXBycHJzcnNxc3Ayru7jzu7jzu7jzu7gKZ7u487u487u487u4AAQBVAFUDqwMAACIAAAEyFxYVFA8BITIXFhUUBwYjIRcWFRQHBiMiJwEmNTQ3ATYzAasRDQwM4gKZEgwNDQwS/WfiDAwNERIN/tYNDQEqDRIDAAwNEhIM4gwNERINDOIMEhIMDQ0BKg0SEQ0BKwwAAAEAVQBVA6sDAAAiAAABMhcBFhUUBwEGIyInJjU0PwEhIicmNTQ3NjMhJyY1NDc2MwJVEg0BKg0N/tYNEhIMDAzi/WcSDA0NDBICmeIMDAwSAwAM/tUMEhIN/tYNDQwSEgziDQwSEQ0M4gwSEwwMAAACAKoAKwNWAysAAwAKAAA3IRUhAQcnMxEzEaoCrP1UAgCqqoBUgVYBVqysAar+VgAJAKoAVQNWAwEAAwAHAAsADwATABcAGwAfACMAACU1MxUDNTMVATUzFTczFSMBNTMVITUzFQM1MxUzNTMVATUzFQKqrKys/lSsVKys/wCs/lSsrKxUrP5UrFWsrAEArKwBAKysrKz/AKysrKz/AKysrKwCAKysAAAEANYAgQMqAtUABQALABEAFwAAATMVIzUjEzUzFSM1ATUzFSMVHQEzFSM1AlbUVICAVNT+gNSAgNQC1dSA/lSA1FQBLNRUgKyAVNQABADWAIEDKgLVAAUACwARABcAAAEzFSM1MwM1MxUjFQE1MxUjNRE1MxUjNQKqgNRUVNSA/qxU1NRUAlVU1P2s1FSAAdSA1FT+rFTUgAAAAAADAIAAQQNqAysACwAbADIAAAEjFSM1IzUzNTMVMwcyNzY1NCcmIyIHBhUUFxYhFwcnNScGIyInJjU0NzYzMhcWFRQHFwIAVipWVipWalA4ODg4UFA4ODg4AVDUQNQMTGh0UVFRUXR0UFBCDAIBVlYqVlbWODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0aEwMAAAAAwCAAEEDagMrAAMAEwAqAAABMxUjFzI3NjU0JyYjIgcGFRQXFiEXByc1JwYjIicmNTQ3NjMyFxYVFAcXASrW1mxQODg4OFBQODg4OAFQ1EDUDExodFFRUVF0dFBQQgwCKyqsODhQUDg4ODhQUDg41EDUIgxCUFB0dFFRUVF0aEwMAAAAAQCAAAMDgANVADMAACUyFhUUBiMiJjU8ATclDgEjIiY1NDYzMhYXJS4BNTQ2MzIWFRQGIyImJwUeARUUBgcFPgEDADNJSTMzSQL+0hIsGjRMSzUZLRIBLAEDSzU0TEs1GS0S/tQBAwICATAQLP1JMzNLSzMHDwawERFLNTRMEhCuBw8INExMNDVLExGwCA8HCA8HsA8RAAAEAK4AWQNWA4EAFAAaACAAJgAAARYXFhUUBwYHNTY3NjU0JyYnFSc3AzcWFxUmAxYXByYnNwYHIzY3Aip+V1dXV35cPT09PVzCwvw+LjxgcgogPDgMgiQIVgw6Av0QYGCCgmBgEFYQR0deXkdHEKa+wv0cPiIKVgwBHDowPEpcvjQ2WkwAAAAABACqAFkDUgOBAAUACwARACYAAAE2NzMGBwc2NxcGBwEjJic3FicHNQYHBhUUFxYXFSYnJjU0NzY3NQLQIgpWDDjkPC4+SGABKFYKIj46sMJcPT09PVx+V1dXV34BFy48XEosCiI+OAwBfDwuPEiMvqYQR0deXkdHEFYQYGCCgmBgEIQAAgCAAIEDgALVAAYADQAAAQc1ITUhNQEVIRUhFScDgKr+1AEs/lQBLP7UqgIrqoBUgP8AgFSAqgACANYAKwMqAysABgANAAABFyMRIxEjATMHJzMRMwGAqoBUgAHUgKqqgFQDK6r+1AEs/lSqqgEsAAIAFP/hA+wDuAAcADEAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjEyMiBh0BMwcjFSM1IzUzNTQ2OwEVAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWZ0SQcMXA1PV09PPC5JA7gmJ4VaWWZmWlmFJycnJ4VZWmZmWVqFJyb+rRALNkzk5EwtMEVRAAUAFP/hA+wDuAAcAFYAYgB1AIsAAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjAw4BIyoBMTAiIyImNTQ2OwEuATEqASMiJicuATU0NjczFRQGBw4BBx4BFRQGBw4BFRQWFx4BFRQGByUjFSM1IzUzNTMVMwUqASMOAQcOARUeATc+AScuASM3LgEjKgEHDgEHDgEXHgEzOgE3PgEnAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWYcFy0JAgICAQ9pdRkBDgEBBAIKIBATE3cBdxwMBA4CFwwVDQkLDwsQJR4eAQJMNExMNEz+vwIEAhEfCwsLAjQjIysCAikhLQoeGAIFAwoPBQQBBAcjEwIFAxUWCQO4JieFWllmZlpZhScnJyeFWVpmZllahScm/UILBhxEQx0TIQUKDCodUh8BAwoHAQEBAgwnHCAlDAgNBwgQCQ8rIyMzDtNNTTNNTW4CDAoLGQ0bHQIDJRsZI8YgGAEDEA0NGg8bIwEGNx8AAAACABT/4QPsA7gAHABRAAABIgcOAQcGFRQXHgEXFjMyNz4BNzY1NCcuAScmIxMuAScOAQcmNjcmNhcWBw4BBwYXFjc+AScmJyYnJgYHBhceAQcuATc+ATc2FhcWBw4BBwYnAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWYiGBsTCiAlDCYOFyovHAUFFQICJCYaGhcFBRciLS1NGBkIBBwSLB8CA2xAUoQLBgkJKyEiKwO4JieFWllmZlpZhScnJyeFWVpmZllahScm/aACFAs1XxtRgUAmaxMLHx9DHR0HBxsbUSsrGCIDAykoJzEYHSEKQC1LYQcJS0wsKitDFBMDAAAAAAIAFP/hA+wDuAAcAF4AAAEiBw4BBwYVFBceARcWMzI3PgE3NjU0Jy4BJyYjExwBFRQHDgEHBiMiJicyFjMyNjcuASceATMyNjcuAT0BHgEXLgE1NDY3HgEXLgE1NDYzMhYXPgE3DgEHPgE3DgEHAgBmWVqFJycnJ4VaWWZmWVqFJycnJ4VaWWbIEhJGMzNDKUshBgwGIj0ZIDEKBQkEBw0GIS0KFgwTGAcGJGc9AgE5KBUkDhAfDgUWDw4cDQkZDgO4JieFWllmZlpZhScnJyeFWVpmZllahScm/m4DBwMwMTFPGRkXFAEWEwEmHQEBAgEHNSMBBQYBDSsZDRkLLDcDBgsFKDkQDgMMCBEbCgIIBg8ZCgAAAAACAFgAAgOrA1UALgBWAAABNTwBNS4BJy4BJzAiMSMmBgcOAQcOARUUFhcHBhQXHgE/AR4BMzI2Nz4BNz4BNSMUBgcOAQcOASMiJicuAQ8BNzYmJy4BNTQ2Nz4BNz4BOwEeARceARcDqwU7MTOKUAIVLV0sJ0QbKjAREksDAwUgEeIlVC0sVSc9ZCEUF1YREBpPMR9DIydIHwgRCKM3AgEEEhAmIRY1ICJJIxM/bSgnLwMBwBUBAQFLhDM1QgQBFRcUNiI0gkgoVCnjBg4HEQ8FTBESExIcXkAoXTEnSR8zSxYODxIQBAEDNqIJEQcjSSM5ZikbKxASEAM0KihoOwAAAgBVAAADqwNVACYAQQAAAQcGFBcWMj8BFRQWMzI2NRE0JicuASc4ATEuAScuASMhIgYVFBYzATc2NCcmIg8BNTQmIyIGFREUFjMhMjY1NCYjAxniDAwNIwziGRISGQICAQUDAwcEAwkE/wASGRkS/mfiDAwNIwziGRISGRkSAQASGRkSAwDiDCQMDQ3imRIZGRIBAAQIBAQHAwMEAgIBGRESGf1V4g0jDA0N4ZkRGRkR/wASGRkSERkAAAACAGIADAOeA0kAJgBOAAABNzY0JyYiDwE1NCYjIgYVERQWFx4BFzgBMR4BFx4BMyEyNjU0JiMBNxUUFjMyNjURNCYnLgEnMDQxLgEnLgEjISIGFRQWOwEHBhQXFjI3ArziDQ0MJAziGRIRGQECAQUDAwcEBAgEAQASGRkS/UniGRIRGQECAQUDAwcEBAgE/wASGRkSmeINDQwkDAIr4gwjDQwM4pkSGRkS/wAECQMEBwMDBQECAhkSEhn94uGZERkZEQEABQgEAwcDAQMEAgECGRIRGeINIw0MDAAAAQAAAAIAAKwEdEFfDzz1AAsEAAAAAADcTnOMAAAAANxOc4wAAP/hA+wDuAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAD7AABAAAAAAAAAAAAAAAAAAAAHAQAAAAAAAAAAAAAAAIAAAAEAABWBAAAVgQAAFUEAADWBAAAVQQAAFUEAACqBAAAqgQAANYEAADWBAAAgAQAAIAEAACABAAArgQAAKoEAACABAAA1gQAABQEAAAUBAAAFAQAABQEAABYBAAAVQQAAGIAAAAAAAoAFAAeAF4AmAD2ARABSAGAAZgB1AH6AiICbAKuAvoDPgOAA5wDuAQABMIFRAXQBlAGrgccAAAAAQAAABwAjAAJAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAIAAAABAAAAAAACAAcAgQABAAAAAAADAAIAdQABAAAAAAAEAAIAlgABAAAAAAAFAAsAVAABAAAAAAAGAAIAewABAAAAAAAKABoABgADAAEECQABAAQAAgADAAEECQACAA4AiAADAAEECQADAAQAdwADAAEECQAEAAQAmAADAAEECQAFABYAXwADAAEECQAGAAQAfQADAAEECQAKADQAIGxnAGwAZ0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALlZlcnNpb24gMi4wAFYAZQByAHMAaQBvAG4AIAAyAC4AMGxnAGwAZ2xnAGwAZ1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmxnAGwAZwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}
.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}
.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
  color: #fff;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-maximize {
  font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
.lg-sub-html a {
  color: inherit;
}
.lg-sub-html a:hover {
  text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}
.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
  opacity: 1;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  -o-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  -o-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}
.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("data:image/gif;base64,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") no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}
.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}
.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  -o-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}
.lg-inline .lg-backdrop {
  z-index: 1;
}
.lg-inline .lg-outer {
  z-index: 2;
}
.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-outer .lg-thumb-outer {
  background-color: #0d0a0a;
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}
.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}
.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}
.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }
}
.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}
@media (min-width: 768px) {
  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: rgb(169, 7, 7);
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}
.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top {
  background: #581717;
  padding: 0px 0px 20px 0px;
}
.top__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1500px) {
  .top__content {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .top__content {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .top__content {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .top__content {
    gap: 10px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.top__slider .swiper-button-prev {
  width: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  border: 2px solid #FFFFFF;
  background: url("../img/icons/prev-wh.svg") 12px center no-repeat;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .top__slider .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
@media (max-width: 992px) {
  .top__slider .swiper-button-prev {
    width: 35px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    height: 35px;
    background: url("../img/icons/prev-wh.svg") 9px center no-repeat;
  }
}
@media (max-width: 576px) {
  .top__slider .swiper-button-prev {
    display: none;
  }
}
.top__slider .swiper-button-next {
  width: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  border: 2px solid #FFFFFF;
  background: url("../img/icons/next-wh.svg") 14px center no-repeat;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .top__slider .swiper-button-next:hover {
    opacity: 0.6;
  }
}
@media (max-width: 992px) {
  .top__slider .swiper-button-next {
    width: 35px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    height: 35px;
    background: url("../img/icons/next-wh.svg") 12px center no-repeat;
  }
}
@media (max-width: 576px) {
  .top__slider .swiper-button-next {
    display: none;
  }
}
.top__slide {
  width: 100%;
}
.top__slide img {
  width: 100%;
}
@media (max-width: 576px) {
  .top__slider-three {
    display: none;
  }
}
@media (max-width: 576px) {
  .top {
    padding: 0px 0px 10px 0px;
  }
}

.btns-top-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 27px 0;
}
.btns-top-slider__name {
  font-size: 30px;
  line-height: 20px;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 1500px) {
  .btns-top-slider__name {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .btns-top-slider__name {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .btns-top-slider__name {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .btns-top-slider__name {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .btns-top-slider {
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .btns-top-slider {
    padding: 10px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.products-slider {
  padding: 112px 0;
}
.products-slider__slider .swiper-button-prev {
  width: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  height: 60px;
  border: 2.5px solid #ED1C24;
  background: url("../img/icons/prev-red.svg") center center no-repeat;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.products-slider__slider .swiper-button-prev:not(:last-child) {
  margin: 0px 20px 0px 0px;
}
@media (max-width: 576px) {
  .products-slider__slider .swiper-button-prev:not(:last-child) {
    margin: 0px 10px 0px 0px;
  }
}
@media (any-hover: hover) {
  .products-slider__slider .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .products-slider__slider .swiper-button-prev {
    width: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    height: 40px;
    background: url("../img/icons/prev-red.svg") 10px center/40% no-repeat;
  }
}
.products-slider__slider .swiper-button-next {
  width: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  height: 60px;
  border: 2.5px solid #ED1C24;
  background: url("../img/icons/next-red.svg") center center no-repeat;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .products-slider__slider .swiper-button-next:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .products-slider__slider .swiper-button-next {
    width: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    height: 40px;
    background: url("../img/icons/next-red.svg") 12px center/40% no-repeat;
  }
}
.products-slider__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: 0px 0px 58px 0px;
}
@media (max-width: 767px) {
  .products-slider__top {
    margin: 0px 0px 40px 0px;
  }
}
@media (max-width: 576px) {
  .products-slider__top {
    margin: 0px 0px 25px 0px;
  }
}
.products-slider__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1500px) {
  .products-slider {
    padding: 80px 0;
  }
}
@media (max-width: 992px) {
  .products-slider {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .products-slider {
    padding: 50px 0;
  }
}

.products-slider + .products-slider {
  padding-top: 0;
}

.item-catalog-error{
    color: red;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    font-family: Inter;
    
}

.item-catalog {
  background: #F4F4F4;
  border-radius: 20px;
}
.item-catalog__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  
  height: 100%;
}
.item-catalog__img {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 20px 20px 0 0;
  overflow:hidden;
}
.item-catalog__img::before {
  content: "";
  width: 100%;
  height: 75px;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(237, 237, 237, 0)), to(#EDEDED));
  background: -o-linear-gradient(top, rgba(237, 237, 237, 0) 0%, #EDEDED 100%);
  background: linear-gradient(180deg, rgba(237, 237, 237, 0) 0%, #EDEDED 100%);
  bottom: 0;
  z-index: 1;
}
.item-catalog__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(76%, transparent), to(rgb(244, 244, 244)));
  background: -o-linear-gradient(top, transparent 76%, rgb(244, 244, 244) 100%);
  background: linear-gradient(180deg, transparent 76%, rgb(244, 244, 244) 100%);
  z-index: 2;
}
.item-catalog__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.item-catalog__info {
  padding: 10px 25px 25px 25px;
  /* position: relative; */
  /* z-index: 3; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  
  height: calc(100% - 250px);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .item-catalog__info {
      padding: 0 20px 20px 20px;
  }
}
.item-catalog__title {
  font-size: 22px;
  line-height: 26px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 7px 0px;
  
  min-height: 60px;
}
.item-catalog__title a {
  color: #282828;
}
@media (any-hover: hover) {
  .item-catalog__title a:hover {
    opacity: 0.6;
  }
}
.item-catalog__price {
  font-family: "Inter";
  font-weight: 300;
  font-size: 40px;
  line-height: 46px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 6px 0px;
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
}
.item-catalog__desc {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.item-catalog__desc:not(:last-child) {
  margin: 0px 0px 15px 0px;
}
.item-catalog__buy {
  font-size: 16px;
  line-height: 20px;
  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;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  border: 2px solid #282828;
  border-radius: 10px;
  width: 140px;
  height: 40px;
  background: transparent;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-catalog__buy:hover {
    background: #282828;
    color: #fff;
  }
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../img/about/about-bg.png") 0 0/cover no-repeat, -o-linear-gradient(12.74deg, #EDEDED 0%, rgba(237, 237, 237, 0) 71.8%);
  background: url("../img/about/about-bg.png") 0 0/cover no-repeat, linear-gradient(77.26deg, #EDEDED 0%, rgba(237, 237, 237, 0) 71.8%);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .about__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.about__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 51.1%;
  flex: 0 1 51.1%;
  width: 51.1%;
}
@media (max-width: 992px) {
  .about__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
.about__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 48.9%;
  flex: 0 1 48.9%;
  width: 48.9%;
}
@media (max-width: 992px) {
  .about__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}

.left-about {
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0px 0px 0px 38px;
}
.left-about__img {
  position: relative;
  bottom: -5px;
  width: 100%;
}
@media (max-width: 992px) {
  .left-about__img {
    display: none;
  }
}

.right-about {
  padding: 100px 100px 100px 0;
}
.right-about__title {
  font-size: 64px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000000;
  margin: 0px 0px 20px 0px;
}
@media (max-width: 1500px) {
  .right-about__title {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .right-about__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .right-about__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .right-about__title {
    font-size: 28px;
    margin: 0px 0px 15px 0px;
  }
}
.right-about__text {
  font-family: "Inter";
  font-weight: 200;
  font-size: 22px;
  line-height: 36px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.right-about__text:not(:last-child) {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 767px) {
  .right-about__text:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 576px) {
  .right-about__text:not(:last-child) {
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 1500px) {
  .right-about__text {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 576px) {
  .right-about__text {
    font-size: 16px;
    line-height: 22px;
  }
}
.right-about__link {
  font-size: 18px;
  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;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  width: 350px;
  height: 70px;
  background: #ED1C24;
  border-radius: 10px;
}
.right-about__link svg {
  margin: 0px 0px 0px 20px;
}
@media (max-width: 576px) {
  .right-about__link svg {
    margin: 0px 0px 0px 10px;
  }
}
@media (any-hover: hover) {
  .right-about__link:hover {
    opacity: 0.6;
  }
}
@media (max-width: 1500px) {
  .right-about__link {
    height: 60px;
  }
}
@media (max-width: 576px) {
  .right-about__link {
    width: 100%;
    font-size: 16px;
    height: 60px;
  }
}
@media (max-width: 1500px) {
  .right-about {
    padding: 50px 50px 50px 0;
  }
}
@media (max-width: 992px) {
  .right-about {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .right-about {
    padding: 20px;
  }
}

.map-area {
  padding: 50px 0;
}
.map-area__content {
  position: relative;
}
.map-area__map {
  height: 960px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1500px) {
  .map-area__map {
    height: 600px;
  }
}
@media (max-width: 992px) {
  .map-area__map {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .map-area__map {
    height: 460px;
  }
}
.map-area .ymaps-2-1-79-balloon__close {
  display: none;
}
.map-area .ymaps-2-1-79-balloon__content {
  padding: 0;
  margin: 0 !important;
  background: transparent;
}
.map-area .ymaps-2-1-79-balloon__layout {
  background: transparent;
}
.map-area .ymaps-2-1-79-balloon {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  padding: 0;
}
.map-area .ymaps-2-1-79-balloon__tail {
  display: none;
}

.info-map-area {
  position: absolute;
  top: 30px;
  left: 50px;
  width: 355px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px 50px 20px 50px;
  z-index: 1;
}
@media (max-width: 1500px) {
  .info-map-area {
    top: 50px;
  }
}
@media (max-width: 992px) {
  .info-map-area {
    top: 30px;
    left: 30px;
    padding: 20px 30px;
    width: 335px;
  }
}
@media (max-width: 767px) {
  .info-map-area {
    position: static;
    width: auto;
    margin: 0px 0px 20px 0px;
    padding: 0px 30px;
  }
}

.banners-adress__content.active .item-banners-adress {
  opacity: 0.4;
}
.banners-adress__content.active .item-banners-adress.active {
  opacity: 1;
}
.item-banners-adress {
  padding: 30px 0;
  cursor: pointer;
}
.item-banners-adress:not(:last-child) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.item-banners-adress__title {
  font-size: 22px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 15px 0px;
}
.item-banners-adress__adress {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  position: relative;
  padding: 0px 0px 0px 30px;
}
.item-banners-adress__adress::before {
  content: "";
  width: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  background: url("../img/icons/map-pin-line.svg") 0 0 no-repeat;
  position: absolute;
  left: 0;
}
@media (any-hover: hover) {
  .item-banners-adress:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .item-banners-adress {
    padding: 25px 0;
  }
}

.catalog-page {
  padding: 20px 0px 50px 0px;
}
.catalog-page__title {
  text-align: center;
  display: block;
  margin: 0px 0px 46px 0px;
}
@media (max-width: 767px) {
  .catalog-page__title {
    margin: 0px 0px 25px 0px;
  }
}
.catalog-page__filter {
  margin: 0px 0px 40px 0px;
}
.catalog-page__mobile-filter {
  display: none;
}
@media (max-width: 767px) {
  .catalog-page__mobile-filter {
    display: block;
    margin: 0px 0px 30px 0px;
    width: 100%;
  }
  .catalog-page__mobile-filter .nice-select {
    background: #F6F6F6;
    border: 1px solid rgba(40, 40, 40, 0.3490196078);
    padding: 0 20px;
    border-radius: 10px;
    display: block;
    height: 55px;
    line-height: 55px;
    float: unset;
    font-family: "Inter";
    font-size: 14px;
    color: #282828;
  }
  .catalog-page__mobile-filter .nice-select::after {
    border-color: #282828;
  }
  .catalog-page__mobile-filter .nice-select .list {
    width: 100%;
  }
  .catalog-page__mobile-filter .nice-select .current {
    font-family: "Inter";
    font-size: 14px;
    color: #282828;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .catalog-page__mobile-filter .nice-select {
    height: 45px;
    line-height: 45px;
    width: 100%;
  }
}
.catalog-page__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.catalog-page__content:not(:last-child) {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 767px) {
  .catalog-page__content:not(:last-child) {
    margin: 0px 0px 25px 0px;
  }
}
@media (max-width: 1500px) {
  .catalog-page__content {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (max-width: 1200px) {
  .catalog-page__content {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .catalog-page__content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .catalog-page__content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.catalog-page__more-link {
  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;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  border: 2px solid #282828;
  border-radius: 10px;
  height: 60px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.catalog-page__more-link svg {
  margin: 0px 10px 0px 0px;
}
@media (any-hover: hover) {
  .catalog-page__more-link:hover {
    background: #282828;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .catalog-page__more-link {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .catalog-page {
    padding: 20px 0px 30px 0px;
  }
}

.filter-catalog {
  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;
}
.filter-catalog__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px 15px 0px 0px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #282828;
}
.filter-catalog__name svg {
  margin: 0px 8px 0px 0px;
}
.filter-catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.filter-catalog__list a {
  display: block;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #B4B4B4;
}
.filter-catalog__list a:not(:last-child) {
  margin: 0px 15px 0px 0px;
}
.filter-catalog__list a.active {
  color: #000000;
}
@media (any-hover: hover) {
  .filter-catalog__list a:hover {
    color: #000000;
  }
}
@media (max-width: 767px) {
  .filter-catalog {
    display: none;
  }
}

.product-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F4F4F4;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .product-page__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.product-page__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 57.4%;
  flex: 0 1 57.4%;
  width: 57.4%;
}
@media (max-width: 1635px) {
  .product-page__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 54%;
    flex: 0 1 54%;
    width: 54%;
  }
}
@media (max-width: 992px) {
  .product-page__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
.product-page__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 42.6%;
  flex: 0 1 42.6%;
  width: 42.6%;
  padding: 40px 0px 30px 90px;
}
@media (max-width: 1700px) {
  .product-page__right {
    padding: 30px;
  }
}
@media (max-width: 1635px) {
  .product-page__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 46%;
    flex: 0 1 46%;
    width: 46%;
  }
}
@media (max-width: 992px) {
  .product-page__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product-page__right {
    padding: 10px;
  }
}
.product-page__title {
  font-size: 48px;
  line-height: 58px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 25px 0px;
}
@media (max-width: 1635px) {
  .product-page__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1350px) {
  .product-page__title {
    font-size: 32px;
    line-height: 40px;
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 767px) {
  .product-page__title {
    font-size: 26px;
    line-height: 32px;
    margin: 0px 0px 15px 0px;
  }
}
.product-page__price {
  font-family: "Inter";
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 25px 0px;
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .product-page__price {
    font-size: 56px;
    line-height: 1;
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 1350px) {
  .product-page__price {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .product-page__price {
    font-size: 40px;
    margin: 0px 0px 15px 0px;
  }
}
.product-page__desc {
  font-family: "Inter";
  font-weight: 300;
  font-size: 22px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 25px 0px;
}
@media (max-width: 1350px) {
  .product-page__desc {
    font-size: 18px;
    line-height: 24px;
    margin: 0px 0px 20px 0px;
  }
}
.product-page__buy {
  font-weight: 400;
  font-size: 22px;
  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;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  background: #282828;
  border-radius: 10px;
  width: 190px;
  height: 60px;
  cursor: pointer;
  outline: none;
  border: none;
}
@media (any-hover: hover) {
  .product-page__buy:hover {
    opacity: 0.6;
  }
}
@media (max-width: 1350px) {
  .product-page__form {
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 576px) {
  .product-page__buy {
    width: 100%;
    height: 55px;
    font-size: 18px;
  }
  .product-page__form{
      margin: 0px 0px 15px 0px;
  }
}
.product-page__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0px 0px 0px;
  max-width: 450px;
}
.product-page__links a {
  font-size: 15px;
  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;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  width: 50%;
  height: 60px;
  border: 2px solid #282828;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .product-page__links a:hover {
    background: #282828;
    color: #fff;
  }
}
@media (max-width: 576px) {
  .product-page__links a {
    height: 50px;
    font-size: 11px;
  }
}
@media (max-width: 1350px) {
  .product-page__links {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .product-page__links {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .product-page__links {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .product-page__links {
    gap: 10px;
  }
}
.product-page + .products-slider {
  padding: 120px 0 50px 0;
}
@media (max-width: 1500px) {
  .product-page + .products-slider {
    padding: 80px 0 50px 0;
  }
}
@media (max-width: 992px) {
  .product-page + .products-slider {
    padding: 70px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .product-page + .products-slider {
    padding: 50px 0;
  }
}

.left-product-page__img {
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.left-product-page__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .left-product-page__img {
    height: 300px;
    border-radius: 20px 20px 0px 0px;
  }
}

.weight-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.weight-product:not(:last-child) {
    margin: 0px 0px 10px 0px;
}
.weight-product__title {
  font-size: 20px;
  line-height: 24px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.weight-product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.weight-product__item input {
  position: absolute;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.weight-product__item input + label {
  font-size: 20px;
  line-height: 24px;
  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;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  /* width: 90px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px; */
  padding: 0 10px;
  height: 37px;
  border: 2px dashed #282828;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .weight-product__item input + label:hover {
    color: #FFFFFF;
    background: #282828;
    border-radius: 10px;
    border-style: solid;
  }
}
.weight-product__item input:checked + label {
  color: #FFFFFF;
  background: #282828;
  border-radius: 10px;
  border-style: solid;
}
@media (max-width: 767px) {
  .weight-product__item input + label {
    font-size: 18px;
    line-height: 23px;
    height: 35px;
  }
  .weight-product {
      gap: 5px 10px;
  }
  .weight-product__content {
      gap: 10px 10px;
  }
}
@media (max-width: 1500px) {
  .weight-product {
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 1350px) {
  .weight-product {
    margin: 0px 0px 25px 0px;
  }
}
@media (max-width: 767px) {
  .weight-product {
    margin: 0px 0px 15px 0px;
  }
}

.info-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 485px;
  padding: 30px 0px 0px 0px;
  border-top: 1px solid #282828;
}
.info-product__item {
  font-family: "Inter";
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.info-product__item span {
  display: block;
  font-weight: 600;
  font-size: 25px;
  line-height: 46px;
}
@media (max-width: 1500px) {
  .info-product__item span {
    font-size: 22px;
    line-height: 38px;
  }
}
@media (max-width: 1350px) {
  .info-product__item span {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .info-product__item span {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  .info-product__item {
    font-size: 14px;
    line-height: 18px;
  }
}
.info-product__item:not(:last-child) {
  margin: 0px 75px 0px 0px;
}
@media (max-width: 1350px) {
  .info-product__item:not(:last-child) {
    margin: 0;
  }
}
@media (max-width: 1350px) {
  .info-product {
    padding: 20px 0px 0px 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .info-product {
    max-width: unset;
  }
}

.checkout__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 1250px) {
  .checkout__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.checkout__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60.8%;
  flex: 0 1 60.8%;
  width: 60.8%;
}
@media (max-width: 1250px) {
  .checkout__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
.checkout__title {
  margin: 0px 0px 50px 0px;
}
@media (max-width: 1500px) {
  .checkout__title {
    margin: 0px 0px 20px 0px;
  }
}
.checkout__right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 37%;
  flex: 0 1 37%;
  width: 37%;
}
@media (max-width: 1250px) {
  .checkout__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
@media (max-width: 1250px) {
  .checkout {
    padding: 0px 0px 50px 0px;
  }
}
@media (max-width: 767px) {
  .checkout {
    padding: 0px 0px 30px 0px;
  }
}

.left-checkout {
  padding: 0px 0px 50px 0px;
}
.left-checkout__content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 992px) {
  .left-checkout__content {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .left-checkout__content {
    padding: 20px 10px;
  }
}
.left-checkout__item_delivery {
  display: none;
}
.left-checkout__item_delivery.active {
  display: block;
}
.left-checkout__item_map {
  display: none;
}
.left-checkout__item_map.active {
  display: block;
}
@media (max-width: 992px) {
  .left-checkout {
    padding: 0px 0px 30px 0px;
  }
}

.btn-left-checkout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.btn-left-checkout__adres {
  font-size: 16px;
  color: #282828;
  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;
  border: 2px solid #282828;
  border-radius: 10px;
  height: 60px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-left-checkout__adres input {
  position: absolute;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.btn-left-checkout__adres.active {
  background: #282828;
  color: #fff;
}
@media (any-hover: hover) {
  .btn-left-checkout__adres:hover {
    background: #282828;
    color: #fff;
  }
}
.btn-left-checkout__pickup {
  font-size: 16px;
  color: #282828;
  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;
  border: 2px solid #282828;
  border-radius: 10px;
  height: 60px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-left-checkout__pickup input {
  position: absolute;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.btn-left-checkout__pickup.active {
  background: #282828;
  color: #fff;
}
@media (any-hover: hover) {
  .btn-left-checkout__pickup:hover {
    background: #282828;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .btn-left-checkout {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.item-left-checkout:not(:last-child) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 50px 0px;
}
@media (max-width: 992px) {
  .item-left-checkout:not(:last-child) {
    padding: 20px 0px;
  }
}
.item-left-checkout:last-child {
  padding: 50px 0px 0px 0px;
}
@media (max-width: 992px) {
  .item-left-checkout:last-child {
    padding: 20px 0px 0px 0px;
  }
}
.item-left-checkout__title {
  font-size: 20px;
  line-height: 32px;
  color: #313131;
  margin: 0px 0px 10px 0px;
}
.item-left-checkout__two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .item-left-checkout__two {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.item-left-checkout__three {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 100px;
  grid-template-columns: 1fr 100px 100px;
  gap: 20px;
}
@media (max-width: 767px) {
  .item-left-checkout__three {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.item-left-checkout__select {
  width: 375px;
}
.item-left-checkout__select.nice-select {
  background: #F6F6F6;
  border: none;
  padding: 0 20px;
  border-radius: 10px;
  display: block;
  height: 55px;
  line-height: 55px;
  float: unset;
  font-family: "Inter";
  font-size: 14px;
  color: #282828;
}
.item-left-checkout__select.nice-select::after {
  border-color: #282828;
}
.item-left-checkout__select.nice-select .list {
  width: 100%;
  min-width: fit-content;
}
.item-left-checkout__select.nice-select .current {
  font-family: "Inter";
  font-size: 14px;
  color: #A2A2A2;
}
@media (max-width: 767px) {
  .item-left-checkout__select.nice-select {
    height: 45px;
    line-height: 45px;
    width: 100%;
  }
}
.item-left-checkout__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.item-left-checkout__content input {
  position: absolute;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.item-left-checkout__content input:checked + label::before {
  background: url("../img/icons/check.svg") center center no-repeat #000;
}
.item-left-checkout__content input + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 84px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 15px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  background: #F6F6F6;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  padding: 25px;
}
/*.item-left-checkout__content input + label::before {
  content: "";
  width: 34px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 34px;
  flex: 0 0 34px;
  height: 34px;
  display: block;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  margin: 0px 12px 0px 0px;
}*/
@media (max-width: 767px) {
  .item-left-checkout__content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.item-left-checkout-input input {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  color: #282828;
  padding: 0 20px;
  height: 55px;
  background: #F6F6F6;
  border: none;
  outline: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
}
.item-left-checkout-input input::-webkit-input-placeholder {
  color: #A2A2A2;
}
.item-left-checkout-input input::-moz-placeholder {
  color: #A2A2A2;
}
.item-left-checkout-input input:-ms-input-placeholder {
  color: #A2A2A2;
}
.item-left-checkout-input input::-ms-input-placeholder {
  color: #A2A2A2;
}
.item-left-checkout-input input::placeholder {
  color: #A2A2A2;
}
.item-left-checkout-input label {
  display: none;
}

.input-error-message {
  display: none;
}

.map-left-checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map-left-checkout__adress {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 41%;
  flex: 0 1 41%;
  padding: 0px 20px 0px 0px;
}
@media (max-width: 1439px) {
  .map-left-checkout__adress {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (max-width: 1024px) {
  .map-left-checkout__adress {
    padding: 0;
  }
}
.map-left-checkout__map {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 59%;
  flex: 0 1 59%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}
.map-left-checkout__map .ymaps-2-1-79-map {
  width: 100% !important;
}
@media (max-width: 1439px) {
  .map-left-checkout__map {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 20px 0px 0px 0px;
  }
}
@media (max-width: 1439px) {
  .map-left-checkout {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.adress-left-map__item {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 40px 20px 40px 55px;
  cursor: pointer;
  position: relative;
}
.adress-left-map__item input {
  position: absolute;
  opacity: 0;
  overflow: hidden;
}
.adress-left-map__item input:checked + label::before {
  background: url("../img/icons/check.svg") center center no-repeat #000;
}
.adress-left-map__item input + label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.adress-left-map__item input + label::before {
  content: "";
  width: 25px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
  height: 25px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  display: block;
  position: absolute;
  left: 20px;
  top: 40px;
}
.adress-left-map__item:not(:last-child) {
  margin: 0px 0px 20px 0px;
}
.adress-left-map__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.adress-left-map__link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  display: block;
  margin: 3px 0px 0px 0px;
}

.right-checkout {
  background: #FFFFFF;
  padding: 0px 0px 50px 70px;
  position: sticky;
  top: 115px;
}
.right-checkout::before {
  content: "";
  width: calc(100% + 40px);
  height: 200%;
  position: absolute;
  top: -80px;
  right: -36px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  z-index: 0;
}
@media (max-width: 1250px) {
  .right-checkout::before {
    content: none;
  }
}
.right-checkout__top {
  position: relative;
  z-index: 1;
}
.right-checkout__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .right-checkout__titles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.right-checkout__title {
  font-size: 32px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.right-checkout__count {
  font-size: 32px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ED1C24;
}
.right-checkout__content {
  position: relative;
  z-index: 1;
  margin: 0px 0px 40px 0px;
}
.right-checkout__item:not(:last-child) {
  margin: 0px 0px 10px 0px;
}
.right-checkout__bottom {
  position: relative;
  z-index: 1;
}
@media (max-width: 1750px) {
  .right-checkout {
    padding: 0px 0px 50px 40px;
  }
}
@media (max-width: 1250px) {
  .right-checkout {
    padding: 30px 20px;
    border-radius: 20px;
    position: static;
  }
}
@media (max-width: 767px) {
  .right-checkout {
    padding: 20px 10px;
  }
}

.bottom-right-checkout__info {
  margin: 0px 0px 20px 0px;
}
.bottom-right-checkout__pay {
  font-size: 16px;
  color: #FFFFFF;
  background: #282828;
  border-radius: 10px;
  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;
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
}
@media (any-hover: hover) {
  .bottom-right-checkout__pay:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .bottom-right-checkout__pay {
    height: 55px;
  }
}
.bottom-right-checkout__info-text {
  font-family: "Inter";
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  color: #282828;
  border: 2px dashed #282828;
  border-radius: 10px;
  opacity: 0.7;
  padding: 10px 15px 10px 60px;
  margin: 20px 0px 0px 0px;
}
.bottom-right-checkout__info-text b {
  font-weight: 600;
}
.bottom-right-checkout__info-text p {
  margin: 0;
}
.bottom-right-checkout__info-text p:not(:last-child) {
  margin: 0px 0px 5px 0px;
}
@media (max-width: 767px) {
  .bottom-right-checkout__info-text {
    padding: 8px 10px;
    margin: 10px 0px 0px 0px;
  }
}

.contacts-page {
  padding: 20px 0 50px 0;
}
.contacts-page__title {
  margin: 0px 0px 50px 0px;
}
.contacts-page__content {
  position: relative;
}
.baloon__wrapper {
  padding: 10px;
}
.baloon__close {
  display: none;
}
.baloon__item p {
  margin: 0;
}
.baloon__item:not(:last-child) {
  margin: 0px 0px 15px 0px;
}
.baloon__item a {
  display: block;
}
.baloon__text-content {
  padding: 20px;
}
.baloon__img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

.map-title {
  font-family: "Intro";
  font-weight: 400;
  font-size: 22px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  margin: 0px 0px 15px 0px;
}

.map-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
.map-item__phones a {
  display: block;
  color: #282828;
}
.map-item img {
  max-width: 20px;
  margin: 0px 15px 0px 0px;
}

.ymaps-2-1-79-balloon__content {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  min-height: 428px !important;
}
.ymaps-2-1-79-balloon__content ymaps {
  height: 100% !important;
}

.ymaps-2-1-79-balloon__close {
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border-radius: 50%;
  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;
  margin-bottom: -42px !important;
  top: 12px;
  right: 12px;
}
.ymaps-2-1-79-balloon__close .ymaps-2-1-79-balloon__close-button {
  width: 24px;
  height: 24px;
  margin: 0;
  background: url("../img/icons/close-map.svg") center center no-repeat;
  opacity: 1;
}

.ymaps-2-1-79-balloon__tail {
  display: none !important;
}

.ymaps-2-1-79-balloon {
  margin-left: 140px;
  margin-top: 200px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.single-page {
  padding: 30px 0px 120px 0px;
}
.single-page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.single-page__row .single-page__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 66%;
  flex: 0 1 66%;
  width: 66%;
}
@media (max-width: 992px) {
  .single-page__row .single-page__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .single-page__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.single-page__content {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #282828;
}
.single-page__content h2, .single-page__content h3, .single-page__content h4, .single-page__content h5, .single-page__content h6 {
  font-family: "Intro";
  line-height: 1;
}
.single-page__content h2:not(:last-child), .single-page__content h3:not(:last-child), .single-page__content h4:not(:last-child), .single-page__content h5:not(:last-child), .single-page__content h6:not(:last-child) {
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .single-page__content h2:not(:last-child), .single-page__content h3:not(:last-child), .single-page__content h4:not(:last-child), .single-page__content h5:not(:last-child), .single-page__content h6:not(:last-child) {
    margin: 0px 0px 20px 0px;
  }
}
.single-page__content h2 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .single-page__content h2 {
    font-size: 28px;
  }
}
.single-page__content h3 {
  font-size: 26px;
}
@media (max-width: 576px) {
  .single-page__content h3 {
    font-size: 24px;
  }
}
.single-page__content h4 {
  font-size: 22px;
}
.single-page__content h5 {
  font-size: 20px;
}
.single-page__content h6 {
  font-size: 18px;
}
.single-page__content p:not(:last-child) {
  margin: 0px 0px 40px 0px;
}
@media (max-width: 767px) {
  .single-page__content p:not(:last-child) {
    margin: 0px 0px 20px 0px;
  }
}
.single-page__content hr {
  margin: 60px 0px;
  border-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .single-page__content hr {
    margin: 30px 0px 30px 0px;
  }
}
.single-page__content blockquote {
  font-family: "Intro";
  font-size: 20px;
  line-height: 28px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  background: #E47004;
  border-radius: 20px;
  padding: 33px 7px 33px 41px;
  margin: 0;
  position: relative;
}
.single-page__content blockquote p {
  z-index: 1;
  margin: 0;
  position: relative;
}
.single-page__content blockquote::before {
  content: "";
  width: 110px;
  height: 72px;
  position: absolute;
  left: 19px;
  top: 0;
  background: url("../img/icons/blockquate.svg") 0 0 no-repeat;
}
@media (max-width: 767px) {
  .single-page__content blockquote {
    font-size: 18px;
    line-height: 24px;
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .single-page__content {
    line-height: 24px;
  }
}
.single-page__title {
  font-family: "Intro";
  margin: 0px 0px 50px 0px;
}
@media (max-width: 767px) {
  .single-page__title {
    margin: 0px 0px 20px 0px;
  }
}
.single-page__slider {
  position: relative;
  margin: 0px 0px 30px 0px;
}
.single-page__slider .swiper-pagination {
  position: absolute;
  height: 10px;
  left: 40px;
  bottom: 40px;
  display: inline-block;
}
.single-page__slider .swiper-pagination .swiper-pagination-bullet {
  background: #FFFFFF;
  opacity: 0.3;
  display: inline-block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.single-page__slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin: 0px 10px 0px 0px;
}
@media (any-hover: hover) {
  .single-page__slider .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 1;
  }
}
.single-page__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 768px) {
  .single-page__slider .swiper-pagination {
    left: 25px;
    bottom: 25px;
  }
}
.single-page__slider + p {
  font-size: 14px;
  opacity: 0.6;
}
.single-page__slider + p + hr {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .single-page__slider + p + hr {
    margin-top: 30px;
  }
}
.single-page__slide {
  border-radius: 30px;
  overflow: hidden;
}
.single-page__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.single-page__gallery a {
  background: #EDEDED;
  border-radius: 30px;
  display: block;
  overflow: hidden;
  position: relative;
  height: 250px;
}
.single-page__gallery a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: url("../img/icons/search-big.svg") center center no-repeat #E47004;
  opacity: 0;
  border-radius: 30px;
  z-index: 1;
  font-size: 80px;
  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;
  color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single-page__gallery a img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (any-hover: hover) {
  .single-page__gallery a:hover::before {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .single-page__gallery a {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .single-page__gallery a {
    height: 150px;
  }
}
.single-page__gallery:not(:last-child) {
  margin: 0px 0px 60px 0px;
}
@media (max-width: 767px) {
  .single-page__gallery:not(:last-child) {
    margin: 0px 0px 30px 0px;
  }
}
@media (max-width: 1024px) {
  .single-page__gallery {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .single-page__gallery {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.single-page__sidebar {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 32.2%;
  flex: 0 1 32.2%;
  width: 32.2%;
}
@media (max-width: 1800px) {
  .single-page__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
    width: 30%;
  }
}
@media (max-width: 992px) {
  .single-page__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%;
  }
}

.sidebar {
  position: relative;
  padding: 30px 0px 50px 125px;
}
.sidebar::before {
  content: "";
  width: calc(100% + 40px);
  height: 110%;
  position: fixed;
  max-width: 475px;
  top: -80px;
  right: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  z-index: 0;
  
  display: none;
}
@media (max-width: 1800px) {
  .sidebar::before {
    max-width: 440px;
  }
}
@media (max-width: 1700px) {
  .sidebar::before {
    max-width: 400px;
  }
}
@media (max-width: 1500px) {
  .sidebar::before {
    max-width: 345px;
  }
}
@media (max-width: 1350px) {
  .sidebar::before {
    max-width: 31%;
  }
}
@media (max-width: 992px) {
  .sidebar::before {
    content: none;
  }
}
.sidebar__nav {
  position: sticky;
  top: 170px;
}
@media (max-width: 1800px) {
  .sidebar {
    padding: 30px 0px 50px 40px;
  }
}
@media (max-width: 1700px) {
  .sidebar {
    padding: 30px 0px 30px 20px;
  }
}
@media (max-width: 1250px) {
  .sidebar {
    padding: 30px 0px 20px 20px;
  }
}
@media (max-width: 992px) {
  .sidebar {
    border-radius: 20px;
    position: static;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    padding: 20px 10px;
  }
}

.nav-sidebar__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-sidebar__list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-sidebar__list li a {
  display: block;
  font-size: 20px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  padding: 36px 20px;
  position: relative;
}
.nav-sidebar__list li a::before {
  content: "";
  width: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5px;
  flex: 0 0 5px;
  height: 5px;
  background: #ED1C24;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .nav-sidebar__list li a {
    font-size: 18px;
    padding: 16px;
  }
}
@media (any-hover: hover) {
  .nav-sidebar__list li a:hover {
    opacity: 0.6;
  }
}

.sales-page {
  padding: 0px 0px 120px 0px;
}
.sales-page__title {
  margin: 0px 0px 40px 0px;
}
@media (max-width: 1200px) {
  .sales-page__title {
    margin: 0px 0px 20px 0px;
  }
}
.sales-page__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1500px) {
  .sales-page__content {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .sales-page__content {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .sales-page__content {
    gap: 10px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.sales-page__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  height: 600px;
}
.sales-page__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .sales-page__item {
    height: 480px;
  }
}
@media (max-width: 1200px) {
  .sales-page__item {
    height: 420px;
  }
}
@media (max-width: 992px) {
  .sales-page__item {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .sales-page__item {
    height: 300px;
  }
}

.delivery-page {
  padding: 0px 0px 70px 0px;
}
.delivery-page__title {
  margin: 0px 0px 60px 0px;
}
@media (max-width: 1500px) {
  .delivery-page__title {
    margin: 0px 0px 40px 0px;
  }
}
@media (max-width: 1200px) {
  .delivery-page__title {
    margin: 0px 0px 20px 0px;
  }
}
.delivery-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1500px) {
  .delivery-page__content {
    gap: 20px;
  }
}
@media (max-width: 1250px) {
  .delivery-page__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .delivery-page {
    padding: 0;
  }
}

.info-delivery {
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
  max-width: 350px;
}
@media (max-width: 1600px) {
  .info-delivery {
    padding: 25px;
    max-width: 320px;
  }
}
@media (max-width: 1250px) {
  .info-delivery {
    max-width: unset;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 25px;
  }
}
@media (max-width: 767px) {
  .info-delivery {
    display: block;
    padding: 5px 15px;
  }
}

.item-delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.item-delivery:first-child {
  padding-top: 0;
}
@media (max-width: 1250px) {
  .item-delivery:first-child {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .item-delivery:first-child {
    padding: 10px 0px 0px 0px;
  }
}
.item-delivery:last-child {
  border: none;
  padding-bottom: 0;
}
@media (max-width: 1250px) {
  .item-delivery:last-child {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .item-delivery:last-child {
    padding: 0px 0px 10px 0px;
  }
}
.item-delivery__img {
  margin: 0px 15px 0px 0px;
  width: 47px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 47px;
  flex: 0 0 47px;
}
.item-delivery__img img {
  width: 100%;
}
@media (max-width: 992px) {
  .item-delivery__img {
    width: 35px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
  }
}
.item-delivery__text {
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  padding: 5px 0px 0px 0px;
}
.item-delivery__text span {
  font-family: "Intro";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  display: block;
  margin: 3px 0px 0px 0px;
}
@media (max-width: 992px) {
  .item-delivery__text span {
    font-size: 16px;
    line-height: 22px;
  }
}
.item-delivery__text p {
  font-family: "Inter";
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  opacity: 0.5;
  margin: 3px 0px 0px 0px;
}
@media (max-width: 1250px) {
  .item-delivery__text p {
    display: none;
  }
}
@media (max-width: 992px) {
  .item-delivery__text {
    padding: 0;
  }
}
@media (max-width: 1250px) {
  .item-delivery {
    border: none;
  }
}
@media (max-width: 767px) {
  .item-delivery {
    padding: 10px 0;
  }
}

.pay-info {
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
}
.pay-info__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ed1c24;
  margin: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .pay-info__title {
    font-size: 20px;
    margin: 0px 0px 20px 0px;
  }
}
.pay-info table {
  border-collapse: collapse;
}
.pay-info table thead tr {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}
.pay-info table thead tr th {
  font-family: "Inter";
  font-weight: 800;
  font-size: 16px;
  line-height: 17px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  text-align: left;
  white-space: nowrap;
  padding: 8px 40px 23px 40px;
}
.pay-info table thead tr th:first-child {
  padding-left: 0;
  border-right: 1px dotted rgba(0, 0, 0, 0.2);
}
.pay-info table thead tr th:last-child {
  padding-right: 0;
  text-align: right;
  border-left: 1px dotted rgba(0, 0, 0, 0.2);
}
@media (max-width: 660px) {
  .pay-info table thead tr th:not(:first-child) {
    white-space: normal;
  }
}
@media (max-width: 1500px) {
  .pay-info table thead tr th {
    padding: 8px 30px 23px 30px;
  }
}
@media (max-width: 992px) {
  .pay-info table thead tr th {
    font-size: 14px;
    line-height: 1;
    padding: 8px 20px 15px 20px;
  }
}
@media (max-width: 660px) {
  .pay-info table thead tr th {
    font-size: 12px;
    padding: 8px 10px 10px 10px;
  }
}
@media (max-width: 400px) {
  .pay-info table thead tr th {
    font-size: 11px;
  }
}
.pay-info table tbody tr {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}
.pay-info table tbody tr td {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
  padding: 30px;
  text-align: right;
}
.pay-info table tbody tr td:first-child {
  padding-left: 0;
  text-align: left;
  border-right: 1px dotted rgba(0, 0, 0, 0.2);
}
.pay-info table tbody tr td:nth-child(2) {
  font-family: "Intro";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #282828;
}
@media (max-width: 992px) {
  .pay-info table tbody tr td:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 660px) {
  .pay-info table tbody tr td:nth-child(2) {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .pay-info table tbody tr td:nth-child(2) {
    font-size: 10px;
  }
}
.pay-info table tbody tr td:last-child {
  font-family: "Intro";
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #ed1c24;
  padding-right: 0;
  text-align: right;
  border-left: 1px dotted rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .pay-info table tbody tr td:last-child {
    font-size: 16px;
  }
}
@media (max-width: 660px) {
  .pay-info table tbody tr td:last-child {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .pay-info table tbody tr td:last-child {
    font-size: 10px;
  }
}
@media (max-width: 992px) {
  .pay-info table tbody tr td {
    padding: 20px;
    font-size: 14px;
    line-height: 1;
  }
}
@media (max-width: 660px) {
  .pay-info table tbody tr td {
    padding: 10px;
    font-size: 12px;
  }
}
@media (max-width: 1600px) {
  .pay-info {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .pay-info {
    padding: 15px;
  }
}

.page__body {
  background: #f8f8f8;
}

.wrapper {
  width: 100%;
}

.wrapper__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.wrapper-main {
  width: calc(100% - 350px);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 350px);
  flex: 0 1 calc(100% - 350px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  padding: 170px 0px 0px 0px;
}
@media (max-width: 1500px) {
  .wrapper-main {
    width: calc(100% - 320px);
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 320px);
    flex: 0 1 calc(100% - 320px);
  }
}
@media (max-width: 1350px) {
  .wrapper-main {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding: 120px 0px 0px 0px;
  }
}

/* Селект района */

.district-select {
    margin-bottom: 20px;
    width: 100%;
}


/* Правки на странице контактов */
.item-banners-adress__details{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.item-banners-adress__details::before{
    content: url('../img/icons/time-line.svg');
    position: absolute;
    
    top: 0;
    left: 0;
}

.item-banner-adress__details-label{
    color: #282828;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1; /* 142.857% */
    
    margin-bottom: 5px;
}

.item-banner-adress__details-value{
    color: #282828;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.item-banners-adress__adress{
    margin-bottom: 15px;
}

.item-banners-adress__phones{
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    position: relative;
    padding-left: 30px;
}

.item-banners-adress__phones::before{
    content: url('../img/icons/phone-line.svg');
    position: absolute;
    
    top: 0;
    left: 0;
}

.item-banners-adress__phone{
    color: #282828;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.item-banners-adress__address{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.item-banners-adress__address::before{
    content: url('../img/icons/map-pin-line.svg');
    position: absolute;
    
    top: 0;
    left: 0;
}

.balloon__img{
    border-radius: 5px;
}


.item-catalog{
    position: relative;
}

.item-catalog__label{
    position: absolute;
    left: -5px;
    top: 30px;
    
    color: #FFF;
    font-family: "Intro ";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

@media(max-width: 1500px) {
    .info-map-area{
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .banners-adress__content{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px
    }
}

@media(max-width: 1024px) {
    .banners-adress__content{
        grid-template-columns: repeat(1, 1fr);
    }
}
/*  */

/* правки по мобильному меню*/
@media(max-width: 768px) {
    .main-aside{
        max-height: 500px;
        overflow-y: auto;
    }
}

@media(max-width: 576px) {
    .main-aside{
        max-height: 450px;
    }
}

@media(max-width: 475px) {
    .main-aside{
        max-height: 400px;
    }
    
    .left-menu__list{
        align-items: unset;
    }
    
    .left-menu__list li a{
        width: 100% !important;
    }
}

@media(max-width: 375px) {
    .main-aside{
        max-height: 300px;
    }
}
.item-catalog__text-small{
    display: flex;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    color: #282828;
    opacity: 0.6;
}

/*  */
