@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap");
:root {
  --font-family: "Golos Text", sans-serif;
  --gray1: #4E4B66;
  --gray2: #585a74;
  --gray3: #F8F8F8;
  --gray4: #6E7191;
  --gray5: #F1F1F1;
  --gray6: #C2C4D2;
  --gray7: #A0A3BC;
  --gray8: #E8E8E8;
  --orange1: #F56E1E;
  --orange2: #DE5703;
  --orange3: #DE4503;
  --orange4: #FDE9DE;
  --orange5: #FCE1D2;
  --red1: #FF0000;
}

* {
  box-sizing: border-box;
  outline: none;
}

body.bitrix-admin #panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  transition: 0.1s;
}
body.bitrix-admin #panel:not(:hover) {
  transform: translateY(-100%);
}
body.bitrix-admin #panel:not(:hover) #bx-panel {
  box-shadow: none !important;
}
body.bitrix-admin #panel:after {
  content: "";
  display: block;
  height: 24px;
  width: 36px;
  position: absolute;
  top: 100%;
  left: calc(50% - 18px);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background-color: #777f8c;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.28) !important;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--gray4);
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body.header-catalog-toggled, body.mobile-search-toggled, body.mobile-navigation-toggled, body.catalog-sorting-toggled, body.mobile-filter-toggled {
  overflow: hidden;
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange1);
  border: 1px solid var(--orange1);
  color: #fcfcfc;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  cursor: pointer;
  padding: 0 20px;
  transition: 0.2s;
  font-family: var(--font-family);
  text-decoration: none;
}
.btn:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  color: #fcfcfc;
}
.btn:active {
  background: var(--orange3);
  border-color: var(--orange3);
  color: #fcfcfc;
}
.btn:disabled, .btn--disabled {
  background: var(--gray5);
  border-color: var(--gray5);
  color: var(--gray6);
}
.btn svg {
  display: block;
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}
.btn--gray {
  background: var(--gray5);
  border-color: var(--gray5);
  color: var(--gray4);
}
.btn--gray:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.btn--gray:active {
  background: var(--gray5);
  border-color: var(--orange3);
  color: var(--orange3);
}
.btn--gray:disabled, .btn--gray-disabled {
  background: var(--gray5);
  border-color: var(--gray5);
  color: var(--gray6);
}
.btn--white {
  background: #fff;
  border-color: #fff;
  color: var(--gray4);
}
.btn--white:hover {
  background: var(--gray5);
  border-color: var(--gray5);
  color: var(--gray4);
}
.btn--white:active {
  background: var(--orange4);
  border-color: var(--orange4);
  color: var(--orange3);
}
.btn--white:disabled, .btn--white-disabled {
  background: #fff;
  border-color: #fff;
  color: var(--gray6);
}
.btn--white-border {
  background: #fff;
  border-color: var(--gray4);
  color: var(--gray4);
}
.btn--white-border:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--gray4);
}
.btn--white-border:active {
  background: var(--orange4);
  border-color: var(--orange3);
  color: var(--orange3);
}
.btn--white-border:disabled, .btn--white-border-disabled {
  background: #fff;
  border-color: var(--gray6);
  color: var(--gray6);
}
.btn--large {
  height: 54px;
  font-size: 18px;
}
.btn--small {
  height: 30px;
  border-radius: 8px;
  font-size: 14px;
}
.btn--small svg {
  width: 14px;
  height: 14px;
}

.politic a {
  text-decoration: underline;
}
.politic a:hover {
  text-decoration: none;
}

.carousel-outer {
  position: relative;
}
.carousel-outer .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  margin: 20px 0 0 0;
}
.carousel-outer .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gray6);
  border-radius: 4px;
  transition: 0.2s;
}
.carousel-outer .swiper-pagination-bullet-active {
  background: var(--orange1);
  width: 22px;
}
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray4);
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
  opacity: 0.45;
}
.carousel__arrow:hover {
  background: var(--orange1);
  opacity: 0.8;
}
.carousel__arrow--prev {
  left: 0;
}
.carousel__arrow--next {
  right: 0;
}
.carousel__arrow.swiper-button-disabled {
  visibility: hidden;
  pointer-events: none;
}
.carousel__arrow svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
}
.carousel .swiper-slide {
  height: auto;
}

.spoiler-card {
  background: var(--gray5);
  border: 1px solid var(--gray7);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.2s;
}
.spoiler-card + .spoiler-card {
  margin-top: 30px;
}
.spoiler-card.active {
  background: #fff;
}
.spoiler-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 16px 18px 16px;
}
.spoiler-card__head:hover {
  color: var(--orange1);
}
.spoiler-card__head span {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .spoiler-card__head span {
    font-size: 16px;
    line-height: 18px;
  }
}
.spoiler-card__head-icon {
  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: var(--gray5);
  border: 1px solid var(--gray4);
  border-radius: 50%;
  transition: 0.2s;
}
.spoiler-card__head-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  stroke: currentColor;
  fill: none;
  transition: 0.2s;
}
.spoiler-card.active .spoiler-card__head {
  color: var(--orange1);
}
.spoiler-card.active .spoiler-card__head-icon {
  transform: rotateZ(180deg);
}
.spoiler-card__content {
  padding: 0 16px 30px 16px;
  background: #fff;
}

.form {
  position: relative;
}
.form__global-error {
  margin: 30px 0 0 0;
  text-align: center;
  color: var(--red1);
}
.form:not(.form--global-error) .form__global-error {
  display: none;
}
.form__global-success {
  margin: 30px 0 0 0;
  text-align: center;
  color: var(--gray4);
}
.form:not(.form--global-success) .form__global-success {
  display: none;
}
.form--sended > *:not(.form-success) {
  visibility: hidden;
  pointer-events: none;
}
.form-success {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form-success__content {
  margin: auto;
}
.form-success__content > *:first-child {
  margin-top: 0;
}
.form-success__content > *:last-child {
  margin-bottom: 0;
}
.form:not(.form--sended) .form-success {
  display: none;
}

.form-group {
  display: flex;
  position: relative;
}
.form-group__placeholder {
  display: block;
  position: absolute;
  left: 12px;
  top: 16px;
  font-size: 16px;
  line-height: 16px;
  color: var(--gray7);
  z-index: 2;
  transition: 0.2s;
  pointer-events: none;
}
.form-group__placeholder span {
  transition: 0.2s;
}
.form-group.form-group--filled .form-group__placeholder, .form-group:focus-within .form-group__placeholder {
  left: 12px;
  top: 6px;
  font-size: 12px;
  line-height: 12px;
}
.form-group.form-group--filled .form-group__placeholder span, .form-group:focus-within .form-group__placeholder span {
  color: var(--red1);
}
.form-group.form-group--error .form-group__placeholder {
  color: var(--red1);
}
.form-group__warning {
  display: block;
  position: absolute;
  left: 12px;
  top: 100%;
  font-size: 12px;
  line-height: 16px;
  color: var(--red1);
  transition: 0.2s;
  pointer-events: none;
}
.form-group:not(.form-group--error) .form-group__warning {
  display: none;
}
.form-group__description {
  display: block;
  position: absolute;
  left: 12px;
  top: 100%;
  font-size: 12px;
  line-height: 16px;
  color: var(--gray7);
  transition: 0.2s;
  pointer-events: none;
}
.form-group.form-group--error .form-group__description {
  display: none;
}
.form-group__clear {
  position: absolute;
  top: 16px;
  right: 15px;
  color: var(--gray7);
  cursor: pointer;
  transition: 0.2s;
}
[data-input-password] ~ .form-group__clear {
  right: 42px;
}
.form-group__clear:hover {
  color: var(--gray4);
}
.form-group__clear svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.form-group:not(.form-group--filled) .form-group__clear, .form-group.form-group--valid .form-group__clear {
  display: none;
}
.form-group__check {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color: var(--gray7);
  cursor: pointer;
}
[data-input-password] ~ .form-group__check {
  right: 42px;
}
.form-group__check svg {
  display: block;
  width: 18px;
  height: 15px;
  stroke: currentColor;
  fill: none;
}
.form-group:not(.form-group--valid) .form-group__check {
  display: none;
}
.form-group__eye {
  position: absolute;
  top: 13px;
  right: 15px;
  color: var(--gray7);
  cursor: pointer;
  transition: 0.2s;
}
.form-group__eye:hover {
  color: var(--gray4);
}
.form-group__eye svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.form-group input[type=text],
.form-group input[type=password] {
  width: 100%;
  min-width: unset;
  outline: none;
  height: 48px;
  padding: 9px 40px 0 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--gray1);
  border: 1px solid var(--gray7);
  font-family: var(--font-family);
  font-size: 16px;
  transition: 0.2s;
}
.form-group input[type=text][data-input-password],
.form-group input[type=password][data-input-password] {
  padding-right: 67px;
}
.form-group input[type=text]:hover,
.form-group input[type=password]:hover {
  border-color: var(--orange2);
}
.form-group input[type=text]:focus,
.form-group input[type=password]:focus {
  border-color: var(--orange1);
}
.form-group:not(.form-group--filled) input[name=time]:not(:focus) {
  color: #fff;
}
.form-group.form-group--error input[type=text], .form-group.form-group--error input[type=password] {
  background: #ffe2e2;
  border-color: var(--red1);
  color: var(--red1);
}
.form-group textarea {
  display: block;
  width: 100%;
  min-width: unset;
  outline: none;
  padding: 18px 16px 40px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--gray1);
  border: 1px solid var(--gray7);
  font-family: var(--font-family);
  font-size: 16px;
  transition: 0.2s;
  resize: none;
}
.form-group textarea:hover {
  border-color: var(--orange2);
}
.form-group textarea:focus {
  border-color: var(--orange1);
}
.form-group.form-group--error textarea {
  background: #ffe2e2;
  border-color: var(--red1);
  color: var(--red1);
}
.form-group__limit {
  pointer-events: none;
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 12px;
  line-height: 14px;
  color: var(--grey7);
  transition: 0.2s;
}
.form-group.form-group--limit .form-group__limit {
  color: var(--red1);
}
.form-group__select {
  width: 100%;
  position: absolute;
  top: calc(100% + 6px);
  left: 0px;
  background: #fff;
  padding: 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  z-index: 3;
}
.form-group__select > ul {
  padding: 0 12px 0 0;
  margin: 0;
  list-style: none;
  max-height: 152px;
  overflow: auto;
}
.form-group__select > ul::-webkit-scrollbar {
  width: 8px;
  background: none;
}
.form-group__select > ul::-webkit-scrollbar-thumb {
  background-color: var(--gray6);
  border-radius: 10px;
}
.form-group__select > ul::-webkit-scrollbar-track {
  background: none;
}
.form-group__select > ul > li {
  min-height: 38px;
  padding: 9px 6px;
  border-radius: 8px;
  transition: 0.2s;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
.form-group__select > ul > li + li {
  margin-top: 0;
}
.form-group__select > ul > li.form-group__select-noresult {
  pointer-events: none;
}
.form-group:not(.form-group--noresult) .form-group__select > ul > li.form-group__select-noresult {
  display: none;
}
.form-group.form-group--noresult .form-group__select > ul > li:not(.form-group__select-noresult) {
  display: none;
}
.form-group__select > ul > li:hover {
  background: var(--gray5);
}
.form-group:not(.form-group--focused) .form-group__select {
  display: none;
}
.form-group-flags {
  position: absolute;
  height: 100%;
}
.form-group-flags[data-input-flag=ru] {
  width: 77px;
}
.form-group-flags[data-input-flag=ru] .form-group-flags__current:before {
  background-image: url(../img/flags/flag_ru.png);
}
.form-group-flags[data-input-flag=ru] + input {
  padding-top: 0;
  padding-left: 77px;
}
.form-group-flags[data-input-flag=kz] {
  width: 77px;
}
.form-group-flags[data-input-flag=kz] .form-group-flags__current:before {
  background-image: url(../img/flags/flag_kz.png);
}
.form-group-flags[data-input-flag=kz] + input {
  padding-top: 0;
  padding-left: 77px;
}
.form-group-flags[data-input-flag=by] {
  width: 94px;
}
.form-group-flags[data-input-flag=by] .form-group-flags__current:before {
  background-image: url(../img/flags/flag_by.png);
}
.form-group-flags[data-input-flag=by] + input {
  padding-top: 0;
  padding-left: 94px;
}
.form-group-flags[data-input-flag=az] {
  width: 96px;
}
.form-group-flags[data-input-flag=az] .form-group-flags__current:before {
  background-image: url(../img/flags/flag_az.png);
}
.form-group-flags[data-input-flag=az] + input {
  padding-top: 0;
  padding-left: 96px;
}
.form-group-flags__current {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 0 3px;
  padding: 0 12px;
  cursor: pointer;
}
.form-group-flags__current:before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background-size: cover;
  background-position: center;
}
.form-group-flags__current:after {
  content: "";
  display: block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid var(--gray7);
}
.form-group-flags__current:hover:after {
  border-top-color: var(--orange1);
}
.form-group-flags__current img {
  display: block;
  width: 20px;
}
.form-group-flags__current span {
  font-size: 14px;
  transition: 0.2s;
  position: relative;
}
.form-group-flags__current:hover span {
  color: var(--orange1);
}
.form-group-flags.active .form-group-flags__current span:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  cursor: pointer;
}
.form-group-flags__popup {
  position: absolute;
  top: calc(100% - 1px);
  left: 0px;
  background: #fff;
  border: 1px solid var(--gray7);
  z-index: 5;
  border-radius: 6px;
  max-height: 120px;
  overflow: auto;
}
.form-group-flags__popup::-webkit-scrollbar {
  width: 4px;
  background: none;
}
.form-group-flags__popup::-webkit-scrollbar-thumb {
  background-color: var(--gray6);
  border-radius: 10px;
}
.form-group-flags__popup::-webkit-scrollbar-track {
  background: none;
}
.form-group-flags:not(.active) .form-group-flags__popup {
  display: none;
}
.form-group-flags__item {
  display: flex;
  align-items: center;
  gap: 0 5px;
  padding: 7px 10px;
  transition: 0.2s;
  cursor: pointer;
}
.form-group-flags__item:hover {
  background: var(--gray8);
  color: var(--orange1);
}
.form-group-flags__item:before {
  content: "";
  display: block;
  width: 20px;
  flex: 0 0 20px;
  height: 15px;
  background-size: cover;
  background-position: center;
}
.form-group-flags__item[data-input-flag-selector=ru]:before {
  background-image: url(../img/flags/flag_ru.png);
}
.form-group-flags__item[data-input-flag-selector=kz]:before {
  background-image: url(../img/flags/flag_kz.png);
}
.form-group-flags__item[data-input-flag-selector=by]:before {
  background-image: url(../img/flags/flag_by.png);
}
.form-group-flags__item[data-input-flag-selector=az]:before {
  background-image: url(../img/flags/flag_az.png);
}
.form-group-flags__item-name {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.form-group-flags__item-name span {
  display: inline-block;
  color: var(--gray6);
}

.radio-switch {
  display: flex;
  padding: 8px 6px;
  background: var(--gray5);
  border-radius: 12px;
  flex-flow: row wrap;
}
.radio-switch__item {
  cursor: pointer;
  flex: 1;
}
.radio-switch__item input {
  display: none;
}
.radio-switch__item span {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: var(--gray4);
  padding: 8px 10px;
  text-align: center;
  border-radius: 8px;
  transition: 0.2s;
}
.radio-switch__item input:checked ~ span {
  background: var(--orange1);
  color: #fff;
}

.checkbox {
  display: flex;
  gap: 0 8px;
  cursor: pointer;
}
.checkbox input {
  display: none;
}
.checkbox-checker {
  width: 16px;
  height: 16px;
  margin: 2px 0 0 0;
  border: 1px solid #6f7290;
  border-radius: 2px;
  transition: 0.2s;
  position: relative;
}
.checkbox-checker:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../img/icons/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
  opacity: 0;
}
.checkbox input:checked ~ .checkbox-checker {
  border-color: var(--orange1);
}
.checkbox input:checked ~ .checkbox-checker:after {
  opacity: 1;
}
.checkbox-title {
  transition: 0.2s;
}
.checkbox input:checked ~ .checkbox-title {
  color: var(--orange1);
}
.checkbox input:disabled ~ .checkbox-checker {
  border-color: var(--gray6);
  cursor: default;
}
.checkbox input:disabled ~ .checkbox-title {
  color: var(--gray6);
  cursor: default;
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, .4);
}

.fancybox__content > .f-button.is-close-btn {
  top: 5px;
  right: 5px;
  --f-button-bg: #f1f1f1;
  --f-button-color: #3e4158;
  --f-button-hover-bg: #f1f1f1;
  --f-button-hover-color: #F56E1E;
  --f-button-svg-width: 16px;
  --f-button-svg-height: 16px;
  --f-button-svg-stroke-width: 3;
  border-radius: 50%;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-bg: #f1f1f1;
  --f-button-color: #3e4158;
  --f-button-hover-bg: #f1f1f1;
  --f-button-hover-color: #F56E1E;
  --f-button-svg-width: 16px;
  --f-button-svg-height: 16px;
  --f-button-svg-stroke-width: 3;
}

.fancybox__container.fancybox__container--auth {
  transform: none !important;
}
.fancybox__container.fancybox__container--auth .fancybox__slide {
  padding: 0;
  transform: none !important;
  overflow: hidden;
}
.fancybox__container.fancybox__container--auth .fancybox__slide::before, .fancybox__container.fancybox__container--auth .fancybox__slide::after {
  display: none;
}
.fancybox__container.fancybox__container--auth .fancybox__track {
  transform: none !important;
}
.fancybox__container.fancybox__container--auth:not(.is-compact) .fancybox__slide.has-close-btn {
  padding: 0;
}
.fancybox__container.fancybox__container--auth .fancybox__content > .f-button.is-close-btn {
  top: 5px;
  right: 5px;
  --f-button-bg: #f1f1f1;
  --f-button-color: #3e4158;
  --f-button-hover-bg: #f1f1f1;
  --f-button-hover-color: #F56E1E;
  --f-button-svg-width: 16px;
  --f-button-svg-height: 16px;
  --f-button-svg-stroke-width: 3;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .fancybox__slide {
    padding: 0;
  }
}

.popup {
  padding: 46px 30px 30px 30px;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  background: #fff;
  min-width: 390px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .popup {
    min-width: unset;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 46px 24px 30px 24px;
  }
}
.popup--auth {
  width: 560px;
  height: 100%;
  border-radius: 0;
  margin: 0 0 0 auto;
  transition: 0.1s;
  padding: 95px 52px 50px 52px;
}
.popup--auth.popup-auth-hide {
  animation: slideOutRight 0.3s forwards;
}
.popup--auth.popup-auth-show {
  animation: slideInRight 0.3s forwards;
}
@media screen and (max-width: 767px) {
  .popup--auth {
    width: 100%;
  }
}
.popup--brand {
  max-width: 390px;
}
.popup--no-close {
  padding: 30px 30px;
}
@media screen and (max-width: 767px) {
  .popup--no-close {
    height: auto;
  }
}
.popup--no-close .f-button.is-close-btn {
  display: none !important;
}
.popup__title {
  color: var(--gray4);
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 16px 0;
}
.popup__auth-title {
  color: var(--gray1);
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 40px 0;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.auth-form .form-group + .form-group {
  margin-top: 56px;
}
.auth-form .form__global-error {
  margin: 0 0 30px 0;
}
.auth-form__login {
  margin: 37px auto 0 auto;
  width: 210px;
  flex: 0 0 40px;
}
.auth-form__registration {
  margin: 40px auto 30px auto;
  width: 210px;
  flex: 0 0 40px;
}
.auth-form__restore {
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  color: var(--gray7);
  transition: 0.2s;
  margin: 16px 0 0 0;
  cursor: pointer;
}
.auth-form__restore:hover {
  color: var(--orange2);
}
.auth-form__politic {
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: var(--gray7);
  margin: auto 0 0 0;
}

.forgotten-password-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.forgotten-password-form .form-group + .form-group {
  margin-top: 56px;
}
.forgotten-password-form .form__global-error {
  margin: 30px 0 30px 0;
  color: var(--gray4);
}
.forgotten-password-form .form__global-error span {
  color: var(--orange1);
}
.forgotten-password-form .form__global-error .btn {
  margin: 0 auto;
  width: 210px;
}
.forgotten-password-form .form__global-success {
  margin: 30px 0 30px 0;
}
.forgotten-password-form__submit {
  margin: 37px auto 0 auto;
  width: 210px;
  flex: 0 0 40px;
}
.forgotten-password-form__politic {
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: var(--gray7);
  margin: auto 0 0 0;
}

.form-callback .form-group + .form-group {
  margin-top: 32px;
}
.form-callback .btn {
  width: 182px;
  margin: 32px auto 0 auto;
}

.empty-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray6);
  padding: 0 24px;
  border-radius: 20px;
  min-height: 250px;
}
.empty-list__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: var(--gray4);
  margin: 0 0 12px 0;
  text-align: center;
}
.empty-list__title + .btn {
  margin-top: 20px;
}
.empty-list__subtitle {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
/*--- TYPOGRAPHY ---*/
::selection {
  background: var(--orange1);
  color: #fff;
}

::-moz-selection {
  background: var(--orange1);
  color: #fff;
}

h1,
.h1 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 74px;
  line-height: 127%;
  text-transform: uppercase;
  line-height: 1.25;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media screen and (max-width: 389px) {
  h1,
  .h1 {
    font-size: 18px;
    line-height: 28px;
  }
}

h2,
.h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--gray1);
  margin: 16px 0 32px 0;
}

h3,
.h3 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 389px) {
  h3,
  .h3 {
    font-size: 16px;
  }
}

