/* @import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&display=swap'); */

@font-face {
  font-family: "Encode Sans";
  src: url("../fonts/EncodeSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Encode Sans";
  src: url("../fonts/EncodeSans-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Encode Sans";
  src: url("../fonts/EncodeSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Encode Sans";
  src: url("../fonts/EncodeSans-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

input:active,
textarea:active,
select:active,
button:active,
a:active {
  opacity: .5;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  border-color: var(--blue) !important;
}

:root {
  --white: #ffffff;
  --black: #141b2e;
  --green-gradient: linear-gradient(95.36deg, #9aec74 0%, #6eb03a 100.17%);
  --blue-gradient: linear-gradient(95.58deg, #6489f1 0%, #1f50dd 100%);
  --green: #269b43;
  --orange: #ed854a;
  --red: #eb0621;
  --violet: #7e53da;
  --blue: #4c73e3;
  --dark-blue: #1f50dd;
  --blue-bg: rgba(244, 246, 252, 0.8);
  --blue-btn: #e7ebfb;
  --blue-btn_hover: #e1e7ff;
  --dark-gray: #757575;
  --gray-bg: #f8f8f8;
  --gray-btn: #efefef;
  --gray-dissabled: #d8d8d8;

  --anim: 0.2s ease;
}

@-webkit-keyframes slideUp {
  from {
    bottom: -100%;
  }

  to {
    bottom: 0%;
  }
}

@keyframes slideUp {
  from {
    bottom: -100%;
  }

  to {
    bottom: 0%;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active,
:focus-visible,
a:focus,
a:active,
a:visited {
  color: #111;
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
  scrollbar-color: var(--blue) transparent;
  scrollbar-width: thin
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0;
  -ms-border-radius: 0px;
  -o-border-radius: 0
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

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

input:-moz-read-only.no-edit {
  pointer-events: all;
  background: var(--white);
}

input:read-only.no-edit {
  pointer-events: all;
  background: var(--white);
}

input:-moz-read-only {
  cursor: unset;
}

input:read-only {
  cursor: unset;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

* {
  -webkit-tap-highlight-color: transparent !important;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

svg {
  pointer-events: none;
}

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

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

body.lock {
  overflow: hidden;
}

body {
  font-family: "Encode Sans", sans-serif;
}

@media (max-width: 767px) and (-webkit-min-device-pixel-ratio: 0) {

  textarea:focus,
  input:focus {
    font-size: 16px !important;
  }
}

.back-to-order {
  position: fixed;
  bottom: 0;
  z-index: 8;
  margin: 0;
  min-width: 100%;
  padding: 15px 30px;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  background: var(--white);
  border-radius: 8px 8px 0px 0px;
}

.eye {
  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: 45px;
  height: 45px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  margin-right: auto;
}

.active-scroll * {
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.active-scroll *::-webkit-scrollbar {
  width: 14px;
  height: 14px;
  border-right: 10px transparent solid;
  background-clip: padding-box;
}

.active-scroll *::-webkit-scrollbar-track {
  margin: 20px;
  background: var(--blue-btn);
  border-right: 10px transparent solid;
  background-clip: padding-box;
}

.active-scroll *::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-right: 10px transparent solid;
  background-clip: padding-box;
}

.hidden {
  display: none;
}

.breadcrumbs {
  margin-bottom: 12px;
  padding-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
}

.breadcrumbs>span {
  display: block;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.breadcrumbs * {
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: rgba(117, 117, 117, 0.6);
}

.breadcrumbs a {
  transition: .25s ease-in-out;
}

@media (hover: hover) {
  .breadcrumbs a:hover {
    color: var(--blue);
  }
}

.title {
  font-weight: 700;
  font-size: 21px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 12px;
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  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;
  gap: 8px;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
  text-decoration: none;
  background: var(--blue);
  border-radius: 8px;
  padding: 14px;
  -webkit-transition: background var(--anim);
  -o-transition: background var(--anim);
  transition: background var(--anim);
  cursor: pointer;
}

.button .flex-row {
  pointer-events: none !important;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.button:hover {
  background: var(--dark-blue);
}

.button:disabled,
.button_disabled {
  font-weight: 600;
  color: var(--dark-gray);
  background: var(--gray-btn);
  cursor: unset;
  pointer-events: none;
}

.blue-gr_btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  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;
  gap: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  --c1: #6489f1;
  --c2: #1f50dd;
  background: -webkit-gradient(linear, left top, right top, from(var(--c1, #6489f1)), color-stop(51%, var(--c2, #1f50dd)), to(var(--c1, #6489f1))) var(--x, 0) / 200%;
  background: -o-linear-gradient(left, var(--c1, #6489f1), var(--c2, #1f50dd) 51%, var(--c1, #6489f1)) var(--x, 0) / 200%;
  background: linear-gradient(90deg, var(--c1, #6489f1), var(--c2, #1f50dd) 51%, var(--c1, #6489f1)) var(--x, 0) / 200%;
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  -webkit-transition: all 0.35s cubic-bezier(0, 0, 0.12, 0.68);
  -o-transition: all 0.35s cubic-bezier(0, 0, 0.12, 0.68);
  transition: all 0.35s cubic-bezier(0, 0, 0.12, 0.68);
}

.blue-gr_btn:hover {
  --x: -100%;
}

.wrapper {
  position: relative;
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  /* edited to create search section sticky */
  /* overflow: hidden; */
  /* edited to create search section sticky */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container {
  max-width: 1560px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
  width: 100%;
}

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

.cover {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
  z-index: 8;
}

.cover.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background: #fafbfe;
  border-radius: 5px;
}

.footer.footer_white {
  background: var(--white);
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  padding: 60px 15px;
}

.footer__left-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.footer__title {
  font-weight: 600;
  font-size: 17px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 10px;
}

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

.footer__list a {
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--black);
}

.footer .contacts-block p {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.footer .contacts-block {
  max-width: 720px;
}

.header {
  position: relative;
  z-index: 200;
  background: var(--white);
}

.header__container {
  padding: 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-car:has(.mash-kit-nav) {
  /* flex-wrap: wrap; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mash-kit-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;

  width: 100%;
  padding-left: 40px;

  list-style-type: none;
}

.mash-kit-nav li {
  list-style-type: none;
}

.mash-kit-nav li a {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
  background: transparent;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
  white-space: nowrap;
}

.mash-kit-nav li a:hover {
  color: var(--blue);
  stroke: var(--blue);
}

.header__logo {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 122px;
  flex: 0 0 122px;
}

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

.header_lite .header__container {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
}

.header_lite .search__form {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  margin: 0;
  min-width: 0;
}

.header__logo img {
  height: 40px;
  width: 122px;
}

.header__link,
.header__menu {
  font-size: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--gray-bg);
  border-radius: 50%;
}

.header__nav ul {
  margin-bottom: 25px;
}

.header__nav .header__phone {
  display: inline-block;
}

.header__nav li a,
.header__nav .header__link {
  display: block;
  height: auto;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  background: transparent;
  text-align: left;
}

.header__nav .header__orders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.header__nav .header__orders .count-marker {
  margin-left: 5px;
}

.header__orders {
  margin-left: 30px;
}

.header-car .header__orders {
  margin-left: 0;
}

.login-avatar {
  display: inline-block;
  font-size: 0;
  font-weight: 600;
  line-height: 18px;
  color: var(--blue);
  background: var(--blue-btn);
  padding: 11px 15px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  margin-right: 10px;
  text-transform: uppercase;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.login-avatar:hover {
  background: var(--blue-btn_hover);
}

.login-avatar::first-letter {
  font-size: 15px;
}

.header__nav li:not(:last-of-type),
.header__nav .header__link:not(:last-of-type) {
  margin-bottom: 25px;
}

.header__inner .header__orders svg {
  display: none;
}

.header__nav .header__login_auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.header__nav .header__login_auth>span:not(.login-avatar) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__nav .header__login_auth i {
  width: 100%;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  margin-bottom: 2px;
  color: var(--dark-gray);
  font-style: normal;
}

.header__nav .header__login svg {
  display: none;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 90px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.header__actions.header-car {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
}

@media (max-width: 375px) {
  .header__actions.header-car {
    gap: 5px;
  }
}

.header__menu {
  position: relative;
}

.header__menu span {
  pointer-events: none;
}

.header__menu::before,
.header__menu::after {
  content: "";
  position: absolute;
  left: 50%;
}

.header__menu::before {
  top: 15px;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.header__menu::after {
  bottom: 15px;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.header__menu::before,
.header__menu::after,
.header__menu span {
  height: 2px;
  width: 16px;
  background: var(--blue);
  border-radius: 2px;
  -webkit-transition: -webkit-transform var(--anim);
  transition: -webkit-transform var(--anim);
  -o-transition: transform var(--anim);
  transition: transform var(--anim);
  transition: transform var(--anim), -webkit-transform var(--anim);
  will-change: transform;
}

.header__menu.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__menu.active::before,
.header__menu.active::after {
  height: 1.5px;
  width: 14px;
}

.header__menu.active::before {
  -webkit-transform: translate3d(-50%, 5px, 0) rotate(45deg);
  transform: translate3d(-50%, 5px, 0) rotate(45deg);
}

.header__menu.active::after {
  -webkit-transform: translate3d(-50%, -3.5px, 0) rotate(-45deg);
  transform: translate3d(-50%, -3.5px, 0) rotate(-45deg);
}

.header__menu svg {
  display: none;
}

.header__basket {
  position: relative;
  margin-left: 10px;
}

.header__basket .count-marker {
  position: absolute;
  top: -2px;
  left: 29px;
}

.header__favourites {
  position: relative;
  margin-left: 10px;
}

.header__favourites .count-marker {
  position: absolute;
  top: -5px;
  right: 13px;
}

.header__nav {
  position: absolute;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height var(--anim);
  -o-transition: max-height var(--anim);
  transition: max-height var(--anim);
  width: 100%;
  left: 0;
  top: 100%;
  background: var(--white);
  border-radius: 0 0 10px 10px;
  z-index: 300;
}

.section_blue {
  background: #fafbfe;
}

.header__nav.active {
  max-height: 400px;
  overflow-y: visible;
}

.header__inner {
  padding: 10px 15px 20px;
}

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue) !important;
  background: var(--blue-btn);
  border-radius: 8px;
  padding: 13.5px 17px;
  -webkit-transition: background var(--anim);
  -o-transition: background var(--anim);
  transition: background var(--anim);
  white-space: nowrap;
}

.header__phone:hover {
  background: var(--blue-btn_hover);
}

.header__actions>.header__orders,
.header__actions>.header__phone {
  display: none;
}

.header_lite .header__actions>.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__login {
  display: none;
}

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

.swiper-slide {
  width: 100%;
  max-width: 100%;
}

.search__form {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  background: var(--gray-bg);
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 15px;
  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;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 10px;
  transition: .25s ease-in-out;
}

.search__form:focus {
  border-color: var(--blue);
}

@media (hover: hover) {
  .search__form:hover {
    border-color: var(--blue);
  }
}

.search__input {
  min-width: 0;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border: none;
  background: transparent;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.search__input::-webkit-input-placeholder {
  color: var(--dark-gray);
}

.search__input::-moz-placeholder {
  color: var(--dark-gray);
}

.search__input:-ms-input-placeholder {
  color: var(--dark-gray);
}

.search__input::-ms-input-placeholder {
  color: var(--dark-gray);
}

.search__input::placeholder {
  color: var(--dark-gray);
}

.search__button {
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  background: transparent;
}

.count-marker {
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  color: var(--white);
  text-align: center;
  background: var(--red);
  border-radius: 100%;
  padding: 4px;
  min-height: max-content;
  min-width: 18px;
}

.manager-info {
  padding: 20px;
  background: var(--white);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
}

.manager-info ul,
.manager-info li {
  width: 100%;
}

.manager-info,
.manager-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.manager-info li {
  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-bottom: 10px;
  border-bottom: 1px dashed var(--gray-btn);
  gap: 10px;
}

.manager-info li span {
  color: var(--black);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.markups-amount {
  font-weight: 500;
  color: var(--red) !important;
}

.section-offers {
  padding: 30px 0;
}

.section__title {
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 20px;
}

.section-offers__slider .swiper-wrapper {
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.section-offers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  scroll-snap-align: start;
}

.section-offers__list .good-item:last-of-type {
  grid-column: 1/-1;
}

.section-offers:not(.recommended-products) .section-offers__list .good-item:last-of-type .good-item__image {
  height: 220px;
}

.good-item__image {
  display: block;
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 5px;
}

.good-item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.good-item__info {
  width: 100%;
}

.good-item__prices {
  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;
}

.good-item__pre-price {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  text-decoration: line-through;
  color: var(--dark-gray);
  margin-bottom: 2px;
  min-height: 15.6px;
}

.good-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 5px;
}

.availability {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  margin-bottom: 5px;
}

.good-item__name {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

.good__discount {
  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-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 4px 14px 4px 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--red);
  background: url("../images/icons/discount-bg.svg") center no-repeat;
  background-size: 99% 100%;
  margin-left: 10px;
  height: 24px;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: opacity var(--anim), visibility var(--anim);
  -o-transition: opacity var(--anim), visibility var(--anim);
  transition: opacity var(--anim), visibility var(--anim);
}

.popup__container,
.buy-popup__container {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 40px;
  width: 840px;
  max-height: 725px;
  border-radius: 12px;
  background: var(--white);
}

.popup__close-btn {
  display: none;
}

.popup__close-btn,
.buy-popup__close-btn {
  position: absolute;
  top: 0;
  right: -60px;
  width: 40px;
  height: 40px;
  -webkit-transition: opacity var(--anim);
  -o-transition: opacity var(--anim);
  transition: opacity var(--anim);
}

.popup__close-btn:hover,
.buy-popup__close-btn:hover {
  opacity: 0.9;
}

.buy-popup__header {
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 30px;
}

.buy-popup__header span,
.buy-popup__header strong {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
}

.buy-popup__good {
  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;
  gap: 20px;
}

.added-good__image {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 180px;
  flex: 0 0 180px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
}

.added-good__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.added-good__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.added-good__info .good-item__prices {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.added-good__info>div:not(:last-of-type) {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}

.added-good__info .good-item__pre-price {
  margin-left: 0;
}

.added-good__info .availability,
.added-good__info .added-good__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.added-good__info .added-good__payment .hint-question {
  display: none;
}

.added-good__details .flex-row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  border-bottom: 1px dashed var(--gray-btn);
  color: var(--dark-gray);
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.added-good__details .flex-row ul {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  text-transform: uppercase;
}

.added-good__number a {
  color: var(--blue);
}

.added-good__type,
.added-good__code {
  color: var(--black);
}

.hint-question {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.hint-question::after {
  position: absolute;
  content: "";
  border: 9px solid transparent;
  border-bottom: 9px solid #ffffff;
  opacity: 0;
  -webkit-transition: opacity var(--anim);
  -o-transition: opacity var(--anim);
  transition: opacity var(--anim);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  border-radius: 8px;
}

.hint-question:hover::after {
  opacity: 1;
}

.added-good__actions {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.added-good__actions a {
  width: auto;
  padding: 13.5px 17px;
}

.added-good__actions .closePopupBtn {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
}

.section-categories .swiper-buttons {
  display: none;
}

.section-categories .swiper-button-prev,
.section-categories .swiper-button-next {
  position: relative;
}

.swiper.section-categories__slider {
  padding-left: 15px;
}

.section-categories .swiper-wrapper {
  width: auto;
  padding: 0 15px;
  overflow-y: hidden;
  overflow-x: auto;
  gap: 20px;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.section-categories__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  scroll-snap-align: start;
}

.section-categories__item>.categories-item__image,
.section-categories__item>.categories-item__name {
  display: none;
}

.categories-item__preview {
  position: relative;
  width: 100%;
  height: 100px;
  background: rgba(244, 246, 252, 0.8);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.categories-item__image {
  position: absolute;
  max-height: 86px;
  right: 0;
  bottom: 0;
}

.categories-item__name {
  position: absolute;
  top: 15px;
  left: 15px;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

.categories-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.categories-item__tags li {
  border-radius: 4px;
  background: var(--gray-bg);
  padding: 10px;
}

.categories-item__link {
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--blue);
}

.categories-item__tags li:last-of-type .categories-item__link {
  color: var(--dark-gray);
}

.section-categories__more {
  display: block;
  width: 100%;
}

.button_light-blue {
  display: block;
  background: var(--blue-btn);
  color: var(--blue);
  border-radius: 8px;
  padding: 13.5px 45px;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
}

.button_blue {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
  padding: 13.5px;
  background: var(--blue-btn);
  border-radius: 8px;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
  cursor: pointer;
}

.button_blue * {
  color: var(--blue);
}

.button_blue:hover *,
.button_blue:hover {
  color: var(--dark-blue);
  background: var(--blue-btn_hover);
}

.section-questions {
  padding: 30px 0;
}

.section-questions__wrapper {
  margin: 0 auto;
  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;
}

.section-questions__block {
  width: 100%;
}

.questions-block__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 80px;
  text-align: left;
  padding: 20px 15px;
  border-radius: 12px;
  background-color: var(--white);
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .questions-block__header:hover {
    background-color: var(--blue-btn);
  }
}

.questions-block__header span {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  position: relative;
  background: var(--gray-btn);
  border-radius: 66px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.questions-block__header span::before,
.questions-block__header span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--black);
}

.questions-block__header span::before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.questions-block__header span::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.questions-block__content {
  width: calc(100% - 30px);
  border-bottom: 1px solid var(--gray-btn);
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--dark-gray);
  margin: 0 auto;
  max-height: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.section-questions__block.active .questions-block__content {
  max-height: 350px;
  padding: 15px 0 20px;
  overflow: visible;
}

.section-questions__block.active .questions-block__header {
  background-color: var(--blue);
  color: var(--white);
}

.section-questions__block.active .questions-block__header span {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background: var(--white);
}

.section-questions__block.active .questions-block__header span::before,
.section-questions__block.active .questions-block__header span::after {
  background: var(--blue);
}

.section-search {
  background: rgba(244, 246, 252, 0.8);
}

.section-search__container {
  padding: 40px 15px;
}

.section-search__container>.flex-row {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-search__wrapper {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.section-search__title {
  font-weight: 700;
  font-size: 21px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 10px;
}

.section-search__subtitle {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 25px;
}

.guarantee {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 15px;
}

.guarantee img {
  width: 206px;
  height: 60px;
}

.bc.load {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
}

.bc {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.bc_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 15px 10px 5px;
}

.bc_header-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  color: var(--dark-gray);
  padding-bottom: 15px;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
}

.bc_header-item.active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

.bc_wrapper {
  background: var(--blue-btn);
  border-radius: 12px;
  /* edited to create search section sticky */
  /* margin-bottom: 15px; */
  /* edited to create search section sticky */
}

.bc_content {
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.bc_find-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.bc_block {
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.bc__inp_close {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bc__inp_close::before,
.bc__inp_close::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 1.5px;
  background: var(--dark-gray);
  top: 50%;
  left: 50%;
  border-radius: 12px;
}

.bc__inp_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bc__inp_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.bc__inp_wrp,
.search-detail_wr {
  position: fixed;
  width: 100%;
  height: 50vh;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray-bg);
  -webkit-box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px 12px 0px 0px;
  -webkit-transition: -webkit-transform var(--anim);
  transition: -webkit-transform var(--anim);
  -o-transition: transform var(--anim);
  transition: transform var(--anim);
  transition: transform var(--anim), -webkit-transform var(--anim);
  will-change: transform;
  padding: 15.5px 15px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  z-index: 14;
  overflow-x: hidden;
}

.bc__inp_wrp.shown,
.search-detail_wr.shown {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.bc__inp_header {
  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;
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 20px;
}

.bc_block__active {
  display: block;
}

.bc_select,
.bc__input,
.bc_block .search__input {
  padding: 16px 24px 16px 16px;
  height: max-content;
  background: var(--white);
  width: 100%;
  border-radius: 8px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: var(--black);
  -webkit-transition: border var(--anim);
  -o-transition: border var(--anim);
  transition: border var(--anim);
  border: 1px solid var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.form-field input {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: color var(--anim);
  -o-transition: color var(--anim);
  transition: color var(--anim);
}

.form-field input:-moz-read-only {
  color: var(--dark-gray);
}

.form-field input:read-only,
.form-field input:disabled {
  color: var(--dark-gray);
}

.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 30px 10px 15px;
  height: 50px;
  width: 100%;
  background: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  border: 1px solid var(--gray-btn);
  border-radius: 8px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
}

.select:disabled {
  pointer-events: none;
  color: var(--dark-gray);
  background: url("../images/icons/arrow-down_gray.svg") no-repeat;
  background-position: right 10px top 50%;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: none !important;
  background: transparent !important;
  color: inherit !important;
  font-weight: inherit !important;
}

.ui-menu-item .ui-menu-item-wrapper {
  width: 100%;
}

.ui-menu .ui-menu-item-wrapper {
  padding: 0 !important;
}

.ui-menu .ui-state-active {
  margin: 0 !important;
}

.bc_select:hover,
.bc__input:hover,
.bc__input:focus,
.bc_block .search__input:hover,
.bc_block .search__input:focus {
  border: 1px solid var(--blue);
}

.bc__input,
.bc_block .search__input {
  margin-bottom: 15px;
  background: var(--white) url("../images/icons/search_blue.svg") no-repeat;
  background-position: right 15px top 50%;
}

.bc__input::-webkit-input-placeholder, .bc_block .search__input::-webkit-input-placeholder {
  color: var(--dark-gray);
}

.bc__input::-moz-placeholder, .bc_block .search__input::-moz-placeholder {
  color: var(--dark-gray);
}

.bc__input:-ms-input-placeholder, .bc_block .search__input:-ms-input-placeholder {
  color: var(--dark-gray);
}

.bc__input::-ms-input-placeholder, .bc_block .search__input::-ms-input-placeholder {
  color: var(--dark-gray);
}

.bc__input::placeholder,
.bc_block .search__input::placeholder {
  color: var(--dark-gray);
}

input.date {
  padding: 16px 15px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
  background: var(--white) url(../images/icons/calendar-icon.svg) no-repeat;
  background-position: right 13px top 50%;
  cursor: pointer;
}

.ui-widget.ui-widget-content.ui-datepicker {
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  padding: 20px 15px;
}

.ui-datepicker .ui-state-default {
  background: transparent;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  border: none;
  border-radius: 8px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.ui-datepicker .ui-state-default.ui-state-active,
.ui-datepicker .ui-state-default.ui-state-hover {
  border: 1px solid var(--blue) !important;
}

.ui-datepicker .ui-widget-header {
  background: var(--blue-btn);
  border: none;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 25px;
  height: 25px;
  background: var(--gray-bg);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none !important;
  top: 4px;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  background: url("../images/icons/arrow-down_gray.svg") no-repeat center;
  margin: 0 !important;
  left: auto;
  top: auto;
  width: 24px;
  height: 23px;
}

.ui-datepicker .ui-datepicker-prev span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ui-datepicker .ui-datepicker-next span {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.bc_block:not(.bc_block__active, .catalog__container .bc_block) .bc_select {
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  color: var(--dark-gray);
  background: rgba(255, 255, 255, 0.5) url("../images/icons/arrow-down_gray.svg") no-repeat;
  background-position: right 15px top 50%;
}

.select,
select.bc_select,
.bc_select>select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--white) url("../images/icons/arrow-down.svg") no-repeat;
  background-position: right 10px top 50%;
}

select.bc_select.selected {
  background: var(--white) url("../images/icons/cross.svg") no-repeat;
  background-position: right 10px top 50%;
}

.bc_select:hover {
  cursor: pointer;
}

.result-list,
.ui-widget.ui-widget-content {
  position: absolute;
  font-family: "TTInterfaces", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  background: var(--white) !important;
  border-radius: 8px;
  border: none !important;
}

.result-list,
.search__form .ui-widget.ui-widget-content {
  top: 50px !important;
  height: auto;
  max-height: 280px;
  -webkit-box-shadow: 0px 2px 6px rgb(0 0 0 / 5%);
  box-shadow: 0px 2px 6px rgb(0 0 0 / 5%);
  padding: 20px 0;
  left: 50% !important;
  overflow-y: auto;
  width: 100% !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.search__form .ui-menu-item {
  padding: 0 20px;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
  min-height: 30px;
}

.bc__inp_wrp .ui-widget.ui-widget-content,
.search-detail_wr .ui-widget.ui-widget-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  top: 120px !important;
  left: 50% !important;
  padding: 20px;
  height: calc(100% - 130px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-overflow-scrolling: touch;
}

.bc__inp_wrp .ui-widget.ui-widget-content {
  padding: 0 20px;
}

.bc__inp_wrp .ui-widget.ui-widget-content .ui-menu-item:first-of-type {
  margin-top: 20px;
}

.bc__inp_wrp .ui-widget.ui-widget-content .ui-menu-item:last-of-type {
  margin-bottom: 20px;
}

.result-list {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.result-list.visible {
  opacity: 1;
  visibility: visible;
}

.clear-field-btn {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.clear-field-btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.clear-field-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.clear-field-btn::before,
.clear-field-btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--gray-dissabled);
  border-radius: 12px;
  top: 50%;
  left: 50%;
}

#bc3 .ui-widget.ui-widget-content:not(.search-detail_wr .ui-widget.ui-widget-content) {
  top: 185px !important;
}

.search-by-detail-name__form .search__button {
  pointer-events: none;
}

.search-by-detail-name__form .ui-menu-item a,
.search-detail_wr .ui-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
}

.search-by-detail-name__form .ui-menu-item a span,
.search-detail_wr .ui-menu-item a span {
  color: var(--black);
  margin-top: 2px;
}

.search-detail-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
  margin-bottom: 20px;
}

.search-detail p {
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--dark-gray);
  margin-top: 10px;
  margin-bottom: 5px;
}

.search-detail-form p {
  position: absolute;
  display: none;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--dark-gray);
  top: -20px;
  left: 0;
}

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

.search-by-detail-name__form .ui-menu-item:not(.ui-menu-item:last-of-type) {
  margin-bottom: 12px;
}

/* .search-by-detail-name__form .ui-menu-item:not(.ui-menu-item:last-of-type),
.bc__inp_wrp .ui-widget.ui-widget-content .ui-menu-item:not(.ui-menu-item:last-of-type),
.search-detail_wr .ui-widget.ui-widget-content .ui-menu-item:not(.ui-menu-item:last-of-type) {
    margin-bottom: 12px;
} */

.ui-menu-item:hover,
.ui-menu-item div:hover {
  background: none;
}

.manufacturers__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 22px 40px 22px 40px 22px 40px 22px 40px;
  grid-template-columns: repeat(5, 40px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 22px;
  margin-bottom: 20px;
}

.manufacturers__item {
  position: relative;
  height: 40px;
  width: 40px;
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  place-self: center;
}

.manufacturers__item:last-of-type {
  display: none;
}

.manufacturers__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.mpn_wrap {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
}

.mpn_wrap.open {
  overflow-y: visible;
  max-height: 5000px;
  margin-top: 20px;
}

.mpm_col {
  /* display: flex;
	flex-direction: column;
  margin: 0; */
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  padding: 4px;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
  break-inside: avoid;
}

.mpm_col a {
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
  display: inline-block;
  margin: 0 0 4px;
}

.mpm_col a::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: rgba(76, 115, 227, 0.3);
  bottom: -1px;
  left: 0;
  -webkit-transition: opacity 0.1s ease;
  -o-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}

.mpm_col a:hover::after {
  opacity: 0;
}

.mpm_lett {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.mpm_col .mpm_row~.mpm_lett {
  margin-top: 20px;
}

.blue-ln-btn {
  width: 100%;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--black);
  padding: 10px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
}

.blue-ln-btn:hover {
  color: var(--blue);
}

.blue-ln-btn:disabled {
  color: var(--dark-gray);
  border: 1px solid var(--gray-dissabled);
}

.manufacturers__more {
  margin-top: 20px;
}

.swiper-pagination {
  z-index: 2 !important;
  bottom: 5px !important;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 5px !important;
  height: 5px !important;
  background: var(--gray-dissabled);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 2.5px !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--blue);
}

.hint-question {
  position: relative;
}

.hint-question__text {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 15px 7px 15px 15px;
  -webkit-transition: opacity var(--anim), visibility var(--anim);
  -o-transition: opacity var(--anim), visibility var(--anim);
  transition: opacity var(--anim), visibility var(--anim);
  z-index: 1;
  left: -15px;
  width: 215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hint-question__text,
.hint-question__text * {
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  color: var(--blue);
  text-align: left;
}

.hint-question__text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hint-question__text svg {
  margin-left: 2px;
  /* height: 21px; */
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
}

.hint-question:hover .hint-question__text {
  opacity: 1;
  visibility: visible;
}

.good-item__gallery .swiper-slide {
  width: 100% !important;
}

.main-button-prev.swiper-button-prev,
.main-button-next.swiper-button-next {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--gray-bg);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 66px;
}

.main-button-prev.swiper-button-prev {
  left: 55px;
}

.main-button-next.swiper-button-next {
  right: 55px;
}

.main-button-prev.swiper-button-prev:after,
.main-button-next.swiper-button-next:after {
  font-size: 11px;
  color: var(--dark-gray);
}

.recommended-products .good-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57dvw;
  flex: 0 0 57dvw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  scroll-snap-align: start;
}

.recommended-products .good-item .item-catalog__action {
  margin-top: auto;
}

.recommended-products .section__title:not(.recommendations .section__title) {
  margin-bottom: 0;
}

.recommended-products__header {
  margin-bottom: 20px;
}

.recommended-products__header a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--blue);
}

.recommended-products .offers-slider>.swiper-wrapper {
  gap: 12px;
  overflow-x: auto;
  margin-right: -12px;
  padding-right: 12px;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.recommended-products .offers-slider .good-item .good-item__prices {
  gap: 5px;
}

.recommended-products .section-offers__list {
  display: block;
}

.recommended-products>.container {
  position: relative;
}

.recommended-products .good-item__gallery {
  height: 165px;
}

.search-by-detail-name {
  background: -o-linear-gradient(354.42deg, #335fdd 0%, #6489f1 100%);
  background: linear-gradient(95.58deg, #335fdd 0%, #6489f1 100%);
  border-radius: 8px;
  padding: 20px 15px 0;
  color: var(--white);
  margin-top: 30px;
}

.search-by-detail-name__content {
  margin-bottom: 30px;
}

.search-by-detail-name__title {
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  margin-bottom: 10px;
}

.search-by-detail-name label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  margin-bottom: 20px;
}

.search-by-detail-name__image {
  position: relative;
  height: 175px;
  width: 100%;
}

.search-by-detail-name__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.good__description-wrapper .flex-row,
.good__description .flex-row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /* padding-bottom: 10px; */
  border-bottom: 1px dashed var(--gray-btn);
}

.row-left,
.row-right {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

.row-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58%;
  flex: 0 0 58%;
  color: var(--dark-gray);
}

.row-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #141b2e;
  text-align: left !important;
}

.back-to-catalog {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-block {
  background: var(--white);
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 15px;
}

.custom-label input[type="checkbox"],
.custom-label input[type="radio"] {
  position: absolute;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.custom-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.custom-label .checkbox {
  display: block;
  width: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  height: 30px;
  background: var(--gray-bg);
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #e1e1e1;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all 25s ease-in-out;
}

.custom-label:focus .checkbox {
  border-color: var(--blue);
}

@media (hover: hover) {
  .custom-label:hover .checkbox {
    border-color: var(--blue);
  }
}

.custom-label .radio {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--gray-bg);
  border-radius: 100px;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
}

.custom-label .radio::after {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.1s ease;
  -o-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  opacity: 0;
}

.custom-label input[type="radio"]:checked+.radio::after {
  opacity: 1;
}

.custom-label input[type="checkbox"]:checked+.checkbox {
  background: var(--blue) url("../images/icons/icon-check.svg") center no-repeat;
  background-size: 24px;
}

.detail-nav.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.custom-label.check+.checkbox {
  background: var(--blue) url("../images/icons/icon-check.svg") center no-repeat;
  background-size: 24px;
}

.bc_header-item.gray-100 {
  color: #b2b2b2;
  font-weight: 500;
}

@media (hover: hover) {
  .bc_header-item.gray-100:hover {
    color: var(--blue);
  }
}

.bc_header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.bc_header-item.blue {
  color: var(--blue);
}

.bc_header.background {
  background-color: #ececec;
  transition: .25s ease-in-out;
}

@media (hover: hover) {
  .bc_header.background:hover {
    background-color: var(--blue-btn);
  }
}

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

.good-description__list a {
  color: var(--blue);
  text-decoration: underline;
}

.good-description__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.form-textarea {
  position: relative;
}

.form-textarea textarea,
.form-field {
  border: 1px solid var(--gray-btn);
  border-radius: 8px;
  padding: 16px;
  position: relative;
  background: var(--white);
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
  color: #111;
}

.form-textarea textarea:focus,
.form-field:focus {
  border-color: var(--blue);
}

@media (hover: hover) {
  .form-textarea textarea:hover,
  .form-field:hover {
    border-color: var(--blue);
  }
}

.form-textarea textarea {
  padding: 13px 15px;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  resize: none;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: max-content;
}

.form-field_number {
  position: relative;
  padding: 7px 40px 7px 15px;
}

.form-field_number input.on-focus {
  height: 19px !important;
}

.form-field__plus,
.form-field__minus {
  position: absolute;
  height: 25px;
  width: 25px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2px;
}

.form-field__plus {
  top: 0;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.form-field__minus {
  bottom: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-field.disabled input,
.form-field.disabled {
  background: var(--gray-bg);
}

.form-textarea label,
.form-field label {
  position: absolute;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: font-size var(--anim), -webkit-transform var(--anim);
  transition: font-size var(--anim), -webkit-transform var(--anim);
  -o-transition: transform var(--anim), font-size var(--anim);
  transition: transform var(--anim), font-size var(--anim);
  transition: transform var(--anim), font-size var(--anim), -webkit-transform var(--anim);
  pointer-events: none;
}

.form-textarea label {
  top: 13px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.form-field input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
}

.form-textarea textarea.on-focus,
.form-field input.on-focus {
  height: auto;
}

.form-textarea textarea.on-focus {
  padding-top: 21px;
}

.form-field.disabled input:-moz-read-only~.clear-field-btn {
  display: none;
}

.form-field.disabled input:read-only~.clear-field-btn,
.clear-field-btn {
  display: none;
}

input.on-focus:not(:disabled)~.clear-field-btn {
  display: block;
}

.form-textarea textarea.on-focus+label {
  font-size: 12px;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.form-field input.on-focus~label {
  font-size: 12px;
  -webkit-transform: translateY(-22px);
  -ms-transform: translateY(-22px);
  transform: translateY(-22px);
}

.contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.contacts-block__link {
  height: 45px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  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;
  gap: 5px;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--black);
  border-radius: 8px;
}

.contacts-block__icon {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
}

.contacts-block__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts-block__button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
  background: var(--blue-btn);
  padding: 13.5px;
  border-radius: 8px;
}

.contacts-block a:not(.contacts-block__link) {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

.contacts-block__link_tg {
  background: rgba(41, 170, 236, 0.15);
}

.contacts-block__link_wa {
  background: rgba(41, 182, 64, 0.15);
}

@media (max-width: 1279px) {
  .fixed .sticky-form {
    position: fixed;
    left: 0;
    z-index: 10;
    margin: 0;
    min-width: 100%;
    padding: 15px 30px;
    -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    background: var(--white);
    border-radius: 8px 8px 0px 0px;
    -webkit-animation: slideUp 0.3s forwards;
    animation: slideUp 0.3s forwards;
  }

  .fixed .button {
    margin: 0;
  }

  .fixed .button .flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .good-item__pre-price_mobile {
    text-decoration: line-through;
  }

  .recommended-products .offers-slider>.swiper-wrapper {
    padding-bottom: 10px;
  }
}

.pages {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-left: auto;
  max-width: 775px;
}

.pages .showAll:before {
  content: "Показать по";
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
  margin-right: 20px;
}

.pages .showAll select {
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
  background: transparent;
}

.pages .prev {
  background: var(--gray-bg) url("../images/icons/arrow-down.svg") center no-repeat;
  background-size: 20px 17px;
  border-radius: 66px;
  font-size: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 40px;
  height: 40px;
}

.pages .next {
  background: var(--gray-bg) url("../images/icons/arrow-down.svg") center no-repeat;
  background-size: 20px 17px;
  border-radius: 66px;
  font-size: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pages>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.pages b {
  position: relative;
}

.pages b::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.pages>div b,
.pages>div a {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.catalog__description {
  max-width: 800px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.catalog__description p,
.catalog__description ul {
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--black);
}

.catalog__description ul {
  margin-bottom: 10px;
  padding-left: 25px;
}

.catalog__description ul li {
  list-style: disc;
}

.catalog__description b {
  display: block;
  font-weight: 600;
  font-size: 17px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 10px;
}

.catalog__subcat .title {
  font-size: 28px;
}

.catalog-group__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.catalog__subcat .see-all,
.catalog-group__list a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--blue);
  background: var(--gray-bg);
  border-radius: 4px;
}

.catalog-group__list li:last-of-type {
  margin-right: 10px;
}

.catalog__subcat .see-all {
  color: var(--dark-gray);
}

.options-button {
  padding: 13.5px 17px;
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  color: var(--blue);
  text-align: center;
  background: var(--blue-btn);
  border-radius: 8px;
}

.tabs {
  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-top: 10px;
  margin-bottom: 20px;
  position: relative;
}

.tabs-button {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--dark-gray);
  -webkit-transition: color var(--anim);
  -o-transition: color var(--anim);
  transition: color var(--anim);
}

.tabs-button.active {
  pointer-events: none;
  color: var(--blue);
}

.tabs__link-back {
  display: none;
  position: absolute;
  left: 0;
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

.switch label {
  display: block;
  position: relative;
  width: 51px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 51px;
  flex: 0 0 51px;
  height: 31px;
  background: var(--gray-btn);
  border-radius: 29px;
  cursor: pointer;
  -webkit-transition: background var(--anim);
  -o-transition: background var(--anim);
  transition: background var(--anim);
}

.switch label::after {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  background: var(--white);
  border-radius: 22px;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
  top: 50%;
  -webkit-transform: translate3d(2px, -50%, 0);
  transform: translate3d(2px, -50%, 0);
  left: 0;
  -webkit-transition: -webkit-transform var(--anim);
  transition: -webkit-transform var(--anim);
  -o-transition: transform var(--anim);
  transition: transform var(--anim);
  transition: transform var(--anim), -webkit-transform var(--anim);
  will-change: transfrom;
}

.switch input:checked+label {
  background: var(--green-gradient);
}

.switch input:checked+label::after {
  -webkit-transform: translate3d(calc(100% - 5px), -50%, 0);
  transform: translate3d(calc(100% - 5px), -50%, 0);
}

.suggest-close {
  position: absolute;
}

.suggest-results {
  font-family: "TTInterfaces", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  background: var(--white);
  border-radius: 8px;
  border: none;
  z-index: 2;
  position: absolute;
  top: 50px;
  left: 0;
  -webkit-box-shadow: 0px 2px 6px rgb(0 0 0 / 5%);
  box-shadow: 0px 2px 6px rgb(0 0 0 / 5%);
  padding: 20px 0;
}

.result-list,
.suggest-results ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.suggest-results li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  -webkit-transition: all var(--anim);
  -o-transition: all var(--anim);
  transition: all var(--anim);
  min-height: 30px;
  cursor: pointer;
}

.suggest-results li:hover {
  background: var(--gray-bg);
}

.sweet-modal-content {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.sweet-modal-box.alert {
  width: 100% !important;
  max-width: 870px !important;
  left: 50% !important;
  top: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}

.sweet-modal-content #forSDEK {
  width: 100%;
  height: 600px;
}

.section-callback {
  position: relative;
  height: 750px;
  margin-top: 30px;
}

.section-callback__background img {
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.section-callback__form {
  color: var(--white);
}

.section-callback__container {
  padding: 60px 15px 40px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-callback__title {
  font-weight: 600;
  font-size: 19px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 10px;
}

.section-callback__text {
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 20px;
}

.section-callback__button {
  font-weight: 600;
  width: 100%;
  margin: 10px 0 20px;
}

.section-callback__form .contacts-block p {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

.section-callback__form .contacts-block .flex-row {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

/* .section-callback__form .form-field {
  border: none;
} */

.contacts-block__desk {
  display: none;
}

.section-callback__form .contacts-block__link {
  color: var(--white);
}

.callback-person {
  border-top: 1px solid #f0f1f5;
  padding-top: 5px;
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.callback-person__name {
  font-weight: 600;
  font-size: 13px;
  line-height: 120%;
  margin-bottom: 5px;
}

.callback-person__post {
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
}

.phone-handler {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 6px;
  margin-bottom: 15px;
}

.phone-handler .dropdown {
  background: var(--gray-bg);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
}

.phone-handler__country {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
}

.phone-handler input,
.phone-handler span {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
}

.phone-handler input::-webkit-input-placeholder {
  color: var(--dark-gray);
}

.phone-handler input::-moz-placeholder {
  color: var(--dark-gray);
}

.phone-handler input:-ms-input-placeholder {
  color: var(--dark-gray);
}

.phone-handler input::-ms-input-placeholder {
  color: var(--dark-gray);
}

.phone-handler input::placeholder {
  color: var(--dark-gray);
}

.callback-popup .popup__container {
  max-width: 400px;
  width: 100%;
  padding: 30px;
}

.callback-popup .popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.callback-popup .popup__form .blue-gr_btn {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
}

.popup__title {
  font-weight: 700;
  font-size: 21px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 10px;
}

.popup__subtitle {
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: var(--black);
  margin-bottom: 30px;
}

.err {
  margin: 5px 0 0 5px;
}

.newcatalog .catalog__header .breadcrumbs {
  margin-bottom: 0;
  padding: 10px 0;
}

.newcatalog .catalog__header .breadcrumbs .title {
  margin-bottom: 0;
  padding-bottom: 15px;
}

.verification-code-field .err,
.phone-handler .err {
  position: absolute;
  font-size: 13px;
  color: var(--red);
  bottom: -20px;
}

.phone-handler .err {
  bottom: -32px;
}

.verification-code-field .err {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 5px 0 0;
}

.authorization-code-wrapper {
  position: relative;
}

.empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 24px;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 182px;
  width: 100%;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--blue-btn);
  border-bottom-color: var(--blue);
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}

.lots {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.lots-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  /* display: flex;
	align-items: center;
	gap: 20px; */
}

.lots-item:not(:last-child) {
  border-bottom: 2px solid #b5b4b4;
  padding-bottom: 10px;
}

.lots-item__img {
  height: 110px;
  position: relative;
}

.lots-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lots-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-wrap: wrap; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.lots-item__title {
  /* flex: 0 1 100%; */
}

.lots-item__type,
.lots-item__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #757575;
}

.lots-item__type span:nth-child(2),
.lots-item__year span:nth-child(2) {
  color: var(--black);
  text-transform: uppercase;
}

.lots-item__bet {
  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-size: 20px;
}

.lots-item button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media (max-width: 1280px) {
  .lots-item__img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .lots-item {
    -ms-grid-columns: 2fr 1fr 1fr 1fr;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lots-item__img {
    height: 100px;
  }

  main .bc_header__wrapper {
    position: absolute;
    top: -45px;
  }

  main .bc_content {
    margin-top: 40px;
  }

  main .bc_header {
    border-radius: 12px 12px 0 0;
  }

  main .bc_header .bc_header-item {
    padding-bottom: 7px;
  }

  main .bc_header:first-of-type {
    background-color: var(--blue-btn);
  }

  main .bc_wrapper:has(.bc_header__wrapper) {
    position: relative;

    border-radius: 0 12px 12px 12px;
  }

  .header_lite .search__form {
    display: none;
  }

  .header_lite .header__actions>.header__phone {
    display: none;
  }

  .header_lite .header__actions {
    min-width: 120px;
  }

  .catalog__container .bc_header {
    padding: 15px 20px 10px 20px !important;
  }
}

@media (max-width: 390px) {
  .lots-item__img {
    display: none;
  }

  .lots-item {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1279px) {
  .mash-kit-nav {
    display: none;
  }

  .header-car:has(.mash-kit-nav)>.header__phone {
    display: none !important;
  }
}