body {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #FF9500;
}
a:hover {
  color: #FF9B00;
  text-decoration: none;
}

.app-link-1 {
  color: #3A3A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-flex;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}
.app-link-1._with-icon {
  gap: 10px;
}
@media (hover: hover) {
  .app-link-1:hover {
    color: #FF9B00;
    text-decoration: none;
  }
}

.app-button {
  appearance: none;
  -webkit-appearance: none;
}
.app-button._v1 {
  display: flex;
  padding: 10px 25px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: linear-gradient(180deg, #FFCD52 0%, #F1AC02 100%);
  color: #3A3A3A;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .app-button._v1:hover {
    background: linear-gradient(0deg, #FFCD52 0%, #FFCD52 100%);
  }
}
@media (max-width: 460px) {
  .app-button._v1 {
    font-size: 18px;
    padding: 10px 15px;
  }
}
.app-button._v1.button25 {
  color: #3A3A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  height: 40px;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
}
.app-button._v1-sm {
  font-size: 14px !important;
  padding: 3px 10px !important;
  height: 34px !important;
}
.app-button._v2 {
  display: flex;
  padding: 5px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #3A3A3A;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 10px;
  border: 1px solid #3A3A3A;
  background: rgba(240, 175, 0, 0);
}
.app-button._v2._active {
  background: #F0AF00;
  border-color: #F0AF00;
}
.app-button._v2-sm {
  font-size: 12px;
  padding: 3px 10px;
}
.app-button._w-100 {
  width: 100%;
}
.app-button:hover, .app-button:focus, .app-button:active, .app-button:focus-visible, .app-button:active:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
@media (hover: hover) {
  .app-button:hover {
    text-decoration: none;
  }
}

.control-label {
  color: #3A3A3A;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.app-custom-select,
.app-custom-select.form-control {
  border-radius: 10px;
  background: #F2F2F2;
  border-color: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("/img/v2/icons/angle-down-solid.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.app-custom-select._sm,
.app-custom-select.form-control._sm {
  padding: 3px 40px 3px 10px;
  font-size: 12px;
  height: 30px;
  background-position: right 8px center;
}
.app-custom-select._w,
.app-custom-select.form-control._w {
  width: 120px;
}

.checkbox {
  display: flex;
  align-items: center;
  margin: 0;
}
.checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 21px;
}
.checkbox label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/img/v2/icons/checkbox-normal-icon.svg");
  transition: all 0.3s ease;
}
.checkbox label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 17px;
  height: 17px;
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/img/v2/icons/checkbox-active-icon.svg");
  transition: opacity 0.2s ease;
}
.checkbox:has(input:checked) label::before {
  opacity: 0;
}
.checkbox:has(input:checked) label::after {
  opacity: 1;
}
.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}

.mw-100 {
  width: 100px;
}

.mw-150 {
  width: 150px;
}

.app-section {
  max-width: 1280px;
  width: 100%;
  position: relative;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .app-section {
    padding: 0 15px;
  }
}

.app-h1,
.page-header {
  color: #3A3A3A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.app-h1._thin,
.page-header._thin {
  font-weight: 500;
}
.app-h1.page-header,
.page-header.page-header {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .app-h1,
  .page-header {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .app-h1,
  .page-header {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .app-h1,
  .page-header {
    font-size: 20px;
  }
}

.app-h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.app-h2._thin {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .app-h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .app-h2 {
    font-size: 20px;
  }
}
@media (max-width: 540px) {
  .app-h2 {
    font-size: 20px;
  }
}

._mb-gap {
  margin-bottom: 30px !important;
}

._mb-gap-sm {
  margin-bottom: 20px !important;
}

._mb-gap-xs {
  margin-bottom: 10px !important;
}

._d-grid {
  display: grid;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 42px;
  color: #F0AF00;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  color: #E3E3E3;
  opacity: 1;
}
@media (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 32px;
  }
}

.app-custom-select.quantity-amount {
  width: 82px;
}

.badge.badge_shina150 {
  background: #2A3035;
}

.color-black {
  color: #000000 !important;
}

@media (hover: hover) {
  .no-hover {
    text-decoration: none !important;
  }
}

.present .present-info {
  display: none;
}

.present-description__item__h {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.scrollToTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99;
  opacity: 0.9;
}
@media (max-width: 840px) {
  .scrollToTop {
    bottom: 60px;
  }
  .scrollToTop img {
    width: 40px;
  }
}
@media (max-width: 460px) {
  .scrollToTop {
    bottom: 80px;
  }
}

.about-main-box {
  display: grid;
  grid-template-columns: 388px 1fr 1fr;
  padding: 0;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.about-main-box img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .about-main-box {
    grid-template-columns: 350px 1fr 350px;
  }
}
@media (max-width: 1100px) {
  .about-main-box {
    grid-template-columns: 300px 1fr 350px;
  }
}
@media (max-width: 1050px) {
  .about-main-box {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 640px) {
  .about-main-box {
    grid-template-columns: 1fr;
  }
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex: 1 0 0;
}
@media (max-width: 1050px) {
  .benefits {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .benefits {
    grid-column: 1;
  }
}
@media (max-width: 560px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
@media (max-width: 860px) {
  .benefit-item {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
    justify-content: center;
    margin-bottom: auto;
  }
}
@media (max-width: 560px) {
  .benefit-item {
    grid-template-columns: 100px 1fr;
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .benefit-image {
    width: 100px;
    justify-self: center;
  }
}

.benefit-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

.benefit-title {
  color: #3A3A3A;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media (max-width: 860px) {
  .benefit-title {
    font-size: 16px;
    align-self: center;
  }
}
@media (max-width: 560px) {
  .benefit-title {
    align-self: start;
  }
}

.banners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
.banners-inner .banners-content {
  flex-grow: 1;
  border-radius: 20px;
  height: 100%;
}
.banners-inner .banners-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .banners-inner {
    grid-template-columns: 1fr;
  }
}

.brands-list {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}

.fs-12px {
  font-size: 12px;
}

.fs-14px {
  font-size: 14px;
}

.fs-16px {
  font-size: 16px;
}

.fs-20px {
  font-size: 20px;
}

.link {
  color: #FF9500;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.app-hr {
  border-top: 0;
  border-bottom: 1px solid #505a62;
  display: block;
  width: 100%;
  margin: 0;
}

body:not(.Pages.home) .app-content-wrapper {
  padding-top: 30px;
}

.form-control {
  background: #F2F2F2;
  border-radius: 10px;
  border: 0;
  box-shadow: none;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #FF9500;
  border-color: #FF9500;
}

.pagination > li > a,
.pagination > li > span {
  color: #FF9500;
}

.pagination > li > a, .pagination > li > span {
  float: none;
}

.pagination > li.ellipsis {
  padding: 6px 12px;
}

@media (min-width: 1024px) {
  ._d-before-1024 {
    display: none !important;
  }
}

.alert-box,
.alert-box-in-product,
blockquote {
  display: flex;
  padding: 10px 20px;
  justify-content: start;
  align-items: center;
  gap: 10px;
  border-left: 5px solid #70BEFF;
  background: #FBE6C6;
  font-size: 16px;
}
.alert-box p:last-child,
.alert-box-in-product p:last-child,
blockquote p:last-child {
  margin-bottom: 0;
}

.module-breadcrumbs .breadcrumbs-trail {
  list-style-type: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 30px 0;
}
.module-breadcrumbs .breadcrumbs-trail li {
  margin: 0;
  padding: 0;
}

.pull-right {
  margin: 0 0 15px 15px;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
}

.list-with-dots {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  max-width: 500px;
}
.list-with-dots li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.list-with-dots li .separator {
  flex-grow: 1;
  border-bottom: 1px dashed #9E9E9E;
}

.contacts-item__img {
  margin-bottom: 15px;
}
.contacts-item__img img {
  width: 100%;
  height: auto;
}

.stores {
  margin-bottom: 20px;
}

.content-table {
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 12px;
}
.content-table td, .content-table th {
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #F0F0F0;
}
.content-table td:first-child {
  text-align: left;
}

.table-responsive-wrapper {
  overflow-x: auto;
  max-width: 100%;
  clear: both;
}

.clear-both:after {
  content: "";
  clear: both;
  display: block;
}

.news_date_time_detail {
  background: #F4F4F4;
  padding: 3px 5px;
  border-radius: 3px;
  margin: 0 auto 20px 0;
  display: inline-block;
}

.filter-tabs_shinas_in-main .autoSearchForm .filter-tab-submit {
  display: none;
}

.main-podbor-link {
  position: absolute;
  right: 20px;
  bottom: 17px;
}

.app-header-top-wrapper {
  background: rgba(116, 133, 147, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 840px) {
  .app-header-top-wrapper {
    background: rgb(228, 232, 234);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.0784313725);
  }
}

.app-header-top {
  display: flex;
  padding: 10px 30px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  max-width: 1280px;
  width: 100%;
}
.app-header-top__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 460px) {
  .app-header-top__left {
    gap: 15px;
  }
}
.app-header-top__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 840px) {
  .app-header-top__right {
    position: fixed;
    background: rgb(228, 232, 234);
    backdrop-filter: blur(5px);
    z-index: 99;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px 20px;
    justify-content: center;
    box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.0784313725);
  }
}
@media (max-width: 460px) {
  .app-header-top__right .app-link-1 {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 12px;
  }
}
.app-header-top__hamburguer {
  display: none;
}
@media (max-width: 840px) {
  .app-header-top__hamburguer {
    display: flex;
  }
}
@media (max-width: 768px) {
  .app-header-top {
    padding: 10px 15px;
  }
}
@media (max-width: 460px) {
  .app-header-top {
    padding: 10px 10px;
  }
  .app-header-top .app-link-1 {
    font-size: 14px;
  }
  .app-header-top .app-link-1 img {
    height: 23px;
  }
}

.app-header-middle-wrapper {
  background: #2A3035;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 460px) {
  .app-header-middle-wrapper {
    padding: 10px 0;
  }
}

.app-header-middle {
  display: flex;
  padding: 0 30px;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  max-width: 1280px;
  width: 100%;
  color: #F4FEFF;
}
.app-header-middle__logo {
  margin-right: 30px;
}
.app-header-middle__logo img {
  display: block;
  width: 232px;
  height: auto;
}
@media (max-width: 950px) {
  .app-header-middle__logo img {
    width: 180px;
  }
}
@media (max-width: 460px) {
  .app-header-middle__logo img {
    width: 150px;
  }
}
@media (max-width: 1260px) {
  .app-header-middle__logo {
    margin-right: 0;
  }
}
.app-header-middle .address {
  font-size: 16px;
}
@media (max-width: 900px) {
  .app-header-middle .address {
    font-size: 12px;
  }
}
.app-header-middle .border-wrapp {
  cursor: pointer;
  color: #F4FEFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .app-header-middle .border-wrapp:hover {
    color: #FF9B00;
    text-decoration: none;
  }
}
@media (max-width: 900px) {
  .app-header-middle .border-wrapp {
    font-size: 18px;
  }
}
.app-header-middle__search {
  position: relative;
}
.app-header-middle__search .form-control._search {
  display: flex;
  padding: 0 15px;
  align-items: flex-start;
  min-width: 250px;
  border: none;
  border-radius: 15px;
  background: #F4FEFF;
}
.app-header-middle__search .form-control._search::placeholder {
  color: #2A3035;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  top: 1px;
}
@media (max-width: 740px) {
  .app-header-middle__search .form-control._search {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 1190px) {
  .app-header-middle__search {
    width: 100%;
  }
}
.app-header-middle__search img {
  position: absolute;
  display: block;
  top: 6px;
  right: 10px;
}
@media (max-width: 740px) {
  .app-header-middle__search {
    max-width: 250px;
  }
}
@media (max-width: 900px) {
  .app-header-middle__badge {
    font-size: 12px;
  }
}
@media (max-width: 1190px) {
  .app-header-middle {
    flex-wrap: wrap;
    gap: 10px 30px;
  }
}
@media (max-width: 768px) {
  .app-header-middle {
    padding: 0 15px;
  }
}
@media (max-width: 740px) {
  .app-header-middle {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
@media (max-width: 460px) {
  .app-header-middle {
    padding: 0 10px;
  }
}

.app-header-middle-phones-wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
}
@media (max-width: 1260px) {
  .app-header-middle-phones-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1190px) {
  .app-header-middle-phones-wrapper {
    margin-left: auto;
    flex-grow: 0;
    gap: 30px;
  }
}
@media (max-width: 740px) {
  .app-header-middle-phones-wrapper {
    display: none;
  }
}

.app-header-bottom-wrapper {
  background: #F8BB29;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.app-header-bottom-wrapper .app-top-menu {
  display: flex;
  height: 47px;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  max-width: 1280px;
  width: 100%;
}
.app-header-bottom-wrapper .app-top-menu__item {
  position: relative;
  height: 100%;
}
.app-header-bottom-wrapper .app-top-menu__item > a {
  display: flex;
  height: 100%;
  color: #3A3A3A;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: color 0.3s ease;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}
.app-header-bottom-wrapper .app-top-menu__item > a svg path {
  transition: fill 0.3s ease;
  color: #3A3A3A;
}
.app-header-bottom-wrapper .app-top-menu__item > a.cur {
  color: #ffffff;
  text-decoration: underline;
}
@media (hover: hover) {
  .app-header-bottom-wrapper .app-top-menu__item > a:hover {
    color: #ffffff;
    text-decoration: none;
  }
  .app-header-bottom-wrapper .app-top-menu__item > a:hover svg path {
    fill: #ffffff;
  }
}
@media (max-width: 960px) {
  .app-header-bottom-wrapper .app-top-menu__item > a {
    font-size: 16px;
  }
}
.app-header-bottom-wrapper .app-top-menu__item__subitems {
  display: none;
  position: absolute;
  top: 47px;
  left: 0;
  padding-top: 5px;
}
.app-header-bottom-wrapper .app-top-menu__item__subitems-inner {
  gap: 10px;
  display: grid;
  background: rgba(240, 175, 0, 0.95);
  padding: 28px 30px;
}
.app-header-bottom-wrapper .app-top-menu__item__subitems-inner a {
  display: inline-block;
  white-space: nowrap;
  color: #3A3A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .app-header-bottom-wrapper .app-top-menu__item__subitems-inner a:hover {
    color: #ffffff;
  }
}
@media (hover: hover) {
  .app-header-bottom-wrapper .app-top-menu__item:hover .app-top-menu__item__subitems {
    display: grid;
  }
}
@media (max-width: 840px) {
  .app-header-bottom-wrapper {
    display: none;
  }
}

.app-slider-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 892px) {
  .app-slider-wrapper {
    flex-direction: column;
  }
}

.app-slider {
  width: 100%;
}

.app-slider._main {
  --swiper-pagination-bullet-size: 20px;
  --swiper-pagination-bullet-inactive-color: #FCEFDC;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: #FFCD52;
  --swiper-pagination-bullet-opacity: 1;
  width: 100%;
}
.app-slider._main .swiper-slide {
  background-size: cover !important;
  display: flex;
  align-items: end;
  justify-content: end;
}
@media (max-width: 892px) {
  .app-slider._main .swiper-slide {
    height: 320px;
  }
}
.app-slider._main .app-slider__text {
  background: linear-gradient(180deg, #E3E3E3 0%, #EEA800 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: right;
  padding: 0 40px 40px 0;
}
.app-slider._main .app-slider__text p {
  padding: 0;
  margin: 0;
}
.app-slider._main .app-slider__text p:first-of-type {
  font-size: 50px;
  font-style: normal;
  font-weight: 200;
  line-height: 36px;
}
@media (max-width: 460px) {
  .app-slider._main .app-slider__text p:first-of-type {
    font-size: 30px;
    line-height: 30px;
  }
}
.app-slider._main .app-slider__text p:nth-of-type(2) {
  background: linear-gradient(180deg, #E3E3E3 0%, #EEA800 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 10px;
}
@media (max-width: 460px) {
  .app-slider._main .app-slider__text p:nth-of-type(2) {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
  }
}
.app-slider._main .app-slider__text p:nth-of-type(3) {
  background: var(--, linear-gradient(180deg, #FFCD52 0%, #F1AC02 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 36px;
}

.filter-tabs {
  min-width: 446px;
  background: #E3E3E3;
  display: flex;
  padding: 16px 20px 20px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  position: relative;
  height: 242px;
}
.filter-tabs__title {
  color: #3A3A3A;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.filter-tabs .filter-tab-submit {
  position: absolute;
  right: 23px;
  bottom: 18px;
}
.filter-tabs__icon {
  position: absolute;
  right: 30px;
  top: 20px;
  pointer-events: none;
}
.filter-tabs_disks {
  border-top: 3px solid #F2F2F2;
}
.filter-tabs .autoSearchFormSpecifications {
  display: none;
}
@media (max-width: 446px) {
  .filter-tabs {
    min-width: 300px;
    padding: 10px;
  }
  .filter-tabs .filter-tabs__icon {
    position: absolute;
    right: 0;
    top: 10px;
    transform: scale(0.7);
  }
  .filter-tabs .filter-tab-submit {
    right: 10px;
    bottom: 10px;
  }
  .filter-tabs .param-col-group {
    gap: 10px;
  }
  .filter-tabs .form-devider-front {
    font-size: 20px;
  }
}

.filter__nav-tab {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.filter__nav-tab__item.active .app-button._v2 {
  border-radius: 10px;
  background: #F0AF00;
  border-color: #F0AF00;
}

.param-col-group {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.param-col .form-group {
  margin: 0;
}

.form-devider-front {
  color: #3A3A3A;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.form-group.multicheckbox {
  display: grid;
  gap: 5px;
  margin-bottom: 0;
}

.seasons-checker._sm label {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.filter-panel form {
  display: grid;
  gap: 10px;
}

.app-products-slider {
  display: grid;
  gap: 20px;
}
.app-products-slider .swiper-button-prev {
  top: 0;
  right: 82px;
  left: auto;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .app-products-slider .swiper-button-prev {
    right: 50px;
  }
}
.app-products-slider .swiper-button-next {
  top: 0;
  right: 30px;
  left: auto;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .app-products-slider .swiper-button-next {
    right: 15px;
  }
}
.app-products-slider .app-h1 {
  padding-right: 120px;
}
@media (max-width: 1024px) {
  .app-products-slider .app-h1 {
    padding-right: 80px;
  }
}

.catalog-product {
  display: flex;
  width: 100%;
  max-width: 420px;
  height: 100%;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 0;
  border-radius: 15px;
  border: 1px solid #E3E3E3;
  background: rgba(244, 245, 246, 0);
  position: relative;
}
.catalog-product__img {
  width: 100%;
}
.catalog-product__img img {
  display: block;
  max-width: 100%;
  height: 170px;
  width: 100%;
  object-fit: contain;
}
.catalog-product.row {
  margin: 0;
}
.catalog-product.row:before, .catalog-product.row:after {
  display: none;
}
.catalog-product .col-sm-12 {
  margin: 0;
  padding: 0;
}
.catalog-product .product-label {
  position: absolute;
  top: 15px;
  z-index: 2;
  pointer-events: none;
}
.catalog-product .product-label_new, .catalog-product .product-label_hit {
  left: 15px;
}
.catalog-product .product-label .ribon-new {
  display: block;
  background: url("/img/v2/icons/badge-new.svg") no-repeat;
  width: 56px;
  height: 36px;
}
.catalog-product .product-label .ribon-hit {
  display: block;
  background: url("/img/v2/icons/badge-hit.svg") no-repeat;
  width: 56px;
  height: 36px;
}
.catalog-product .presents-box {
  position: absolute;
  top: 140px;
  left: 15px;
  width: auto;
}
.catalog-product .presents-box .present {
  display: flex;
  padding: 5px 7px;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .catalog-product .presents-box .present:hover {
    text-decoration: none;
    transform: scale(1.02);
  }
}
.catalog-product .catalog-product__name-stores {
  width: 100%;
  padding: 0;
  margin: 0;
}
.catalog-product .catalog-product__name__link {
  color: #3A3A3A;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  transition: 0.3s ease;
}
.catalog-product .catalog-product__name__link br {
  display: none;
}
@media (hover: hover) {
  .catalog-product .catalog-product__name__link:hover {
    text-decoration: none;
    color: #FF9B00;
  }
}
.catalog-product .catalog-product__razmer {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.catalog-product .catalog-product__razmer div {
  display: flex;
  padding: 3px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #F4F4F4;
}
.catalog-product .catalog-product__seazon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog-product .product-stores {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.catalog-product .product-stores p {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.catalog-product .product-stores p .label.label-primary {
  background: none;
  color: #3A3A3A;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  padding: 0;
}
.catalog-product .product-stores p a {
  cursor: pointer;
  color: #FF9500;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.catalog-product .catalog-product__store-summ {
  display: none;
}
.catalog-product .catalog-product__price {
  width: 100%;
  margin-top: auto;
}
.catalog-product .product-price-front {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #3A3A3A;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  justify-content: center;
}
.catalog-product .product-price-front-skidka__value {
  color: #616161;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
}
.catalog-product .product-price-front-skidka {
  display: inline-flex;
}
.catalog-product .catalog-product__tocart {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 8px;
}
.catalog-product .catalog-product__mincart-price {
  display: flex;
  gap: 5px;
  align-items: center;
}
.catalog-product .catalog-product__mincart-price .product-price-front_with-skidka {
  display: grid;
  gap: 5px;
  align-items: center;
}
.catalog-product .catalog-product__mincart-price .cart-item__amount-info {
  display: flex;
  gap: 5px;
  align-items: center;
}
.catalog-product .catalog-product__mincart-price .cart-item_multi-price {
  display: flex;
  gap: 5px;
  align-items: center;
}
.catalog-product._detail {
  height: auto;
}
.catalog-product._detail .product-price-front,
.catalog-product._detail .catalog-product__tocart {
  justify-content: start;
}
.catalog-product._detail .presents-box {
  position: static;
}
@media (max-width: 620px) {
  .catalog-product._detail {
    max-width: 100%;
    justify-self: center;
  }
}
@media (max-width: 620px) {
  .catalog-product {
    max-width: 320px;
    justify-self: center;
  }
}

.catalog-product__skidka-chooser {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.catalog-product__skidka-chooser .app-button._v2-sm {
  font-size: 11px;
  cursor: pointer;
}

.footer {
  background: #3A3A3A;
  color: #E3E3E3;
}
.footer .footer-inner {
  display: flex;
  padding: 30px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 30px;
}
.footer .footer-inner .info_wrapp {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex: 1 0 0;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .footer .footer-inner .info_wrapp {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
.footer .footer-inner .foo-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer-inner .foo-contact .title {
  font-size: 16px;
}
.footer .footer-inner .foo-contact .phone-block a {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer .footer-inner .foo-contact .email a {
  font-size: 16px;
}
@media (max-width: 560px) {
  .footer .footer-inner .foo-contact {
    align-items: center;
  }
}
.footer .footer-inner .work-time-wrapp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 560px) {
  .footer .footer-inner .work-time-wrapp {
    align-items: center;
  }
}
.footer .footer-inner .menu_wrapp {
  display: flex;
  flex-grow: 1;
  gap: 50px;
  justify-content: center;
}
.footer .footer-inner .menu_wrapp .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1180px) {
  .footer .footer-inner .menu_wrapp .menu:first-child {
    display: none;
  }
}
@media (max-width: 1024px) {
  .footer .footer-inner .menu_wrapp .menu:nth-child(2) {
    display: none;
  }
}
@media (max-width: 860px) {
  .footer .footer-inner .menu_wrapp .menu:nth-child(3) {
    display: none;
  }
}
.footer .footer-inner .dev_wrapp {
  display: grid;
  gap: 15px;
  justify-self: end;
  text-align: right;
}
.footer .footer-inner .dev_wrapp a.dev {
  margin-left: auto;
}
@media (max-width: 760px) {
  .footer .footer-inner .dev_wrapp a.dev {
    margin: 0;
  }
}
@media (max-width: 760px) {
  .footer .footer-inner .dev_wrapp {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 760px) {
  .footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .footer .footer-inner {
    gap: 10px;
  }
}
.footer .footer-bottom {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #F8BB29;
  color: #3A3A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .footer .footer-bottom {
    gap: 5px;
  }
}
@media (max-width: 840px) {
  .footer {
    margin-bottom: 45px;
  }
}

.hamburger {
  display: flex;
  z-index: 999999;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: #2A3035;
  padding: 50px 20px;
  color: #F4FEFF;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  transform: translateX(100vw);
  transition: transform 0.3s ease;
}
.hamburger._active {
  transform: translateX(0);
}
.hamburger .hamburger-phones {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hamburger .phone-block a {
  font-size: 20px;
}
.hamburger .hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hamburger .hamburger-menu a {
  font-size: 20px;
}
.hamburger .hamburger-closer {
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 40px;
}
.hamburger .hamburger-closer i {
  display: block;
  height: 40px;
  line-height: 1;
}
.hamburger .hamburger-submenu {
  display: flex;
  gap: 5px 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hamburger .hamburger-submenu a {
  font-size: 15px;
}

.app-catalog-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
}
@media (max-width: 1023px) {
  .app-catalog-wrapper {
    grid-template-columns: 1fr;
  }
}

.catalog-products {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.catalog-products-list_spisok .products-grid {
  display: grid;
  gap: 20px;
}
.catalog-products-list_spisok .catalog-product {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: auto auto auto auto auto 1fr;
}
.catalog-products-list_spisok .catalog-product .catalog-product__img {
  grid-column: 1/span 2;
  grid-row: 1/span 6;
}
.catalog-products-list_spisok .catalog-product .catalog-product__img img {
  height: 100px;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__img img {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__img {
    grid-column: 1/span 1;
    grid-row: 2/span 5;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__img {
    grid-column: 1/span 2;
    grid-row: 2/span 2;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__img._disk, .catalog-products-list_spisok .catalog-product .catalog-product__img._akkum {
    grid-row: 1/span 2;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__name-stores {
  grid-column: 3/span 3;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__name-stores {
    grid-column: 2/span 4;
    grid-row: 1/span 2;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__name-stores {
    grid-column: 3/span 8;
    grid-row: 1/span 1;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__name-stores .catalog-product__name__link {
    font-size: 14px;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__razmer {
  grid-column: 3/span 3;
  grid-row: 2/span 1;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__razmer {
    grid-column: 2/span 4;
    grid-row: 3/span 2;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__razmer {
    grid-column: 3/span 8;
    grid-row: 2/span 1;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__razmer._disk {
    grid-column: 1/span 5;
    grid-row: 3/span 3;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__razmer._disk {
    grid-column: 3/span 8;
    grid-row: 2/span 1;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__razmer._akkum {
    grid-column: 2/span 4;
    grid-row: 2/span 2;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__razmer._akkum {
    grid-column: 3/span 8;
    grid-row: 2/span 1;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__size {
  grid-column: 3/span 3;
  grid-row: 3/span 1;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__size {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__stores {
  grid-column: 6/span 2;
  grid-row: 1/span 6;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__stores {
    grid-column: 6/span 3;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__stores {
    grid-column: 1/span 10;
    grid-row: 4/span 1;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__stores._disk, .catalog-products-list_spisok .catalog-product .catalog-product__stores._akkum {
    grid-row: 1/span 3;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__stores._disk, .catalog-products-list_spisok .catalog-product .catalog-product__stores._akkum {
    grid-column: 1/span 10;
    grid-row: 4/span 1;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__tocart {
  grid-column: 8/span 3;
  grid-row: 4/span 3;
  justify-content: end;
  margin-bottom: auto;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__tocart {
    grid-column: 6/span 5;
    grid-row: 4/span 3;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__tocart {
    grid-column: 1/span 10;
    grid-row: 6/span 1;
    justify-content: start;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__tocart._disk, .catalog-products-list_spisok .catalog-product .catalog-product__tocart._akkum {
  grid-row: 3/span 4;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__tocart._disk, .catalog-products-list_spisok .catalog-product .catalog-product__tocart._akkum {
    grid-row: 4/span 3;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__tocart._disk, .catalog-products-list_spisok .catalog-product .catalog-product__tocart._akkum {
    grid-column: 1/span 10;
    grid-row: 6/span 1;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__price {
  grid-column: 9/span 2;
  grid-row: 1/span 3;
  margin-top: 0;
}
.catalog-products-list_spisok .catalog-product .catalog-product__price .product-price-front {
  display: grid;
  gap: 5px;
  justify-self: end;
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__price .product-price-front {
    display: flex;
    flex-wrap: wrap;
    justify-self: start;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__price .product-price-front-skidka {
  justify-self: end;
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__price {
    grid-column: 1/span 10;
    grid-row: 5/span 1;
  }
}
.catalog-products-list_spisok .catalog-product .presents-box {
  top: auto;
  left: 0;
  bottom: 0;
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .presents-box {
    position: static;
    grid-column: 3/span 8;
    grid-row: 3/span 1;
    margin-right: auto;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .presents-box .present {
    font-size: 11px;
    padding: 3px 5px;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .product-price-front {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .product-price-front-skidka__value {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .product-label_new span,
  .catalog-products-list_spisok .catalog-product .product-label_hit span {
    width: 30px;
    height: 20px;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product .product-label_new,
  .catalog-products-list_spisok .catalog-product .product-label_hit {
    top: -10px;
    left: -5px;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product .catalog-product__seazon {
    gap: 5px;
  }
}
.catalog-products-list_spisok .catalog-product .catalog-product__mincart-price {
  grid-column: 8/span 3;
  grid-row: 1/span 6;
}
@media (max-width: 767px) {
  .catalog-products-list_spisok .catalog-product {
    padding: 10px;
  }
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product {
    gap: 5px;
  }
}
.catalog-products-list_spisok .catalog-product__skidka-chooser {
  flex-direction: column;
  align-items: end;
}
@media (max-width: 540px) {
  .catalog-products-list_spisok .catalog-product__skidka-chooser {
    justify-content: start;
    flex-direction: row;
    margin-bottom: 10px;
  }
}

@media (max-width: 1023px) {
  .catalog-products-list_spisok.catalog-products-list_spisok_cart .catalog-product__stores {
    grid-column: 3/span 3;
    grid-row: 3/span 1;
  }
  .catalog-products-list_spisok.catalog-products-list_spisok_cart .catalog-product__mincart-price {
    grid-column: 6/span 5;
  }
}
@media (max-width: 767px) {
  .catalog-products-list_spisok.catalog-products-list_spisok_cart .catalog-product {
    display: flex;
    flex-direction: column;
  }
  .catalog-products-list_spisok.catalog-products-list_spisok_cart .catalog-product .presents-box {
    position: static;
    margin-right: auto;
  }
  .catalog-products-list_spisok.catalog-products-list_spisok_cart .catalog-product .catalog-product__img img {
    width: auto;
    max-width: 100%;
    height: 100px;
  }
}

.catalog-products-list_plitka .products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1250px) {
  .catalog-products-list_plitka .products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .catalog-products-list_plitka .products-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .catalog-products-list_plitka .products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 740px) {
  .catalog-products-list_plitka .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (max-width: 520px) {
  .catalog-products-list_plitka .products-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .catalog-products-list_plitka .catalog-product {
    gap: 10px;
  }
}

.catalog-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-actions .products-counter {
  color: #3A3A3A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: auto;
}
@media (max-width: 620px) {
  .catalog-actions .products-counter {
    order: 2;
    min-width: 55%;
  }
}
@media (max-width: 620px) {
  .catalog-actions {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }
}

.catalog_display.filter {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (max-width: 620px) {
  .catalog_display.filter {
    gap: 10px;
    flex-wrap: wrap;
  }
  .catalog_display.filter .app-button {
    margin-right: auto;
  }
}

.catalog_view {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.catalog_view .catalog-view-toggler {
  color: #3A3A3A;
  display: block;
  cursor: pointer;
}
.catalog_view .catalog-view-toggler.current {
  color: #F0AF00;
}
@media (max-width: 620px) {
  .catalog_view {
    gap: 10px;
    order: 3;
    justify-content: end;
  }
}
.catalog_view svg {
  display: block;
}
@media (max-width: 620px) {
  .catalog_view svg {
    width: 25px;
  }
}

.catalog-sidebar {
  transition: 0.3s ease;
}
.catalog-sidebar .filter-tab-submit {
  position: sticky;
  bottom: 10px;
  padding: 10px;
  background: rgba(244, 245, 246, 0.9);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
@media (max-width: 1023px) {
  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    background: #ffffff;
    backdrop-filter: blur(5px);
    padding: 20px;
    width: 100%;
    max-width: 320px;
    transform: translateX(-100%);
    box-shadow: 5px 0 10px 5px rgba(0, 0, 0, 0.0784313725);
    overflow-y: auto;
  }
  .catalog-sidebar._active {
    transform: translateX(0);
    padding-top: 0;
    padding-bottom: 0;
  }
  .catalog-sidebar .filter-tab-submit {
    position: sticky;
    bottom: 0;
    background: #ffffff;
    box-shadow: 0 0 10px 17px #ffffff;
    padding-bottom: 15px;
  }
}

.filter-closer {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-right: -10px;
  font-size: 30px;
  height: 40px;
  width: 40px;
  text-align: right;
}
.filter-closer i {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px 17px #ffffff;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.article-product {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 20px;
}
.article-product .module-fotos img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1023px) {
  .article-product {
    grid-template-columns: 200px 1fr;
  }
}
@media (max-width: 767px) {
  .article-product {
    grid-template-columns: 1fr;
  }
}

.min-cart-link,
.app-button.to-cart {
  position: relative;
}
.min-cart-link .min-cart:has(.min-cart-amount),
.min-cart-link .badge,
.app-button.to-cart .min-cart:has(.min-cart-amount),
.app-button.to-cart .badge {
  position: absolute;
  background: #F0AF00;
  border-radius: 50%;
  font-size: 12px;
  color: #ffffff;
  right: -10px !important;
  top: -5px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.min-cart-link .min-cart:has(.min-cart-amount).badge,
.min-cart-link .badge.badge,
.app-button.to-cart .min-cart:has(.min-cart-amount).badge,
.app-button.to-cart .badge.badge {
  background: #2A3035;
}

.filter-inner {
  min-width: 100px;
  border-top: none;
}
.filter-inner .param-col-group {
  display: grid;
  gap: 15px;
}
.filter-inner .filter__nav-tab {
  justify-content: flex-start;
  margin-bottom: 28px;
}
.filter-inner .param-col._inline {
  display: flex;
  align-items: center;
}
.filter-inner .param-col._inline .form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.filter-inner .param-col._inline .form-group .control-label {
  margin-bottom: 0;
}
.filter-inner .param-col._scrolled {
  max-height: 100px;
  overflow-y: auto;
}
.filter-inner .param-col._scrolled::-webkit-scrollbar-track {
  background: #F2F2F2;
  border-radius: 2.5px;
}
.filter-inner .param-col._scrolled::-webkit-scrollbar {
  width: 5px;
  border-radius: 2.5px;
}
.filter-inner .param-col._scrolled::-webkit-scrollbar-thumb {
  background-color: #F0AF00;
  border-radius: 2.5px;
}
.filter-inner .param-col._scrolled .form-group:has(.hidden) {
  padding-top: 5px;
}
.filter-inner .param-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.filter-inner .filter-panel form {
  gap: 30px;
}
.filter-inner #autoSearchForm {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}
.filter-inner #autoSearchForm .form-group {
  margin-bottom: 0;
}
.filter-inner #autoSearchForm .filter-tab-submit {
  display: none;
}
.filter-inner #autoSearchFormSpecifications .specifications-row-label {
  font-weight: bold;
  color: brown;
  margin-bottom: 10px;
}
.filter-inner .specification-row-item:has(.specification-row-item__badge) {
  display: grid;
  gap: 5px;
  background: #F2F2F2;
  border-radius: 5px;
  padding: 15px 5px 5px 5px;
  position: relative;
  margin-top: 10px;
  order: 2;
}
.filter-inner .specification-row-item:has(.specification-row-item__badge) .specification-row-item__badge {
  position: absolute;
  top: -3px;
  background: #F0AF00;
  font-size: 11px;
  padding: 0 3px;
  border-radius: 5px;
}
.filter-inner .specification-row-item:has(.specification-row-item__badge) .specification-row-item__main {
  display: none;
}
.filter-inner img.question-icon {
  display: block;
  margin-left: 5px;
}

.reviews {
  display: grid;
}

.review {
  display: flex;
  padding: 20px 30px;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  border-bottom: 1px solid #C5C5C5;
}
@media (max-width: 767px) {
  .review {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }
}

.review__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 320px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .review__top {
    width: 200px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .review__top {
    gap: 5px;
  }
}

.review__name {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1023px) {
  .review__name {
    font-size: 18px;
  }
}

.spoiler-block {
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.spoiler-block .spoiler-control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  padding: 10px 0 20px 0;
  cursor: pointer;
}
.spoiler-block .spoiler-control span {
  font-weight: bold;
  color: #FF9500;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px dashed #FF9500;
  position: relative;
  top: 20px;
}
.spoiler-block._expanded {
  padding-bottom: 50px;
}
.spoiler-block._expanded .spoiler-control span {
  top: 0;
}

.tab-container {
  display: grid;
  gap: 30px;
}
.tab-container .tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tab-container .tabs .tab {
  display: flex;
  height: 40px;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #FBE6C6;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.tab-container .tabs .tab.active {
  background: rgba(116, 133, 147, 0.05);
}
@media (max-width: 767px) {
  .tab-container .tabs .tab {
    font-size: 16px;
    padding: 5px 8px;
  }
}
.tab-container .tab-content .content {
  display: none;
}
.tab-container .tab-content .content.active {
  display: block;
}

.cart-items_max-cart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.cart-items_max-cart .remove {
  right: 10px;
  top: 10px;
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("/img/v2/icons/trash-solid-full.svg") bottom left no-repeat;
}
.cart-items_max-cart .product-price-front {
  font-size: 20px;
}
.cart-items_max-cart .product-price-front-skidka__value {
  font-size: 15px;
}

.cart-itog-wrapper {
  display: flex;
  justify-content: end;
}
@media (max-width: 1023px) {
  .cart-itog-wrapper {
    position: sticky;
    top: 10px;
    z-index: 10;
  }
}
@media (max-width: 840px) {
  .cart-itog-wrapper {
    top: 60px;
  }
}

.cart-itog {
  background: rgb(228, 232, 234);
  display: flex;
  padding: 20px;
  gap: 10px;
  align-self: stretch;
  border-radius: 15px;
  flex-direction: column;
  margin-bottom: auto;
  position: sticky;
  top: 10px;
  min-width: 220px;
}
.cart-itog .product-price-front {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .cart-itog .product-price-front {
    font-size: 16px;
  }
}
.cart-itog .product-price-front-skidka {
  font-size: 15px;
  text-decoration: line-through;
  color: #616161;
}
@media (max-width: 1023px) {
  .cart-itog .product-price-front-skidka {
    font-size: 13px;
  }
}
@media (max-width: 1023px) {
  .cart-itog {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 15px;
    gap: 15px;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .cart-itog {
    padding: 10px;
    gap: 10px;
  }
}

.cart-itog-block {
  display: grid;
  gap: 3px;
}
@media (max-width: 1023px) {
  .cart-itog-block br {
    display: none;
  }
}

.cart-itog-block-label {
  font-weight: bold;
}
@media (max-width: 767px) {
  .cart-itog-block-label {
    font-size: 13px;
  }
}

.cart-checkout {
  display: flex;
  gap: 30px;
}
@media (max-width: 1023px) {
  .cart-checkout {
    flex-direction: column;
    gap: 0;
  }
}

.cart-finish {
  display: flex;
  padding: 0 30px;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.cart-finish .img {
  display: flex;
  height: 200px;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.cart-finish .img img {
  width: 100%;
  display: block;
}
@media (max-width: 600px) {
  .cart-finish .img {
    height: auto;
    padding: 0;
  }
}
.cart-finish h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  padding: 0;
}
@media (max-width: 800px) {
  .cart-finish h2 {
    font-size: 20px;
  }
}
.cart-finish p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1120px) {
  .cart-finish p {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .cart-finish {
    flex-direction: column;
    padding: 0;
  }
}

.cart-finish-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
}
@media (max-width: 800px) {
  .cart-finish-info {
    gap: 15px;
  }
}

.cart-finish-text-box {
  display: grid;
  gap: 15px;
}

.cart-finish-box {
  display: flex;
  padding: 30px;
  align-items: start;
  gap: 30px;
  border-radius: 15px;
  background: #F4F4F4;
}
@media (max-width: 1120px) {
  .cart-finish-box {
    padding: 15px;
  }
}
@media (max-width: 800px) {
  .cart-finish-box {
    flex-direction: column;
    gap: 15px;
  }
}

.cart-finish-box--item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cart-finish-box--item .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1120px) {
  .cart-finish-box--item .title {
    font-size: 14px;
  }
}
.cart-finish-box--item .value {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 1120px) {
  .cart-finish-box--item .value {
    font-size: 16px;
  }
}
@media (max-width: 1120px) {
  .cart-finish-box--item {
    gap: 5px;
  }
}

.lk-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.lk-wrapper .side-menu {
  display: flex;
  padding: 30px;
  margin: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  background: #F4F4F4;
  list-style-type: none;
}
.lk-wrapper .side-menu li {
  padding: 0;
  margin: 0;
}
.lk-wrapper .side-menu li a {
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
}
.lk-wrapper .side-menu li a.color-red {
  color: #BF0000;
}
@media (max-width: 1023px) {
  .lk-wrapper .side-menu li a {
    font-size: 16px;
  }
}
.lk-wrapper .side-menu li.cur a {
  color: #3A3A3A;
}
@media (max-width: 1023px) {
  .lk-wrapper .side-menu {
    padding: 10px 15px;
    gap: 5px 15px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .lk-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
}

.right_side {
  flex-grow: 1;
}
.right_side .module-form-block-wr.lk-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) {
  .right_side {
    width: 100%;
  }
}

.app-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #F3F3F3;
  background: #FFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.app-panel-heading {
  display: flex;
  padding: 15px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #F3F3F3;
  background: #F3F3F3;
}
@media (max-width: 767px) {
  .app-panel-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.lk-order-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.lk-order-date {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .lk-order-date {
    font-size: 16px;
  }
}

.lk-order-number {
  color: #FF9500;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .lk-order-number {
    font-size: 14px;
  }
}

.lk-order-sum-status {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lk-order-sum {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .lk-order-sum {
    font-size: 16px;
  }
}

.lk-order-status {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .lk-order-status {
    font-size: 14px;
  }
}

.lk-order-button .text-danger {
  color: #BF0000;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.lk-order-button._inline {
  display: flex;
}

.app-panel-body {
  display: flex;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .app-panel-body {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}

.lk-order-delivery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .lk-order-delivery {
    font-size: 14px;
  }
}

.lk-order-delivery-name {
  font-weight: bold;
}

.order-item__contents {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.order-item__contents img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 440px) {
  .order-item__contents img {
    width: 70px;
    height: 70px;
  }
}

.order-item-img-placeholder {
  background: rgb(228, 232, 234);
  width: 100px;
  height: 100px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #616161;
}
@media (max-width: 440px) {
  .order-item-img-placeholder {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }
}

.order-cartitems {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

.order-cartitem {
  display: grid;
  grid-template-columns: 1fr 200px;
  padding: 15px;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  border-radius: 15px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 600px) {
  .order-cartitem {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.order-item--info {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
}

.order-item-meta {
  display: grid;
  gap: 10px;
  margin-bottom: auto;
}

.order-item-img {
  display: grid;
  align-items: center;
  justify-content: center;
}

.cartitem-skidka-box {
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
}

.order-cartitem__preprices {
  display: grid;
  gap: 5px;
}

.order-cartitem__preprice {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 16px;
}

.order-detail-summary {
  display: flex;
  padding: 30px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #F4F4F4;
  margin-right: auto;
}
@media (max-width: 600px) {
  .order-detail-summary {
    padding: 16px;
  }
}

.order-detail-summary--line {
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  font-size: 20px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .order-detail-summary--line {
    font-size: 16px;
    gap: 15px;
  }
}
.order-detail-summary--line._orange {
  color: #FF9500;
}

.order-detail-summary--line--value {
  font-weight: bold;
}

.order-detail--group {
  display: grid;
  grid-gap: 10px;
}

.order-detail--item--badge {
  font-weight: bold;
}

.order-detail--item--value {
  font-size: 20px;
}

.materials-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.materials-blog .item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-radius: 15px;
  border: 1px solid #E3E3E3;
  background: #FFF;
  padding: 15px;
}
.materials-blog .item .right-data {
  display: grid;
  gap: 10px;
}
.materials-blog .item .right-data .date {
  background: #F4F4F4;
  padding: 3px 5px;
  border-radius: 3px;
  margin: 0 auto 0 0;
  display: inline-block;
}
.materials-blog .item .item-title {
  font-size: 20px;
}
@media (max-width: 860px) {
  .materials-blog {
    grid-template-columns: 1fr;
  }
}

.material-blogview__image {
  float: right;
  margin: 20px;
}
@media (max-width: 860px) {
  .material-blogview__image {
    float: none;
    display: flex;
    justify-content: center;
  }
}

.contacts-item.store_description {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.store_property .title {
  font-weight: bold;
}

.app-content #ya-site-form0 .ya-site-form__search, .app-content #ya-site-form0 .ya-site-form__search td, .app-content #ya-site-form0 .yaform__precise-i {
  background-color: #F8BB29 !important;
  border-radius: 15px;
}
.app-content #ya-site-form0 .ya-site-form__form .ya-site-form__input-text {
  height: 35px;
  padding: 0 10px;
  border-radius: 12px;
}
.app-content #ya-site-form0 .ya-site-form__form .ya-site-form__submit {
  font-size: 16px !important;
  background-color: #2A3035;
  color: #ffffff !important;
  border: 0;
  border-radius: 12px;
  padding: 5px 15px;
}

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