h4,
.h4 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.25;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  h4,
  .h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 389px) {
  h4,
  .h4 {
    font-size: 16px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 12px;
}

ul {
  margin: 12px 0 24px 0;
  padding: 0 0 0 18px;
  list-style-type: disc;
}

ol {
  margin: 12px 0 24px 0;
  padding: 0 0 0 18px;
}

li {
  font-size: 1rem;
}
li + li {
  margin-top: 12px;
}
li > *:last-child {
  margin-bottom: 0;
}
li > *:first-child {
  margin-top: 0;
}
li::marker {
  color: var(--siniy);
}

dl {
  margin-top: 0;
  margin-bottom: 24px;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 35px 0 36px 0;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--orange1);
  text-decoration: underline;
}
a:hover {
  color: var(--orange2);
  text-decoration: none;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

.table-wrapper {
  overflow: auto;
}

table {
  margin: 0;
  border-collapse: collapse;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
table thead {
  background: var(--orange1);
  color: #fff;
}
table thead td {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  padding: 24px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}
table tbody {
  border-bottom: 1px solid #e3e3e3;
}
table tbody tr {
  background: #fff;
  color: var(--chernyy);
}
table tbody tr:nth-child(2n) {
  background: var(--fon);
}
table tbody td {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 111%;
  color: var(--chernyy);
  padding: 24px 30px;
  border-left: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
}

.table--classic thead tr td:not(:first-child) {
  text-align: center;
}
.table--classic tbody tr td:not(:first-child) {
  text-align: center;
}

blockquote {
  padding: 24px 24px;
  border-left: 6px solid var(--orange1);
  margin: 24px 0;
}
blockquote > *:first-child {
  margin-top: 0;
}
blockquote > *:last-child {
  margin-bottom: 0;
}

.link-dashed {
  color: var(--orange1);
  border-bottom: 1px dashed currentColor;
  text-decoration: none;
}
.link-dashed:hover {
  border-bottom-color: transparent;
}

.f-tiny {
  font-weight: 100;
}
.f-noraml {
  font-weight: 400;
}
.f-bold {
  font-weight: 700;
}

.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-annotation {
  color: #939393;
  font-size: 12px;
  padding: 6px 0 0 0;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-decoration-line-through {
  text-decoration: line-through;
}
.text-decoration-underline {
  text-decoration: line-through;
}
.text-decoration-none {
  text-decoration: none;
}
.text-gradient {
  background: linear-gradient(128deg, #765FFE, #D774E0 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.img-rounded {
  border-radius: 24px;
}
.img-rounded-small {
  border-radius: 12;
}
.img-bordered {
  border: 1px solid #eee;
  padding: 12px 12px;
}
.img-bordered-small {
  border: 1px solid #eee;
  padding: 6px 6px;
}
.img-center {
  margin-left: auto;
  margin-right: auto;
}
.img-left {
  float: left;
  margin: 0 24px 24px 0;
}
@media screen and (max-width: 991px) {
  .img-left {
    float: none;
    margin: 0;
    width: 100%;
  }
  .img-left.w-25, .img-left.w-50, .img-left.w-75 {
    width: 100%;
  }
}

@keyframes animation-scale-small {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.975);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flip-in {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flip-out {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
.rich_edit {
  position: relative;
}

.rich_edit h2 {
  font-size: 22px;
  line-height: 24px;
  color: var(--gray1);
  margin-bottom: 30px;
}

.rich_edit h3,
.rich_edit b {
  font-size: 18px;
  line-height: 22px;
  color: var(--gray1);
  margin-bottom: 14px;
  font-weight: 700;
}

.rich_edit img {
  max-width: 100%;
  display: block;
  margin: 15px 0 40px;
  border-radius: 20px;
}

.rich_edit p {
  margin: 0;
  padding: 0 0 25px;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  .rich_edit p {
    font-size: 16px;
    line-height: 18px;
  }
}

.rich_edit blockquote {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: var(--orange1);
  position: relative;
  margin: 0 0 40px 89px;
  padding: 0 0 0 30px;
  display: block;
  border: none;
  background: none;
}
@media screen and (max-width: 767px) {
  .rich_edit blockquote {
    margin: 0 0 40px 0;
  }
}

.rich_edit blockquote p {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .rich_edit blockquote p {
    font-size: 18px;
    line-height: 26px;
  }
}

.rich_edit blockquote p:last-of-type {
  padding: 0;
}

.rich_edit blockquote:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 5px;
  width: 19px;
  height: 20px;
  background: url(../img/icons/arrow.svg) 0 0/100% auto no-repeat;
}

.rich_edit blockquote:after {
  top: 37px;
  left: 0;
  position: absolute;
  content: "";
  width: 3px;
  bottom: 0;
  background: var(--orange5);
}

.rich_edit iframe {
  border: 1px solid var(--gray4);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 0 0 40px;
}

.rich_edit ul.default_ul,
.vacancies-tabs .rich_edit ul {
  position: relative;
  margin: 0 0 25px;
  list-style: none;
  padding: 0;
}

.rich_edit ul.default_ul li,
.vacancies-tabs .rich_edit ul li {
  position: relative;
  padding: 0 0 0 28px;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 26px;
}

.rich_edit ul.default_ul li:before,
.vacancies-tabs .rich_edit ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url(../img/icons/check2.svg) 0 0/100% auto no-repeat;
}

.rich_edit ul.default_ul li:last-of-type,
.vacancies-tabs .rich_edit ul li:last-of-type {
  margin: 0;
}

.rich_edit.content-inner img,
.rich_edit.content-inner p {
  margin: 0;
  padding: 0;
  display: block;
}

.rich_edit.content-inner br + br,
.rich_edit.content-inner .item_nav__block + br {
  display: none;
}

.top-pillow {
  height: 135px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .top-pillow {
    height: 132px;
  }
}
@media screen and (max-width: 767px) {
  .top-pillow {
    height: 75px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .header-top {
    padding: 9px 0;
    background: #fff;
    transition: 0.2s;
    z-index: 7;
    position: relative;
  }
  body.scroll-down .header-top {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  }
}
.header-top-inner {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-inner {
    gap: 0 15px;
  }
}
.header-bottom {
  background: #fff;
  padding: 9px 0;
  transition: 0.2s;
  z-index: 6;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-bottom {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100% - 75px - 64px);
    padding: 0 0 20px 0;
    overflow: auto;
    transition: 0.2s;
  }
  body:not(.mobile-navigation-toggled) .header-bottom {
    transform: translateX(-120%);
  }
}
@media screen and (min-width: 768px) {
  body.scroll-up .header-bottom {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  }
  body.scroll-down .header-bottom, body.header-catalog-toggled .header-bottom {
    transform: translateY(-100%);
  }
}
.header-bottom-inner {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (min-width: 1200px) and (max-width: 1219px) {
  .header-bottom-inner {
    gap: 0 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-bottom-inner {
    gap: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .header-bottom-inner {
    flex-direction: column;
  }
}
.header__slogan {
  background: var(--gray5);
  width: 174px;
  font-size: 9px;
  line-height: 28px;
  color: #a0a3bd;
  text-align: center;
  border-radius: 28px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .header__slogan {
    display: none;
  }
}
.header__logo {
  display: block;
}
@media screen and (max-width: 767px) {
  .header__logo {
    display: none;
  }
}
.header__logo img {
  display: block;
  height: 69px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header__logo img {
    height: 55px;
  }
}
.header-catalog-btn {
  width: 180px;
}
body.header-catalog-toggled .header-catalog-btn {
  background: var(--orange5);
  border-color: var(--orange5);
  color: var(--orange1);
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-catalog-btn {
    width: 52px;
    height: 44px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .header-catalog-btn {
    display: none;
  }
}
.header-catalog-btn svg {
  display: block;
}
.header-catalog-btn svg:nth-child(1) {
  width: 23px;
  height: 23px;
}
body.header-catalog-toggled .header-catalog-btn svg:nth-child(1) {
  display: none;
}
.header-catalog-btn svg:nth-child(2) {
  width: 18px;
  height: 17px;
  margin: 0 5px 0 0;
}
body:not(.header-catalog-toggled) .header-catalog-btn svg:nth-child(2) {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-catalog-btn span {
    display: none;
  }
}
.header-catalog-popup {
  position: fixed;
  top: 87px;
  left: 0;
  width: 100%;
  height: calc(100% - 87px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header-catalog-popup {
    top: 0;
    height: calc(100% - 64px);
    background: #fff;
  }
}
body:not(.header-catalog-toggled) .header-catalog-popup {
  visibility: hidden;
  pointer-events: none;
}
.header-catalog-popup .container {
  height: 100%;
  position: relative;
  z-index: 1;
  pointer-events: none;
  transition: 0.4s;
}
body:not(.header-catalog-toggled) .header-catalog-popup .container {
  transform: translateX(-120%);
}
.header-catalog-popup .container * {
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .header-catalog-popup .container:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(-100vw + 15px);
    width: 100vw;
    height: 100%;
    background: #fff;
  }
}
.header-catalog-popup__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: 0.4s;
}
body:not(.header-catalog-toggled) .header-catalog-popup__background {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .header-catalog-popup__background {
    display: none;
  }
}
.header-catalog__first {
  background: #fff;
  width: 384px;
  height: 100%;
  list-style: none;
  padding: 15px 16px 30px 0;
  margin: 0;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .header-catalog__first {
    width: 100%;
    height: calc(100% - 52px);
    padding: 15px 0;
  }
}
.header-catalog__first::-webkit-scrollbar {
  width: 8px;
  background: none;
}
@media screen and (max-width: 767px) {
  .header-catalog__first::-webkit-scrollbar {
    width: 4px;
  }
}
.header-catalog__first::-webkit-scrollbar-thumb {
  background-color: var(--gray6);
  border-radius: 10px;
}
.header-catalog__first::-webkit-scrollbar-track {
  background: none;
}
.header-catalog__first-title {
  position: relative;
  min-height: 44px;
  padding: 20px 32px 0 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header-catalog__first-title {
    display: none;
  }
}
.header-catalog__first-title-close {
  display: flex;
  width: 32px;
  height: 32px;
  background: var(--gray5);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .header-catalog__first-title-close {
    display: none;
  }
}
.header-catalog__first-title-close svg {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  fill: var(--gray4);
}
.header-catalog__first-title > span {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray4);
  margin: 0 auto;
  text-align: center;
}
.header-catalog__first-logo {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.header-catalog__first-chevron {
  display: block;
  width: 9px;
  height: 16px;
  flex: 0 0 9px;
  stroke: currentColor;
  fill: none;
  margin: 0 0 0 auto;
}
.header-catalog__first > li + li {
  margin-top: 8px;
}
.header-catalog__first > li.header-catalog__banner {
  margin-top: 30px;
}
.header-catalog__first > li > a:not(.banner-card) {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 8px 16px 8px 32px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: var(--gray4);
  transition: 0.2s;
  border-radius: 12px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .header-catalog__first > li > a:not(.banner-card) {
    padding: 8px 16px;
    background: var(--gray5);
  }
}
.header-catalog__first > li.active > a:not(.banner-card):hover {
  color: #fff;
  background: var(--orange1);
}
.header-catalog__first > li:not(.active) .header-catalog__second {
  display: none;
}
.header-catalog__second {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 399px;
  width: 300px;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--gray6);
  padding: 15px 4px 0 0;
}
@media screen and (max-width: 767px) {
  .header-catalog__second {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 64px);
  }
}
.header-catalog__second-title {
  position: relative;
  min-height: 44px;
  margin: 0 0 19px 0;
  padding: 0 18px 0 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-catalog__second-title {
    padding: 0 47px 0 15px;
  }
}
.header-catalog__second-title-prev {
  display: flex;
  width: 32px;
  height: 32px;
  background: var(--gray5);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .header-catalog__second-title-prev {
    display: none;
  }
}
.header-catalog__second-title-prev svg {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  fill: var(--gray4);
}
.header-catalog__second-title > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--orange1);
  text-decoration: none;
}
.header-catalog__second-title > a:hover {
  color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .header-catalog__second-title > a {
    margin: 0 auto;
    text-align: center;
  }
}
.header-catalog__second-chevron {
  display: block;
  width: 9px;
  height: 16px;
  flex: 0 0 9px;
  stroke: var(--gray7);
  fill: none;
  margin: 0 0 0 auto;
}
.header-catalog__second-inner {
  margin: 0;
  list-style: none;
  padding: 0 0 30px 0;
  height: 100%;
  overflow: auto;
  flex: 1;
}
.header-catalog__second-inner::-webkit-scrollbar {
  width: 8px;
  background: none;
}
.header-catalog__second-inner::-webkit-scrollbar-thumb {
  background-color: var(--gray6);
  border-radius: 10px;
}
.header-catalog__second-inner::-webkit-scrollbar-track {
  background: none;
}
.header-catalog__second-inner > li + li {
  margin-top: 26px;
}
.header-catalog__second-inner > li:not(.active) .header-catalog__third {
  display: none;
}
.header-catalog__second-inner > li > a {
  display: flex;
  align-items: center;
  gap: 0 12px;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray4);
  transition: 0.2s;
  text-decoration: none;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .header-catalog__second-inner > li > a {
    padding: 0 15px;
  }
}
.header-catalog__second-inner > li.active > a:hover {
  color: var(--orange1);
}
.header-catalog__second-inner > li.active > a:hover > svg {
  color: currentColor;
}
.header-catalog__third {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 299px;
  width: 300px;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--gray6);
  padding: 15px 4px 0 0;
}
@media screen and (max-width: 767px) {
  .header-catalog__third {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 64px);
  }
}
.header-catalog__third-title {
  position: relative;
  min-height: 44px;
  margin: 0 0 19px 0;
  padding: 0 18px 0 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-catalog__third-title {
    padding: 0 47px 0 15px;
  }
}
.header-catalog__third-title-prev {
  display: flex;
  width: 32px;
  height: 32px;
  background: var(--gray5);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .header-catalog__third-title-prev {
    display: none;
  }
}
.header-catalog__third-title-prev svg {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  fill: var(--gray4);
}
.header-catalog__third-title > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--orange1);
  text-decoration: none;
}
.header-catalog__third-title > a:hover {
  color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .header-catalog__third-title > a {
    margin: 0 auto;
    text-align: center;
  }
}
.header-catalog__third-inner {
  margin: 0;
  list-style: none;
  height: 100%;
  overflow: auto;
  padding: 0 0 30px 0;
}
.header-catalog__third-inner::-webkit-scrollbar {
  width: 8px;
  background: none;
}
.header-catalog__third-inner::-webkit-scrollbar-thumb {
  background-color: var(--gray6);
  border-radius: 10px;
}
.header-catalog__third-inner::-webkit-scrollbar-track {
  background: none;
}
.header-catalog__third-inner > li + li {
  margin-top: 26px;
}
.header-catalog__third-inner > li > a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray4);
  transition: 0.2s;
  display: block;
  text-decoration: none;
  padding: 0 60px 0 30px;
}
@media screen and (max-width: 767px) {
  .header-catalog__third-inner > li > a {
    padding: 0 15px;
  }
}
.header-catalog__third-inner > li > a:hover {
  color: var(--orange1);
}
.header-search {
  flex: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .header-search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 28px 15px 0 15px;
    background: #fff;
    transition: 0.2s;
  }
  body:not(.mobile-search-toggled) .header-search {
    transform: translateX(120%);
  }
}
.header-search__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header-search__background {
    display: none;
  }
}
body:not(.header-search-active) .header-search__background {
  display: none;
}
.header-search__form {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 0 12px;
  border: 1px solid var(--gray7);
  background: #fff;
  border-radius: 12px;
  width: 100%;
  transition: 0.2s;
  position: relative;
}
.header-search__form input {
  width: 100%;
  background: none;
  border: none;
  color: var(--gray1);
  font-size: 16px;
  line-height: 16px;
  padding: 16px 0;
  font-family: var(--font-family);
  outline: none;
  color: var(--gray4);
  flex: 1;
}
.header-search__form input::placeholder {
  color: var(--gray7);
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-search__form input {
    padding: 11px 0;
  }
}
@media screen and (min-width: 768px) {
  body.header-search-active .header-search__form {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    border-color: #fff;
  }
}
.header-search__button {
  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--gray5);
  border: none;
  outline: none;
  color: var(--grey4);
  cursor: pointer;
}
.header-search__button:hover {
  color: var(--orange1);
}
.header-search__button svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.header-search__clear {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gray7);
  cursor: pointer;
}
.header-search__clear svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
  margin: auto;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .header-search:not(.header-search--filled) .header-search__clear {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.header-search__dropdown {
  width: 100%;
  padding: 18px 18px;
  border-radius: 12px;
  position: absolute;
  top: calc(100% + 6px);
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .header-search__dropdown {
    position: unset;
    background: none;
    box-shadow: none;
    border-radius: unset;
    overflow: auto;
    height: calc(100% - 54px);
    padding: 18px 0 28px 10px;
  }
}
.header-search:not(.header-search--result) .header-search__dropdown {
  display: none;
}
.header-search-result {
  display: flex;
  align-items: center;
  gap: 0 12px;
  text-decoration: none;
}
.header-search-result + .header-search-result {
  margin-top: 18px;
}
.header-search-result__value {
  font-size: 16px;
  line-height: 16px;
  color: var(--gray4);
  transition: 0.2s;
}
.header-search-result:hover .header-search-result__value {
  color: var(--orange2);
}
.header-search-result__description {
  margin: 4px 0 0 0;
  font-size: 12px;
  line-height: 12px;
  color: var(--gray7);
}
.header-search-result svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: var(--gray6);
}
.header-search-result strong {
  font-weight: 600;
}
.header-search__noresult {
  font-size: 16px;
}
.header-search__all {
  display: block;
  transition: 0.2s;
  font-size: 16px;
  line-height: 16px;
  color: var(--grey4);
  padding: 0 0 0 28px;
  text-decoration: none;
  margin: 18px 0 0 0;
}
.header-search__all:hover {
  color: var(--orange2);
}
.header-action {
  color: var(--gray4);
  transition: 0.2s;
  cursor: pointer;
  min-width: 65px;
  position: relative;
  text-decoration: none;
  position: relative;
}
body.header-profile-toogled .header-action--profile:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.header-action:hover {
  color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .header-action {
    display: none;
  }
}
.header-action > svg {
  display: block;
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  margin: 0 auto 4px auto;
}
.header-action__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
.header-action__counter {
  background: var(--orange1);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 19px;
  text-align: center;
  color: #fff;
  min-width: 24px;
  height: 19px;
  border-radius: 20px;
  position: absolute;
  top: -8px;
  left: 50%;
  padding: 0px 8px;
}
.header-action:not(.header-action--show-counter) .header-action__counter {
  display: none;
}
.header-profile {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  padding: 12px 12px;
  width: 224px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: 0.2s;
  color: var(--gray4);
  z-index: 2;
}
body:not(.header-profile-toogled) .header-profile {
  display: none;
}
.header-profile__person {
  text-decoration: none;
  color: var(--gray4);
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 0 8px;
  transition: 0.2s;
}
.header-profile__person:hover {
  color: var(--orange1);
}
.header-profile__person-icon {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray5);
  grid-row: 1/3;
  transition: 0.2s;
}
.header-profile__person-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: var(--gray4);
  transition: 0.2s;
}
.header-profile__person:hover .header-profile__person-icon {
  background: var(--orange5);
}
.header-profile__person:hover .header-profile__person-icon svg {
  stroke: var(--orange1);
}
.header-profile__person-name {
  grid-row: 1/2;
  line-height: 16px;
  font-weight: 700;
  transition: 0.2s;
}
.header-profile__person-email {
  grid-row: 2/3;
  color: var(--gray7);
  font-size: 12px;
  line-height: 12px;
}
.header-profile__link {
  display: flex;
  align-items: center;
  gap: 0 8px;
  color: var(--gray4);
  text-decoration: none;
  transition: 0.2s;
}
.header-profile__link:hover {
  color: var(--orange1);
}
.header-profile__link + .header-profile__link {
  margin-top: 16px;
}
.header-profile__person + .header-profile__link {
  margin-top: 16px;
}
.header-profile__link svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 30px;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.header-profile__link span {
  font-size: 14px;
  line-height: 18px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .header-navigation {
    width: 100%;
    order: 1;
  }
}
.header-navigation__first {
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-navigation__first {
    gap: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .header-navigation__first {
    display: block;
  }
}
.header-navigation__first > li {
  position: relative;
}
.header-navigation__first > li + li {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .header-navigation__first > li + li {
    margin-top: 16px;
  }
}
.header-navigation__first > li > a {
  color: var(--gray4);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 8px;
  transition: 0.2s;
  text-decoration: none;
  display: block;
  padding: 8px 10px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-navigation__first > li > a {
    font-size: 12px;
    padding: 8px 8px;
  }
}
@media screen and (max-width: 767px) {
  .header-navigation__first > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray5);
    font-size: 20px;
    font-size: 20px;
    padding: 12px 16px;
  }
}
.header-navigation__first > li > a svg {
  display: inline;
  stroke: var(--gray7);
  margin: 0 0 0 6px;
  transition: 0.2s;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 992px) {
  .header-navigation__first > li:hover > a {
    background: var(--gray5);
    color: var(--orange1);
  }
  .header-navigation__first > li:hover > a svg {
    transform: rotateZ(180deg);
    stroke: var(--orange1);
  }
  .header-navigation__first > li:not(:hover) .header-navigation__second {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-navigation__first > li:not(.active) .header-navigation__second {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .header-navigation__first > li.active > a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.header-navigation__second {
  list-style: none;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: calc(100% - 9px);
  padding: 4px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .header-navigation__second {
    position: unset;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .header-navigation__second:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 9px;
    top: -9px;
  }
}
.header-navigation__second > li + li {
  margin-top: 0;
}
.header-navigation__second > li > a {
  display: block;
  position: relative;
  padding: 7px 8px;
  color: var(--gray4);
  border-radius: 8px;
  transition: 0.2s;
  text-decoration: none;
}
.header-navigation__second > li > a:hover {
  background: var(--orange1);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header-navigation__second > li > a {
    font-size: 18px;
    padding: 11px 16px;
  }
}
.header-social {
  display: flex;
  align-items: center;
  gap: 0 24px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .header-social {
    justify-content: center;
    margin: 30px 0 0 0;
    order: 4;
  }
}
.header-social__item {
  display: block;
  color: var(--gray4);
  transition: 0.2s;
}
.header-social__item:hover {
  color: var(--orange1);
}
.header-social__item svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@media screen and (max-width: 767px) {
  .header-social__item svg {
    width: 40px;
    height: 40px;
  }
}
.header-contacts {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-contacts {
    order: 2;
    margin: 30px 0 0 0;
  }
}
.header-contacts__selected {
  color: var(--orange1);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 8px;
  transition: 0.2s;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .header-contacts__selected {
    display: none;
  }
}
.header-contacts__selected svg {
  display: inline;
  stroke: var(--gray7);
  margin: 0 0 0 6px;
  transition: 0.2s;
  position: relative;
  top: -2px;
}
.header-contacts:hover .header-contacts__selected {
  background: var(--gray5);
  color: var(--orange1);
}
.header-contacts:hover .header-contacts__selected svg {
  transform: rotateZ(180deg);
  stroke: var(--orange1);
}
@media screen and (min-width: 768px) {
  .header-contacts-popup {
    position: absolute;
    left: 0;
    padding: 3px 3px 4px;
    min-width: 100%;
    top: calc(100% + 9px);
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 2px 16px rgba(15, 13, 13, 0.2);
    border-radius: 12px;
  }
  .header-contacts-popup:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 9px;
    top: -9px;
  }
  .header-contacts:not(:hover) .header-contacts-popup {
    display: none;
  }
}
.header-contacts__value {
  color: var(--gray4);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 8px;
  transition: 0.2s;
  text-decoration: none;
  display: block;
  padding: 7px 0;
  text-align: center;
}
.header-contacts__value + .header-contacts__value {
  margin-top: 4px;
}
.header-contacts__value:hover {
  color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .header-contacts__value {
    color: var(--orange1);
    padding: 0;
    font-size: 20px;
    line-height: 30px;
  }
}
.header__feedback {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .header__feedback {
    order: 3;
    margin: 30px 0 0 0;
    width: 100%;
    font-size: 16px;
    height: 44px;
    padding: 10px 10px;
  }
}
.header__feedback svg {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__feedback span {
    display: none;
  }
}
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
  padding: 11px 15px;
  background: #fff;
  transition: 0.2s;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .header-mobile {
    display: none;
  }
}
body.scroll-down .header-mobile {
  transform: translateY(-100%);
}
body.scroll-up .header-mobile {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 6px 2px rgba(0, 0, 0, 0.12);
}
.header-mobile__logo {
  display: block;
}
.header-mobile__logo img {
  display: block;
  height: 53px;
}
.header-mobile__navigation {
  display: flex;
  width: 48px;
  height: 48px;
}
.header-mobile__navigation svg {
  display: block;
  margin: auto;
  fill: var(--orange1);
  stroke: none;
}
.header-mobile__navigation svg:nth-child(1) {
  width: 23px;
  height: 23px;
}
body.mobile-navigation-toggled .header-mobile__navigation svg:nth-child(1) {
  display: none;
}
.header-mobile__navigation svg:nth-child(2) {
  width: 18px;
  height: 17px;
}
body:not(.mobile-navigation-toggled) .header-mobile__navigation svg:nth-child(2) {
  display: none;
}
.header-mobile__search {
  display: flex;
  width: 48px;
  height: 48px;
}
.header-mobile__search svg {
  display: block;
  margin: auto;
  fill: none;
  stroke: var(--orange1);
  width: 24px;
  height: 24px;
}

.footer {
  background: var(--gray5);
  padding: 46px 0 116px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer {
    padding: 35px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 28px 0 88px 0;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr 3fr;
  grid-gap: 0 15px;
}
@media screen and (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-gap: 0 0;
  }
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer-contacts {
    display: none;
  }
}
.footer-contacts-group + .footer-contacts-group {
  margin-top: 22px;
}
.footer-contacts-group__title {
  color: var(--gray7);
  font-size: 12px;
  line-height: 14px;
  margin: 0 0 2px 0;
}
.footer-contacts-group__value {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  color: var(--gray4);
}
.footer-contacts-group__value:is(a) {
  transition: 0.2s;
  text-decoration: none;
}
.footer-contacts-group__value:is(a):hover {
  color: var(--orange1);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-contacts-group__value {
    font-size: 14px;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 21px;
  margin: 0 0 17px 0;
  padding: 0 0 9px 0;
  border-bottom: 1px solid var(--gray7);
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-social {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.footer-social__feedback {
  display: block;
  font-size: 12px;
  line-height: 14px;
  text-decoration: underline;
  color: var(--gray4);
  cursor: pointer;
  margin: 0 auto 0 0;
}
.footer-social__feedback:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-social__feedback {
    flex: 0 0 100%;
    margin: 0 0 10px 0;
  }
}
.footer-social__item {
  display: block;
}
.footer-social__item--tg {
  color: #C2C4D2;
}
.footer-social__item--vk {
  color: #A0A3BC;
}
.footer-social__item:hover {
  color: var(--orange1);
}
.footer-social__item svg {
  display: block;
  stroke: none;
  fill: currentColor;
  width: 28px;
  height: 28px;
  transition: 0.2s;
}
.footer-mobile-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 30px;
  width: 100%;
  margin: 0 0 48px 0;
}
@media screen and (min-width: 768px) {
  .footer-mobile-social {
    display: none;
  }
}
.footer-mobile-social__feedback {
  display: block;
  font-size: 12px;
  line-height: 14px;
  text-decoration: underline;
  color: var(--gray4);
  cursor: pointer;
  flex: 0 0 100%;
  width: auto;
  text-align: center;
}
.footer-mobile-social__feedback:hover {
  text-decoration: none;
}
.footer-mobile-social__item {
  display: block;
}
.footer-mobile-social__item--tg {
  color: #C2C4D2;
}
.footer-mobile-social__item--vk {
  color: #A0A3BC;
}
.footer-mobile-social__item:hover {
  color: var(--orange1);
}
.footer-mobile-social__item svg {
  display: block;
  stroke: none;
  fill: currentColor;
  width: 36px;
  height: 36px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .footer-navigation {
    display: none;
  }
}
.footer-navigation__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  color: var(--gray4);
  margin: 0 0 19px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-navigation__title {
    font-size: 14px;
  }
}
.footer-navigation ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-navigation ul li + li {
  margin-top: 16px;
}
.footer-navigation ul li a {
  display: block;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--gray4);
  transition: 0.2s;
}
.footer-navigation ul li a:hover {
  color: var(--gray7);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-navigation ul li a {
    font-size: 12px;
  }
}
.footer__logo {
  display: block;
  margin: 0 0 26px 0;
}
.footer__logo img {
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
.footer__info {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
  margin: 0 0 15px 0;
}
@media screen and (max-width: 767px) {
  .footer__info {
    text-align: center;
  }
}
.footer__requisites {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
  margin: 0 0 52px 0;
}
@media screen and (max-width: 767px) {
  .footer__requisites {
    text-align: center;
    margin: 0 0 35px 0;
  }
}
.footer__copiright {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
  margin: 0 0 3px 0;
}
@media screen and (max-width: 767px) {
  .footer__copiright {
    text-align: center;
  }
}
.footer__privacy {
  font-size: 12px;
  line-height: 14px;
}
@media screen and (max-width: 767px) {
  .footer__privacy {
    text-align: center;
  }
}
.footer__privacy a {
  color: var(--gray4);
}

.sticky-navbar {
  display: flex;
  align-items: center;
  gap: 0 10px;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .sticky-navbar {
    display: none;
  }
}
.sticky-navbar__card {
  display: block;
  text-decoration: none;
  color: var(--gray4);
  position: relative;
}
.sticky-navbar__card.active {
  color: var(--orange1);
}
.sticky-navbar__card-name {
  text-align: center;
  font-size: 10px;
  line-height: 12px;
  margin: 4px 0 0 0;
}
.sticky-navbar__card-counter {
  background: var(--orange1);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #fff;
  min-width: 24px;
  border-radius: 20px;
  position: absolute;
  top: -8px;
  left: 50%;
  padding: 2px 8px;
}
.sticky-navbar__card:not(.sticky-navbar__card--show-counter) .sticky-navbar__card-counter {
  display: none;
}
.sticky-navbar__card svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  margin: 0 auto;
}
.sticky-navbar__card--home svg {
  fill: currentColor;
  stroke: none;
}

.top-products {
  padding: 30px 0;
}
.top-products .carousel .swiper-slide {
  height: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card.product--adding {
  opacity: 0.5;
  pointer-events: none;
}
.product-card__image {
  display: block;
  margin: 0 0 14px 0;
  position: relative;
}
.product-card__image img {
  display: block;
  width: 100%;
}
.product-card__image-carousel img:not(:first-of-type) {
  display: none;
}
.product-card__image-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  pointer-events: none;
}
.product-card__image-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray6);
}
.product-card__image-dot.active {
  background: var(--orange1);
  width: 6px;
  height: 6px;
}
.product-card__favorite {
  position: absolute;
  top: 0;
  right: 0;
  background: #eff0f7;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: flex;
}
.product-card__favorite svg {
  display: block;
  width: 15px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: var(--gray4);
  transition: 0.2s;
}
.product-card__favorite:hover svg {
  fill: var(--orange1);
  stroke: var(--orange1);
}
.product--in-favorite .product-card__favorite {
  background: var(--orange4);
}
.product--in-favorite .product-card__favorite svg {
  fill: var(--orange1);
  stroke: var(--orange1);
}
.product-card__stickers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px 5px;
  pointer-events: none;
}
.product-card__stickers-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: #fff;
  background: #f00;
  padding: 7px 12px;
  border-radius: 8px;
}
.product-card__price {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
}
.product-card__price-icon {
  border-radius: 6px;
  width: 45px;
  height: 22px;
  background: url(../img/icons/rrc.svg) 5px 50% no-repeat #A0A3BC;
  background-size: 14px 14px;
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
  color: var(--gray3);
  padding: 0 0 0 22px;
  margin: 0 12px 0 0;
}
.product-card__price-icon--orange {
  background-color: var(--orange1);
}
.product-card__price-value {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
  line-height: 108%;
  color: #14142b;
  transition: 0.2s;
}
.product-card__price-value:hover {
  color: var(--orange2);
}
@media screen and (max-width: 767px) {
  .product-card__price-value {
    font-size: 20px;
  }
}
.product-card__price-old-value {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 0 2px;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--gray7);
  align-self: start;
}
@media screen and (max-width: 767px) {
  .product-card__price-old-value {
    font-size: 14px;
  }
}
.product-card__count {
  margin: 0 0 8px 0;
}
.product-card__count-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--gray4);
  margin: 0 0 2px 0;
}
.product-card__count-range {
  position: relative;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--gray3);
}
.product-card__count-range-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--orange1);
}
.product-card__title {
  display: -moz-box;
  display: -webkit-box;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  height: 45px;
  color: var(--gray4);
  text-decoration: none;
  transition: 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -moz-box-orient: vertical;
  margin: 0 0 8px 0;
}
.product-card__title:hover {
  color: var(--orange2);
}
.product-card__partnumber {
  margin: 0 0 7px 0;
}
.product-card__partnumber-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--gray1);
}
.product-card__partnumber-value {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 114%;
  color: var(--gray1);
  text-decoration: none;
  transition: 0.2s;
}
.product-card__partnumber-value:hover {
  color: var(--orange2);
}
.product-card__article {
  color: #4E4B66;
  margin: 0 0 3px 0;
}
.product-card__brand {
  margin: 0 0 14px 0;
}
.product-card__brand span {
  color: #4E4B66;
}
.product-card__add svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
}
.product-card__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  height: 44px;
}
.product-card__quantity-btn {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.product-card__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.product-card__quantity-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.product-card__quantity input {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 8px;
  width: 62px;
  height: 32px;
  transition: 0.2s;
  outline: none;
  font-size: 16px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
.product-card__quantity input:hover, .product-card__quantity input:focus {
  border-color: var(--orange1);
}
.product-card-footer {
  margin: auto 0 0 0;
}
.product-card:not(.product--in-cart) .product-card__quantity {
  display: none;
}
.product-card.product--in-cart .product-card__add {
  display: none;
}

.product-table {
  display: grid;
  grid-template-columns: 210px 1fr 230px;
  gap: 0 30px;
}
.product-table__image {
  display: block;
  margin: 0 0 14px 0;
  position: relative;
}
.product-table__image img {
  display: block;
  width: 100%;
}
.product-table__image-carousel img:not(:first-of-type) {
  display: none;
}
.product-table__image-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  pointer-events: none;
}
.product-table__image-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray6);
}
.product-table__image-dot.active {
  background: var(--orange1);
  width: 6px;
  height: 6px;
}
.product-table__stickers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px 5px;
  pointer-events: none;
}
.product-table__stickers-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: #fff;
  background: #f00;
  padding: 7px 12px;
  border-radius: 8px;
}
.product-table-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-table-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-table-actions-footer {
  margin: 30px 0 auto 0;
}
.product-table__title {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  color: var(--gray4);
  text-decoration: none;
  transition: 0.2s;
  margin: 0 0 18px 0;
}
.product-table__title:hover {
  color: var(--orange2);
}
.product-table__partnumber {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin: 0 0 30px 0;
}
.product-table__partnumber-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 114%;
  color: var(--gray1);
}
.product-table__partnumber-value {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 114%;
  color: var(--gray1);
  text-decoration: none;
  transition: 0.2s;
}
.product-table__partnumber-value:hover {
  color: var(--orange2);
}
.product-table__article {
  color: #4E4B66;
  font-size: 16px;
  margin: 0 0 3px 0;
}
.product-table__brand {
  font-size: 16px;
}
.product-table__brand span {
  color: #4E4B66;
}
.product-table__favorite {
  background: #eff0f7;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: flex;
  margin: 0 0 auto auto;
}
.product-table__favorite svg {
  display: block;
  width: 15px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: var(--gray4);
  transition: 0.2s;
}
.product-table__favorite:hover svg {
  fill: var(--orange1);
  stroke: var(--orange1);
}
.product--in-favorite .product-table__favorite {
  background: var(--orange4);
}
.product--in-favorite .product-table__favorite svg {
  fill: var(--orange1);
  stroke: var(--orange1);
}
.product-table__price {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
}
.product-table__price-icon {
  border-radius: 6px;
  width: 45px;
  height: 22px;
  background: url(../img/icons/rrc.svg) 5px 50% no-repeat #A0A3BC;
  background-size: 14px 14px;
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
  color: var(--gray3);
  padding: 0 0 0 22px;
  margin: 0 12px 0 0;
}
.product-table__price-icon--orange {
  background-color: var(--orange1);
}
.product-table__price-value {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
  line-height: 108%;
  color: #14142b;
  transition: 0.2s;
}
.product-table__price-value:hover {
  color: var(--orange2);
}
@media screen and (max-width: 767px) {
  .product-table__price-value {
    font-size: 20px;
  }
}
.product-table__price-old-value {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 0 2px;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--gray7);
  align-self: start;
}
@media screen and (max-width: 767px) {
  .product-table__price-old-value {
    font-size: 14px;
  }
}
.product-table__count {
  margin: 0 0 8px 0;
}
.product-table__count-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 114%;
  color: var(--gray4);
  margin: 0 0 2px 0;
}
.product-table__count-range {
  position: relative;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--gray3);
}
.product-table__count-range-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--orange1);
}
.product-table__add svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
}
.product-table__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  height: 44px;
}
.product-table__quantity-btn {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.product-table__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.product-table__quantity-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.product-table__quantity input {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 8px;
  width: 62px;
  height: 32px;
  transition: 0.2s;
  outline: none;
  font-size: 16px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
.product-table__quantity input:hover, .product-table__quantity input:focus {
  border-color: var(--orange1);
}
.product-table:not(.product--in-cart) .product-table__quantity {
  display: none;
}
.product-table.product--in-cart .product-table__add {
  display: none;
}

.seo-text {
  padding: 30px 0;
}

.last-news {
  padding: 30px 0;
}
.last-news .carousel .swiper-slide {
  height: auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}
.news-card__image {
  border-radius: 20px;
  margin: 0 0 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news-card__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.2s;
}
.news-card__image img {
  display: block;
  width: 100%;
}
.news-card-tags {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 5px;
}
.news-card__tag {
  padding: 7px 12px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  background: var(--orange1);
  border-radius: 8px;
  z-index: 3;
}
.news-card__title {
  position: relative;
  color: var(--gray1);
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  transition: 0.2s;
  margin: 0 0 13px 0;
}
.news-card__title:hover {
  color: var(--orange2);
}
@media screen and (max-width: 1199px) {
  .news-card__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
  }
}
.news-card__date {
  display: flex;
  align-items: center;
  gap: 0 6px;
  color: var(--gray7);
  font-size: 12px;
  margin: auto 0 0 0;
}
.news-card__date svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.news-card:hover .news-card__image:after {
  opacity: 0.45;
}
.news-card:hover .news-card__title {
  color: var(--orange2);
}

.news-list {
  padding: 50px 0 80px 0;
}
.news-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 991px) {
  .news-list-header {
    flex-direction: column;
    gap: 15px 0;
    margin: 0 0 30px 0;
  }
}
.news-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px 30px;
  padding: 0 0 60px 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .news-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .news-list-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.news-list-grid .banner-card {
  grid-column: 1/4;
  margin: 40px 0 80px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .news-list-grid .banner-card {
    margin: 30px 0 60px;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .news-list-grid .banner-card {
    margin: 10px 0 40px;
    grid-column: 1/2;
  }
}
.news-list-archive {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .news-list-archive {
    order: 2;
    background: var(--gray5);
    border-radius: 12px;
    width: 100%;
    justify-content: center;
    padding: 10px 0;
  }
}
.news-list-archive__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: var(--gray4);
}
.news-list-archive-wrapper {
  width: 90px;
  position: relative;
}
.news-list-archive__selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  width: 100%;
  height: 30px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--gray7);
  color: var(--gray1);
  cursor: pointer;
  transition: 0.2s;
}
.news-list-archive__selected:hover {
  border-color: var(--orange2);
}
.news-list-archive__selected svg {
  display: block;
  stroke: var(--gray4);
  transition: 0.2s;
}
.news-list-archive.active .news-list-archive__selected svg {
  transform: scaleY(-1);
}
.news-list-archive-popup {
  position: absolute;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(100% + 8px);
  z-index: 2;
}
.news-list-archive-popup__item {
  display: block;
  color: var(--gray4);
  transition: 0.2s;
  font-size: 16px;
  line-height: 20px;
  padding: 9px 6px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
.news-list-archive-popup__item:hover {
  background: var(--gray5);
}
.news-list-archive:not(.active) .news-list-archive-popup {
  display: none;
}
.news-list-tags {
  display: flex;
  align-items: center;
  gap: 14px 18px;
}
@media screen and (max-width: 991px) {
  .news-list-tags {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0 0 -10px 0;
  }
}
.news-list-tags .btn.active {
  color: var(--orange1);
  border-color: var(--orange1);
  background: var(--orange5);
}
@media screen and (max-width: 991px) {
  .news-list-tags .btn.active {
    white-space: normal;
  }
}

.news {
  padding: 10px 0 50px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 330px calc(100% - 330px - 330px - 30px - 30px) 330px;
  grid-template-areas: "sidebar header header" "navigation content banner";
  grid-gap: 0 30px;
  align-items: start;
  position: relative;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .news-grid {
    grid-template-columns: 330px calc(100% - 330px - 30px - 30px);
    grid-template-areas: "sidebar header" "navigation content";
  }
}
@media screen and (max-width: 991px) {
  .news-grid {
    grid-template-columns: 100%;
    grid-template-areas: "header" "sidebar" "content";
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .news .product-table {
    grid-template-columns: 140px 1fr 150px;
  }
}
@media screen and (max-width: 767px) {
  .news .product-table {
    grid-template-columns: 1fr;
  }
}
.news-sidebar {
  padding: 16px 16px;
  background: var(--gray3);
  border-radius: 20px;
  transition: 0.2s;
  grid-area: sidebar;
}
@media screen and (max-width: 767px) {
  .news-sidebar {
    background: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    gap: 15px 15px;
  }
}
.news-sidebar__item {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: var(--gray7);
}
@media screen and (min-width: 768px) {
  .news-sidebar__item + .news-sidebar__item {
    margin-top: 12px;
  }
}
.news-sidebar__item svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}
.news-sidebar__item span {
  font-size: 14px;
  line-height: 18px;
}
.news-navigation {
  grid-area: navigation;
  position: sticky;
  top: 120px;
  left: 0;
  padding: 16px 16px;
  background: var(--gray3);
  border-radius: 20px;
  transition: 0.2s;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 991px) {
  .news-navigation {
    display: none;
  }
}
body.scroll-up .news-navigation {
  top: 170px;
}
.news-navigation__item {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 8px 8px 8px 8px;
  border-radius: 12px;
  transition: 0.2s;
  color: var(--gray4);
  cursor: pointer;
}
.news-navigation__item.active {
  background: var(--orange5);
  color: var(--orange1);
}
.news-navigation__item svg {
  display: block;
  stroke: currentColor;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.news-navigation__item span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
.news-inner {
  grid-area: content;
}
.news-header {
  margin: 0 0 30px 0;
  grid-area: header;
}
.news-header__subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray7);
}
.news-header h1 {
  color: var(--gray1);
  font-weight: 700;
  margin: 0 0 16px 0;
  font-size: 32px;
  line-height: 36px;
  text-transform: none;
}
.news .news__top-image {
  width: 100%;
  border-radius: 20px;
  margin: 0 0 30px 0;
}
.news .banner-card-side {
  position: sticky;
  top: 120px;
  left: 0;
  transition: 0.2s;
  grid-area: banner;
}
body.scroll-up .news .banner-card-side {
  top: 170px;
}
@media screen and (max-width: 1199px) {
  .news .banner-card-side {
    display: none;
  }
}
.news-gallery {
  margin: 0 0 40px 0;
}
.news-gallery .swiper-slide {
  transition: 0.2s;
}
.news-gallery__card {
  display: block;
}
.news-gallery__card img {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin: 0;
}
.news-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .news-numbers {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.news-numbers__card {
  padding: 25px 10px;
  border: 1px solid var(--gray4);
  border-radius: 20px;
}
.news-numbers__card-title {
  display: block;
  font-weight: 700;
  font-size: 42px;
  margin: 0 0 12px 0;
  line-height: 50px;
  color: var(--orange1);
  text-align: center;
}
.news-numbers__card-description {
  font-size: 16px;
  line-height: 20px;
  color: var(--gray1);
  text-align: center;
}
.news-numbers__card svg {
  display: block;
  width: 94px;
  height: 94px;
  margin: 0 auto 12px auto;
}
.news-video {
  margin: 0 0 40px 0;
}
.news-faq {
  margin: 0 0 40px 0;
}
.news-faq h2 {
  margin: 0 0 30px 0;
}
.news-faq .spoiler-card + .spoiler-card:not(:last-child) {
  border-top: none;
  margin-top: 0;
  border-radius: 0;
}
.news-faq .spoiler-card:first-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.news-faq .spoiler-card:last-child {
  border-top: none;
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.news-products {
  margin: 0 0 40px 0;
}
.news-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
.slider {
  padding: 30px 0;
}
.slider .swiper-slide {
  transition: 0.2s;
}
.slider-card {
  display: block;
}
.slider-card picture {
  display: block;
  width: 100%;
}
.slider-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.benefits {
  padding: 30px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.benefits-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  grid-gap: 0 22px;
  padding: 21px 32px 21px 36px;
  border: 1px solid var(--gray4);
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .benefits-card {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 991px) {
  .benefits-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .benefits-card {
    padding: 20px 10px;
  }
}
.benefits-card img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .benefits-card img {
    width: 90px;
    margin: 0 auto 16px auto;
  }
}
.benefits-card__content h3 {
  margin: 0 0 16px 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--orange1);
  text-transform: none;
}
@media screen and (max-width: 991px) {
  .benefits-card__content h3 {
    font-size: 22px;
    text-align: center;
  }
}
.benefits-card__content p {
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 991px) {
  .benefits-card__content p {
    text-align: center;
  }
}

.banner {
  padding: 30px 0;
}
.banner-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.banner-card picture {
  display: block;
  width: 100%;
}
.banner-card img {
  display: block;
  width: 100%;
}
.banner-card-side {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.banner-card-side img {
  display: block;
  width: 100%;
}

.top-category {
  padding: 30px 0;
}
.top-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0 30px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .top-category-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .top-category-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .top-category-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
@media screen and (max-width: 389px) {
  .top-category-grid {
    grid-gap: 10px 10px;
  }
}

.category-popular-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--gray1);
  padding: 24px 20px;
  transition: 0.2s;
  text-decoration: none;
  border-radius: 20px;
}
.category-popular-card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
@media screen and (max-width: 991px) {
  .category-popular-card {
    padding: 15px 15px;
  }
}
@media screen and (max-width: 389px) {
  .category-popular-card {
    padding: 10px 10px;
  }
}
.category-popular-card img {
  display: block;
  height: 80px;
  margin: 0 0 11px 0;
}
.category-popular-card span {
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: currentColor;
  transition: 0.2s;
  text-align: center;
  margin: auto 0;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .category-popular-card span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .category-popular-card span {
    font-size: 14px;
  }
}
@media screen and (max-width: 389px) {
  .category-popular-card span {
    font-size: 12px;
  }
}

.category-parts-card {
  display: block;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--gray1);
  transition: 0.2s;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.category-parts-card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.category-parts-card img {
  display: block;
  width: 100%;
  position: relative;
  top: -20px;
}
.category-parts-card span {
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: currentColor;
  transition: 0.2s;
  text-align: center;
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .category-parts-card span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .category-parts-card span {
    font-size: 14px;
  }
}
@media screen and (max-width: 389px) {
  .category-parts-card span {
    font-size: 12px;
  }
}

.breadcrumbs {
  padding: 16px 0;
}
.breadcrumbs--product {
  padding: 16px 0 0 0;
}
.breadcrumbs h1 {
  font-size: 34px;
  line-height: 38px;
  margin: 0;
  color: var(--gray1);
  font-weight: 700;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .breadcrumbs h1 {
    font-size: 28px;
    line-height: 32px;
  }
}
.breadcrumbs-wrapper {
  display: flex;
  align-items: center;
  gap: 0 3px;
  padding: 0 0 15px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs-wrapper {
    display: none;
  }
}
.breadcrumbs__item {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
}
.breadcrumbs__item:is(span) {
  color: var(--orange1);
}
.breadcrumbs__item:is(a) {
  transition: 0.2s;
  text-decoration: none;
}
.breadcrumbs__item:is(a):hover {
  color: var(--orange1);
}
.breadcrumbs__devider {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
}
.breadcrumbs__back {
  display: flex;
  align-items: center;
  gap: 0 8px;
  color: var(--gray4);
  margin: 0 0 16px 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__back {
    display: none;
  }
}
.breadcrumbs__back svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.breadcrumbs__back span {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}

.catalog {
  padding: 50px 0 80px 0;
}
.catalog-sides {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 0 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .catalog-sides {
    grid-template-columns: 240px 1fr;
    grid-gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .catalog-sides {
    grid-template-columns: 100%;
  }
}
.catalog-banner {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .catalog-banner {
    margin: 0 0 20px 0;
  }
}
.catalog-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 60px 30px;
}
body.catalog-filtering .catalog-products-grid {
  opacity: 0.25;
  pointer-events: none;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .catalog-products-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .catalog-products-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 15px;
  }
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .catalog-products-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px 15px;
  }
}
@media screen and (max-width: 389px) {
  .catalog-products-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.catalog-products-table .product-table + .product-table {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .catalog-navigation {
    display: none;
  }
}
.catalog-navigation__first {
  padding: 0;
  margin: 0;
  list-style: none;
}
.catalog-navigation__first > li + li {
  margin-top: 24px;
}
.catalog-navigation__first > li > a, .catalog-navigation__first > li > span {
  display: block;
  padding: 8px 12px;
  background: var(--gray5);
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray4);
  transition: 0.2s;
  text-decoration: none;
}
.catalog-navigation__first > li > a:hover {
  color: var(--orange2);
}
.catalog-navigation__second {
  margin: 0;
  padding: 16px 12px 0 12px;
  list-style: none;
}
.catalog-navigation__second > li > a {
  color: var(--gray4);
  transition: 0.2s;
  text-decoration: none;
}
.catalog-navigation__second > li > a:hover {
  color: var(--orange2);
}
.catalog-parts-navigation__first {
  margin: 0;
  list-style: none;
  background: var(--gray5);
  border-radius: 20px;
  padding: 15px 30px;
}
.catalog-parts-navigation__first > li + li {
  margin-top: 15px;
}
.catalog-parts-navigation__first > li > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray4);
  transition: 0.2s;
  text-decoration: none;
}
.catalog-parts-navigation__first > li > a:hover {
  color: var(--orange1);
}
.catalog-subdirs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px 30px;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 767px) {
  .catalog-subdirs {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px 16px;
    margin: 0 0 40px 0;
  }
}
.catalog-subdirs__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--gray1);
  padding: 24px 20px;
  transition: 0.2s;
  text-decoration: none;
  border-radius: 20px;
  min-height: 202px;
}
@media screen and (max-width: 767px) {
  .catalog-subdirs__card {
    min-height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .catalog-subdirs__card {
    padding: 12px 10px;
  }
}
.catalog-subdirs__card--noimage {
  min-height: 90px;
  padding: 0px 20px;
}
.catalog-subdirs__card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.catalog-subdirs__card img {
  display: block;
  margin: 0 auto 11px auto;
  mix-blend-mode: darken;
}
.catalog-subdirs__card span {
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: currentColor;
  transition: 0.2s;
  text-align: center;
  margin: auto 0;
}
@media screen and (max-width: 767px) {
  .catalog-subdirs__card span {
    font-size: 14px;
    line-height: 16px;
  }
}
.catalog-subdirs__part-card {
  display: block;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--gray1);
  transition: 0.2s;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.catalog-subdirs__part-card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.catalog-subdirs__part-card img {
  display: block;
  width: 100%;
  max-width: 172px;
  margin: 0 0 0 auto;
}
.catalog-subdirs__part-card span {
  display: block;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: currentColor;
  transition: 0.2s;
  text-align: center;
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
}
.catalog-sorting-outer {
  display: flex;
  align-items: center;
  gap: 0 15px;
  justify-content: space-between;
  margin: 0 0 56px 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .catalog-sorting-outer {
    margin: 0 0 30px 0;
  }
}
@media screen and (min-width: 768px) {
  .catalog__sorting-mobile {
    display: none;
  }
}
.catalog-sorting {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .catalog-sorting {
    gap: 10px 10px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .catalog-sorting {
    position: fixed;
    z-index: 6;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 30px 15px 30px 15px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.16);
    border-radius: 30px 30px 0 0;
    transition: 0.2s;
  }
  body:not(.catalog-sorting-toggled) .catalog-sorting {
    transform: translateY(120%);
  }
}
.catalog-sorting__mobile {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 6px 12px;
  border: 1px solid var(--gray4);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .catalog-sorting__mobile {
    display: none;
  }
}
body.catalog-sorting-toggled .catalog-sorting__mobile:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  z-index: 5;
}
.catalog-sorting__mobile svg {
  display: block;
  width: 10px;
  height: 16px;
  fill: var(--gray4);
}
.catalog-sorting__mobile span {
  font-size: 14px;
  color: var(--gray4);
  font-weight: 500;
}
.catalog-sorting__title {
  margin: 0 0 30px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray4);
}
@media screen and (min-width: 768px) {
  .catalog-sorting__title {
    display: none;
  }
}
.catalog-sorting__item {
  display: flex;
  align-items: center;
  gap: 0 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border-radius: 8px;
  padding: 0 12px;
  height: 30px;
  border: 1px solid var(--gray4);
  color: var(--gray4);
  text-decoration: none;
  background: #fff;
  transition: 0.2s;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .catalog-sorting__item {
    font-size: 12px;
    border-radius: 4px;
    padding: 0 6px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .catalog-sorting__item {
    border: none;
    font-size: 16px;
    height: auto;
    padding: 0 0 0 36px;
    position: relative;
  }
  .catalog-sorting__item + .catalog-sorting__item {
    margin-top: 24px;
  }
  .catalog-sorting__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray4);
    border-radius: 50%;
    transition: 0.2s;
  }
  .catalog-sorting__item:after {
    content: "";
    position: absolute;
    left: 10px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    background: var(--orange1);
    border-radius: 50%;
    transition: 0.2s;
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .catalog-sorting__item:hover {
    background: #f1f1f1;
    color: var(--orange1);
    border-color: var(--orange1);
  }
}
.catalog-sorting__item.active {
  background: #FCE1D2;
  color: var(--orange1);
  border-color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .catalog-sorting__item.active {
    background: none;
    border-color: transparent;
  }
  .catalog-sorting__item.active:before {
    border-color: var(--orange1);
  }
  .catalog-sorting__item.active:after {
    opacity: 1;
  }
}
.catalog-sorting__item.disabled {
  border-color: #c2c4d2;
  color: #c2c4d2;
  background: #fff;
  cursor: default;
  pointer-events: none;
}
.catalog-sorting__item svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}
.catalog-sorting__item--desc svg {
  transform: rotateZ(180deg);
}
.catalog-view-type {
  display: flex;
  align-items: center;
  gap: 0 18px;
}
@media screen and (max-width: 991px) {
  .catalog-view-type {
    display: none;
  }
}
.catalog-view-type__item {
  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: var(--gray5);
  border: 1px solid var(--gray4);
  color: var(--gray4);
  border-radius: 8px;
  cursor: pointer;
}
.catalog-view-type__item.active {
  border-color: var(--orange1);
  background: var(--orange5);
  color: var(--orange1);
}
.catalog-view-type__item svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin: auto;
}
.catalog-disclaimer {
  margin: 0 0 30px 0;
  padding: 13px 16px 13px 12px;
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
  background: var(--orange4);
  border-radius: 12px;
}
.catalog-category-brand {
  display: flex;
  gap: 0 12px;
  align-items: center;
  background: var(--gray5);
  border-radius: 12px;
  margin: 0 0 30px 0;
  padding: 12px;
}
.catalog-category-brand img {
  display: block;
  width: auto;
  max-width: 100px;
  flex: 0 0 100px;
  mix-blend-mode: multiply;
}
.catalog-category-brand__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  transition: 0.2s;
  color: var(--orange1);
  cursor: pointer;
}
.catalog-category-brand__title:hover {
  color: var(--orange2);
}
.catalog .pagination {
  margin: 40px 0 0 0;
}

.catalog-categories {
  padding: 50px 0;
}
.catalog-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .catalog-categories-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .catalog-categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
@media screen and (max-width: 389px) {
  .catalog-categories-grid {
    grid-template-columns: 1fr;
  }
}
.catalog-categories__card {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  background: #f8f8f8;
  border: 1px solid var(--gray5);
  padding: 24px 24px 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  min-height: 200px;
  transition: 0.2s;
  color: var(--gray1);
}
@media screen and (max-width: 767px) {
  .catalog-categories__card {
    padding: 20px 15px;
    min-height: 160px;
  }
}
.catalog-categories__card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.catalog-categories__card img {
  display: block;
  width: 90px;
  margin: 0 0 auto auto;
}
@media screen and (max-width: 767px) {
  .catalog-categories__card img {
    margin: 0 auto auto auto;
    width: 70px;
  }
}
.catalog-categories__card span {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
@media screen and (max-width: 767px) {
  .catalog-categories__card span {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray1);
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  font-size: 16px;
  border-radius: 50%;
  transition: 0.2s;
  text-decoration: none;
}
.pagination__item:is(a):hover {
  background: var(--gray5);
  cursor: pointer;
}
.pagination__item--active {
  background: var(--orange1);
  color: #fff;
}
.pagination__item--arrow:is(a):hover {
  background: none;
  color: var(--orange1);
}
.pagination__item--arrow svg {
  display: block;
  width: 18px;
  height: 16px;
  fill: currentColor;
}
.pagination__lazy {
  width: 100%;
  margin: 0 0 40px 0;
}

.filter {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10;
    margin: 0;
    padding: 16px 15px;
    transition: 0.2s;
  }
  body:not(.mobile-filter-toggled) .filter {
    transform: translateX(120%);
  }
}
@media screen and (max-width: 767px) {
  .filter-form {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.filter-footer {
  margin: 26px 0 0 0;
}
@media screen and (max-width: 767px) {
  .filter-footer {
    margin: 16px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .filter:not(.fillter--filled) .filter-footer {
    display: none;
  }
}
.filter-mobile-header {
  display: flex;
  align-items: center;
  padding: 0 30px 0 0;
  margin: 0 0 16px 0;
}
@media screen and (min-width: 768px) {
  .filter-mobile-header {
    display: none;
  }
}
.filter-mobile-header__close {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray5);
}
.filter-mobile-header__close svg {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  fill: var(--gray4);
}
.filter-mobile-header span {
  display: block;
  margin: 0 auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray4);
}
.filter-header {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .filter-header {
    display: none;
  }
}
.filter__submit {
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .filter-groups {
    flex: 1;
    overflow: auto;
  }
}
.filter-group + .filter-group {
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .filter-group + .filter-group {
    margin-top: 16px;
  }
}
.filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px 0;
  padding: 10px 12px;
  background: var(--gray5);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .filter-group__header {
    margin: 0;
  }
}
.filter-group__header span {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.filter-group__header svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}
@media screen and (min-width: 768px) {
  .filter-group__header svg {
    display: none;
  }
}
.filter-group-values {
  max-height: 177px;
  overflow: auto;
}
.filter-group-values::-webkit-scrollbar {
  width: 8px;
  background: none;
}
.filter-group-values::-webkit-scrollbar-thumb {
  background-color: var(--gray6);
  border-radius: 10px;
}
.filter-group-values::-webkit-scrollbar-track {
  background: none;
}
@media screen and (max-width: 767px) {
  .filter-group-values {
    max-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .filter-group-wrapper {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 16px 12px;
    transition: 0.2s;
  }
  .filter.fillter--filled .filter-group-wrapper {
    height: calc(100% - 60px);
  }
}
.filter-group-wrapper-header {
  display: flex;
  align-items: center;
  padding: 0 30px 0 0;
  margin: 0 0 16px 0;
}
.filter-group-wrapper-header__back {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray5);
}
.filter-group-wrapper-header__back svg {
  display: block;
  width: 13px;
  height: 11px;
  flex: 0 0 18px;
  fill: var(--gray4);
  margin: auto;
}
.filter-group-wrapper-header span {
  display: block;
  margin: 0 auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray4);
}
@media screen and (min-width: 768px) {
  .filter-group-wrapper-header {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .filter-group:not(.active) .filter-group-wrapper {
    transform: translateX(120%);
  }
}
.filter-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray7);
  border-radius: 8px;
  width: 100%;
  height: 36px;
  padding: 0 6px 0 12px;
  transition: 0.2s;
  margin: 0 0 16px 0;
}
.filter-search:focus-within {
  border-color: var(--orange1);
}
.filter-search input {
  font-size: 14px;
  line-height: 14px;
  color: var(--grey4);
  border: none;
  background: none;
  outline: none;
  flex: 1;
}
.filter-search input::placeholder {
  color: var(--gray6);
}
.filter-search__icon {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
}
.filter-search__icon svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gray7);
  margin: auto;
}
.filter-search__clear {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.filter-search__clear svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: var(--gray7);
  margin: auto;
}
.filter-group:not(.filter-group--searched) .filter-search__clear {
  display: none;
}
.filter-group.filter-group--searched .filter-search__icon {
  display: none;
}
.filter__checkbox {
  display: flex;
  gap: 0 8px;
  cursor: pointer;
}
.filter__checkbox + .filter__checkbox {
  margin-top: 12px;
}
.filter__checkbox input {
  display: none;
}
.filter__checkbox-checker {
  width: 16px;
  height: 16px;
  border: 1px solid #6f7290;
  border-radius: 2px;
  transition: 0.2s;
  position: relative;
}
.filter__checkbox-checker:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../img/icons/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
  opacity: 0;
}
.filter__checkbox input:checked ~ .filter__checkbox-checker {
  border-color: var(--orange1);
}
.filter__checkbox input:checked ~ .filter__checkbox-checker:after {
  opacity: 1;
}
.filter__checkbox-title {
  transition: 0.2s;
}
.filter__checkbox input:checked ~ .filter__checkbox-title {
  color: var(--orange1);
}
.filter__checkbox input:disabled ~ .filter__checkbox-checker {
  border-color: var(--gray6);
  cursor: default;
}
.filter__checkbox input:disabled ~ .filter__checkbox-title {
  color: var(--gray6);
  cursor: default;
}
.filter__mobile {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 6px 12px;
  border: 1px solid var(--gray4);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .filter__mobile {
    display: none;
  }
}
body.mobile-filter-toggled .filter__mobile:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  z-index: 5;
}
.filter__mobile svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: var(--gray4);
}
.filter__mobile span {
  font-size: 14px;
  color: var(--gray4);
  font-weight: 500;
}

.brands {
  padding: 50px 0;
}
.brands-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 0 60px;
}
@media screen and (max-width: 991px) {
  .brands-grid {
    grid-template-columns: 1fr;
    grid-gap: 0 0;
  }
}
.brands-popular {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px 30px;
  margin: 0 0 60px 0;
  grid-column: 2/3;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .brands-popular {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .brands-popular {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.brands-popular__card {
  display: flex;
  min-height: 180px;
  background: var(--gray5);
  border: 1px solid var(--gray4);
  border-radius: 20px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .brands-popular__card {
    min-height: 125px;
  }
}
.brands-popular__card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
}
.brands-popular__card img {
  max-height: 54%;
  max-width: 74%;
  mix-blend-mode: multiply;
  margin: auto;
}
.brands-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 60px;
  grid-column: 2/3;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .brands-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .brands-list {
    grid-column: 1/2;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 0;
    text-align: center;
  }
  .brands-list--first {
    grid-row: 3/4;
  }
  .brands-list--second {
    grid-row: 5/6;
  }
}
@media screen and (max-width: 767px) {
  .brands-list {
    grid-template-columns: 1fr;
  }
}
.brands-list-column__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: var(--orange1);
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .brands-list-column__title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (max-width: 389px) {
  .brands-list-column__title {
    font-size: 18px;
    line-height: 24px;
  }
}
.brands.brands--searched .brands-list-column__title {
  display: none;
}
.brands-list-column > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.brands-list-column > ul + ul {
  margin-top: 20px;
}
.brands-list-column > ul > li + li {
  margin-top: 10px;
}
.brands-list-column > ul > li > a {
  font-size: 22px;
  line-height: 28px;
  color: var(--gray1);
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (min-width: 390px) and (max-width: 767px) {
  .brands-list-column > ul > li > a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 389px) {
  .brands-list-column > ul > li > a {
    font-size: 16px;
    line-height: 18px;
  }
}
.brands-list-column > ul > li > a:hover {
  color: var(--orange1);
}
.brands-search {
  grid-column: 1/2;
}
@media screen and (max-width: 991px) {
  .brands-search {
    grid-row: 2/3;
  }
}
.brands-search__title {
  margin: 0 0 16px 0;
  padding: 10px 12px;
  background: var(--gray5);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.brands-search-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray7);
  border-radius: 8px;
  width: 100%;
  height: 36px;
  padding: 0 6px 0 12px;
  transition: 0.2s;
  margin: 0 0 16px 0;
}
.brands-search-input:focus-within {
  border-color: var(--orange1);
}
.brands-search-input input {
  font-size: 14px;
  line-height: 14px;
  color: var(--grey4);
  border: none;
  background: none;
  outline: none;
  flex: 1;
}
.brands-search-input input::placeholder {
  color: var(--gray6);
}
.brands-search-input__icon {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
}
.brands-search-input__icon svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gray7);
  margin: auto;
}
.brands-search-input__clear {
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.brands-search-input__clear svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: var(--gray7);
  margin: auto;
}
.brands:not(.brands--searched) .brands-search-input__clear {
  display: none;
}
.brands.brands--searched .brands-search-input__icon {
  display: none;
}
.brands .banner-card {
  margin: 60px 0;
  grid-column: 2/3;
}
@media screen and (max-width: 991px) {
  .brands .banner-card {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

.subscribe {
  padding: 20px 0 60px 0;
}
@media screen and (max-width: 767px) {
  .subscribe {
    padding: 20px 0 30px 0;
  }
}
.subscribe-form {
  background: var(--orange4);
  border-radius: 20px;
  padding: 25px 38px 21px 32px;
}
@media screen and (max-width: 767px) {
  .subscribe-form {
    padding: 13px 18px 0 18px;
  }
}
.subscribe__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  grid-area: title;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .subscribe__title {
    text-align: center;
    font-size: 18px;
  }
}
.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title title" "categories field" "politic politic";
  align-items: center;
  grid-gap: 24px 24px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .subscribe-grid {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "title categories" "politic field";
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-grid {
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px 10px;
    grid-template-areas: "title categories" "politic field";
  }
}
@media screen and (max-width: 767px) {
  .subscribe-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "categories" "field" "politic";
  }
}
.subscribe-categories {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 10px;
  grid-area: categories;
}
.subscribe__category {
  display: flex;
  align-items: center;
  gap: 0 8px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .subscribe__category {
    cursor: pointer;
    flex-direction: column;
    gap: 8px 0;
  }
}
.subscribe__category input {
  display: none;
}
.subscribe__category-checker {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  position: relative;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: 0.2s;
}
@media screen and (max-width: 991px) {
  .subscribe__category-checker {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
}
.subscribe__category-checker svg {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -2px;
  left: -2px;
  fill: var(--orange1);
}
@media screen and (max-width: 991px) {
  .subscribe__category-checker svg {
    width: 24px;
    height: 24px;
  }
}
.subscribe__category input:not(:checked) ~ .subscribe__category-checker {
  border-color: var(--gray4);
}
.subscribe__category input:not(:checked) ~ .subscribe__category-checker svg {
  opacity: 0;
}
.subscribe__category-text {
  color: var(--gray4);
  font-size: 14px;
  line-height: 18px;
  transition: 0.2s;
}
@media screen and (max-width: 991px) {
  .subscribe__category-text br {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe__category-text {
    font-size: 12px;
    line-height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .subscribe__category-text {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
  }
}
.subscribe__category input:checked ~ .subscribe__category-text {
  color: var(--orange2);
}
.subscribe__category:hover input:not(:checked) ~ .subscribe__category-checker {
  border-color: var(--orange2);
}
.subscribe__category:hover input:not(:checked) ~ .subscribe__category-text {
  color: var(--orange2);
}
.subscribe-field {
  display: grid;
  grid-template-columns: 1fr 174px;
  grid-gap: 0 16px;
  grid-area: field;
}
@media screen and (max-width: 767px) {
  .subscribe-field {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.subscribe-field .btn {
  height: 48px;
}
@media screen and (max-width: 767px) {
  .subscribe-field .btn {
    width: 164px;
    margin: 0 auto;
  }
}
.subscribe-politic {
  font-size: 12px;
  line-height: 14px;
  grid-area: politic;
}
@media screen and (max-width: 767px) {
  .subscribe-politic {
    text-align: center;
  }
}
.subscribe-politic a {
  color: var(--orange1);
  text-decoration: underline;
}
.subscribe-politic a:hover {
  text-decoration: none;
}
.subscribe-global-error {
  color: var(--red1);
}

.product {
  padding: 0 0 50px 0;
}
.product-head {
  margin: 0 0 16px 0;
}
.product-head-wrapper {
  display: grid;
  grid-template-columns: 1fr 330px;
  grid-gap: 0 30px;
  align-items: end;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 1399px) {
  .product-head-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 0 0;
  }
}
.product-head-wrapper-inner {
  display: flex;
  align-items: center;
  gap: 0 15px;
  justify-content: space-between;
}
.product-head__item {
  display: flex;
  align-items: center;
  gap: 0 12px;
  cursor: pointer;
  transition: 0.2s;
}
.product-head__item:hover {
  color: var(--orange1);
}
.product-head__item-icon {
  display: flex;
  width: 30px;
  height: 30px;
  background: #EFF0F7;
  position: relative;
  border-radius: 8px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .product-head__item-icon {
    width: 44px;
    height: 44px;
  }
}
.product-head__item-icon svg {
  display: block;
  width: 15px;
  height: 15px;
  margin: auto;
  fill: none;
  stroke: var(--gray4);
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .product-head__item-icon svg {
    width: 18px;
    height: 18px;
  }
}
.product-head__item:hover .product-head__item-icon {
  background: #e8e8e8;
}
.product-head__item:hover .product-head__item-icon svg {
  stroke: var(--orange2);
}
.product-head__item--share .product-head__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: var(--gray4);
}
@media screen and (max-width: 767px) {
  .product-head__item--share .product-head__item-icon svg {
    width: 24px;
    height: 24px;
  }
}
.product-head__item--share:hover .product-head__item-icon svg {
  stroke: none;
  fill: var(--orange2);
}
.product-head__item-title {
  font-size: 16px;
  transition: 0.2s;
}
@media screen and (max-width: 1399px) {
  .product-head__item-title {
    display: none;
  }
}
.product--in-favorite .product-head__item.product-head__item--favorite .product-head__item-icon {
  background: var(--orange4);
}
.product--in-favorite .product-head__item.product-head__item--favorite .product-head__item-icon svg {
  fill: var(--orange1);
  stroke: var(--orange1);
}
.product-head h1 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray1);
  margin: 0;
  text-transform: none;
}
.product__article {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--orange1);
}
.product-grid {
  display: grid;
  grid-template-columns: 210px 440px calc(100% - 210px - 440px - 330px) 330px;
  grid-template-areas: "gallery gallery actions sidebar" "tabs tabs tabs sidebar" "table table table table";
  grid-gap: 65px 0;
  position: relative;
}
.product--with-analogue .product-grid {
  grid-template-areas: "gallery gallery actions sidebar" "analogue tabs tabs sidebar" "table table table table";
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .product-grid {
    grid-template-columns: 210px 320px calc(100% - 210px - 320px - 280px) 280px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .product-grid {
    grid-template-columns: 200px 230px calc(100% - 200px - 230px - 210px) 210px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .product-grid {
    grid-template-columns: 200px 230px calc(100% - 200px - 230px);
    grid-template-areas: "gallery gallery actions" "sidebar sidebar sidebar" "tabs tabs tabs" "table table table";
  }
  .product--with-analogue .product-grid {
    grid-template-areas: "gallery gallery actions" "sidebar sidebar sidebar" "analogue tabs tabs" "table table table";
  }
}
@media screen and (max-width: 767px) {
  .product-grid {
    grid-template-columns: 100%;
    grid-gap: 30px 0;
    grid-template-areas: "gallery" "actions" "sidebar" "tabs" "table";
  }
  .product--with-analogue .product-grid {
    grid-template-areas: "gallery" "actions" "analogue" "sidebar" "tabs" "table";
  }
}
.product-gallery {
  display: grid;
  grid-template-columns: 90px calc(100% - 30px - 90px);
  grid-gap: 0 30px;
  grid-area: gallery;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-gallery {
    grid-template-columns: 60px calc(100% - 15px - 60px);
    grid-gap: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .product-gallery {
    grid-template-columns: 100%;
    grid-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-gallery-thumbs {
    display: none;
  }
}
.product-gallery-thumbs .swiper-container {
  height: 408px;
  margin: 18px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-gallery-thumbs .swiper-container {
    height: 288px;
  }
}
.product-gallery-thumbs__item {
  display: flex;
  border: 1px solid transparent;
  border-radius: 8px;
  opacity: 0.4;
  transition: 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.swiper-slide-thumb-active .product-gallery-thumbs__item {
  border-color: var(--orange1);
  opacity: 1;
}
.product-gallery-thumbs__item img {
  display: block;
  width: 100%;
}
.product-gallery-thumbs__arrow {
  display: flex;
  height: 30px;
  cursor: pointer;
}
.product-gallery-thumbs__arrow.swiper-button-disabled {
  visibility: hidden;
  pointer-events: none;
}
.product-gallery-thumbs__arrow:hover {
  color: var(--orange1);
}
.product-gallery-thumbs__arrow.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.product-gallery-thumbs__arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.product-gallery-main {
  position: relative;
}
.product-gallery-main__item {
  display: block;
}
.product-gallery-main__item img {
  width: 100%;
}
.product-gallery-main .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .product-gallery-main .swiper-pagination {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .product-gallery-zoom {
    display: none;
  }
}
body:not(.product-zoombox-active) .product-gallery-zoom {
  display: none;
}
.product-gallery-zoom__preview {
  position: absolute;
  width: 132px;
  height: 132px;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--gray6);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}
.product-gallery-zoom__view {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--gray6);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
}
.product-actions {
  padding: 0 30px 0 70px;
  grid-area: actions;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .product-actions {
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .product-actions {
    padding: 0;
  }
}
.product-actions-footer {
  margin: 32px 0 0 0;
}
.product-sidebar {
  position: relative;
  grid-area: sidebar;
}
.product-sidebar-inner {
  align-self: flex-start;
  position: sticky;
  top: 120px;
}
body.scroll-up .product-sidebar-inner {
  top: 170px;
}
.product-marketplace {
  padding: 15px;
  border: 1px solid var(--gray6);
  border-radius: 20px;
}
.product-marketplace__title {
  margin: 0 0 16px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray4);
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .product-marketplace__title {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .product-marketplace-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0 15px;
  }
}
.product-marketplace__card {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .product-marketplace__card {
    height: 44px;
  }
}
.product-marketplace__card + .product-marketplace__card {
  margin-top: 16px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .product-marketplace__card + .product-marketplace__card {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .product-marketplace__card + .product-marketplace__card {
    margin-top: 0;
  }
}
.product-marketplace__card:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  transition: 0.2s;
  opacity: 0.12;
}
.product-marketplace__card:not(:hover):after {
  opacity: 0;
}
.product-marketplace__card img {
  max-height: 72%;
}
.product__disclaimer {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray4);
  padding: 16px;
  background: var(--gray3);
  border-radius: 20px;
  margin: 0 0 30px 0;
}
.product-prices {
  margin: 0 0 24px 0;
}
.product-prices__value {
  font-size: 38px;
  line-height: 40px;
  font-weight: 700;
  color: #14142b;
  margin: 0 0 6px 0;
}
.product-prices__description {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
  color: var(--gray7);
  font-size: 11px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 24px 0;
  border-radius: 6px;
  border: 1px solid #A0A3BC;
  max-width: 150px;
}
.product-prices__description svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.product-prices-wholesale {
  display: flex;
  align-items: center;
  gap: 0 8px;
  max-width: 210px;
}
.product-prices-wholesale + .product-prices-wholesale {
  margin-top: 8px;
}
.product-prices-wholesale__icon {
  width: 65px;
  height: 22px;
  border-radius: 6px;
  color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3px;
  font-size: 10px;
  line-height: 22px;
  font-weight: 500;
}
.product-prices-wholesale__icon--1 {
  background: #FFB610;
}
.product-prices-wholesale__icon--2 {
  background: #DE5703;
}
.product-prices-wholesale__icon svg {
  display: block;
  width: 20px;
  height: 16px;
  fill: currentColor;
}
.product-prices-wholesale__value {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
}
.product-prices-wholesale__help {
  position: relative;
  margin: 0 0 0 auto;
  flex: 0 0 22px;
  cursor: pointer;
}
.product-prices-wholesale__help-icon {
  display: flex;
  width: 22px;
  height: 22px;
  background: var(--gray3);
  border-radius: 50%;
  transition: 0.2s;
}
.product-prices-wholesale__help-icon svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: var(--gray7);
  margin: auto;
}
.product-prices-wholesale__help:hover .product-prices-wholesale__help-icon {
  background: #E7E7E7;
}
.product-prices-wholesale__help-popup {
  display: block;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.23);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  background: #fff;
  z-index: 1;
  white-space: nowrap;
}
.product-prices-wholesale__help-popup:after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/icons/price_opt_arrow.png?1) 50% 50%/contain no-repeat;
}
.product-prices-wholesale__help:not(:hover) .product-prices-wholesale__help-popup {
  display: none;
}
.product-info {
  padding: 0;
  margin: 0 0 24px 0;
  list-style: none;
}
.product-info > li {
  font-size: 16px;
  line-height: 18px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .product-info > li {
    font-size: 14px;
    line-height: 16px;
  }
  .product-info > li strong {
    display: block;
  }
}
.product-info > li + li {
  margin-top: 8px;
}
.product__brand {
  font-size: 16px;
  color: var(--gray4);
  line-height: 18px;
  margin: 0 0 24px 0;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .product__brand {
    font-size: 14px;
    line-height: 16px;
  }
}
.product__brand a {
  color: var(--orange1);
  text-decoration: underline;
}
.product__brand a:hover {
  text-decoration: none;
}
.product-count__title {
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: var(--gray4);
}
.product-count-wrapper {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.product-count__range {
  position: relative;
  background: var(--gray3);
  flex: 1;
  max-width: 140px;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
}
.product-count__range-inner {
  width: 100%;
  height: 100%;
  background: var(--orange1);
}
.product-count__value {
  font-size: 14px;
}
.product--adding .product__add {
  opacity: 0.5;
  pointer-events: none;
}
.product__add svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
}
.product__quantity {
  display: flex;
  align-items: center;
  gap: 0 4px;
  height: 44px;
}
.product__quantity-outer {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.product__quantity-outer span {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.product__quantity-btn {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.product__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.product__quantity-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.product__quantity input {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 8px;
  width: 62px;
  height: 32px;
  transition: 0.2s;
  outline: none;
  font-size: 16px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
.product__quantity input:hover, .product__quantity input:focus {
  border-color: var(--orange1);
}
.product:not(.product--in-cart) .product__quantity-outer {
  display: none;
}
.product.product--in-cart .product__add {
  display: none;
}
.product-analogue {
  grid-area: analogue;
  padding: 0 30px 0 0;
}
@media screen and (max-width: 767px) {
  .product-analogue {
    padding: 0;
  }
}
.product-analogue__header {
  padding: 18px 0;
  margin: 0 0 30px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--gray4);
  text-align: center;
  background: var(--gray5);
  border-radius: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-analogue__header {
    font-size: 16px;
    padding: 17px 0;
  }
}
.product-tabs {
  grid-area: tabs;
  padding: 0 30px 0 0;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .product-tabs {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-tabs {
    padding: 0;
  }
}
.product-tabs-header {
  display: flex;
  align-items: center;
  gap: 0 13px;
  background: var(--gray5);
  border-radius: 12px;
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .product-tabs-header {
    display: none;
  }
}
.product-tabs-header__item {
  padding: 16px 8px 12px 8px;
  color: var(--gray4);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  transition: 0.2s;
  cursor: pointer;
  border-bottom: 4px solid transparent;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-tabs-header__item {
    font-size: 16px;
    line-height: 18px;
  }
}
.product-tabs-header__item:not(.active):hover {
  color: var(--orange2);
  border-color: currentColor;
}
.product-tabs-header__item.active {
  color: var(--orange1);
  border-color: currentColor;
}
.product-tabs-wrapper {
  margin: 30px 0 0 0;
}
@media screen and (min-width: 768px) {
  .product-tabs-wrapper {
    margin: 10px 0 0 0;
  }
}
.product-tabs-wrapper:not(.active) {
  display: none;
}
.product-tabs__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray5);
  color: var(--gray4);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 8px;
}
.product-tabs-wrapper + .product-tabs__title {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .product-tabs__title {
    display: none;
  }
}
.product-tabs__title svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: 0.2s;
  fill: none;
  stroke: currentColor;
}
.product-tabs__title.active svg {
  transform: rotateZ(180deg);
}
.product-properties {
  max-width: 410px;
}
.product-properties--applicability {
  max-width: unset;
}
.product-properties__item {
  display: flex;
}
.product-properties__item:before {
  content: "";
  display: block;
  flex: 1;
  border-bottom: 1px dotted var(--gray7);
  order: 2;
  align-self: start;
  padding: 16px 0 0 0;
}
.product-properties__item-name {
  order: 1;
  background: #fff;
  font-size: 14px;
  line-height: 24px;
  padding: 0 6px 0 0;
}
.product-properties__item-value {
  order: 3;
  background: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 0 0 3px;
  flex: 0 0 50%;
}
.product-certificates__item {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.product-certificates__item + .product-certificates__item {
  margin-top: 12px;
}
.product-cross-table {
  grid-area: table;
}
.product-cross-table-header {
  display: grid;
  grid-template-columns: 40px 1fr 140px 100px 90px 120px 120px 120px 100px;
  gap: 0 12px;
  align-items: center;
  padding: 12px 12px;
  background: var(--gray2);
  border-radius: 6px 6px 0 0;
  color: #fff;
  border: 1px solid var(--gray2);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-cross-table-header {
    grid-template-columns: 40px 1fr 140px 90px 120px 100px;
  }
}
@media screen and (max-width: 767px) {
  .product-cross-table-header {
    display: none;
  }
}
.product-cross-table-header__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0 6px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.product-cross-table-header__item:hover {
  color: #fff;
  opacity: 0.75;
}
.product-cross-table-header__item--title {
  grid-column: 2/3;
}
.product-cross-table-header__item--brand {
  text-align: center;
}
.product-cross-table-header__item--article {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-cross-table-header__item--article {
    display: none;
  }
}
.product-cross-table-header__item--count {
  text-align: center;
}
.product-cross-table-header__item--delivery {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-cross-table-header__item--delivery {
    display: none;
  }
}
.product-cross-table-header__item--delivery-time {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-cross-table-header__item--delivery-time {
    display: none;
  }
}
.product-cross-table-header__item--price {
  text-align: center;
}
.product-cross-table-header__item:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-image: url(../img/icons/sort_default.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.product-cross-table-header__item.product-cross-table-header__item--asc:after {
  background-image: url(../img/icons/sort_top.svg);
}
.product-cross-table-header__item.product-cross-table-header__item--desc:after {
  background-image: url(../img/icons/sort_bottom.svg);
}
.product-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .product-share {
    gap: 0 20px;
    flex-wrap: wrap;
  }
}
.product-share__item {
  display: flex;
  color: var(--gray4);
  transition: 0.2s;
  cursor: pointer;
}
.product-share__item:hover {
  color: var(--orange1);
}
.product-share__item svg {
  display: block;
  width: 36px;
  height: 36px;
  fill: currentColor;
}
@media screen and (max-width: 767px) {
  .product-share-copy {
    width: 100%;
    margin: 20px 0 0 0;
  }
}

.cross-card {
  display: grid;
  grid-template-columns: 40px 1fr 140px 100px 90px 120px 120px 120px 100px;
  gap: 0 12px;
  align-items: center;
  border: 1px solid var(--gray6);
  border-top: none;
  padding: 3px 12px;
  min-height: 48px;
}
.cross-card:last-child {
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 768px) {
  .cross-card:hover {
    background: var(--gray5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cross-card {
    grid-template-columns: 40px 1fr 140px 90px 120px 100px;
  }
}
@media screen and (max-width: 767px) {
  .cross-card {
    grid-template-columns: 40px 1fr 100px;
    grid-gap: 4px 8px;
    grid-template-areas: "image title title" "image price actions";
    padding: 8px 8px;
  }
  .cross-card:first-child {
    border-top: 1px solid var(--gray6);
    border-radius: 6px 6px 0 0;
  }
}
.cross-card__image {
  display: block;
}
@media screen and (max-width: 767px) {
  .cross-card__image {
    grid-area: image;
  }
}
.cross-card__image img {
  width: 100%;
  mix-blend-mode: multiply;
}
.cross-card__brand {
  font-size: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cross-card__brand {
    display: none;
  }
}
.cross-card__article {
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cross-card__article {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cross-card__article {
    display: none;
  }
}
.cross-card__title {
  font-size: 13px;
  transition: 0.2s;
  color: var(--gray4);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cross-card__title {
    font-size: 12px;
    grid-area: title;
  }
}
.cross-card__title:hover {
  color: var(--orange1);
}
.cross-card__title span {
  color: var(--gray1);
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .cross-card__title span {
    display: block;
    padding: 2px 0 0 0;
  }
}
.cross-card__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cross-card__count {
    display: none;
  }
}
.cross-card__min {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cross-card__min {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .cross-card__min {
    display: none;
  }
}
.cross-card__delivery-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cross-card__delivery-time {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cross-card__delivery-time {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cross-card__price {
    grid-area: price;
  }
}
.cross-card__price-value {
  text-align: center;
  font-weight: 600;
  color: var(--gray1);
}
@media screen and (max-width: 767px) {
  .cross-card__price-value {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .cross-card__actions {
    grid-area: actions;
  }
}
.cross-card__add {
  width: 100%;
  font-size: 12px;
  padding: 3px 0;
  height: unset;
  border-radius: 6px;
}
.cross-card__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
}
.cross-card__quantity-btn {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.cross-card__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.cross-card__quantity-btn svg {
  display: block;
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.cross-card__quantity input {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px;
  width: 100%;
  height: 24px;
  transition: 0.2s;
  outline: none;
  font-size: 13px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
.cross-card__quantity input:hover, .cross-card__quantity input:focus {
  border-color: var(--orange1);
}
.cross-card:not(.product--in-cart) .cross-card__quantity {
  display: none;
}
.cross-card.product--in-cart .cross-card__add {
  display: none;
}

.cart {
  padding: 50px 0 117px 0;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  grid-gap: 0 30px;
  position: relative;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .cart-grid {
    grid-template-columns: 1fr 280px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-grid {
    grid-template-columns: 1fr 210px;
  }
}
@media screen and (max-width: 991px) {
  .cart-grid {
    grid-template-columns: 100%;
  }
}
.cart-sidebar {
  align-self: start;
  position: sticky;
  top: 120px;
  transition: 0.2s;
}
body.scroll-up .cart-sidebar {
  top: 170px;
}
@media screen and (max-width: 991px) {
  .cart-sidebar {
    position: unset;
  }
}
.cart-sidebar-submit {
  margin: 20px 0 0 0;
}
@media screen and (min-width: 992px) {
  .cart-sidebar-submit {
    display: none;
  }
}
.cart-sidebar-submit .btn {
  width: 100%;
}
@media screen and (max-width: 389px) {
  .cart-sidebar-submit .btn {
    font-size: 14px;
    padding: 0;
  }
}
.cart-total {
  padding: 12px;
  background: var(--gray5);
  border-radius: 12px;
}
.cart-total__cost-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0 10px;
  justify-content: space-between;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-total__cost-wrapper {
    flex-wrap: wrap;
  }
}
.cart-total__cost-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .cart-total__cost-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-total__cost-title {
    font-size: 22px;
  }
}
.cart-total__cost-value {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  white-space: nowrap;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .cart-total__cost-value {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-total__cost-value {
    font-size: 16px;
  }
}
.cart-total__cost-type {
  width: 65px;
  height: 22px;
  border-radius: 6px;
  color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3px;
  font-size: 10px;
  line-height: 22px;
  font-weight: 500;
  margin: 0 0 6px auto;
}
.cart-total__cost-type--opt1 {
  background: #FFB610;
}
.cart-total__cost-type--opt2 {
  background: #DE5703;
}
.cart-total__cost-type svg {
  display: block;
  width: 20px;
  height: 16px;
  fill: currentColor;
}
.cart-total-properties {
  margin: 8px 0 0 0;
}
.cart-total__property {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0 10px;
}
.cart-total__property + .cart-total__property {
  margin-top: 4px;
}
.cart-total__property-name {
  font-size: 16px;
  line-height: 19px;
}
.cart-total__property-value {
  font-size: 16px;
  line-height: 19px;
}
.cart-total__property-value--wide {
  font-weight: 700;
}
.cart-auth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 14px 0 0 0;
  padding: 12px;
  min-height: 76px;
  background: var(--orange4);
  border-radius: 12px;
}
.cart-auth__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 4px 0;
}
.cart-auth__link {
  display: block;
  font-size: 14px;
  line-height: 17px;
  text-decoration: underline;
  color: var(--orange1);
  cursor: pointer;
}
.cart-auth__link:hover {
  text-decoration: none;
}
.cart-auth__description {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray7);
  margin: 3px 0 0 0;
}
.cart-card {
  display: grid;
  grid-template-columns: 84px 4fr 4fr 7fr 30px;
  grid-template-areas: "image content info prices actions";
  border: 1px solid var(--gray7);
  border-radius: 12px;
  padding: 12px 15px;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .cart-card {
    grid-template-columns: 84px 1fr 1fr 1fr 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cart-card {
    grid-template-columns: 54px 4fr 4fr 3fr 30px;
  }
}
@media screen and (max-width: 767px) {
  .cart-card {
    grid-template-columns: 110px 1fr;
    grid-template-areas: "image content" "image info" "actions prices";
    gap: 0 12px;
    padding: 0;
    border-radius: unset;
    border: none;
  }
}
.cart-card + .cart-card {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .cart-card + .cart-card {
    padding-top: 16px;
    border-top: 1px solid var(--gray6);
  }
}
.cart-card__image {
  display: flex;
  grid-area: image;
}
.cart-card__image img {
  width: 100%;
  margin: auto;
}
.cart-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  justify-content: space-between;
  grid-area: content;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .cart-card__content {
    padding: 0;
    gap: 6px 0;
  }
}
.cart-card__content-title {
  font-size: 14px;
  line-height: 16px;
  transition: 0.2s;
  color: var(--gray4);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cart-card__content-title {
    font-size: 12px;
  }
}
.cart-card__content-title:hover {
  color: var(--orange2);
}
.cart-card__content-partnumber {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: var(--gray1);
  transition: 0.2s;
  text-decoration: none;
}
.cart-card__content-partnumber:hover {
  color: var(--orange2);
}
.cart-card-info {
  grid-area: info;
  padding: 0 20px;
  border-left: 1px solid var(--gray6);
  border-right: 1px solid var(--gray6);
}
@media screen and (max-width: 767px) {
  .cart-card-info {
    padding: 0;
    border: none;
    margin: 6px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .cart-card-info__item {
    font-size: 12px;
  }
}
.cart-card-info__item + .cart-card-info__item {
  margin-top: 4px;
}
.cart-card-info__item a {
  color: var(--orange1);
  text-decoration: underline;
}
.cart-card-info__item a:hover {
  text-decoration: none;
}
.cart-card-prices {
  grid-area: prices;
  display: grid;
  grid-template-columns: 1fr 134px 1fr;
  align-items: center;
  grid-gap: 0 10px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .cart-card-prices {
    display: flex;
    flex-direction: column;
    gap: 6px 0;
  }
}
@media screen and (max-width: 767px) {
  .cart-card-prices {
    grid-template-columns: 1fr 96px;
    padding: 0;
    margin: 12px 0 0 0;
  }
}
.cart-card-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .cart-card-actions {
    flex-direction: row;
    gap: 0 10px;
  }
}
.cart-card__delete {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: var(--gray4);
  background: var(--gray5);
  cursor: pointer;
}
.cart-card__delete:hover {
  color: var(--orange1);
}
.cart-card__delete svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.cart-card__favorite {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: var(--gray4);
  background: var(--gray5);
  cursor: pointer;
}
.cart-card__favorite:hover {
  color: var(--orange1);
}
.cart-card__favorite svg {
  display: block;
  width: 15px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.product--in-favorite .cart-card__favorite {
  background: var(--orange4);
}
.product--in-favorite .cart-card__favorite svg {
  fill: var(--orange1);
  stroke: var(--orange1);
}
.cart-card__price-name {
  font-size: 14px;
  line-height: 16px;
  color: var(--gray4);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cart-card__price-name {
    font-size: 12px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .cart-card__price--total {
    display: flex;
    align-items: baseline;
    grid-column: 1/3;
    gap: 0 6px;
    justify-content: end;
    margin: 12px 0 0 0;
  }
}
.cart-card__price-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray1);
  text-align: center;
  margin: 3px 0 0 0;
}
@media screen and (max-width: 767px) {
  .cart-card__price-value {
    font-size: 12px;
    text-align: left;
  }
}
.cart-card__price-value--big {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cart-card__price-value--big {
    font-size: 16px;
  }
}
.cart-card__quantity {
  display: flex;
  align-items: center;
  gap: 0 4px;
  height: 32px;
}
.cart-card__quantity-outer {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.cart-card__quantity-outer span {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.cart-card__quantity-btn {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cart-card__quantity-btn {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
}
.cart-card__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.cart-card__quantity-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.cart-card__quantity input {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 8px;
  width: 62px;
  height: 32px;
  transition: 0.2s;
  outline: none;
  font-size: 16px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
@media screen and (max-width: 767px) {
  .cart-card__quantity input {
    width: 32px;
    padding: 8px 0;
  }
}
.cart-card__quantity input:hover, .cart-card__quantity input:focus {
  border-color: var(--orange1);
}
.cart-group-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 16px 0;
}
.cart-delivery {
  padding: 30px 0 0 0;
  margin: 30px 0 0 0;
  border-top: 1px dotted var(--gray6);
}
.cart-delivery-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .cart-delivery-grid {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .cart-delivery-navigation {
    display: none;
  }
}
.cart-delivery-navigation__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 36px;
  min-height: 54px;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--gray4);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
}
.cart-delivery-navigation__item + .cart-delivery-navigation__item {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .cart-delivery-navigation__item--mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cart-delivery-content + .cart-delivery-navigation__item {
    margin-top: 20px;
  }
}
.cart-delivery-navigation__item:hover {
  border-color: var(--orange2);
  color: var(--orange2);
}
.cart-delivery-navigation__item.active {
  border-color: var(--orange2);
  color: var(--orange2);
}
.cart-delivery-navigation__item-logo {
  max-width: 80%;
  max-height: 55%;
}
.cart-delivery-navigation__item-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  transition: 0.2s;
}
.cart-delivery-navigation__item-checker {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  border-radius: 50%;
}
.cart-delivery-navigation__item-checker svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--orange1);
}
.cart-delivery-navigation__item:not(.active) .cart-delivery-navigation__item-checker {
  background: var(--gray6);
}
.cart-delivery-navigation__item:not(.active) .cart-delivery-navigation__item-checker svg {
  visibility: hidden;
}
.cart-delivery-content {
  padding: 16px 16px;
  background: var(--gray5);
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .cart-delivery-content {
    margin: 20px 0 0 0;
  }
}
.cart-delivery-content:not(.active) {
  display: none;
}
.cart-delivery-content__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 12px 0;
}
.cart-delivery-content__description {
  margin: 0 0 19px 0;
  font-size: 14px;
  line-height: 18px;
  color: var(--gray4);
}
@media screen and (max-width: 389px) {
  .cart-delivery-content__frame {
    overflow: auto;
  }
}
.cart-summation {
  border: 1px solid var(--gray7);
  border-radius: 12px;
  padding: 12px 12px;
  margin: 14px 0 0 0;
}
.cart-summation__title {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--orange1);
}
.cart-summation-grid {
  display: flex;
  gap: 8px 12px;
}
.cart-summation-grid + .cart-summation-grid, .cart-summation-grid + .cart-summation-group {
  margin-top: 8px;
}
.cart-summation-group + .cart-summation-group, .cart-summation-group + .cart-summation-grid {
  margin-top: 8px;
}
.cart-summation-group__name {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray7);
}
.cart-summation-group__value {
  font-size: 14px;
  line-height: 17px;
  color: var(--gray4);
}
.cart-summation-group__value--wide {
  font-weight: 500;
}
.cart-summation-group__value--fat {
  font-weight: 700;
}
.cart-summation-group__description {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray7);
  margin: 4px 0 0 0;
}
.cart-organizations {
  margin: 30px 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px dotted var(--gray6);
}
@media screen and (max-width: 991px) {
  .cart-organizations {
    padding: 0;
    margin: 0;
    border: none;
  }
}
.cart-organizations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cart-organizations-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .cart-organizations-grid {
    grid-template-columns: 1fr;
  }
}
.cart-organization {
  cursor: pointer;
}
.cart-organization input {
  display: none;
}
.cart-organization-inner {
  padding: 15px 15px 15px 50px;
  border: 1px solid var(--gray7);
  border-radius: 12px;
  transition: 0.2s;
  position: relative;
  min-height: 100px;
}
.cart-organization input:checked ~ .cart-organization-inner {
  border-color: var(--orange1);
}
.cart-organization__checker {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.cart-organization__checker svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--orange1);
}
.cart-organization:not(:hover) input:not(:checked) ~ .cart-organization-inner .cart-organization__checker {
  border: 2px solid var(--gray4);
}
.cart-organization:not(:hover) input:not(:checked) ~ .cart-organization-inner .cart-organization__checker svg {
  visibility: hidden;
}
.cart-organization__title {
  margin: 0 0 4px 0;
  font-size: 12px;
  line-height: 14px;
  color: var(--gray7);
}
.cart-organization__name {
  color: var(--gray4);
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.cart-organization input:checked ~ .cart-organization-inner .cart-organization__name {
  color: var(--orange2);
}
.cart-organization:hover .cart-organization__checker {
  border: none;
}
.cart-organization:hover .cart-organization-inner {
  border-color: var(--orange2);
}
.cart-addresses {
  padding: 30px 0 0 0;
  margin: 30px 0 0 0;
  border-top: 1px dotted var(--gray6);
}
.cart-addresses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cart-addresses-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .cart-addresses-grid {
    grid-template-columns: 1fr;
  }
}
.cart-address {
  cursor: pointer;
}
.cart-address input {
  display: none;
}
.cart-address-inner {
  padding: 15px 15px 15px 50px;
  border: 1px solid var(--gray7);
  border-radius: 12px;
  transition: 0.2s;
  position: relative;
  min-height: 100px;
}
.cart-address input:checked ~ .cart-address-inner {
  border-color: var(--orange1);
}
.cart-address__checker {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.cart-address__checker svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--orange1);
}
.cart-address:not(:hover) input:not(:checked) ~ .cart-address-inner .cart-address__checker {
  border: 2px solid var(--gray4);
}
.cart-address:not(:hover) input:not(:checked) ~ .cart-address-inner .cart-address__checker svg {
  visibility: hidden;
}
.cart-address__name {
  color: var(--gray4);
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}
.cart-address input:checked ~ .cart-address-inner .cart-address__name {
  color: var(--orange2);
}
.cart-address:hover .cart-address__checker {
  border: none;
}
.cart-address:hover .cart-address-inner {
  border-color: var(--orange2);
}
.cart__new-data {
  display: flex;
  gap: 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 15px;
  border: 1px solid var(--gray7);
  border-radius: 12px;
  transition: 0.2s;
  min-height: 100px;
  color: var(--gray4);
  cursor: pointer;
}
.cart__new-data:hover {
  color: var(--orange2);
}
.cart__new-data span {
  transition: 0.2s;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: currentColor;
}
.cart__new-data-icon {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray5);
}
.cart__new-data-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.cart-comment {
  padding: 30px 0 0 0;
  margin: 30px 0 0 0;
  border-top: 1px dotted var(--gray6);
}
.cart-submit {
  margin: 40px 0 0 0;
}
@media screen and (max-width: 991px) {
  .cart-submit {
    display: none;
  }
}
.cart-submit .btn {
  width: 100%;
}
.cart-submit-manager {
  margin: 30px 0 0 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .cart-submit-manager--mobile {
    display: none;
  }
}
.cart-attention {
  margin: 22px 0 0 0;
}
.cart-attention__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  height: 54px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--gray2);
}
@media screen and (max-width: 767px) {
  .cart-attention__text {
    gap: 0 12px;
  }
}
.cart-attention__text svg {
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: var(--gray2);
}
.cart-attention__text span {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cart-attention__text span {
    font-size: 14px;
  }
}
.cart-checkout {
  margin: 60px 0 0 0;
}
@media screen and (max-width: 991px) {
  .cart-checkout {
    margin: 0;
  }
}
.cart-checkout__title {
  margin: 0 0 18px 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width: 991px) {
  .cart-checkout__title {
    display: none;
  }
}
.cart-personal {
  padding: 30px 0 0 0;
  border-top: 1px dotted var(--gray6);
}
.cart-personal__attention {
  font-size: 14px;
  margin: 0 0 24px 0;
  padding: 19px 20px 18px;
  line-height: 17px;
  background: var(--gray5);
  text-align: center;
  border-radius: 12px;
  text-align: center;
}
.cart-personal__attention span {
  color: var(--orange1);
  text-decoration: underline;
  cursor: pointer;
}
.cart-personal__attention span:hover {
  color: var(--orange2);
  text-decoration: none;
}
.cart-personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cart-personal-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .cart-personal-grid {
    grid-template-columns: 1fr;
  }
}
.cart-personal-data {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 30px;
  gap: 0 30px;
  padding: 15px 15px;
  border: 1px solid var(--gray7);
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .cart-personal-data {
    grid-template-columns: 1fr 30px;
    gap: 6px 10px;
  }
}
@media screen and (max-width: 767px) {
  .cart-personal-data__item {
    grid-column: 1/2;
  }
}
.cart-personal-data__item-name {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
}
.cart-personal-data__item-value {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.cart-personal-data__edit {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray5);
  color: var(--gray2);
  transition: 0.1s;
  cursor: pointer;
  align-self: center;
}
.cart-personal-data__edit:hover {
  color: var(--orange1);
}
.cart-personal-data__edit svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  margin: auto;
  transition: 0.1s;
}
.cart__next-step {
  margin: 20px 0 0 0;
}
@media screen and (min-width: 992px) {
  .cart__next-step {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  body.cart-step-2 .cart-products, body.cart-step-2 .cart-attention, body.cart-step-2 .breadcrumbs__back--real,
  body.cart-step-3 .cart-products,
  body.cart-step-3 .cart-attention,
  body.cart-step-3 .breadcrumbs__back--real {
    display: none;
  }
  body:not(.cart-step-2) .cart-checkout {
    display: none;
  }
  body:not(.cart-step-3) .cart-sidebar {
    display: none;
  }
  body:not(.cart-step-2):not(.cart-step-3) .breadcrumbs__back--cart {
    display: none;
  }
}
.profile {
  padding: 50px 0 80px 0;
}
.profile-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  grid-gap: 0 30px;
  align-items: start;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-grid {
    grid-template-columns: 240px 1fr;
    grid-gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .profile-grid {
    grid-template-columns: 100%;
    grid-gap: 24px 0;
  }
}
.profile-sidebar-navigation {
  padding: 15px 15px;
  background: var(--gray3);
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-sidebar-navigation {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .profile-sidebar-navigation {
    padding: 0;
    background: none;
    border-radius: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 8px;
    overflow: auto;
  }
}
.profile-sidebar-navigation__item {
  display: flex;
  align-items: center;
  gap: 0 12px;
  padding: 8px 12px;
  color: var(--gray4);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.2s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-sidebar-navigation__item {
    gap: 0 8px;
    padding: 6px 8px;
    font-size: 14px;
    padding: 8px 8px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .profile-sidebar-navigation__item {
    background: var(--gray3);
  }
}
@media screen and (min-width: 768px) {
  .profile-sidebar-navigation__item:hover {
    color: var(--orange1);
    background: var(--gray5);
  }
}
.profile-sidebar-navigation__item.active {
  background: var(--orange5);
  color: var(--orange1);
}
.profile-sidebar-navigation__item + .profile-sidebar-navigation__item {
  margin-top: 4px;
}
.profile-sidebar-navigation__item svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20xp;
  fill: none;
  stroke: currentColor;
}
@media screen and (max-width: 767px) {
  .profile-sidebar-navigation__item span {
    white-space: nowrap;
  }
}
.profile-favorite .pagination {
  margin: 40px 0 0 0;
}
.profile-manager {
  margin: 44px 0 0 0;
  border-radius: 12px;
  border: 1px solid var(--gray7);
  padding: 13px 22px 20px 22px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-manager {
    padding: 13px 18px 20px 18px;
  }
}
.profile-manager__title {
  color: var(--orange1);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  border-bottom: 1px solid #D9DBE9;
  padding-bottom: 17px;
  margin: 0 0 17px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-manager__title {
    font-size: 18px;
  }
}
.profile-manager__name {
  display: flex;
  align-items: center;
  gap: 0 9px;
  color: #6F7290;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-manager__name {
    font-size: 16px;
  }
}
.profile-manager__name svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: var(--gray4);
}
.profile-manager__contact {
  display: flex;
  align-items: center;
  color: var(--gray4);
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-manager__contact {
    font-size: 14px;
  }
}
.profile-manager__contact + .profile-manager__contact {
  margin-top: 6px;
}
.profile-manager__contact a {
  text-decoration: none;
  color: var(--gray4);
  transition: 0.1s;
  margin: 0 0 0 9px;
}
.profile-manager__contact a:hover {
  color: var(--orange1);
}
.profile-manager__contact span {
  margin: 0 0 0 3px;
}
.profile-manager__contact svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: var(--gray4);
}
.profile-user-group + .profile-user-group {
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px dotted var(--gray7);
}
.profile-user-group__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  margin: 0 0 24px 0;
}
.profile-user__logout {
  margin: 70px 0 0 0;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--grey4);
  transition: 0.1s;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: 12px;
  padding: 28px 10px;
  text-align: center;
  cursor: pointer;
}
.profile-user__logout:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.profile-user-data {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0 70px;
  padding: 15px;
  border: 1px solid var(--gray4);
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .profile-user-data {
    grid-template-columns: 1fr;
  }
}
.profile-user-data__fio {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.profile-user-data__fio-icon {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--orange4);
}
.profile-user-data__fio-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  stroke: none;
  fill: var(--orange1);
}
.profile-user-data__fio-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.profile-user-data__fio .profile-user__edit {
  margin: 0 0 0 auto;
}
.profile-user-data-contacts {
  justify-self: start;
}
@media screen and (max-width: 991px) {
  .profile-user-data-contacts {
    justify-self: stretch;
    margin: 12px 0 0 0;
  }
}
.profile-user-data__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 5px;
}
@media screen and (max-width: 991px) {
  .profile-user-data__contact {
    justify-content: start;
  }
}
.profile-user-data__contact + .profile-user-data__contact {
  margin-top: 8px;
}
@media screen and (max-width: 991px) {
  .profile-user-data__contact + .profile-user-data__contact {
    margin-top: 24px;
  }
}
.profile-user-data__contact-title {
  font-size: 12px;
  line-height: 16px;
  color: var(--gray4);
}
.profile-user-data__contact-value {
  font-size: 16px;
  line-height: 20px;
  color: var(--gray4);
}
@media screen and (max-width: 991px) {
  .profile-user-data__contact-value {
    margin: 0 auto 0 0;
  }
}
.profile-user-data__contact-value span {
  font-size: 12px;
  line-height: 16px;
  color: var(--gray7);
}
.profile-user__edit {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray5);
  color: var(--gray2);
  transition: 0.1s;
  cursor: pointer;
}
.profile-user__edit:hover {
  color: var(--orange1);
}
.profile-user__edit svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
  margin: auto;
  transition: 0.1s;
}
.profile-user__edit--delete svg {
  fill: none;
  stroke: currentColor;
}
.profile-user-organizations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-user-organizations {
    grid-gap: 15px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .profile-user-organizations {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .profile-user-organizations {
    grid-template-columns: 1fr;
  }
}
.profile-user-organization {
  display: grid;
  grid-template-columns: 1fr 30px;
  grid-gap: 0 15px;
  padding: 15px 15px;
  border: 1px solid var(--gray4);
  border-radius: 12px;
  transition: 0.2s;
  min-height: 170px;
}
.profile-user-organization.active {
  border-color: var(--orange1);
}
.profile-user-organization-content {
  display: flex;
  flex-direction: column;
}
.profile-user-organization-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-user-organization__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 12px 0;
  transition: 0.2s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-user-organization__name {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .profile-user-organization__name {
    font-size: 14px;
  }
}
.profile-user-organization.active .profile-user-organization__name {
  color: var(--orange1);
}
.profile-user-organization__value {
  font-size: 16px;
  line-height: 20px;
  margin: auto 0 0 0;
}
.profile-user-organization__footer {
  display: flex;
  margin: 15px 0 0 0;
}
.profile-user-organization__footer .btn {
  font-weight: 500;
}
.profile-user-organization.active .profile-user-organization__footer .btn {
  display: none;
}
.profile-user-organization__active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange5);
  border: 1px solid var(--orange1);
  color: var(--orange1);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 175%;
  cursor: pointer;
  padding: 0 20px;
  transition: 0.2s;
  font-family: var(--font-family);
}
.profile-user-organization:not(.active) .profile-user-organization__active {
  display: none;
}
.profile-user-organization__active svg {
  display: block;
  width: 18px;
  height: 14px;
  fill: none;
  stroke: var(--orange1);
}
.profile-user-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-user-addresses {
    grid-gap: 15px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .profile-user-addresses {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
@media screen and (max-width: 767px) {
  .profile-user-addresses {
    grid-template-columns: 1fr;
  }
}
.profile-user__new-data {
  display: flex;
  gap: 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 15px;
  border: 1px solid currentColor;
  border-radius: 12px;
  transition: 0.2s;
  min-height: 132px;
  color: var(--gray4);
  cursor: pointer;
}
.profile-user__new-data:hover {
  color: var(--orange2);
}
.profile-user__new-data span {
  transition: 0.2s;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: currentColor;
}
.profile-user__new-data-icon {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray5);
}
.profile-user__new-data-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.profile-user-address {
  display: grid;
  grid-template-columns: 1fr 30px;
  grid-gap: 0 15px;
  padding: 15px 15px;
  border: 1px solid var(--gray4);
  border-radius: 12px;
  transition: 0.2s;
  min-height: 132px;
}
.profile-user-address.active {
  border-color: var(--orange1);
}
.profile-user-address-content {
  display: flex;
  flex-direction: column;
}
.profile-user-address-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-user-address__name {
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 12px 0;
  transition: 0.2s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-user-address__name {
    font-size: 14px;
  }
}
.profile-user-address.active .profile-user-address__name {
  color: var(--orange1);
}
.profile-user-address__footer {
  display: flex;
  margin: auto 0 0 0;
}
.profile-user-address__footer .btn {
  font-weight: 500;
}
.profile-user-address.active .profile-user-address__footer .btn {
  display: none;
}
.profile-user-address__active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange5);
  border: 1px solid var(--orange1);
  color: var(--orange1);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 175%;
  cursor: pointer;
  padding: 0 20px;
  transition: 0.2s;
  font-family: var(--font-family);
}
.profile-user-address:not(.active) .profile-user-address__active {
  display: none;
}
.profile-user-address__active svg {
  display: block;
  width: 18px;
  height: 14px;
  fill: none;
  stroke: var(--orange1);
}
.profile-user-password {
  display: flex;
  gap: 0 15px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--gray4);
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .profile-user-password {
    justify-content: space-between;
  }
}
.profile-user-password__title {
  font-size: 16px;
  line-height: 20px;
}
.profile-user-subscribe {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-user-subscribe {
    grid-gap: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .profile-user-subscribe {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.profile-user-subscribe-card {
  display: flex;
  flex-direction: column;
  padding: 15px 15px 15px 50px;
  background: var(--gray3);
  border: 1px solid var(--gray3);
  border-radius: 12px;
  transition: 0.2s;
  position: relative;
  min-height: 78px;
}
.profile-user-subscribe-card.active {
  background: var(--orange5);
  color: var(--orange2);
}
.profile-user-subscribe-card:not(.active):hover {
  border-color: var(--orange2);
  cursor: pointer;
}
.profile-user-subscribe-card__checker {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.profile-user-subscribe-card__checker svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--orange1);
}
.profile-user-subscribe-card:not(.active) .profile-user-subscribe-card__checker {
  border: 2px solid var(--gray4);
}
.profile-user-subscribe-card:not(.active) .profile-user-subscribe-card__checker svg {
  visibility: hidden;
}
.profile-user-subscribe-card:not(.active):hover .profile-user-subscribe-card__checker {
  border: none;
}
.profile-user-subscribe-card:not(.active):hover .profile-user-subscribe-card__checker svg {
  visibility: visible;
}
.profile-user-subscribe-card__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 15px 0;
}
.profile-user-subscribe-card__footer {
  display: flex;
  justify-content: flex-end;
  margin: auto 0 0 0;
}
.profile-user-subscribe-card__footer .btn {
  font-weight: 500;
  pointer-events: none;
}
.profile-user-subscribe-card.active .profile-user-subscribe-card__footer .btn {
  display: none;
}
.profile-user-subscribe-card:not(.active):hover .profile-user-subscribe-card__footer .btn {
  color: var(--orange1);
  border-color: var(--orange1);
}
.profile-user-subscribe-card__active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange5);
  border: 1px solid var(--orange1);
  color: var(--orange1);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 175%;
  cursor: pointer;
  padding: 0 20px;
  transition: 0.2s;
  font-family: var(--font-family);
}
.profile-user-subscribe-card:not(.active) .profile-user-subscribe-card__active {
  display: none;
}
.profile-user-subscribe-card__active svg {
  display: block;
  width: 18px;
  height: 14px;
  fill: none;
  stroke: var(--orange1);
}
.profile-orders__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray6);
  padding: 0 24px;
  border-radius: 20px;
  min-height: 250px;
}
.profile-orders__empty p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
.profile-order {
  border: 1px solid var(--gray6);
  border-radius: 20px;
  padding: 15px 15px;
}
@media screen and (max-width: 389px) {
  .profile-order {
    border: none;
    border-radius: unset;
    padding: 0;
  }
}
.profile-order + .profile-order {
  margin-top: 30px;
}
.profile-order__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 15px;
  margin: 0 0 8px 0;
}
.profile-order__header-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
.profile-order__header-status {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray4);
  padding: 0 0 0 24px;
  position: relative;
}
.profile-order__header-status:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin: -8px 0 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.profile-order__header-status--ordered:before {
  background: #62af00;
}
.profile-order__header-status--inprocess:before {
  background: var(--orange5);
}
.profile-order__header-status--complete:before {
  background: #d9d9d9;
}
.profile-order-info {
  background: var(--gray5);
  margin: 0 0 12px 0;
  border-radius: 12px;
  padding: 24px 24px;
}
.profile-order-info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 15px 16px;
}
@media screen and (max-width: 991px) {
  .profile-order-info-grid {
    grid-template-columns: 1fr;
  }
}
.profile-order-info__item {
  display: flex;
  align-items: baseline;
  gap: 0 6px;
}
@media screen and (max-width: 991px) {
  .profile-order-info__item {
    display: block;
  }
}
.profile-order-info__item-name {
  font-size: 12px;
  line-height: 12px;
  color: var(--gray7);
  width: 110px;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .profile-order-info__item-name {
    width: auto;
    text-align: left;
  }
}
.profile-order-info__item-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray4);
}
.profile-order-info > .btn {
  max-width: 148px;
  margin: 16px 0 0 auto;
  padding: 0;
}
.profile-order__total {
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 12px;
}
.profile-order__total strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
@media screen and (min-width: 768px) {
  .profile-order__total br {
    display: none;
  }
}
.profile-order:not(.active) .profile-order-products {
  display: none;
}
.profile-order-card {
  display: grid;
  grid-template-columns: 60px 1fr 100px 100px 100px;
  align-items: center;
  gap: 0 16px;
  min-height: 80px;
  border-top: 1px solid var(--gray6);
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .profile-order-card {
    grid-template-columns: 40px 1fr 80px 100px 100px;
  }
}
@media screen and (min-width: 390px) and (max-width: 991px) {
  .profile-order-card {
    min-height: unset;
    padding: 12px 0;
    grid-template-columns: 1fr 2fr;
    gap: 6px 12px;
  }
}
@media screen and (max-width: 389px) {
  .profile-order-card {
    grid-template-columns: 1fr 3fr;
  }
}
.profile-order--with-return .profile-order-card {
  grid-template-columns: 60px 1fr 100px 100px 100px 100px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .profile-order--with-return .profile-order-card {
    grid-template-columns: 40px 1fr 80px 100px 100px 100px;
  }
}
@media screen and (min-width: 390px) and (max-width: 991px) {
  .profile-order--with-return .profile-order-card {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (max-width: 389px) {
  .profile-order--with-return .profile-order-card {
    grid-template-columns: 1fr 3fr;
  }
}
@media screen and (max-width: 991px) {
  .profile-order-card__image {
    grid-column: 1/2;
    grid-row: 1/5;
  }
  .profile-order--with-return .profile-order-card__image {
    grid-row: 1/6;
  }
}
.profile-order-card__image img {
  width: 100%;
}
.profile-order-card__title {
  display: block;
  text-decoration: none;
  color: var(--gray4);
}
.profile-order-card__title span {
  color: var(--gray1);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .profile-order-card__article {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .profile-order-card__article span {
    display: block;
  }
}
.profile-order-card__article span {
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .profile-order-card__num {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .profile-order-card__num span {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .profile-order-card__return {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .profile-order-card__return br {
    display: none;
  }
}
.profile-order-card__price {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray1);
}
@media screen and (min-width: 992px) {
  .profile-order-card__price {
    text-align: center;
  }
}
.profile-returns__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray6);
  padding: 0 24px;
  border-radius: 20px;
  min-height: 250px;
}
.profile-returns__empty-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: var(--gray4);
  margin: 0 0 12px 0;
  text-align: center;
}
.profile-returns__empty-subtitle {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
.profile-returns-card {
  border: 1px solid var(--gray6);
  border-radius: 20px;
  padding: 15px 15px;
}
.profile-returns-card + .profile-returns-card {
  margin-top: 30px;
}
.profile-returns-card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 16px 0;
}
.profile-returns-card__info {
  display: grid;
  grid-template-columns: 3fr 6fr 4fr 8fr;
  grid-gap: 0 20px;
  padding: 12px 12px;
  background: var(--gray5);
  border-radius: 12px;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 1199px) {
  .profile-returns-card__info {
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px 20px;
  }
}
.profile-returns-card__info-item {
  font-size: 14px;
  line-height: 16px;
}
.profile-returns-card__info-item span {
  color: var(--gray4);
}
.profile-returns-card__info-item strong {
  font-weight: 600;
  display: block;
}
.profile-returns-card__info-item-link {
  font-weight: 400;
  display: inline;
  color: var(--orange1);
  text-decoration: underline;
  cursor: pointer;
}
.profile-returns-card__info-item-link:hover {
  text-decoration: none;
  color: var(--orange2);
}
.profile-returns-card__total {
  display: grid;
  grid-template-columns: 3fr 6fr 4fr 8fr;
  grid-gap: 0 20px;
}
@media screen and (max-width: 1199px) {
  .profile-returns-card__total {
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px 20px;
  }
}
.profile-returns-card__total-title {
  color: var(--gray4);
  text-decoration: none;
  grid-column: 1/3;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-returns-card__total-title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .profile-returns-card__total-title {
    grid-column: 1/3;
  }
}
.profile-returns-card__total-title span {
  color: var(--gray1);
  font-weight: 700;
}
.profile-returns-card__total-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 10px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-returns-card__total-info {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .profile-returns-card__total-info {
    grid-column: 1/3;
  }
}
.profile-returns-card__total-article {
  color: var(--gray4);
}
@media screen and (min-width: 1200px) {
  .profile-returns-card__total-article {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .profile-returns-card__total-article span {
    display: block;
  }
}
.profile-returns-card__total-count {
  color: var(--gray4);
}
@media screen and (min-width: 1200px) {
  .profile-returns-card__total-count {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .profile-returns-card__total-count span {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-returns-card__total-description {
    grid-row: 1/3;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .profile-returns-card__total-description {
    grid-column: 1/3;
  }
}
.profile-returns-card__total-description-text {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray1);
}
.profile-returns-file {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.profile-returns-file + .profile-returns-file {
  margin-top: 16px;
}
.profile-returns-file__icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: var(--gray4);
}
.profile-returns-file__title {
  font-size: 14px;
  line-height: 18px;
  margin: 0 auto 0 0;
}
.profile-returns-file__download {
  display: flex;
  width: 32px;
  height: 32px;
  color: var(--gray4);
  background: var(--gray5);
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
}
.profile-returns-file__download:hover {
  color: var(--orange2);
}
.profile-returns-file__download svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.profile-returns-file__delete {
  display: flex;
  width: 32px;
  height: 32px;
  color: var(--gray4);
  background: var(--gray5);
  border-radius: 50%;
  cursor: pointer;
}
.profile-returns-file__delete:hover {
  color: var(--orange2);
}
.profile-returns-file__delete svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  transition: 0.2s;
}
.profile-returns .pagination {
  margin-top: 30px;
}
.profile-return {
  border: 1px solid var(--gray6);
  border-radius: 20px;
  padding: 15px 15px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .profile-return {
    border: none;
    border-radius: unset;
    padding: 0;
  }
}
.profile-return__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 8px 0;
}
.profile-return-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 15px 16px;
  background: var(--gray5);
  margin: 0 0 12px 0;
  border-radius: 12px;
  padding: 24px 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-return-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .profile-return-info {
    grid-template-columns: 1fr;
  }
}
.profile-return-info__item {
  display: flex;
  align-items: baseline;
  gap: 0 6px;
}
@media screen and (max-width: 1199px) {
  .profile-return-info__item {
    flex-direction: column;
    align-items: start;
    gap: 6px 0;
  }
}
.profile-return-info__item-name {
  font-size: 12px;
  line-height: 12px;
  color: var(--gray7);
  width: 110px;
}
@media screen and (min-width: 1200px) {
  .profile-return-info__item-name {
    text-align: right;
  }
}
.profile-return-info__item-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--gray4);
}
.profile-return-info > .btn {
  max-width: 148px;
  margin: 16px 0 0 auto;
  padding: 0;
}
.profile-return-form {
  display: grid;
  grid-template-columns: 134px 4fr 3fr 4fr;
  grid-template-areas: "name name article type" "quantity files message message";
  grid-gap: 14px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile-return-form {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "name name type type" "article article files files" "quantity quantity files files" "message message message message";
  }
}
@media screen and (max-width: 767px) {
  .profile-return-form {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "name name" "article quantity" "type type" "files files" "message message";
  }
}
.profile-return__product-name {
  display: block;
  text-decoration: none;
  color: var(--gray4);
  grid-area: name;
}
.profile-return__product-name span {
  color: var(--gray1);
  font-weight: 700;
  white-space: nowrap;
}
.profile-return__article {
  grid-area: article;
}
@media screen and (min-width: 1200px) {
  .profile-return__article {
    text-align: center;
  }
}
.profile-return__article strong {
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .profile-return__article strong {
    display: block;
  }
}
.profile-return__type {
  display: flex;
  gap: 0 15px;
  align-items: start;
  grid-area: type;
}
@media screen and (max-width: 767px) {
  .profile-return__type {
    justify-content: space-between;
  }
}
.profile-return__type-item {
  display: flex;
  align-items: center;
  gap: 0 8px;
  cursor: pointer;
  color: var(--gray4);
}
.profile-return__type-item:hover {
  color: var(--orange2);
}
.profile-return__type-item input {
  display: none;
}
.profile-return__type-item-checker {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  transition: 0.2s;
}
.profile-return__type-item-checker:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  background: var(--orange1);
  transition: 0.2s;
  border-radius: 50%;
}
.profile-return__type-item input:not(:checked) ~ .profile-return__type-item-checker:before {
  opacity: 0;
}
.profile-return__type-item input:checked ~ .profile-return__type-item-checker {
  color: var(--orange1);
}
.profile-return__type-item span {
  font-size: 14px;
  line-height: 16px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .profile-return__type-item span br {
    display: none;
  }
}
.profile-return__type-item input:checked ~ span {
  color: var(--orange1);
}
.profile-return__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  height: 44px;
}
.profile-return__quantity-outer {
  grid-area: quantity;
}
.profile-return__quantity-outer span {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 16px;
  color: var(--gray4);
  text-align: center;
  display: block;
}
.profile-return__quantity-btn {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.profile-return__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.profile-return__quantity-btn svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.profile-return__quantity input {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 8px;
  width: 62px;
  height: 32px;
  transition: 0.2s;
  outline: none;
  font-size: 16px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
.profile-return__quantity input:hover, .profile-return__quantity input:focus {
  border-color: var(--orange1);
}
.profile-return__files {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-area: files;
  padding: 12px 8px 12px 8px;
  background: var(--gray3);
  border-radius: 12px;
}
@media screen and (min-width: 1200px) {
  .profile-return__files {
    margin: 0 30px;
  }
}
.profile-return__files-title strong {
  white-space: nowrap;
}
.profile-return__files-view {
  text-decoration: underline;
  color: var(--orange1);
  cursor: pointer;
  margin: 0 0 12px 0;
}
.profile-return__files-view:hover {
  text-decoration: none;
}
.profile-return__files .btn {
  margin: auto 0 0 0;
}
.profile-return__files .btn svg {
  fill: none;
  stroke: currentColor;
}
.profile-return__files .btn input[type=file] {
  display: none;
}
.profile-return__message {
  grid-area: message;
}
.profile-return__message textarea {
  min-height: 136px;
}
.profile-return-footer {
  display: flex;
  margin: 24px 0 0 0;
  padding: 15px 15px;
  background: var(--gray3);
  border-radius: 12px;
}
.profile-return-footer .btn {
  margin: 0 auto;
}

.profile-edit-address-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .profile-edit-address-form-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .profile-edit-address-form-grid .form-group:last-of-type {
    grid-column: 1/3;
  }
}
.profile-edit-address-form .btn {
  margin: 30px auto 0 auto;
}

.profile-edit-organization-form {
  width: 870px;
}
@media screen and (max-width: 767px) {
  .profile-edit-organization-form {
    width: 100%;
  }
}
.profile-edit-organization-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .profile-edit-organization-form-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .profile-edit-organization-form-grid .form-group:last-of-type {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 768px) {
  .profile-edit-organization-form__type {
    grid-column: 1/2;
  }
  .profile-edit-organization-form__country {
    grid-column: 2/3;
  }
}
.profile-edit-organization-form__total {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  border-radius: 20px;
  border: 1px solid #C2C4D2;
  padding: 20px;
}
.profile-edit-organization-form__total:empty {
  display: none;
}
@media screen and (min-width: 768px) {
  .profile-edit-organization-form__total {
    grid-column: 1/3;
  }
}
.profile-edit-organization-form__total-item {
  color: #6E7191;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.profile-edit-organization-form.profile-edit-organization-form--manual .profile-edit-organization-form__total {
  display: none;
}
.profile-edit-organization-form.profile-edit-organization-form--manual .profile-edit-organization-form__inn {
  display: none;
}
.profile-edit-organization-form:not(.profile-edit-organization-form--manual) .profile-edit-organization-form__inn-manual, .profile-edit-organization-form:not(.profile-edit-organization-form--manual) .profile-edit-organization-form__organization-manual, .profile-edit-organization-form:not(.profile-edit-organization-form--manual) .profile-edit-organization-form__kpp-manual, .profile-edit-organization-form:not(.profile-edit-organization-form--manual) .profile-edit-organization-form__address-manual {
  display: none;
}

.profile-set-password-form {
  width: 390px;
}
.profile-set-password-form .form-group + .form-group {
  margin-top: 30px;
}
.profile-set-password-form .btn {
  margin: 30px auto 0 auto;
}
.profile-set-password-form__attention {
  margin: 0 0 30px 0;
  text-align: center;
  color: var(--red1);
}

.registration {
  padding: 50px 0 80px 0;
}
.registration-wrapper {
  max-width: 1170px;
}
.registration-group + .registration-group {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dotted var(--gray6);
}
.registration-group__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  margin: 0 0 24px 0;
}
.registration__personal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .registration__personal {
    grid-template-columns: 1fr;
  }
}
.registration__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .registration__contacts {
    grid-template-columns: 1fr;
  }
}
.registration__organization .profile-edit-organization-form {
  width: 100%;
}
.registration__address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .registration__address {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .registration__address .form-group:last-child {
    grid-column: 1/3;
  }
}
.registration__password-attention {
  text-align: center;
  margin: 0 0 20px 0;
}
.registration__password-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .registration__password-grid {
    grid-template-columns: 1fr;
  }
}
.registration__subscribes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .registration__subscribes {
    grid-template-columns: 1fr;
  }
}
.registration-subscribe {
  cursor: pointer;
}
.registration-subscribe input {
  display: none;
}
.registration-subscribe-inner {
  display: flex;
  flex-direction: column;
  padding: 15px 15px 15px 50px;
  background: var(--gray3);
  border: 1px solid var(--gray3);
  border-radius: 12px;
  transition: 0.2s;
  position: relative;
  min-height: 100px;
}
.registration-subscribe input:checked ~ .registration-subscribe-inner {
  background: var(--orange5);
  border-color: var(--orange5);
  color: var(--orange1);
}
.registration-subscribe__checker {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.registration-subscribe__checker svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--orange1);
}
.registration-subscribe:not(:hover) input:not(:checked) ~ .registration-subscribe-inner .registration-subscribe__checker {
  border: 2px solid var(--gray4);
}
.registration-subscribe:not(:hover) input:not(:checked) ~ .registration-subscribe-inner .registration-subscribe__checker svg {
  visibility: hidden;
}
.registration-subscribe__name {
  color: var(--gray4);
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
}
.registration-subscribe input:checked ~ .registration-subscribe-inner .registration-subscribe__name {
  color: var(--orange2);
}
.registration-subscribe__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  border: 1px solid currentColor;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border-radius: 8px;
  text-align: center;
  padding: 7px 18px;
  margin: auto 0 0 auto;
}
.registration-subscribe__button svg {
  display: block;
  width: 18px;
  height: 14px;
  fill: none;
  stroke: currentColor;
}
.registration-subscribe input:not(:checked) ~ .registration-subscribe-inner .registration-subscribe__button--active {
  display: none;
}
.registration-subscribe input:checked ~ .registration-subscribe-inner .registration-subscribe__button--activating {
  display: none;
}
.registration-subscribe:hover .registration-subscribe__checker {
  border: none;
}
.registration-subscribe:hover .registration-subscribe-inner {
  border-color: var(--orange2);
}
.registration__footer {
  margin: 60px 0 0 0;
}
.registration__footer-personal {
  display: flex;
  justify-content: center;
  padding: 18px 12px;
  background: var(--gray5);
  border-radius: 12px;
  margin: 0 0 30px 0;
}
.registration__footer-personal .checkbox-title {
  font-size: 12px;
  color: var(--gray4) !important;
}
.registration__footer .btn {
  margin: 0 auto;
  width: 240px;
}

.success-registration-form {
  width: 406px;
  color: var(--gray4);
}
.success-registration-form__title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 16px 0;
}
.success-registration-form__login {
  text-align: center;
  margin: 0 0 16px 0;
}
.success-registration-form__attention {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid var(--gray4);
  text-align: center;
  margin: 0 0 16px 0;
}
.success-registration-form__text {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 16px 0;
}
.success-registration-form .btn {
  width: 210px;
  margin: 0 auto;
}

.profile-edit-personal-data-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .profile-edit-personal-data-form-grid {
    grid-template-columns: 1fr;
  }
}
.profile-edit-personal-data-form-grid + .popup__title {
  margin-top: 30px;
}
.profile-edit-personal-data-form .btn {
  margin: 30px auto 0 auto;
  width: 210px;
}

.cookies {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
  position: fixed;
  max-width: 750px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  padding: 26px 30px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  z-index: 9999;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .cookies {
    width: calc(100% - 30px);
    max-width: unset;
    left: 15px;
    bottom: 15px;
    transform: unset;
  }
}
.cookies__content {
  font-size: 14px;
}
.cookies .btn {
  width: 90px;
}

.partnership-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 60px;
  padding: 30px 0;
}
@media screen and (max-width: 991px) {
  .partnership-about {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.partnership-about__content p {
  margin: 0 0 28px 0;
  color: var(--gray1);
  font-size: 22px;
  line-height: 28px;
}
.partnership-about__content a {
  color: var(--orange1);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.partnership-about__image {
  display: block;
  width: 100%;
}
.partnership-advantages {
  padding: 30px 0;
}
.partnership-advantages h2 {
  font-size: 32px;
  line-height: 38px;
}
.partnership-advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .partnership-advantages-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.partnership-advantages__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px 0;
  background: var(--gray5);
  border: 1px solid var(--orange1);
  border-radius: 20px;
  padding: 41px 10px 33px 10px;
}
.partnership-advantages__card img {
  display: block;
  width: 145px;
}
.partnership-advantages__card span {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: var(--gray4);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .partnership-advantages__card span {
    font-size: 18px;
    line-height: 24px;
  }
}
.partnership-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  padding: 163px 0 167px 0;
}
@media screen and (max-width: 991px) {
  .partnership-how {
    grid-template-columns: 1fr;
    grid-gap: 130px 0;
  }
}
.partnership-how__card {
  display: flex;
  align-items: center;
  justify-content: start;
  background: var(--gray5);
  border-radius: 20px;
  color: var(--gray4);
  transition: 0.2s;
  text-decoration: none;
  position: relative;
  min-height: 180px;
}
.partnership-how__card:hover {
  color: var(--orange1);
}
.partnership-how__card img {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .partnership-how__card img {
    margin: -120px 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .partnership-how__card img {
    margin: -120px 0 10px 0;
    max-width: 150px;
  }
}
.partnership-how__card span {
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  transition: 0.2s;
}
@media screen and (min-width: 1400px) {
  .partnership-how__card--first {
    padding: 0 20px 0 357px;
  }
  .partnership-how__card--first img {
    width: 280px;
    left: 33px;
    position: absolute;
    bottom: 18px;
  }
  .partnership-how__card--second {
    padding: 0 20px 0 240px;
  }
  .partnership-how__card--second img {
    width: 202px;
    left: 23px;
    position: absolute;
    bottom: 18px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .partnership-how__card--first {
    padding: 0 20px 0 277px;
  }
  .partnership-how__card--first img {
    width: 220px;
    left: 33px;
    position: absolute;
    bottom: 18px;
  }
  .partnership-how__card--second {
    padding: 0 20px 0 220px;
  }
  .partnership-how__card--second img {
    width: 182px;
    left: 23px;
    position: absolute;
    bottom: 18px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .partnership-how__card--first {
    padding: 0 20px 0 247px;
  }
  .partnership-how__card--first img {
    width: 190px;
    left: 33px;
    position: absolute;
    bottom: 18px;
  }
  .partnership-how__card--second {
    padding: 0 20px 0 190px;
  }
  .partnership-how__card--second img {
    width: 152px;
    left: 23px;
    position: absolute;
    bottom: 18px;
  }
}
@media screen and (max-width: 991px) {
  .partnership-how__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.partnership-diller {
  display: grid;
  grid-template-columns: 480px 243px 1fr;
  align-items: center;
  padding: 20px 20px 20px 20px;
  margin: 0 0 80px 0;
  background: var(--orange4);
  border-radius: 20px;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .partnership-diller {
    grid-template-columns: 380px 203px 1fr;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .partnership-diller {
    grid-template-columns: 240px 203px 1fr;
  }
}
@media screen and (max-width: 991px) {
  .partnership-diller {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.partnership-diller__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
}
.partnership-diller img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .partnership-diller img {
    max-width: 330px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .partnership-diller img {
    max-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .partnership-diller img {
    margin: -110px 0 10px 0;
  }
}
.partnership-diller p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .partnership-diller p {
    font-size: 18px;
    line-height: 24px;
  }
}
.partnership-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 1199px) {
  .partnership-partners {
    grid-template-columns: 1fr;
  }
}
.partnership-partners-card {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  align-items: center;
  background: var(--gray5);
  border-radius: 20px;
  min-height: 100px;
  padding: 0 30px 0 0;
}
@media screen and (max-width: 767px) {
  .partnership-partners-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px 0;
    padding: 15px 15px;
  }
}
.partnership-partners-card__image img {
  display: block;
  max-height: 65px;
  mix-blend-mode: multiply;
  margin: 0 auto;
}
.partnership-partners-card__title {
  font-weight: 600;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray1);
  margin: 0 0 4px 0;
}
.partnership-partners-card .btn {
  width: 180px;
  padding: 0;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .partnership-partners-card .btn {
    margin: 0;
  }
}
.partnership-partners-card .btn svg {
  width: 17px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .partnership-partner {
    max-width: 390px;
  }
}

.wholesale {
  padding: 50px 0 100px 0;
}
.wholesale-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  padding: 0 0 40px 0;
  margin: 0 0 80px 0;
  border-bottom: 1px solid var(--orange1);
}
@media screen and (max-width: 991px) {
  .wholesale-about {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .wholesale-about-content {
    order: 2;
  }
}
.wholesale-about-content > p {
  margin: 0 0 40px 0;
  font-size: 22px;
  line-height: 28px;
}
.wholesale-about-content > p > br {
  display: none;
}
@media screen and (max-width: 991px) {
  .wholesale-about__image {
    order: 1;
  }
}
.wholesale-about__image img {
  width: 100%;
}
.wholesale-about-bullets__title {
  margin: 0 0 24px 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
}
.wholesale-about-bullets-wrapper {
  display: flex;
  grid-gap: 0 80px;
}
@media screen and (max-width: 767px) {
  .wholesale-about-bullets-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
.wholesale-about-bullets__item img {
  width: 88px;
  height: 88px;
  margin: 0 0 17px 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .wholesale-about-bullets__item img {
    margin: 0 auto 17px auto;
  }
}
.wholesale-about-bullets__item-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .wholesale-about-bullets__item-text {
    text-align: center;
  }
  .wholesale-about-bullets__item-text br {
    display: none;
  }
}
.wholesale-methods {
  margin: 0 0 60px 0;
}
.wholesale-methods > h2 {
  margin: 0 0 59px 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
}
.wholesale-methods-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 64px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wholesale-methods-head {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .wholesale-methods-head {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.wholesale-methods-head > h3 {
  display: flex;
  align-items: center;
  gap: 0 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--orange1);
  margin: 0;
}
.wholesale-methods-head > h3 > svg {
  display: block;
  stroke: currentColor;
  width: 36px;
  height: 36px;
}
.wholesale-methods-head > p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .wholesale-methods-head > p {
    grid-column: 2/4;
  }
}
.wholesale-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
  margin: 0 0 110px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wholesale-methods-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .wholesale-methods-grid {
    grid-template-columns: 1fr;
  }
}
.wholesale-methods__item {
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 30px 36px;
  border-radius: 20px;
  background: var(--gray5);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wholesale-methods__item {
    padding: 20px 26px;
  }
}
@media screen and (max-width: 767px) {
  .wholesale-methods__item {
    padding: 20px 26px;
  }
}
.wholesale-methods__item img {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}
@media screen and (max-width: 767px) {
  .wholesale-methods__item img {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
  }
}
.wholesale-methods__item span {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wholesale-methods__item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .wholesale-methods__item span {
    font-size: 16px;
  }
}
.wholesale-methods-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 1199px) {
  .wholesale-methods-bottom {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.wholesale-methods-bottom-content {
  grid-column: 1/3;
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding: 0 50px;
  background: var(--gray5);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .wholesale-methods-bottom-content {
    padding: 0 10px;
    gap: 0 10px;
  }
}
.wholesale-methods-bottom-content img {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .wholesale-methods-bottom-content img {
    width: 100px;
    flex: 0 0 100px;
    align-self: end;
  }
}
.wholesale-methods-bottom-content p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .wholesale-methods-bottom-content p {
    font-size: 16px;
    line-height: 18px;
    padding: 15px 0;
  }
}
.wholesale-methods-bottom-attention {
  display: flex;
  gap: 0 16px;
  align-items: center;
  padding: 35px 24px;
  border: 1px solid var(--orange1);
  border-radius: 20px;
}
.wholesale-methods-bottom-attention img {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}
@media screen and (max-width: 767px) {
  .wholesale-methods-bottom-attention img {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
  }
}
.wholesale-methods-bottom-attention span {
  font-size: 18px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .wholesale-methods-bottom-attention span {
    font-size: 16px;
    line-height: 18px;
  }
}
.wholesale-steps-head {
  margin: 0 0 64px 0;
}
.wholesale-steps-head > h3 {
  display: flex;
  align-items: center;
  gap: 0 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--orange1);
  margin: 0;
}
.wholesale-steps-head > h3 > svg {
  display: block;
  stroke: currentColor;
  width: 36px;
  height: 36px;
}
.wholesale-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 40px 0;
  counter-reset: tabs-mobile;
}
@media screen and (max-width: 767px) {
  .wholesale-tabs {
    grid-template-columns: 1fr;
  }
}
.wholesale-tabs-navigation {
  counter-reset: tabs;
}
@media screen and (max-width: 767px) {
  .wholesale-tabs-navigation {
    display: none;
  }
}
.wholesale-tabs-navigation__item {
  border: 1px solid transparent;
  background: var(--gray3);
  border-radius: 20px;
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  gap: 0 16px;
  align-items: center;
  min-height: 82px;
  padding: 12px 24px;
}
.wholesale-tabs-navigation__item + .wholesale-tabs-navigation__item {
  margin-top: 30px;
}
.wholesale-tabs-navigation__item.active {
  background: var(--orange5);
  border-color: var(--orange1);
  border-radius: 20px;
  color: var(--orange1);
}
.wholesale-tabs-navigation__item:before {
  counter-increment: tabs;
  content: counter(tabs);
  display: block;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: var(--orange1);
}
.wholesale-tabs-content + .wholesale-tabs-navigation__item--mobile {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .wholesale-tabs-navigation__item--mobile {
    display: none;
  }
}
.wholesale-tabs-navigation__item--mobile:before {
  counter-increment: tabs-mobile;
  content: counter(tabs-mobile);
}
.wholesale-tabs-navigation__item span {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .wholesale-tabs-navigation__item span {
    font-size: 16px;
    line-height: 18px;
  }
}
.wholesale-tabs-navigation__item svg {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  stroke: var(--orange1);
  transition: 0.2s;
  margin: 0 0 0 auto;
}
.wholesale-tabs-navigation__item:not(.active) svg {
  opacity: 0;
}
.wholesale-tabs-content {
  padding: 24px;
  font-size: 18px;
  line-height: 24px;
  background: var(--gray3);
  border: 1px solid var(--gray7);
  border-radius: 20px;
}
.wholesale-tabs-content:not(.active) {
  display: none;
}
@media screen and (max-width: 767px) {
  .wholesale-tabs-content {
    margin: 30px 0 0 0;
  }
}
.wholesale-footnote {
  background: var(--gray5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0 36px;
  padding: 28px 36px;
}
@media screen and (max-width: 767px) {
  .wholesale-footnote {
    padding: 16px 16px;
    gap: 0 16px;
  }
}
.wholesale-footnote svg {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  fill: var(--orange1);
}
@media screen and (max-width: 767px) {
  .wholesale-footnote svg {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
}
.wholesale-footnote p {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .wholesale-footnote p {
    font-size: 14px;
    line-height: 18px;
  }
}

.suppliers {
  padding: 50px 0 80px 0;
}
.suppliers-about {
  display: grid;
  grid-template-columns: 1fr 568px;
  grid-gap: 0 30px;
  margin: 0 0 100px 0;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .suppliers-about {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .suppliers-about {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .suppliers-about-content {
    order: 2;
  }
}
.suppliers-about-content > p {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 68px 0;
}
@media screen and (max-width: 991px) {
  .suppliers-about__image {
    order: 1;
  }
}
.suppliers-about__image img {
  width: 100%;
}
.suppliers-about-bullets {
  padding: 0 0 47px 0;
  border-bottom: 1px solid var(--orange1);
}
.suppliers-about-bullets__title {
  margin: 0 0 30px 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
}
.suppliers-about-bullets-wrapper {
  display: flex;
  gap: 0 60px;
}
@media screen and (max-width: 1199px) {
  .suppliers-about-bullets-wrapper {
    display: grid;
    grid-gap: 30px 30px;
    grid-template-columns: 1fr 1fr;
  }
}
.suppliers-about-bullets__item svg {
  width: 44px;
  height: 44px;
  margin: 0 0 8px 0;
  display: block;
  fill: var(--orange1);
}
@media screen and (max-width: 767px) {
  .suppliers-about-bullets__item svg {
    width: 30px;
    height: 30px;
  }
}
.suppliers-about-bullets__item span {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .suppliers-about-bullets__item span {
    font-size: 16px;
    line-height: 18px;
  }
}
.suppliers-decision {
  margin: 0 0 114px 0;
}
.suppliers-decision-head {
  display: flex;
  align-items: center;
  gap: 0 25px;
  margin: 0 0 43px 0;
}
@media screen and (max-width: 991px) {
  .suppliers-decision-head {
    display: block;
  }
}
.suppliers-decision-head h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  margin: 0;
}
.suppliers-decision-head p {
  flex: 0 0 570px;
  margin: 0 0 0 auto;
  font-size: 22px;
  line-height: 28px;
}
@media screen and (max-width: 991px) {
  .suppliers-decision-head p {
    margin: 30px 0 0 0;
  }
}
.suppliers-decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 30px;
  margin: 0 0 110px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .suppliers-decision-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .suppliers-decision-grid {
    grid-template-columns: 1fr;
  }
}
.suppliers-decision__item {
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 30px 36px;
  border-radius: 20px;
  background: var(--gray5);
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .suppliers-decision__item {
    padding: 20px 26px;
  }
}
@media screen and (max-width: 767px) {
  .suppliers-decision__item {
    padding: 15px 10px;
  }
}
.suppliers-decision__item img {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}
@media screen and (max-width: 1399px) {
  .suppliers-decision__item img {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
  }
}
.suppliers-decision__item span {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .suppliers-decision__item span {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .suppliers-decision__item span {
    font-size: 16px;
    line-height: 18px;
  }
}
.suppliers-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .suppliers-links {
    grid-template-columns: 1fr;
    grid-gap: 60px 0;
  }
}
.suppliers-links-card {
  position: relative;
  color: var(--gray4);
  background: var(--gray5);
  border-radius: 20px;
  border: 1px solid var(--gray5);
  transition: 0.2s;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .suppliers-links-card {
    padding: 28px 20px 28px 240px;
  }
  .suppliers-links-card img {
    width: 176px;
    position: absolute;
    left: 42px;
    bottom: 14px;
  }
}
@media screen and (max-width: 991px) {
  .suppliers-links-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px 0;
    padding: 15px 15px;
    text-align: center;
  }
  .suppliers-links-card img {
    max-width: 200px;
    margin: -70px 0 0 0;
  }
  .suppliers-links-card br {
    display: none;
  }
}
.suppliers-links-card:hover {
  color: var(--orange1);
  border-color: var(--orange1);
}
.suppliers-links-card span {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  transition: 0.2s;
}

.delivery {
  padding: 50px 0 80px;
}
.delivery-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 991px) {
  .delivery-about {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
    margin: 0 0 60px 0;
  }
}
.delivery-about-content p {
  font-size: 22px;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .delivery-about-content p {
    font-size: 18px;
    line-height: 24px;
  }
}
.delivery-about__image img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .delivery-about__image img {
    width: auto;
    margin: 0 auto;
  }
}
.delivery-variants-head {
  margin: 0 0 30px 0;
}
.delivery-variants-head > h2 {
  display: flex;
  align-items: center;
  gap: 0 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--orange1);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .delivery-variants-head > h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.delivery-variants-head > h2 > svg {
  display: block;
  stroke: currentColor;
  width: 36px;
  height: 36px;
}
.delivery-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 112px 0;
}
@media screen and (max-width: 991px) {
  .delivery-tabs {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
@media screen and (max-width: 991px) {
  .delivery-tabs-navigation {
    display: none;
  }
}
.delivery-tabs-navigation__item {
  border: 1px solid transparent;
  background: var(--gray3);
  border-radius: 20px;
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  gap: 0 16px;
  align-items: center;
  min-height: 82px;
  padding: 12px 24px;
}
.delivery-tabs-navigation__item + .delivery-tabs-navigation__item {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .delivery-tabs-navigation__item--mobile {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .delivery-tabs-content + .delivery-tabs-navigation__item--mobile {
    margin-top: 30px;
  }
}
.delivery-tabs-navigation__item.active {
  background: var(--orange5);
  border-color: var(--orange1);
  border-radius: 20px;
  color: var(--orange1);
}
.delivery-tabs-navigation__item-icon {
  display: block;
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
}
@media screen and (max-width: 767px) {
  .delivery-tabs-navigation__item-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}
.delivery-tabs-navigation__item span {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .delivery-tabs-navigation__item span {
    font-size: 18px;
    line-height: 20px;
  }
}
.delivery-tabs-navigation__item span br {
  display: none;
}
.delivery-tabs-navigation__item-arrow {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  stroke: var(--orange1);
  transition: 0.2s;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 991px) {
  .delivery-tabs-navigation__item-arrow {
    transform: rotateZ(90deg);
  }
}
.delivery-tabs-navigation__item:not(.active) .delivery-tabs-navigation__item-arrow {
  opacity: 0;
}
.delivery-tabs-content {
  padding: 48px 24px;
  font-size: 18px;
  line-height: 24px;
  background: var(--gray3);
  border: 1px solid var(--gray7);
  border-radius: 20px;
}
.delivery-tabs-content:not(.active) {
  display: none;
}
@media screen and (max-width: 991px) {
  .delivery-tabs-content {
    margin: 30px 0 0 0;
  }
}
.delivery-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 167px 0;
}
@media screen and (max-width: 991px) {
  .delivery-advantages {
    grid-template-columns: 1fr;
    grid-gap: 90px 0;
    margin: 0 0 120px 0;
  }
}
.delivery-advantages-card {
  display: flex;
  align-items: center;
  min-height: 180px;
  border-radius: 20px;
  transition: 0.2s;
  background: var(--gray5);
  position: relative;
}
@media screen and (min-width: 1400px) {
  .delivery-advantages-card:nth-child(1) {
    padding-left: 334px;
  }
  .delivery-advantages-card:nth-child(1) img {
    position: absolute;
    width: 301px;
    height: 204px;
    left: 14px;
    bottom: 20px;
  }
  .delivery-advantages-card:nth-child(2) {
    padding-left: 239px;
    padding-right: 10px;
  }
  .delivery-advantages-card:nth-child(2) img {
    position: absolute;
    width: 158px;
    height: 189px;
    left: 26px;
    bottom: 33px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .delivery-advantages-card {
    padding: 10px 10px;
  }
  .delivery-advantages-card img {
    max-width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .delivery-advantages-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px 0;
    padding: 0px 15px 15px 15px;
    min-height: unset;
  }
  .delivery-advantages-card img {
    margin: -60px 0 0 0;
    max-width: 60%;
  }
}
.delivery-advantages-card__content h3 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin: 0 0 7px 0;
}
.delivery-advantages-card__content p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.delivery-partners h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 32px 0;
  color: var(--gray4);
}
.delivery-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .delivery-partners-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px 0;
  }
}
.delivery-partners-card {
  display: flex;
  height: 90px;
  border-radius: 16px;
}
.delivery-partners-card--dellin {
  background: #2B2E34;
}
.delivery-partners-card--baikal {
  background: #0097D4;
}
.delivery-partners-card img {
  margin: auto;
}

.company {
  padding: 50px 0 50px 0;
}
.company-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 991px) {
  .company-about {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .company-about-content {
    order: 2;
  }
}
.company-about-content p {
  margin: 0 0 30px 0;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .company-about-content p {
    font-size: 16px;
    line-height: 125%;
  }
}
.company-about-content h2 {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .company-about-content h2 {
    font-size: 28px;
    line-height: 114%;
  }
}
.company-about-content .btn {
  margin: 0 0 0 auto;
  width: 210px;
}
@media screen and (max-width: 991px) {
  .company-about-content .btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  .company-about__image {
    order: 1;
  }
}
.company-about__image img {
  width: 100%;
  border-radius: 20px;
}
.company-advantages {
  display: flex;
  align-items: center;
  gap: 0 56px;
  margin: 0 0 80px 0;
}
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .company-advantages {
    justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  .company-advantages {
    display: none;
  }
}
.company-advantages__card {
  display: flex;
  align-items: center;
}
.company-advantages__card img {
  width: 90px;
}
.company-advantages__card-counter {
  margin: 0 0 0 30px;
  font-weight: 700;
  font-size: 56px;
  line-height: 67px;
  color: var(--orange1);
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .company-advantages__card-counter {
    margin: 0 0 0 10px;
    font-size: 48px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .company-advantages__card-counter {
    margin: 0 0 0 10px;
    font-size: 36px;
  }
}
.company-advantages__card-description {
  margin: 0 0 0 15px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .company-advantages__card-description {
    margin: 0 0 0 10px;
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .company-advantages__card-description {
    margin: 0 0 0 10px;
    font-size: 16px;
    line-height: 18px;
  }
}
.company-why {
  margin: 0 0 80px 0;
  padding: 70px 0 0 0;
}
@media screen and (max-width: 767px) {
  .company-why {
    padding: 30px 0 0 0;
  }
}
.company-why-head {
  position: relative;
  margin: 0 0 40px;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 27px;
  background: var(--gray5);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .company-why-head {
    height: 68px;
  }
}
.company-why-head h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  margin: 0;
  color: var(--gray4);
}
@media screen and (max-width: 767px) {
  .company-why-head h2 {
    font-size: 24px;
    margin: 0 auto;
    text-align: center;
  }
}
.company-why-head img {
  width: 210px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .company-why-head img {
    right: 0;
    left: unset;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .company-why-head img {
    display: none;
  }
}
.company-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .company-why-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.company-why__card {
  display: flex;
  align-items: center;
  gap: 0 18px;
}
.company-why__card img {
  width: 72px;
}
@media screen and (max-width: 767px) {
  .company-why__card img {
    width: 46px;
  }
}
.company-why__card span {
  font-size: 18px;
  line-height: 22px;
}
.company-buyers-head {
  display: flex;
  align-items: center;
  margin: 0 auto 30px auto;
  padding: 8px;
  background: var(--gray5);
  border-radius: 20px;
  max-width: 930px;
}
.company-buyers-head__item {
  flex: 1;
  font-weight: 600;
  font-size: 18px;
  line-height: 54px;
  height: 54px;
  color: var(--gray4);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .company-buyers-head__item {
    height: auto;
    font-size: 16px;
    line-height: unset;
    height: auto;
    padding: 6px 0;
  }
}
.company-buyers-head__item.active {
  background: var(--orange5);
  color: var(--orange1);
}
.company-buyers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 0 30px;
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-buyers-content {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.company-buyers-content:not(.active) {
  display: none;
}
.company-buyers-content__image img {
  width: 100%;
}
.company-buyers-content-inner p {
  font-size: 18px;
  line-height: 22px;
}
.company-buyers-content-inner .btn {
  width: 210px;
  margin: 30px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .company-buyers-content-inner .btn {
    margin: 30px auto 0 auto;
  }
}
.company-bullets {
  padding: 10px 0 60px 0;
}
.company-bullets-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 0 30px;
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-bullets-card {
    grid-template-columns: 1fr;
  }
}
.company-bullets-card + .company-bullets-card {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .company-bullets-card__image {
    order: 1;
  }
}
.company-bullets-card__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-bullets-card-inner {
    order: 2;
  }
}
.company-bullets-card-inner p {
  font-size: 18px;
  line-height: 22px;
}
.company-bullets-card-inner .btn {
  width: 210px;
  margin: 30px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .company-bullets-card-inner .btn {
    margin: 30px auto 0 auto;
  }
}
.company-bullets-card--invert .company-bullets-card-inner .btn {
  margin: 30px auto 0 0;
}
@media screen and (max-width: 767px) {
  .company-bullets-card--invert .company-bullets-card-inner .btn {
    margin: 30px auto 0 auto;
  }
}
.company-bullets-card__title {
  margin: 0 0 54px 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--orange1);
}
.company-map img {
  width: 100%;
}
.company-partners {
  padding: 120px 0 30px 0;
}
.company-partners > h2 {
  margin: 0 0 30px 0;
}
.company-partners-card {
  display: flex;
  background: var(--gray5);
  border: 1px solid var(--gray4);
  transition: 0.2s;
  min-height: 180px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .company-partners-card {
    min-height: 140px;
  }
}
.company-partners-card:hover {
  border-color: var(--orange2);
}
.company-partners-card img {
  max-height: 54%;
  max-width: 74%;
  mix-blend-mode: multiply;
  margin: auto;
}

.company-video {
  background: var(--orange5);
  padding: 50px 0;
}
.company-video-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-gap: 0 30px;
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .company-video-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.company-video__title {
  font-size: 32px;
  line-height: 36px;
  color: var(--gray4);
  margin: 0;
}
@media screen and (min-width: 992px) {
  .company-video__title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 991px) {
  .company-video__title br {
    display: none;
  }
}
.company-video-social {
  display: flex;
  align-items: center;
  gap: 0 30px;
  padding: 16px 0 0 0;
  border-top: 1px solid var(--orange1);
}
@media screen and (min-width: 992px) {
  .company-video-social {
    grid-column: 1/2;
    grid-row: 2/3;
    margin: auto 0 0 0;
  }
}
@media screen and (max-width: 991px) {
  .company-video-social {
    padding: 0;
    margin: 0;
    border-top: none;
    justify-content: center;
  }
}
.company-video-social__item {
  display: block;
  text-decoration: none;
}
.company-video-social__item svg {
  display: block;
  width: 44px;
  height: 44px;
}
@media screen and (min-width: 992px) {
  .company-video-content {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.company-video-content__image {
  position: relative;
}
.company-video-content__image img {
  width: 100%;
  border-radius: 20px;
}
.company-video-content__image-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.company-video-content__image-icon svg {
  display: block;
  width: 128px;
  height: 90px;
}
@media screen and (max-width: 991px) {
  .company-video-content__image-icon svg {
    width: 63px;
    height: 44px;
  }
}

.requisite {
  padding: 50px 0;
}
.requisite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  grid-gap: 0 30px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .requisite-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
@media screen and (min-width: 992px) {
  .requisite__image {
    position: sticky;
    top: 150px;
  }
}
@media screen and (max-width: 991px) {
  .requisite__image {
    order: 1;
  }
}
@media screen and (max-width: 991px) {
  .requisite-content {
    order: 2;
  }
}
.requisite-content-table {
  padding: 0;
  margin: 0 0 62px 0;
  list-style: none;
}
.requisite-content-table > li {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .requisite-content-table > li {
    flex-direction: column;
    gap: 3px 0;
  }
}
.requisite-content-table > li + li {
  margin-top: 15px;
}
.requisite-content-table > li > strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
@media screen and (min-width: 768px) {
  .requisite-content-table > li > strong {
    flex: 0 0 236px;
  }
}
.requisite-content-table > li > span {
  font-size: 18px;
  line-height: 22px;
  color: var(--gray1);
}
.requisite-content-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.requisite-content-list > li {
  position: relative;
  padding: 0 0 0 28px;
  font-size: 18px;
  line-height: 26px;
}
.requisite-content-list > li + li {
  margin-top: 8px;
}
.requisite-content-list > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url(../img/icons/check2.svg) 0 0/100% auto no-repeat;
}

.vacancies {
  padding: 50px 0;
}
.vacancies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  grid-gap: 0 30px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .vacancies-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
@media screen and (min-width: 992px) {
  .vacancies__image {
    position: sticky;
    top: 150px;
  }
}
@media screen and (max-width: 991px) {
  .vacancies__image {
    order: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .vacancies__image img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  .vacancies-content {
    order: 2;
  }
}
.vacancies-content-description {
  margin: 0 0 62px 0;
}
.vacancies-content-description p {
  margin: 0 0 28px 0;
  font-size: 20px;
  line-height: 26px;
  color: var(--gray1);
}
.vacancies-tabs-head {
  display: flex;
  align-items: center;
  gap: 0 54px;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 767px) {
  .vacancies-tabs-head {
    flex-direction: column;
    align-items: start;
    gap: 15px 0;
  }
}
.vacancies-tabs-head-wrapper {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .vacancies-tabs-head-wrapper {
    width: 100%;
    gap: 0 15px;
  }
}
.vacancies-tabs-head h2 {
  margin: 0;
}
.vacancies-tabs-head__item {
  min-width: 120px;
}
@media screen and (max-width: 767px) {
  .vacancies-tabs-head__item {
    flex: 1;
    min-width: unset;
  }
}
.vacancies-tabs-head__item.active {
  background: var(--orange5);
  border-color: var(--orange3);
  color: var(--orange3);
}
.vacancies-tabs-content:not(.active) {
  display: none;
}
.vacancies-card h3,
.vacancies-card b {
  margin: 0 0 14px 28px;
}

.employees {
  padding: 50px 0;
}
.employees-group + .employees-group {
  margin-top: 30px;
}
.employees-group__title {
  margin: 0 0 30px;
  position: relative;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .employees .carousel {
    margin: 0 -15;
    padding: 0 15;
  }
}
@media screen and (max-width: 767px) {
  .employees .swiper-slide {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .employees .swiper-wrapper {
    display: grid;
  }
}
@media screen and (min-width: 1200px) {
  .employees .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .employees .swiper-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .employees .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) {
  .employees .carousel__arrow {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .employees .swiper-pagination {
    display: none !important;
  }
}
.employees-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--gray7);
  padding: 12px;
  min-height: 240px;
}
@media screen and (max-width: 767px) {
  .employees-card {
    width: 70vw;
    height: 100%;
  }
}
.employees-card-head {
  padding: 10px 16px;
  border-radius: 8px;
  background: #F1F1F1;
  min-height: 78px;
}
.employees-card__name {
  color: var(--orange1);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0 0 4px 0;
}
.employees-card-info {
  padding: 18px 18px;
}
.employees-card-info__item {
  padding-left: 21px;
}
.employees-card-info__item + .employees-card-info__item {
  margin-top: 8px;
}
.employees-card-info__item--phone {
  background: url(../img/employees/staff_phone.svg) 0 50% no-repeat;
}
.employees-card-info__item--email {
  background: url(../img/employees/staff_email.svg) 0 50% no-repeat;
}
.employees-card-info__item--skype {
  background: url(../img/employees/staff_skype.svg) 0 50% no-repeat;
}
.employees-card-info__item a {
  color: var(--gray4);
  text-decoration: none;
}
.employees-card-info__item a:hover {
  color: var(--orange1);
}
.employees-card__save {
  margin: auto 0 0 0;
  border-radius: 8px;
  background: #FDE9DE;
  text-align: center;
  display: block;
  height: 37px;
  transition: 0.2s;
  cursor: pointer;
}
.employees-card__save:hover {
  background: #ffd5bd;
}
.employees-card__save span {
  display: inline-block;
  height: 100%;
  color: var(--orange2);
  font-weight: 500;
  line-height: 35px;
  background: url(../img/employees/staff_save.svg) 0 50% no-repeat;
  padding-left: 26px;
}

.retail {
  padding: 50px 0;
}
.retail-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
  margin: 0 0 120px;
}
@media screen and (max-width: 991px) {
  .retail-about {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .retail-about-content {
    order: 2;
  }
  .retail-about-content br {
    display: none;
  }
}
.retail-about-content__title {
  margin: 0 0 19px;
  font-size: 22px;
  line-height: 28px;
}
.retail-about-content p {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .retail-about__image {
    order: 1;
  }
}
.retail-about__image img {
  width: 100%;
}
.retail-platforms {
  margin: 0 0 120px 0;
}
.retail-platforms > h2 {
  margin: 0 0 30px 0;
}
.retail-platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .retail-platforms-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .retail-platforms-grid {
    grid-template-columns: 1fr;
  }
}
.retail-platforms__card {
  display: flex;
  min-height: 90px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.retail-platforms__card:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.12;
  transition: 0.2s;
}
.retail-platforms__card:not(:hover):before {
  opacity: 0;
}
.retail-platforms__card img {
  margin: auto;
  position: relative;
}
.retail-steps {
  margin: 0 0 120px 0;
}
.retail-steps h2 {
  margin: 0 0 30px 0;
}
.retail-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .retail-steps-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.retail-steps__image img {
  width: 100%;
}
.retail-steps-content > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.retail-steps-content > ul > li {
  position: relative;
  padding: 0 0 0 44px;
  font-size: 24px;
  line-height: 29px;
}
@media screen and (max-width: 991px) {
  .retail-steps-content > ul > li {
    font-size: 18px;
    line-height: 22px;
  }
}
.retail-steps-content > ul > li + li {
  margin-top: 28px;
}
.retail-steps-content > ul > li > span {
  position: absolute;
  left: 0;
  top: -7px;
  color: var(--orange1);
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
}
@media screen and (max-width: 991px) {
  .retail-steps-content > ul > li > span {
    top: -5px;
    font-size: 28px;
    line-height: 32px;
  }
}
.retail-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px 30px;
}
@media screen and (min-width: 992px) and (max-width: 11199px) {
  .retail-benefits {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .retail-benefits {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .retail-benefits {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
.retail-benefits__card {
  padding: 40px 20px 20px;
  background: var(--gray5);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .retail-benefits__card {
    padding: 20px 10px;
  }
}
.retail-benefits__card-title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--gray4);
  margin: 20px 0 auto 0;
}
@media screen and (max-width: 767px) {
  .retail-benefits__card-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.retail-benefits__card svg {
  display: block;
  width: 87px;
  height: 87px;
  margin: 0 auto auto auto;
}
@media screen and (max-width: 767px) {
  .retail-benefits__card svg {
    width: 66px;
    height: 66px;
  }
}

.contacts {
  padding: 50px 0 66px 0;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .contacts-grid {
    grid-gap: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .contacts-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
.contacts-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: 20px;
  background: var(--gray5);
}
@media screen and (max-width: 767px) {
  .contacts-card {
    padding: 15px 10px;
  }
}
.contacts-card-head {
  display: flex;
  align-items: center;
  gap: 0 12px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .contacts-card-head {
    flex-direction: column;
    gap: 12px 0;
  }
}
.contacts-card-head img {
  width: 70px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .contacts-card-head img {
    width: 50px;
  }
}
.contacts-card-head span {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray4);
}
@media screen and (max-width: 767px) {
  .contacts-card-head span {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
}
.contacts-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .contacts-card-content {
    text-align: center;
  }
}
.contacts-card__value {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  color: var(--gray4);
}
.contacts-card__value:is(a) {
  text-decoration: none;
  transition: 0.2s;
}
.contacts-card__value:is(a):hover {
  color: var(--orange1);
}
.contacts-card__value > span {
  color: var(--orange1);
}
@media screen and (max-width: 767px) {
  .contacts-card__value {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contacts-card__value {
    font-size: 12px;
  }
}
.contacts-card-social {
  display: flex;
  justify-content: flex-end;
  gap: 0 24px;
}
@media screen and (max-width: 767px) {
  .contacts-card-social {
    gap: 0 14px;
    justify-content: center;
  }
}
.contacts-card-social__item {
  display: block;
  color: var(--gray4);
}
.contacts-card-social__item:hover {
  color: var(--orange1);
}
.contacts-card-social__item svg {
  display: block;
  width: 48px;
  height: 48px;
  fill: currentColor;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .contacts-card-social__item svg {
    width: 35px;
    height: 35px;
  }
}

.contacts-map {
  position: relative;
  padding: 50px 0;
  margin: 0 0 60px 0;
}
.contacts-map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .contacts-map-wrapper {
    position: unset;
    height: 100vw;
  }
}
.contacts-map-content {
  padding: 24px 24px;
  max-width: 330px;
  position: relative;
  background: rgba(245, 110, 30, 0.8);
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .contacts-map-content {
    max-width: unset;
    background: var(--orange1);
  }
}
.contacts-map-content__head {
  display: flex;
  align-items: center;
  gap: 0 8px;
  margin: 0 0 9px 0;
}
.contacts-map-content__head svg {
  display: block;
  width: 44px;
  height: 44px;
}
.contacts-map-content__head span {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
}
.contacts-map__address {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  margin: 0 0 24px;
}
.contacts-map-footer {
  display: grid;
  grid-template-columns: 1fr 124px;
  grid-gap: 0 16px;
}
@media screen and (max-width: 767px) {
  .contacts-map-footer {
    display: block;
  }
}
.contacts-map-footer-content svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: #fff;
  margin: 0 0 10px 0;
}
.contacts-map-footer-content span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.contacts-map-footer > img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contacts-map-footer > img {
    display: none;
  }
}

.clients {
  padding: 50px 0;
}
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .clients-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 15px;
  }
}
@media screen and (max-width: 389px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
.clients-card {
  display: flex;
  flex-direction: column;
  background: var(--gray5);
  border: 1px solid var(--gray5);
  color: var(--gray1);
  padding: 24px 24px 20px 24px;
  transition: 0.2s;
  text-decoration: none;
  border-radius: 12px;
  min-height: 200px;
}
@media screen and (max-width: 767px) {
  .clients-card {
    padding: 20px 15px;
    min-height: 160px;
  }
}
.clients-card:hover {
  background: var(--gray5);
  border-color: var(--orange2);
  color: var(--orange2);
}
.clients-card img {
  width: 90px;
  margin: 0 0 auto auto;
}
@media screen and (max-width: 767px) {
  .clients-card img {
    margin: 0 auto auto auto;
    width: 70px;
  }
}
.clients-card span {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  margin: auto 0;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .clients-card span {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }
}

.about {
  padding: 50px 0 70px 0;
}
.about-banner-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f2f2f7;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .about-banner-text {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
    background: none;
    overflow: unset;
    border-radius: 0;
  }
}
.about-banner-text__image {
  background-size: cover;
  background-position: center left;
}
@media screen and (max-width: 991px) {
  .about-banner-text__image {
    background-color: #f2f2f7;
    border-radius: 20px;
    height: 30vw;
    background-position: center right;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
}
.about-banner-text__content {
  padding: 52px 0 52px 56px;
}
@media screen and (max-width: 991px) {
  .about-banner-text__content {
    padding: 30px 20px;
    background: #f2f2f7;
    border-radius: 20px;
    order: 2;
  }
}
.about-banner-text__content p {
  margin: 0 0 24px 0;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
}

.about-gray {
  padding: 0 0 114px 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  .about-gray {
    padding: 0;
  }
}
.about-gray:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 146px;
  background: var(--gray5);
}
@media screen and (max-width: 991px) {
  .about-gray:before {
    display: none;
  }
}
.about-gray .container {
  position: relative;
}
.about-gray-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .about-gray-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
  }
}
.about-gray-grid > img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .about-gray-content {
    order: 2;
  }
}
.about-gray-content__head {
  display: flex;
  align-items: start;
  gap: 0 16px;
  margin: 0 0 46px 0;
}
.about-gray-content__head img {
  width: 85px;
}
@media screen and (max-width: 767px) {
  .about-gray-content__head img {
    width: 40px;
  }
}
.about-gray-content__head span {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.about-gray-content p {
  margin: 0 0 24px 0;
  font-size: 22px;
  line-height: 28px;
}
.about-gray-advantages {
  margin: -146px 0 92px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 991px) {
  .about-gray-advantages {
    grid-template-columns: 1fr;
    grid-gap: 30px 0;
    background: none;
    overflow: unset;
    border-radius: 0;
    margin: 0 0 60px 0;
    box-shadow: none;
  }
}
.about-gray-advantages__image {
  background-size: cover;
  background-position: center right;
}
@media screen and (max-width: 991px) {
  .about-gray-advantages__image {
    background-color: #fff;
    border-radius: 20px;
    height: 30vw;
    background-position: center left;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  .about-gray-advantages--invert .about-gray-advantages__image {
    display: none;
  }
}
.about-gray-advantages__content {
  padding: 52px 40px 52px 0;
}
@media screen and (max-width: 991px) {
  .about-gray-advantages__content {
    padding: 0;
    order: 2;
  }
}
.about-gray-advantages--invert .about-gray-advantages__content {
  padding: 62px 0 62px 40px;
}
@media screen and (max-width: 991px) {
  .about-gray-advantages--invert .about-gray-advantages__content {
    padding: 30px 20px;
    background: #f2f2f7;
    border-radius: 20px;
    order: 2;
  }
}
.about-gray-advantages__content p {
  margin: 0 0 24px 0;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
}
.about-gray-advantages__title {
  margin: 0 0 30px;
  position: relative;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--gray4);
}
.about-gray-advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .about-gray-advantages-grid {
    grid-template-columns: 1fr;
  }
}
.about-gray-advantages__card {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.about-gray-advantages__card img {
  height: 50px;
}
.about-gray-advantages__card span {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--gray1);
}

.about-wholeslae {
  padding: 50px 0;
}
.about-wholeslae-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
@media screen and (max-width: 991px) {
  .about-wholeslae-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.about-wholeslae__content {
  padding: 52px 40px 52px 0;
}
.about-wholeslae__content p {
  margin: 0 0 24px 0;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
}
.about-wholeslae__title {
  margin: 0 0 40px 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--gray1);
}
.about-wholeslae-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  .about-wholeslae-grid {
    grid-template-columns: 1fr;
  }
}
.about-wholeslae__card {
  display: flex;
  align-items: center;
  gap: 0 14px;
}
.about-wholeslae__card img {
  width: 38px;
}
.about-wholeslae__card span {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--gray1);
}

.about-review {
  padding: 88px 0 80px 0;
}
.about-review .container > h2 {
  font-size: 32px;
  line-height: 36px;
  margin: 0 0 32px 0;
  color: var(--grey4);
}
.about-review__card {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding: 30px 30px;
  min-height: 360px;
  background: var(--gray5);
  border-radius: 20px;
}
.about-review__card-author {
  display: flex;
  justify-content: flex-end;
  gap: 0 6px;
  margin: auto 0 0 0;
}
.about-review__card-author svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: var(--gray4);
  fill: none;
}
.about-review__card-author span {
  font-size: 16px;
  line-height: 20px;
  color: var(--gray7);
}
.about-review__card p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
}
.about-review .swiper-slide:nth-child(even) .about-review__card {
  background: var(--orange5);
}

.error-page {
  padding: 120px 0;
}
.error-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 60px;
}
.error-page-content {
  text-align: center;
}
.error-page-content .btn {
  width: 210px;
  margin: 26px auto 0 auto;
}
.error-page__image img {
  width: 100%;
}
.error-page__code {
  color: var(--orange5);
  font-size: 230px;
  font-weight: 700;
  line-height: 175px;
  margin: 0 0 30px 0;
}
.error-page__title {
  color: var(--gray4);
  font-size: 32px;
  font-weight: 600;
  line-height: 24px;
}
.error-page__description {
  color: var(--gray4);
  line-height: 18px;
  margin-top: 16px;
}

.privacy {
  padding: 50px 0;
}
.content {
  padding: 50px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 330px 1fr 330px;
  grid-gap: 0 30px;
  align-items: start;
  position: relative;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 330px 1fr;
  }
}
@media screen and (max-width: 991px) {
  .content-grid {
    grid-template-columns: 100%;
  }
}
.content-sidebar {
  position: sticky;
  top: 120px;
  left: 0;
  padding: 10px 10px;
  background: var(--gray3);
  border-radius: 20px;
  transition: 0.2s;
}
body.scroll-up .content-sidebar {
  top: 170px;
}
@media screen and (max-width: 991px) {
  .content-sidebar {
    display: none;
  }
}
.content-inner .spoiler-card + .spoiler-card:not(:last-child) {
  border-top: none;
  margin-top: 0;
  border-radius: 0;
}
.content-inner .spoiler-card:first-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.content-inner .spoiler-card:last-child {
  border-top: none;
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.content-navigation__item {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 8px 8px 8px 8px;
  border-radius: 12px;
  transition: 0.2s;
  color: var(--gray4);
  cursor: pointer;
}
.content-navigation__item.active {
  background: var(--orange5);
  color: var(--orange1);
}
.content-navigation__item svg {
  display: block;
  stroke: currentColor;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.content-navigation__item span {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
.content-group + .content-group {
  margin-top: 30px;
}
.content .banner-card-side {
  position: sticky;
  top: 120px;
  left: 0;
  transition: 0.2s;
}
@media screen and (max-width: 1200px) {
  .content .banner-card-side {
    display: none;
  }
}
body.scroll-up .content .banner-card-side {
  top: 170px;
}

.search {
  padding: 50px 0 80px 0;
}
.search-header {
  display: grid;
  grid-template-columns: 40px 1fr 140px 100px 90px 120px 120px 120px 100px;
  gap: 0 12px;
  align-items: center;
  padding: 12px 12px;
  background: var(--gray2);
  border-radius: 6px 6px 0 0;
  color: #fff;
  border: 1px solid var(--gray2);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-header {
    grid-template-columns: 40px 1fr 140px 90px 120px 100px;
  }
}
@media screen and (max-width: 767px) {
  .search-header {
    display: none;
  }
}
.search-header__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0 6px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.search-header__item:hover {
  color: #fff;
  opacity: 0.75;
}
.search-header__item--title {
  grid-column: 2/3;
}
.search-header__item--brand {
  text-align: center;
}
.search-header__item--article {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-header__item--article {
    display: none;
  }
}
.search-header__item--count {
  text-align: center;
}
.search-header__item--delivery {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-header__item--delivery {
    display: none;
  }
}
.search-header__item--delivery-time {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-header__item--delivery-time {
    display: none;
  }
}
.search-header__item--price {
  text-align: center;
}
.search-header__item:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-image: url(../img/icons/sort_default.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.search-header__item.search-header__item--asc:after {
  background-image: url(../img/icons/sort_top.svg);
}
.search-header__item.search-header__item--desc:after {
  background-image: url(../img/icons/sort_bottom.svg);
}
.search-card {
  display: grid;
  grid-template-columns: 40px 1fr 140px 100px 90px 120px 120px 120px 100px;
  gap: 0 12px;
  align-items: center;
  border: 1px solid var(--gray6);
  border-top: none;
  padding: 3px 12px;
  min-height: 48px;
}
.search-card:last-child {
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 768px) {
  .search-card:hover {
    background: var(--gray5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-card {
    grid-template-columns: 40px 1fr 140px 90px 120px 100px;
  }
}
@media screen and (max-width: 767px) {
  .search-card {
    grid-template-columns: 40px 1fr 100px;
    grid-gap: 4px 8px;
    grid-template-areas: "image title title" "image price actions";
    padding: 8px 8px;
  }
  .search-card:nth-child(2) {
    border-top: 1px solid var(--gray6);
    border-radius: 6px 6px 0 0;
  }
}
.search-card__image {
  display: block;
}
@media screen and (max-width: 767px) {
  .search-card__image {
    grid-area: image;
  }
}
.search-card__image img {
  width: 100%;
  mix-blend-mode: multiply;
}
.search-card__brand {
  font-size: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .search-card__brand {
    display: none;
  }
}
.search-card__article {
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-card__article {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .search-card__article {
    display: none;
  }
}
.search-card__title {
  font-size: 13px;
  transition: 0.2s;
  color: var(--gray4);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .search-card__title {
    font-size: 12px;
    grid-area: title;
  }
}
.search-card__title:hover {
  color: var(--orange1);
}
.search-card__title span {
  color: var(--gray1);
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .search-card__title span {
    display: block;
    padding: 2px 0 0 0;
  }
}
.search-card__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .search-card__count {
    display: none;
  }
}
.search-card__min {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-card__min {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .search-card__min {
    display: none;
  }
}
.search-card__delivery-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray1);
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .search-card__delivery-time {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .search-card__delivery-time {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .search-card__price {
    grid-area: price;
  }
}
.search-card__price-value {
  text-align: center;
  font-weight: 600;
  color: var(--gray1);
}
@media screen and (max-width: 767px) {
  .search-card__price-value {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .search-card__actions {
    grid-area: actions;
  }
}
.search-card__add {
  width: 100%;
  font-size: 12px;
  padding: 3px 0;
  height: unset;
  border-radius: 6px;
}
.search-card__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
}
.search-card__quantity-btn {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--gray2);
  background: var(--gray5);
  border: 1px solid var(--gray5);
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.search-card__quantity-btn:hover {
  border-color: var(--orange1);
  color: var(--orange1);
}
.search-card__quantity-btn svg {
  display: block;
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  margin: auto;
  transition: 0.2s;
}
.search-card__quantity input {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px;
  width: 100%;
  height: 24px;
  transition: 0.2s;
  outline: none;
  font-size: 13px;
  text-align: center;
  color: var(--gray1);
  font-family: var(--font-family);
}
.search-card__quantity input:hover, .search-card__quantity input:focus {
  border-color: var(--orange1);
}
.search-card:not(.product--in-cart) .search-card__quantity {
  display: none;
}
.search-card.product--in-cart .search-card__add {
  display: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
}
.container > *:first-child {
  margin-top: 0px;
}
.container > *:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .d-xs-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .d-xs-block {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .d-xs-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 767px) {
  .d-xs-inline {
    display: inline !important;
  }
}

@media screen and (max-width: 767px) {
  .d-xs-inline-block {
    display: inline-block !important;
  }
}

@media screen and (max-width: 767px) {
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-sm-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-sm-block {
    display: block !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-sm-flex {
    display: flex !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-sm-inline {
    display: inline !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .d-md-none {
    display: none !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .d-md-block {
    display: block !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .d-md-flex {
    display: flex !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .d-md-inline {
    display: inline !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .d-lg-none {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .d-lg-block {
    display: block !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .d-lg-flex {
    display: flex !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .d-lg-inline {
    display: inline !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .d-lg-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1400px) {
  .d-xl-none {
    display: none !important;
  }
}

@media screen and (min-width: 1400px) {
  .d-xl-block {
    display: block !important;
  }
}

@media screen and (min-width: 1400px) {
  .d-xl-flex {
    display: flex !important;
  }
}

@media screen and (min-width: 1400px) {
  .d-xl-inline {
    display: inline !important;
  }
}

@media screen and (min-width: 1400px) {
  .d-xl-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1400px) {
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.align-start {
  align-items: start;
}
.align-end {
  align-items: end;
}
.align-baseline {
  align-items: baseline;
}
.align-center {
  align-items: center;
}
.align-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-baseline {
  justify-content: baseline;
}
.justify-center {
  justify-content: center;
}
.justify-stretch {
  justify-content: stretch;
}
.justify-space-between {
  justify-content: space-between;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

@media screen and (max-width: 767px) {
  .flex-xs-row {
    flex-direction: row !important;
  }
}

@media screen and (max-width: 767px) {
  .flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
}

@media screen and (max-width: 767px) {
  .flex-xs-column {
    flex-direction: column !important;
  }
}

@media screen and (max-width: 767px) {
  .flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .flex-sm-column {
    flex-direction: column !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .flex-md-row {
    flex-direction: row !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .flex-md-column {
    flex-direction: column !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .flex-lg-column {
    flex-direction: column !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
}

@media screen and (min-width: 1400px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
}

@media screen and (min-width: 1400px) {
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
}

@media screen and (min-width: 1400px) {
  .flex-xl-column {
    flex-direction: column !important;
  }
}

@media screen and (min-width: 1400px) {
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
}

.w-25 {
  width: 25%;
}
.w-50 {
  width: 50%;
}
.w-75 {
  width: 75%;
}
.w-100 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .w-xs-25 {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .w-xs-50 {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .w-xs-75 {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .w-xs-100 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .w-sm-25 {
    width: 25%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .w-sm-50 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .w-sm-75 {
    width: 75%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .w-sm-100 {
    width: 100%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .w-md-25 {
    width: 25%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .w-md-50 {
    width: 50%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .w-md-75 {
    width: 75%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .w-md-100 {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-lg-25 {
    width: 25%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-lg-50 {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-lg-75 {
    width: 75%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-lg-100 {
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .w-xl-25 {
    width: 25%;
  }
}
@media screen and (min-width: 1400px) {
  .w-xl-50 {
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .w-xl-75 {
    width: 75%;
  }
}
@media screen and (min-width: 1400px) {
  .w-xl-100 {
    width: 100%;
  }
}

.grid-col-1 {
  grid-template-columns: 1fr;
}
.grid-col-2 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 991px) {
  .grid-col-2 {
    grid-template-columns: 1fr;
  }
}
.grid-col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .grid-col-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .grid-col-3 {
    grid-template-columns: 1fr;
  }
}
.grid-col-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .grid-col-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .grid-col-4 {
    grid-template-columns: 1fr;
  }
}
.grid-gap-1 {
  grid-gap: 15px;
}
.grid-gap-2 {
  grid-gap: 30px;
}
.grid-gap-3 {
  grid-gap: 45px;
}
.grid-gap-4 {
  grid-gap: 60px;
}

.col-1 {
  flex: 0 0 auto;
  width: 6.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-2 {
  flex: 0 0 auto;
  width: 13.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-3 {
  flex: 0 0 auto;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-4 {
  flex: 0 0 auto;
  width: 26.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-5 {
  flex: 0 0 auto;
  width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-6 {
  flex: 0 0 auto;
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-7 {
  flex: 0 0 auto;
  width: 46.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-8 {
  flex: 0 0 auto;
  width: 53.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-9 {
  flex: 0 0 auto;
  width: 60%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-10 {
  flex: 0 0 auto;
  width: 66.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-11 {
  flex: 0 0 auto;
  width: 73.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-12 {
  flex: 0 0 auto;
  width: 80%;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .col-xs-1 {
    flex: 0 0 auto;
    width: 6.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-2 {
    flex: 0 0 auto;
    width: 13.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-3 {
    flex: 0 0 auto;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-4 {
    flex: 0 0 auto;
    width: 26.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-5 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-6 {
    flex: 0 0 auto;
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-7 {
    flex: 0 0 auto;
    width: 46.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-8 {
    flex: 0 0 auto;
    width: 53.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-9 {
    flex: 0 0 auto;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-10 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-11 {
    flex: 0 0 auto;
    width: 73.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .col-xs-12 {
    flex: 0 0 auto;
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 6.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-2 {
    flex: 0 0 auto;
    width: 13.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-3 {
    flex: 0 0 auto;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-4 {
    flex: 0 0 auto;
    width: 26.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-5 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-7 {
    flex: 0 0 auto;
    width: 46.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-8 {
    flex: 0 0 auto;
    width: 53.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-9 {
    flex: 0 0 auto;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-10 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-11 {
    flex: 0 0 auto;
    width: 73.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .col-sm-12 {
    flex: 0 0 auto;
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 6.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 13.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 26.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-7 {
    flex: 0 0 auto;
    width: 46.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-8 {
    flex: 0 0 auto;
    width: 53.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-9 {
    flex: 0 0 auto;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-10 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-11 {
    flex: 0 0 auto;
    width: 73.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 6.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 13.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 26.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-7 {
    flex: 0 0 auto;
    width: 46.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 53.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-9 {
    flex: 0 0 auto;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-10 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-11 {
    flex: 0 0 auto;
    width: 73.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .col-lg-12 {
    flex: 0 0 auto;
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 6.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 13.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-4 {
    flex: 0 0 auto;
    width: 26.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-5 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-6 {
    flex: 0 0 auto;
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-7 {
    flex: 0 0 auto;
    width: 46.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-8 {
    flex: 0 0 auto;
    width: 53.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-9 {
    flex: 0 0 auto;
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-10 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-11 {
    flex: 0 0 auto;
    width: 73.3333333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1400px) {
  .col-xl-12 {
    flex: 0 0 auto;
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-1 {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-2 {
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-3 {
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-4 {
    order: 4;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-5 {
    order: 5;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-6 {
    order: 6;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-7 {
    order: 7;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-8 {
    order: 8;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-9 {
    order: 9;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-10 {
    order: 10;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-11 {
    order: 11;
  }
}

@media screen and (max-width: 767px) {
  .order-xs-12 {
    order: 12;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-1 {
    order: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-2 {
    order: 2;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-3 {
    order: 3;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-4 {
    order: 4;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-5 {
    order: 5;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-6 {
    order: 6;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-7 {
    order: 7;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-8 {
    order: 8;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-9 {
    order: 9;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-10 {
    order: 10;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-11 {
    order: 11;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .order-sm-12 {
    order: 12;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-1 {
    order: 1;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-2 {
    order: 2;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-3 {
    order: 3;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-4 {
    order: 4;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-5 {
    order: 5;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-6 {
    order: 6;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-7 {
    order: 7;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-8 {
    order: 8;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-9 {
    order: 9;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-10 {
    order: 10;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-11 {
    order: 11;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .order-md-12 {
    order: 12;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-1 {
    order: 1;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-2 {
    order: 2;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-3 {
    order: 3;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-4 {
    order: 4;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-5 {
    order: 5;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-6 {
    order: 6;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-7 {
    order: 7;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-8 {
    order: 8;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-9 {
    order: 9;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-10 {
    order: 10;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-11 {
    order: 11;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .order-lg-12 {
    order: 12;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-1 {
    order: 1;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-2 {
    order: 2;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-3 {
    order: 3;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-4 {
    order: 4;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-5 {
    order: 5;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-6 {
    order: 6;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-7 {
    order: 7;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-8 {
    order: 8;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-9 {
    order: 9;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-10 {
    order: 10;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-11 {
    order: 11;
  }
}

@media screen and (min-width: 1400px) {
  .order-xl-12 {
    order: 12;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mv-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mh-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.m-0 {
  margin: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pv-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.ph-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.p-0 {
  padding: 0px;
}

@media (max-width: 767px) {
  .mt-xs-0 {
    margin-top: 0px;
  }
  .mb-xs-0 {
    margin-bottom: 0px;
  }
  .ml-xs-0 {
    margin-left: 0px;
  }
  .mr-xs-0 {
    margin-right: 0px;
  }
  .mv-xs-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mh-xs-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .m-xs-0 {
    margin: 0px;
  }
  .pt-xs-0 {
    padding-top: 0px;
  }
  .pb-xs-0 {
    padding-bottom: 0px;
  }
  .pl-xs-0 {
    padding-left: 0px;
  }
  .pr-xs-0 {
    padding-right: 0px;
  }
  .pv-xs-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .ph-xs-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-xs-0 {
    padding: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-0 {
    margin-top: 0px;
  }
  .mb-sm-0 {
    margin-bottom: 0px;
  }
  .ml-sm-0 {
    margin-left: 0px;
  }
  .mr-sm-0 {
    margin-right: 0px;
  }
  .mv-sm-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mh-sm-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .m-sm-0 {
    margin: 0px;
  }
  .pt-sm-0 {
    padding-top: 0px;
  }
  .pb-sm-0 {
    padding-bottom: 0px;
  }
  .pl-sm-0 {
    padding-left: 0px;
  }
  .pr-sm-0 {
    padding-right: 0px;
  }
  .pv-sm-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .ph-sm-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-sm-0 {
    padding: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-0 {
    margin-top: 0px;
  }
  .mb-md-0 {
    margin-bottom: 0px;
  }
  .ml-md-0 {
    margin-left: 0px;
  }
  .mr-md-0 {
    margin-right: 0px;
  }
  .mv-md-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mh-md-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .m-md-0 {
    margin: 0px;
  }
  .pt-md-0 {
    padding-top: 0px;
  }
  .pb-md-0 {
    padding-bottom: 0px;
  }
  .pl-md-0 {
    padding-left: 0px;
  }
  .pr-md-0 {
    padding-right: 0px;
  }
  .pv-md-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .ph-md-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-md-0 {
    padding: 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-0 {
    margin-top: 0px;
  }
  .mb-lg-0 {
    margin-bottom: 0px;
  }
  .ml-lg-0 {
    margin-left: 0px;
  }
  .mr-lg-0 {
    margin-right: 0px;
  }
  .mv-lg-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mh-lg-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .m-lg-0 {
    margin: 0px;
  }
  .pt-lg-0 {
    padding-top: 0px;
  }
  .pb-lg-0 {
    padding-bottom: 0px;
  }
  .pl-lg-0 {
    padding-left: 0px;
  }
  .pr-lg-0 {
    padding-right: 0px;
  }
  .pv-lg-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .ph-lg-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-lg-0 {
    padding: 0px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-0 {
    margin-top: 0px;
  }
  .mb-xl-0 {
    margin-bottom: 0px;
  }
  .ml-xl-0 {
    margin-left: 0px;
  }
  .mr-xl-0 {
    margin-right: 0px;
  }
  .mv-xl-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .mh-xl-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .m-xl-0 {
    margin: 0px;
  }
  .pt-xl-0 {
    padding-top: 0px;
  }
  .pb-xl-0 {
    padding-bottom: 0px;
  }
  .pl-xl-0 {
    padding-left: 0px;
  }
  .pr-xl-0 {
    padding-right: 0px;
  }
  .pv-xl-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .ph-xl-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-xl-0 {
    padding: 0px;
  }
}
.mt-1 {
  margin-top: 15px;
}

.mb-1 {
  margin-bottom: 15px;
}

.ml-1 {
  margin-left: 15px;
}

.mr-1 {
  margin-right: 15px;
}

.mv-1 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mh-1 {
  margin-left: 15px;
  margin-right: 15px;
}

.m-1 {
  margin: 15px;
}

.pt-1 {
  padding-top: 15px;
}

.pb-1 {
  padding-bottom: 15px;
}

.pl-1 {
  padding-left: 15px;
}

.pr-1 {
  padding-right: 15px;
}

.pv-1 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.ph-1 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-1 {
  padding: 15px;
}

@media (max-width: 767px) {
  .mt-xs-1 {
    margin-top: 15px;
  }
  .mb-xs-1 {
    margin-bottom: 15px;
  }
  .ml-xs-1 {
    margin-left: 15px;
  }
  .mr-xs-1 {
    margin-right: 15px;
  }
  .mv-xs-1 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mh-xs-1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .m-xs-1 {
    margin: 15px;
  }
  .pt-xs-1 {
    padding-top: 15px;
  }
  .pb-xs-1 {
    padding-bottom: 15px;
  }
  .pl-xs-1 {
    padding-left: 15px;
  }
  .pr-xs-1 {
    padding-right: 15px;
  }
  .pv-xs-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ph-xs-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-xs-1 {
    padding: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-1 {
    margin-top: 15px;
  }
  .mb-sm-1 {
    margin-bottom: 15px;
  }
  .ml-sm-1 {
    margin-left: 15px;
  }
  .mr-sm-1 {
    margin-right: 15px;
  }
  .mv-sm-1 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mh-sm-1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .m-sm-1 {
    margin: 15px;
  }
  .pt-sm-1 {
    padding-top: 15px;
  }
  .pb-sm-1 {
    padding-bottom: 15px;
  }
  .pl-sm-1 {
    padding-left: 15px;
  }
  .pr-sm-1 {
    padding-right: 15px;
  }
  .pv-sm-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ph-sm-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-sm-1 {
    padding: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-1 {
    margin-top: 15px;
  }
  .mb-md-1 {
    margin-bottom: 15px;
  }
  .ml-md-1 {
    margin-left: 15px;
  }
  .mr-md-1 {
    margin-right: 15px;
  }
  .mv-md-1 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mh-md-1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .m-md-1 {
    margin: 15px;
  }
  .pt-md-1 {
    padding-top: 15px;
  }
  .pb-md-1 {
    padding-bottom: 15px;
  }
  .pl-md-1 {
    padding-left: 15px;
  }
  .pr-md-1 {
    padding-right: 15px;
  }
  .pv-md-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ph-md-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-md-1 {
    padding: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-1 {
    margin-top: 15px;
  }
  .mb-lg-1 {
    margin-bottom: 15px;
  }
  .ml-lg-1 {
    margin-left: 15px;
  }
  .mr-lg-1 {
    margin-right: 15px;
  }
  .mv-lg-1 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mh-lg-1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .m-lg-1 {
    margin: 15px;
  }
  .pt-lg-1 {
    padding-top: 15px;
  }
  .pb-lg-1 {
    padding-bottom: 15px;
  }
  .pl-lg-1 {
    padding-left: 15px;
  }
  .pr-lg-1 {
    padding-right: 15px;
  }
  .pv-lg-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ph-lg-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-lg-1 {
    padding: 15px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-1 {
    margin-top: 15px;
  }
  .mb-xl-1 {
    margin-bottom: 15px;
  }
  .ml-xl-1 {
    margin-left: 15px;
  }
  .mr-xl-1 {
    margin-right: 15px;
  }
  .mv-xl-1 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .mh-xl-1 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .m-xl-1 {
    margin: 15px;
  }
  .pt-xl-1 {
    padding-top: 15px;
  }
  .pb-xl-1 {
    padding-bottom: 15px;
  }
  .pl-xl-1 {
    padding-left: 15px;
  }
  .pr-xl-1 {
    padding-right: 15px;
  }
  .pv-xl-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ph-xl-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .p-xl-1 {
    padding: 15px;
  }
}
.mt-2 {
  margin-top: 30px;
}

.mb-2 {
  margin-bottom: 30px;
}

.ml-2 {
  margin-left: 30px;
}

.mr-2 {
  margin-right: 30px;
}

.mv-2 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mh-2 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-2 {
  margin: 30px;
}

.pt-2 {
  padding-top: 30px;
}

.pb-2 {
  padding-bottom: 30px;
}

.pl-2 {
  padding-left: 30px;
}

.pr-2 {
  padding-right: 30px;
}

.pv-2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ph-2 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-2 {
  padding: 30px;
}

@media (max-width: 767px) {
  .mt-xs-2 {
    margin-top: 30px;
  }
  .mb-xs-2 {
    margin-bottom: 30px;
  }
  .ml-xs-2 {
    margin-left: 30px;
  }
  .mr-xs-2 {
    margin-right: 30px;
  }
  .mv-xs-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mh-xs-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .m-xs-2 {
    margin: 30px;
  }
  .pt-xs-2 {
    padding-top: 30px;
  }
  .pb-xs-2 {
    padding-bottom: 30px;
  }
  .pl-xs-2 {
    padding-left: 30px;
  }
  .pr-xs-2 {
    padding-right: 30px;
  }
  .pv-xs-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ph-xs-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-xs-2 {
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-2 {
    margin-top: 30px;
  }
  .mb-sm-2 {
    margin-bottom: 30px;
  }
  .ml-sm-2 {
    margin-left: 30px;
  }
  .mr-sm-2 {
    margin-right: 30px;
  }
  .mv-sm-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mh-sm-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .m-sm-2 {
    margin: 30px;
  }
  .pt-sm-2 {
    padding-top: 30px;
  }
  .pb-sm-2 {
    padding-bottom: 30px;
  }
  .pl-sm-2 {
    padding-left: 30px;
  }
  .pr-sm-2 {
    padding-right: 30px;
  }
  .pv-sm-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ph-sm-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-sm-2 {
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-2 {
    margin-top: 30px;
  }
  .mb-md-2 {
    margin-bottom: 30px;
  }
  .ml-md-2 {
    margin-left: 30px;
  }
  .mr-md-2 {
    margin-right: 30px;
  }
  .mv-md-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mh-md-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .m-md-2 {
    margin: 30px;
  }
  .pt-md-2 {
    padding-top: 30px;
  }
  .pb-md-2 {
    padding-bottom: 30px;
  }
  .pl-md-2 {
    padding-left: 30px;
  }
  .pr-md-2 {
    padding-right: 30px;
  }
  .pv-md-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ph-md-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-md-2 {
    padding: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-2 {
    margin-top: 30px;
  }
  .mb-lg-2 {
    margin-bottom: 30px;
  }
  .ml-lg-2 {
    margin-left: 30px;
  }
  .mr-lg-2 {
    margin-right: 30px;
  }
  .mv-lg-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mh-lg-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .m-lg-2 {
    margin: 30px;
  }
  .pt-lg-2 {
    padding-top: 30px;
  }
  .pb-lg-2 {
    padding-bottom: 30px;
  }
  .pl-lg-2 {
    padding-left: 30px;
  }
  .pr-lg-2 {
    padding-right: 30px;
  }
  .pv-lg-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ph-lg-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-lg-2 {
    padding: 30px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-2 {
    margin-top: 30px;
  }
  .mb-xl-2 {
    margin-bottom: 30px;
  }
  .ml-xl-2 {
    margin-left: 30px;
  }
  .mr-xl-2 {
    margin-right: 30px;
  }
  .mv-xl-2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .mh-xl-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .m-xl-2 {
    margin: 30px;
  }
  .pt-xl-2 {
    padding-top: 30px;
  }
  .pb-xl-2 {
    padding-bottom: 30px;
  }
  .pl-xl-2 {
    padding-left: 30px;
  }
  .pr-xl-2 {
    padding-right: 30px;
  }
  .pv-xl-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ph-xl-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .p-xl-2 {
    padding: 30px;
  }
}
.mt-3 {
  margin-top: 45px;
}

.mb-3 {
  margin-bottom: 45px;
}

.ml-3 {
  margin-left: 45px;
}

.mr-3 {
  margin-right: 45px;
}

.mv-3 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.mh-3 {
  margin-left: 45px;
  margin-right: 45px;
}

.m-3 {
  margin: 45px;
}

.pt-3 {
  padding-top: 45px;
}

.pb-3 {
  padding-bottom: 45px;
}

.pl-3 {
  padding-left: 45px;
}

.pr-3 {
  padding-right: 45px;
}

.pv-3 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.ph-3 {
  padding-left: 45px;
  padding-right: 45px;
}

.p-3 {
  padding: 45px;
}

@media (max-width: 767px) {
  .mt-xs-3 {
    margin-top: 45px;
  }
  .mb-xs-3 {
    margin-bottom: 45px;
  }
  .ml-xs-3 {
    margin-left: 45px;
  }
  .mr-xs-3 {
    margin-right: 45px;
  }
  .mv-xs-3 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .mh-xs-3 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .m-xs-3 {
    margin: 45px;
  }
  .pt-xs-3 {
    padding-top: 45px;
  }
  .pb-xs-3 {
    padding-bottom: 45px;
  }
  .pl-xs-3 {
    padding-left: 45px;
  }
  .pr-xs-3 {
    padding-right: 45px;
  }
  .pv-xs-3 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ph-xs-3 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .p-xs-3 {
    padding: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-3 {
    margin-top: 45px;
  }
  .mb-sm-3 {
    margin-bottom: 45px;
  }
  .ml-sm-3 {
    margin-left: 45px;
  }
  .mr-sm-3 {
    margin-right: 45px;
  }
  .mv-sm-3 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .mh-sm-3 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .m-sm-3 {
    margin: 45px;
  }
  .pt-sm-3 {
    padding-top: 45px;
  }
  .pb-sm-3 {
    padding-bottom: 45px;
  }
  .pl-sm-3 {
    padding-left: 45px;
  }
  .pr-sm-3 {
    padding-right: 45px;
  }
  .pv-sm-3 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ph-sm-3 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .p-sm-3 {
    padding: 45px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-3 {
    margin-top: 45px;
  }
  .mb-md-3 {
    margin-bottom: 45px;
  }
  .ml-md-3 {
    margin-left: 45px;
  }
  .mr-md-3 {
    margin-right: 45px;
  }
  .mv-md-3 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .mh-md-3 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .m-md-3 {
    margin: 45px;
  }
  .pt-md-3 {
    padding-top: 45px;
  }
  .pb-md-3 {
    padding-bottom: 45px;
  }
  .pl-md-3 {
    padding-left: 45px;
  }
  .pr-md-3 {
    padding-right: 45px;
  }
  .pv-md-3 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ph-md-3 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .p-md-3 {
    padding: 45px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-3 {
    margin-top: 45px;
  }
  .mb-lg-3 {
    margin-bottom: 45px;
  }
  .ml-lg-3 {
    margin-left: 45px;
  }
  .mr-lg-3 {
    margin-right: 45px;
  }
  .mv-lg-3 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .mh-lg-3 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .m-lg-3 {
    margin: 45px;
  }
  .pt-lg-3 {
    padding-top: 45px;
  }
  .pb-lg-3 {
    padding-bottom: 45px;
  }
  .pl-lg-3 {
    padding-left: 45px;
  }
  .pr-lg-3 {
    padding-right: 45px;
  }
  .pv-lg-3 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ph-lg-3 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .p-lg-3 {
    padding: 45px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-3 {
    margin-top: 45px;
  }
  .mb-xl-3 {
    margin-bottom: 45px;
  }
  .ml-xl-3 {
    margin-left: 45px;
  }
  .mr-xl-3 {
    margin-right: 45px;
  }
  .mv-xl-3 {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .mh-xl-3 {
    margin-left: 45px;
    margin-right: 45px;
  }
  .m-xl-3 {
    margin: 45px;
  }
  .pt-xl-3 {
    padding-top: 45px;
  }
  .pb-xl-3 {
    padding-bottom: 45px;
  }
  .pl-xl-3 {
    padding-left: 45px;
  }
  .pr-xl-3 {
    padding-right: 45px;
  }
  .pv-xl-3 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ph-xl-3 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .p-xl-3 {
    padding: 45px;
  }
}
.mt-4 {
  margin-top: 60px;
}

.mb-4 {
  margin-bottom: 60px;
}

.ml-4 {
  margin-left: 60px;
}

.mr-4 {
  margin-right: 60px;
}

.mv-4 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mh-4 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-4 {
  margin: 60px;
}

.pt-4 {
  padding-top: 60px;
}

.pb-4 {
  padding-bottom: 60px;
}

.pl-4 {
  padding-left: 60px;
}

.pr-4 {
  padding-right: 60px;
}

.pv-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ph-4 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-4 {
  padding: 60px;
}

@media (max-width: 767px) {
  .mt-xs-4 {
    margin-top: 60px;
  }
  .mb-xs-4 {
    margin-bottom: 60px;
  }
  .ml-xs-4 {
    margin-left: 60px;
  }
  .mr-xs-4 {
    margin-right: 60px;
  }
  .mv-xs-4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mh-xs-4 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .m-xs-4 {
    margin: 60px;
  }
  .pt-xs-4 {
    padding-top: 60px;
  }
  .pb-xs-4 {
    padding-bottom: 60px;
  }
  .pl-xs-4 {
    padding-left: 60px;
  }
  .pr-xs-4 {
    padding-right: 60px;
  }
  .pv-xs-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ph-xs-4 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .p-xs-4 {
    padding: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-4 {
    margin-top: 60px;
  }
  .mb-sm-4 {
    margin-bottom: 60px;
  }
  .ml-sm-4 {
    margin-left: 60px;
  }
  .mr-sm-4 {
    margin-right: 60px;
  }
  .mv-sm-4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mh-sm-4 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .m-sm-4 {
    margin: 60px;
  }
  .pt-sm-4 {
    padding-top: 60px;
  }
  .pb-sm-4 {
    padding-bottom: 60px;
  }
  .pl-sm-4 {
    padding-left: 60px;
  }
  .pr-sm-4 {
    padding-right: 60px;
  }
  .pv-sm-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ph-sm-4 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .p-sm-4 {
    padding: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-4 {
    margin-top: 60px;
  }
  .mb-md-4 {
    margin-bottom: 60px;
  }
  .ml-md-4 {
    margin-left: 60px;
  }
  .mr-md-4 {
    margin-right: 60px;
  }
  .mv-md-4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mh-md-4 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .m-md-4 {
    margin: 60px;
  }
  .pt-md-4 {
    padding-top: 60px;
  }
  .pb-md-4 {
    padding-bottom: 60px;
  }
  .pl-md-4 {
    padding-left: 60px;
  }
  .pr-md-4 {
    padding-right: 60px;
  }
  .pv-md-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ph-md-4 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .p-md-4 {
    padding: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-4 {
    margin-top: 60px;
  }
  .mb-lg-4 {
    margin-bottom: 60px;
  }
  .ml-lg-4 {
    margin-left: 60px;
  }
  .mr-lg-4 {
    margin-right: 60px;
  }
  .mv-lg-4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mh-lg-4 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .m-lg-4 {
    margin: 60px;
  }
  .pt-lg-4 {
    padding-top: 60px;
  }
  .pb-lg-4 {
    padding-bottom: 60px;
  }
  .pl-lg-4 {
    padding-left: 60px;
  }
  .pr-lg-4 {
    padding-right: 60px;
  }
  .pv-lg-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ph-lg-4 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .p-lg-4 {
    padding: 60px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-4 {
    margin-top: 60px;
  }
  .mb-xl-4 {
    margin-bottom: 60px;
  }
  .ml-xl-4 {
    margin-left: 60px;
  }
  .mr-xl-4 {
    margin-right: 60px;
  }
  .mv-xl-4 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mh-xl-4 {
    margin-left: 60px;
    margin-right: 60px;
  }
  .m-xl-4 {
    margin: 60px;
  }
  .pt-xl-4 {
    padding-top: 60px;
  }
  .pb-xl-4 {
    padding-bottom: 60px;
  }
  .pl-xl-4 {
    padding-left: 60px;
  }
  .pr-xl-4 {
    padding-right: 60px;
  }
  .pv-xl-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ph-xl-4 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .p-xl-4 {
    padding: 60px;
  }
}
.mt-5 {
  margin-top: 75px;
}

.mb-5 {
  margin-bottom: 75px;
}

.ml-5 {
  margin-left: 75px;
}

.mr-5 {
  margin-right: 75px;
}

.mv-5 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.mh-5 {
  margin-left: 75px;
  margin-right: 75px;
}

.m-5 {
  margin: 75px;
}

.pt-5 {
  padding-top: 75px;
}

.pb-5 {
  padding-bottom: 75px;
}

.pl-5 {
  padding-left: 75px;
}

.pr-5 {
  padding-right: 75px;
}

.pv-5 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.ph-5 {
  padding-left: 75px;
  padding-right: 75px;
}

.p-5 {
  padding: 75px;
}

@media (max-width: 767px) {
  .mt-xs-5 {
    margin-top: 75px;
  }
  .mb-xs-5 {
    margin-bottom: 75px;
  }
  .ml-xs-5 {
    margin-left: 75px;
  }
  .mr-xs-5 {
    margin-right: 75px;
  }
  .mv-xs-5 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .mh-xs-5 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .m-xs-5 {
    margin: 75px;
  }
  .pt-xs-5 {
    padding-top: 75px;
  }
  .pb-xs-5 {
    padding-bottom: 75px;
  }
  .pl-xs-5 {
    padding-left: 75px;
  }
  .pr-xs-5 {
    padding-right: 75px;
  }
  .pv-xs-5 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ph-xs-5 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .p-xs-5 {
    padding: 75px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-5 {
    margin-top: 75px;
  }
  .mb-sm-5 {
    margin-bottom: 75px;
  }
  .ml-sm-5 {
    margin-left: 75px;
  }
  .mr-sm-5 {
    margin-right: 75px;
  }
  .mv-sm-5 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .mh-sm-5 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .m-sm-5 {
    margin: 75px;
  }
  .pt-sm-5 {
    padding-top: 75px;
  }
  .pb-sm-5 {
    padding-bottom: 75px;
  }
  .pl-sm-5 {
    padding-left: 75px;
  }
  .pr-sm-5 {
    padding-right: 75px;
  }
  .pv-sm-5 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ph-sm-5 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .p-sm-5 {
    padding: 75px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-5 {
    margin-top: 75px;
  }
  .mb-md-5 {
    margin-bottom: 75px;
  }
  .ml-md-5 {
    margin-left: 75px;
  }
  .mr-md-5 {
    margin-right: 75px;
  }
  .mv-md-5 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .mh-md-5 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .m-md-5 {
    margin: 75px;
  }
  .pt-md-5 {
    padding-top: 75px;
  }
  .pb-md-5 {
    padding-bottom: 75px;
  }
  .pl-md-5 {
    padding-left: 75px;
  }
  .pr-md-5 {
    padding-right: 75px;
  }
  .pv-md-5 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ph-md-5 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .p-md-5 {
    padding: 75px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-5 {
    margin-top: 75px;
  }
  .mb-lg-5 {
    margin-bottom: 75px;
  }
  .ml-lg-5 {
    margin-left: 75px;
  }
  .mr-lg-5 {
    margin-right: 75px;
  }
  .mv-lg-5 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .mh-lg-5 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .m-lg-5 {
    margin: 75px;
  }
  .pt-lg-5 {
    padding-top: 75px;
  }
  .pb-lg-5 {
    padding-bottom: 75px;
  }
  .pl-lg-5 {
    padding-left: 75px;
  }
  .pr-lg-5 {
    padding-right: 75px;
  }
  .pv-lg-5 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ph-lg-5 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .p-lg-5 {
    padding: 75px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-5 {
    margin-top: 75px;
  }
  .mb-xl-5 {
    margin-bottom: 75px;
  }
  .ml-xl-5 {
    margin-left: 75px;
  }
  .mr-xl-5 {
    margin-right: 75px;
  }
  .mv-xl-5 {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .mh-xl-5 {
    margin-left: 75px;
    margin-right: 75px;
  }
  .m-xl-5 {
    margin: 75px;
  }
  .pt-xl-5 {
    padding-top: 75px;
  }
  .pb-xl-5 {
    padding-bottom: 75px;
  }
  .pl-xl-5 {
    padding-left: 75px;
  }
  .pr-xl-5 {
    padding-right: 75px;
  }
  .pv-xl-5 {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ph-xl-5 {
    padding-left: 75px;
    padding-right: 75px;
  }
  .p-xl-5 {
    padding: 75px;
  }
}
.mt-6 {
  margin-top: 90px;
}

.mb-6 {
  margin-bottom: 90px;
}

.ml-6 {
  margin-left: 90px;
}

.mr-6 {
  margin-right: 90px;
}

.mv-6 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.mh-6 {
  margin-left: 90px;
  margin-right: 90px;
}

.m-6 {
  margin: 90px;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.pl-6 {
  padding-left: 90px;
}

.pr-6 {
  padding-right: 90px;
}

.pv-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ph-6 {
  padding-left: 90px;
  padding-right: 90px;
}

.p-6 {
  padding: 90px;
}

@media (max-width: 767px) {
  .mt-xs-6 {
    margin-top: 90px;
  }
  .mb-xs-6 {
    margin-bottom: 90px;
  }
  .ml-xs-6 {
    margin-left: 90px;
  }
  .mr-xs-6 {
    margin-right: 90px;
  }
  .mv-xs-6 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mh-xs-6 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .m-xs-6 {
    margin: 90px;
  }
  .pt-xs-6 {
    padding-top: 90px;
  }
  .pb-xs-6 {
    padding-bottom: 90px;
  }
  .pl-xs-6 {
    padding-left: 90px;
  }
  .pr-xs-6 {
    padding-right: 90px;
  }
  .pv-xs-6 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ph-xs-6 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .p-xs-6 {
    padding: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mt-sm-6 {
    margin-top: 90px;
  }
  .mb-sm-6 {
    margin-bottom: 90px;
  }
  .ml-sm-6 {
    margin-left: 90px;
  }
  .mr-sm-6 {
    margin-right: 90px;
  }
  .mv-sm-6 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mh-sm-6 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .m-sm-6 {
    margin: 90px;
  }
  .pt-sm-6 {
    padding-top: 90px;
  }
  .pb-sm-6 {
    padding-bottom: 90px;
  }
  .pl-sm-6 {
    padding-left: 90px;
  }
  .pr-sm-6 {
    padding-right: 90px;
  }
  .pv-sm-6 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ph-sm-6 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .p-sm-6 {
    padding: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mt-md-6 {
    margin-top: 90px;
  }
  .mb-md-6 {
    margin-bottom: 90px;
  }
  .ml-md-6 {
    margin-left: 90px;
  }
  .mr-md-6 {
    margin-right: 90px;
  }
  .mv-md-6 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mh-md-6 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .m-md-6 {
    margin: 90px;
  }
  .pt-md-6 {
    padding-top: 90px;
  }
  .pb-md-6 {
    padding-bottom: 90px;
  }
  .pl-md-6 {
    padding-left: 90px;
  }
  .pr-md-6 {
    padding-right: 90px;
  }
  .pv-md-6 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ph-md-6 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .p-md-6 {
    padding: 90px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .mt-lg-6 {
    margin-top: 90px;
  }
  .mb-lg-6 {
    margin-bottom: 90px;
  }
  .ml-lg-6 {
    margin-left: 90px;
  }
  .mr-lg-6 {
    margin-right: 90px;
  }
  .mv-lg-6 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mh-lg-6 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .m-lg-6 {
    margin: 90px;
  }
  .pt-lg-6 {
    padding-top: 90px;
  }
  .pb-lg-6 {
    padding-bottom: 90px;
  }
  .pl-lg-6 {
    padding-left: 90px;
  }
  .pr-lg-6 {
    padding-right: 90px;
  }
  .pv-lg-6 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ph-lg-6 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .p-lg-6 {
    padding: 90px;
  }
}
@media (min-width: 1400px) {
  .mt-xl-6 {
    margin-top: 90px;
  }
  .mb-xl-6 {
    margin-bottom: 90px;
  }
  .ml-xl-6 {
    margin-left: 90px;
  }
  .mr-xl-6 {
    margin-right: 90px;
  }
  .mv-xl-6 {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .mh-xl-6 {
    margin-left: 90px;
    margin-right: 90px;
  }
  .m-xl-6 {
    margin: 90px;
  }
  .pt-xl-6 {
    padding-top: 90px;
  }
  .pb-xl-6 {
    padding-bottom: 90px;
  }
  .pl-xl-6 {
    padding-left: 90px;
  }
  .pr-xl-6 {
    padding-right: 90px;
  }
  .pv-xl-6 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ph-xl-6 {
    padding-left: 90px;
    padding-right: 90px;
  }
  .p-xl-6 {
    padding: 90px;
  }
}
.m-auto {
  margin: auto;
}

.mv-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mh-auto {
  margin-left: auto;
  margin-right: auto;
}

.gap-1 {
  gap: 15px;
}

@media (max-width: 767px) {
  .gap-xs-1 {
    gap: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gap-sm-1 {
    gap: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gap-md-1 {
    gap: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .gap-lg-1 {
    gap: 15px;
  }
}
@media (min-width: 1400px) {
  .gap-xl-1 {
    gap: 15px;
  }
}
.gap-2 {
  gap: 30px;
}

@media (max-width: 767px) {
  .gap-xs-2 {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gap-sm-2 {
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gap-md-2 {
    gap: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .gap-lg-2 {
    gap: 30px;
  }
}
@media (min-width: 1400px) {
  .gap-xl-2 {
    gap: 30px;
  }
}
.gap-3 {
  gap: 45px;
}

@media (max-width: 767px) {
  .gap-xs-3 {
    gap: 45px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gap-sm-3 {
    gap: 45px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gap-md-3 {
    gap: 45px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .gap-lg-3 {
    gap: 45px;
  }
}
@media (min-width: 1400px) {
  .gap-xl-3 {
    gap: 45px;
  }
}
.gap-4 {
  gap: 60px;
}

@media (max-width: 767px) {
  .gap-xs-4 {
    gap: 60px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gap-sm-4 {
    gap: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gap-md-4 {
    gap: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .gap-lg-4 {
    gap: 60px;
  }
}
@media (min-width: 1400px) {
  .gap-xl-4 {
    gap: 60px;
  }
}
.gap-5 {
  gap: 75px;
}

@media (max-width: 767px) {
  .gap-xs-5 {
    gap: 75px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gap-sm-5 {
    gap: 75px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gap-md-5 {
    gap: 75px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .gap-lg-5 {
    gap: 75px;
  }
}
@media (min-width: 1400px) {
  .gap-xl-5 {
    gap: 75px;
  }
}
.gap-6 {
  gap: 90px;
}

@media (max-width: 767px) {
  .gap-xs-6 {
    gap: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gap-sm-6 {
    gap: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gap-md-6 {
    gap: 90px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .gap-lg-6 {
    gap: 90px;
  }
}
@media (min-width: 1400px) {
  .gap-xl-6 {
    gap: 90px;
  }
}
.grecaptcha-badge {
  display: none !important;
}

section section {
  padding: 0;
}
section section .container {
  padding: 0;
}

.clean-tb-margin > *:first-child {
  margin-top: 0;
}
.clean-tb-margin > *:last-child {
  margin-bottom: 0;
}

.color-grey1 {
  color: var(--grey1);
}
.color-grey2 {
  color: var(--grey2);
}
.color-grey3 {
  color: var(--grey3);
}
.color-grey4 {
  color: var(--grey4);
}
.color-grey5 {
  color: var(--grey5);
}
.color-grey6 {
  color: var(--grey6);
}
.color-grey7 {
  color: var(--grey7);
}
.color-grey8 {
  color: var(--grey8);
}
.color-orange1 {
  color: var(--orange1);
}
.color-orange2 {
  color: var(--orange2);
}
.color-orange3 {
  color: var(--orange3);
}
.color-orange4 {
  color: var(--orange4);
}
.color-orange5 {
  color: var(--orange5);
}
.color-red1 {
  color: var(--red1);
}

.bg-grey1 {
  background-color: var(--grey1);
}
.bg-grey2 {
  background-color: var(--grey2);
}
.bg-grey3 {
  background-color: var(--grey3);
}
.bg-grey4 {
  background-color: var(--grey4);
}
.bg-grey5 {
  background-color: var(--grey5);
}
.bg-grey6 {
  background-color: var(--grey6);
}
.bg-grey7 {
  background-color: var(--grey7);
}
.bg-grey8 {
  background-color: var(--grey8);
}
.bg-orange1 {
  background-color: var(--orange1);
}
.bg-orange2 {
  background-color: var(--orange2);
}
.bg-orange3 {
  background-color: var(--orange3);
}
.bg-orange4 {
  background-color: var(--orange4);
}
.bg-orange5 {
  background-color: var(--orange5);
}
.bg-red1 {
  background-color: var(--red1);
}

.border {
  border: 1px solid var(--siniy);
}

.border-normal {
  border-width: 2px;
}

.border-wide {
  border-width: 4px;
}

.border-solid {
  border-style: solid;
}

.border-dotted {
  border-style: dotted;
}

.border-dashed {
  border-style: dashed;
}

.border-none {
  border-style: none;
}

.border-color-siniy {
  border-color: var(--siniy);
}

.border-top {
  border-top: 1px solid var(--siniy);
}

.border-top-normal {
  border-top-width: 2px;
}

.border-top-wide {
  border-top-width: 4px;
}

.border-top-solid {
  border-top-style: solid;
}

.border-top-dotted {
  border-top-style: dotted;
}

.border-top-dashed {
  border-top-style: dashed;
}

.border-top-none {
  border-top-style: none;
}

.border-top-color-siniy {
  border-top-color: var(--siniy);
}

.border-right {
  border-right: 1px solid var(--siniy);
}

.border-right-normal {
  border-right-width: 2px;
}

.border-right-wide {
  border-right-width: 4px;
}

.border-right-solid {
  border-right-style: solid;
}

.border-right-dotted {
  border-right-style: dotted;
}

.border-right-dashed {
  border-right-style: dashed;
}

.border-right-none {
  border-right-style: none;
}

.border-right-color-siniy {
  border-right-color: var(--siniy);
}

.border-bottom {
  border-bottom: 1px solid var(--siniy);
}

.border-bottom-normal {
  border-bottom-width: 2px;
}

.border-bottom-wide {
  border-bottom-width: 4px;
}

.border-bottom-solid {
  border-bottom-style: solid;
}

.border-bottom-dotted {
  border-bottom-style: dotted;
}

.border-bottom-dashed {
  border-bottom-style: dashed;
}

.border-bottom-none {
  border-bottom-style: none;
}

.border-bottom-color-siniy {
  border-bottom-color: var(--siniy);
}

.border-left {
  border-left: 1px solid var(--siniy);
}

.border-left-normal {
  border-left-width: 2px;
}

.border-left-wide {
  border-left-width: 4px;
}

.border-left-solid {
  border-left-style: solid;
}

.border-left-dotted {
  border-left-style: dotted;
}

.border-left-dashed {
  border-left-style: dashed;
}

.border-left-none {
  border-left-style: none;
}

.border-left-color-siniy {
  border-left-color: var(--siniy);
}

.border-radius-0 {
  border-radius: 0px;
}

.border-radius-1 {
  border-radius: 6px;
}

.border-radius-2 {
  border-radius: 12px;
}

.border-radius-3 {
  border-radius: 18px;
}

.border-radius-4 {
  border-radius: 24px;
}

.border-radius-5 {
  border-radius: 30px;
}

.border-radius-6 {
  border-radius: 36px;
}

.border-radius-50 {
  border-radius: 50%;
}

.overflow-hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

@media print {
  .print-hidden {
    display: none !important;
  }
}
.hidden {
  display: none !important;
}/*# sourceMappingURL=style.css.map */