.m-toggler {
  font-size: 14px;
  color: #005587;
  display: inline-block;
  cursor: pointer;
}

.m-toggler__icon {
  margin-left: 3px;
}

.m-toggler__toggled .m-toggler__icon {
  transform: rotate(-0.5turn);
}

.m-toggler__label_warning {
  color: #ed1c24;
}

.m-btn {
  display: inline-block;
  text-transform: uppercase;
  background: #005587;
  border: 1px solid #005587;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 14px 10px 11px;
  box-sizing: border-box;
  cursor: pointer;
  font: inherit;
  font-weight: bold;
}

.m-btn_light {
  background: transparent;
  color: #005587;
  border: 1px solid;
}

.m-burger {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #c0c4c6;
  position: relative;
  cursor: pointer;
  background: #fff;
}

.m-burger::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  color: #616567;
  background-color: currentColor;
  box-shadow: 0 -5px 0 0 currentColor, 0 5px 0 0 currentColor;
}

.m-cart-title {
  letter-spacing: normal;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 26px;
}

.m-cart-start-page__cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.m-cart-start-page__cart {
  max-width: 820px;
  flex-grow: 1;
}

.m-cart-start-page__summary {
  max-width: 400px;
  flex-grow: 1;
  margin-top: 32px;
}

.m-cart-start-page__you-may-like {
  margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
  .m-cart-start-page__cols {
    display: block;
  }
  .m-cart-start-page__summary {
    max-width: none;
  }
}

.m-cart-summary {
  background-color: #f3f6f7;
  padding: 40px 30px;
  font-size: 14px;
  line-height: 1.21429;
  font-weight: bold;
}

.m-cart-summary__title {
  font-size: 17px;
  line-height: 1.28571;
  margin-bottom: 20px;
}

.m-cart-summary__row {
  display: flex;
}

.m-cart-summary__row + .m-cart-summary__row {
  margin-top: 20px;
}

.m-cart-summary__row-value {
  margin-left: auto;
}

.m-cart-summary__btn-proceed {
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .m-cart-summary {
    padding: 20px;
  }
}

.m-cart-list__head {
  display: flex;
  font-size: 11px;
  color: #b1b6b8;
  line-height: 32px;
  padding: 0 11px;
}

.m-cart-list__head-col {
  width: 9%;
  text-align: center;
}

.m-cart-list__head-col_size {
  margin-left: auto;
}

.m-cart-list__msg {
  font-size: 12px;
  color: #616567;
  margin-left: -10px;
}

@media screen and (max-width: 767px) {
  .m-cart-list__head {
    display: none;
  }
}

.m-cart-item {
  border: 1px solid #ebeff1;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: #616567;
}

.m-cart-item + .m-cart-item {
  margin-top: -1px;
}

.m-cart-item_unavailable {
  background: #ebeff1;
  opacity: .5;
}

.m-cart-item__col {
  min-width: 9%;
}

.m-cart-item__col-info {
  padding-left: 10px;
  flex-grow: 1;
}

.m-cart-item__col-size {
  text-align: center;
}

.m-cart-item__col-amount {
  text-align: center;
}

.m-cart-item__col-remove {
  text-align: center;
}

.m-cart-item__col-price {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.m-cart-item__price-old {
  text-decoration: line-through;
  order: 1;
}

.m-cart-item__price-old ~ .m-cart-item__price {
  color: #ed1c24;
  margin-top: 21px;
}

.m-cart-item__amount {
  width: 50%;
  text-align: center;
  display: inline-block;
}

.m-cart-item__link-info {
  color: inherit;
}

.m-cart-item__pic {
  width: 60px;
  height: 86px;
  background: #eee center / cover;
}

.m-cart-item__color-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: auto;
}

.m-cart-item__article {
  font-size: 11px;
  color: #b1b6b8;
}

.m-cart-item__current-size {
  color: #005587;
  cursor: pointer;
}

.m-cart-item__available-sizes {
  display: none;
  text-align: left;
}

.m-cart-item__available-sizes_visible {
  display: block;
}

.m-cart-item__available-sizes_visible ~ .m-cart-item__current-size {
  display: none;
}

.m-cart-item__btn-amount {
  color: inherit;
  font-size: 18px;
  cursor: pointer;
}

.m-cart-item__btn-remove {
  cursor: pointer;
}

.m-cart-item__btn-remove-icon {
  color: #616567;
  font-size: 10px;
}

@media screen and (max-width: 767px) {
  .m-cart-item {
    flex-wrap: wrap;
  }
  .m-cart-item__col {
    min-width: 18.75%;
  }
  .m-cart-item__col-price {
    min-width: 25%;
  }
  .m-cart-item__col-pic {
    min-width: 60px;
  }
  .m-cart-item__col-info {
    min-width: calc(100% - 70px);
    padding-left: 20px;
  }
  .m-cart-item__price {
    margin-top: auto;
  }
}

.m-order-section {
  margin-bottom: 20px;
}

.m-order-section__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.m-order-page__title {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebeff1;
}

.m-order-page__cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.m-order-page__content {
  max-width: 820px;
  flex-grow: 1;
}

.m-order-page__summary {
  max-width: 400px;
  flex-grow: 1;
}

.m-order-page__cart-toggler {
  margin-left: 16px;
}

.m-order-page__cart-section {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .m-order-page {
    margin-bottom: 50px;
  }
  .m-order-page__cols {
    display: block;
  }
  .m-order-page__cart-toggler {
    display: block;
    margin: 10px 0 0 0;
  }
}

.m-toggler-target {
  display: none;
}

.m-picker {
  margin-bottom: 20px;
}

.m-picker_opened .m-picker__current {
  background-color: #005587;
  color: #fff;
  background-image: url("data:image/svg+xml,%3csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M12 7L6.5 2L1 7' stroke='white' stroke-width='2'/%3e %3c/svg%3e");
}

.m-picker_opened .m-picker__items {
  display: block !important;
}

.m-picker__input {
  display: none;
}

.m-picker__item {
  display: block;
  cursor: pointer;
}

.m-picker__item-container {
  min-height: 64px;
  padding-left: 51px;
  padding-right: 20px;
  border: 1px solid #ebeff1;
  border-top: none;
  display: flex;
  align-items: center;
  position: relative;
}

.m-picker__item-container::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
  height: 16px;
  width: 16px;
  border: 1px solid #005587;
  border-radius: 50%;
}

.m-picker__input:checked ~ .m-picker__item-container {
  background-color: #ebeff1;
}

.m-picker__input:checked ~ .m-picker__item-container::before {
  box-shadow: inset 0 0 0 2px #ebeff1, inset 0 0 0 10px #005587;
}

.m-picker__item:first-child .m-picker__item-container {
  border: 1px solid #ebeff1;
}

.m-picker__item-name {
  font-weight: bold;
  font-size: 14px;
}

.m-picker__item-info {
  margin-left: auto;
  color: #005587;
}

.m-picker__item-info_warning {
  color: #ed1c24;
}

.m-picker__item-availability-mobile {
  display: none;
}

.m-picker__current {
  display: none;
  height: 40px;
  padding: 12px 16px;
  background: right 12px center no-repeat url("data:image/svg+xml,%3csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M1 1L6.5 6L12 1' stroke='%23616567' stroke-width='2'/%3e %3c/svg%3e");
  border: 1px solid #c9ced1;
  cursor: pointer;
  margin-bottom: 20px;
  letter-spacing: .04em;
  font-size: 12px;
  line-height: 1.25;
  color: #000;
  font-weight: bold;
}

.m-picker__status {
  display: none;
  color: #005587;
  text-align: center;
}

.m-picker__status_warning {
  color: #ed1c24;
}

@media screen and (max-width: 767px) {
  .m-picker {
    position: relative;
  }
  .m-picker__current {
    display: block;
  }
  .m-picker__item-availability-desktop {
    display: none;
  }
  .m-picker__item-availability-mobile {
    display: block;
  }
  .m-picker__items {
    display: none;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    max-height: 300px;
    background: #fff;
  }
  .m-picker__item-container {
    padding: 7px 16px;
    min-height: 0;
  }
  .m-picker__item-container::before {
    content: normal;
  }
  .m-picker__item-name {
    font-size: 12px;
    line-height: 1.25;
    font-weight: normal;
  }
  .m-picker__status {
    display: block;
  }
}

.m-picker-target {
  display: none;
}

.m-order-map__container {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.m-order-map__note {
  padding: 22px 29px;
  border: 1px solid #ededed;
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.25;
}

.m-order-map__row {
  display: flex;
}

.m-order-map__row_main {
  min-height: 0;
  flex-grow: 1;
}

.m-order-map__row_bottom {
  flex-grow: 0;
}

.m-order-map__header {
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.m-order-map__city-picker {
  max-width: 300px;
  margin: 0;
  height: 40px;
}

.m-order-map__map {
  background-color: #eee;
  flex-grow: 1;
}

.m-order-map__list {
  width: 380px;
  max-height: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.m-order-map__details {
  width: 380px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.m-order-map__selected {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-order-map {
    margin: 0 -20px;
  }
  .m-order-map__header {
    padding: 10px 20px;
  }
  .m-order-map__btn-menu {
    margin-left: 20px;
  }
  .m-order-map__note {
    padding: 22px 20px;
    margin: 30px 20px 0;
  }
}

.m-points-list {
  display: none;
  background: #fff;
  border: 1px solid #ebeff1;
  flex-direction: column;
}

.m-points-list_visible {
  display: flex;
}

.m-points-list__header {
  height: 60px;
  border-bottom: 1px solid #ebeff1;
  color: #005587;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.1875;
}

.m-points-list__btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 60px;
  height: 60px;
  margin-right: -20px;
}

.m-points-list__btn-close-icon::before {
  color: inherit;
}

.m-points-list__items {
  overflow: auto;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .m-points-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: transparent;
  }
  .m-points-list__header {
    background: #fff;
    min-height: 60px;
    height: 60px;
  }
  .m-points-list__items {
    -webkit-overscroll-behavior: contain;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

.m-point-item {
  padding: 16px;
  border: 1px solid #ebeff1;
  font-size: 12px;
  line-height: 1.16667;
  cursor: pointer;
}

.m-point-item + .m-point-item {
  margin-top: 10px;
}

.m-point-item__info {
  color: #005587;
}

.m-point-item__warning {
  color: #ed1c24;
}

.m-point-item__point-data {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .m-point-item {
    background: #fff;
  }
}

.m-point-details {
  display: none;
  background: #fff;
  flex-direction: column;
  border: 1px solid #ebeff1;
  z-index: 2;
}

.m-point-details_visible {
  display: flex;
}

.m-point-details__header {
  display: flex;
  align-items: center;
  height: 40px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.21429;
  color: #005587;
  padding-left: 31px;
  border-bottom: 1px solid #ebeff1;
  position: relative;
  cursor: pointer;
}

.m-point-details__header-name {
  display: none;
  margin-top: 4px;
}

.m-point-details__header-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 16px;
}

.m-point-details__content {
  padding: 20px;
  overflow: auto;
}

.m-point-details__controls {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.25;
  font-weight: bold;
}

.m-point-details__info {
  color: #005587;
}

.m-point-details__warning {
  color: #ed1c24;
}

.m-point-details__btn-select {
  min-width: 148px;
  padding: 10px;
}

.m-point-details__link-availability {
  text-decoration: underline;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}

.m-point-details__instock {
  margin-top: 20px;
}

.m-point-details__instock-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .m-point-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
  }
  .m-point-details__header {
    height: 60px;
  }
  .m-point-details__header-label {
    display: none;
  }
  .m-point-details__header-name {
    display: block;
  }
  .m-point-details__name {
    opacity: 0;
    height: 0;
    margin-bottom: -10px;
  }
  .m-point-details__controls {
    display: block;
  }
  .m-point-details__btn-select {
    margin-top: 20px;
    display: block;
    width: 100%;
  }
}

.m-point-info {
  font-size: 12px;
  line-height: 1.16667;
}

.m-point-info__name {
  color: #616567;
  font-weight: bold;
  line-height: 1.25;
}

.m-point-info__has-icon {
  padding-left: 30px;
  background: left top no-repeat;
}

.m-point-info__address {
  background-image: url("/local/includes/images/cart/address.png");
}

.m-point-info__hours {
  background-image: url("/local/includes/images/cart/hours.png");
}

.m-point-info__phone {
  background-image: url("/local/includes/images/cart/phone.png");
}

.m-point-info__delivery {
  background-image: url("/local/includes/images/cart/delivery.png");
}

.m-point-info__line + .m-point-info__line {
  margin-top: 10px;
}

.m-selected-point {
  display: none;
  padding: 30px 0;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.m-selected-point_visible {
  display: flex;
}

.m-selected-point__info {
  padding-right: 20px;
}

.m-selected-point__btn-change {
  padding: 12px 17px;
  min-width: 200px;
}

.m-selected-point__item-title {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-selected-point {
    padding: 20px 20px 0;
  }
  .m-selected-point_visible {
    display: block;
  }
  .m-selected-point__info {
    padding-right: 0;
  }
  .m-selected-point__btn-change {
    width: 100%;
    margin-top: 20px;
  }
}

.m-form__input {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 40px;
  box-shadow: none;
  border: 1px solid #c9ced1;
  margin-top: 13px;
  margin-bottom: 25px;
  color: #000;
  font-size: 12px;
}

.m-form__field {
  font-weight: bold;
  line-height: 14px;
  font-size: 13px;
}

.m-form__area {
  min-height: 80px;
  resize: vertical;
  padding: 7px;
}

.m-form__check {
  margin-bottom: 22px;
}

.m-form__check-input {
  display: none;
}

.m-form__check-label {
  display: block;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
}

.m-form__check-label::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #616567;
  width: 18px;
  height: 18px;
}

.m-form__check-input:checked ~ .m-form__check-label::before {
  background: #616567 url("data:image/svg+xml,%3csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M1 5L5 9L13 1' stroke='white' stroke-width='2'/%3e %3c/svg%3e") no-repeat;
  background-position: 1px 2px;
}

.m-form__select {
  margin: 13px 0 25px;
}

.m-form-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: #fff right 10px center no-repeat url("data:image/svg+xml,%3csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath d='M1 1L6.5 6L12 1' stroke='%23616567' stroke-width='2'/%3e %3c/svg%3e") !important;
  height: 40px;
}

.m-form-contacts {
  max-width: 538px;
}

.m-form-contacts__cols {
  display: flex;
  justify-content: space-between;
}

.m-form-contacts__col-firstname {
  flex-grow: 1;
  max-width: 200px;
}

.m-form-contacts__col-lastname {
  max-width: 315px;
}

.m-form-contacts__field {
  max-width: 315px;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .m-form-contacts__cols {
    display: block;
  }
  .m-form-contacts__col-firstname {
    max-width: none;
  }
  .m-form-contacts__field {
    max-width: none;
  }
}

.m-form-address {
  max-width: 538px;
}

.m-form-address__cols {
  display: flex;
  justify-content: space-between;
  max-width: 397px;
}

.m-form-address__col {
  max-width: 117px;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .m-form-address__cols {
    flex-wrap: wrap;
    max-width: none;
  }
  .m-form-address__col {
    max-width: calc((100% - 20px) / 2);
  }
}

.m-order-complete {
  max-width: 737px;
  margin: 0 auto 51px;
  border: 1px solid #f5f7f8;
  padding: 40px;
}

.m-order-complete__complete-icon {
  margin-bottom: 20px;
}

.m-order-complete__header {
  border-bottom: 1px solid #f5f7f8;
  text-align: center;
  color: #005587;
  margin-bottom: 30px;
}

.m-order-complete__title {
  font-size: 24px;
  line-height: 1.41667;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.m-order-complete__subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .m-order-complete {
    border: none;
    padding: 0;
  }
  .m-order-complete__header {
    text-align: left;
  }
  .m-order-complete__complete-icon {
    display: none;
  }
  .m-order-complete__title {
    font-size: 18px;
    line-height: 1.33333;
  }
  .m-order-complete__subtitle {
    font-size: 14px;
    line-height: 1.71429;
  }
}

.m-order-info {
  font-size: 14px;
}

.m-order-info + .m-order-info {
  margin-top: 30px;
}

.m-order-info__title {
  color: #616567;
  font-size: 18px;
  line-height: 1.22222;
  font-weight: bold;
  margin-bottom: 18px;
}

.m-order-info__line {
  margin-bottom: 16px;
  display: flex;
}

.m-order-info__value {
  margin-left: auto;
  font-weight: bold;
}

.m-order-info__name_bold {
  font-weight: bold;
}

.m-order-info__line_strong {
  color: #333;
  font-size: 18px;
  line-height: 1.22222;
}

.m-order-info__cart {
  margin-top: -10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .m-order-info__line {
    display: block;
  }
  .m-order-info__name_bold {
    font-weight: normal;
  }
  .m-order-info__name_total {
    font-weight: bold;
  }
  .m-order-info__line_strong {
    font-size: 16px;
    color: #333;
  }
}

.m-back-to-catalog {
  display: block;
  margin: auto;
  width: 340px;
  margin-bottom: 50px;
  font-size: 12px;
  padding: 15px;
}

.m-back-to-catalog:hover {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-back-to-catalog {
    width: 100%;
  }
}

.m-popup {
  text-align: center;
  padding: 40px;
}

.m-popup__img {
  margin-bottom: 20px;
}

.m-popup__title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
  color: #005587;
  margin-bottom: 20px;
}

.m-popup__list {
  display: inline-block;
  margin-bottom: 20px;
}

.m-popup__note {
  padding-left: 23px;
  background: no-repeat left center url("data:image/svg+xml,%3csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3ccircle cx='6.5' cy='6.5' r='6' stroke='%23ED1C24'/%3e %3crect x='6' y='9' width='1' height='1' fill='%23ED1C24'/%3e %3crect x='6' y='3' width='1' height='5' fill='%23ED1C24'/%3e %3c/svg%3e");
  display: inline-block;
}

.m-popup__link-favorite {
  font-weight: bold;
}

.m-popup__controls {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.m-popup__btn-proceed {
  flex-basis: 262px;
}

.m-popup__btn-cancel {
  color: #616567;
  border: 1px solid #c0c4c6;
  flex-basis: 231px;
}

@media screen and (max-width: 767px) {
  .m-popup {
    padding: 20px;
    text-align: left;
    font-size: 12px;
  }
  .m-popup__img {
    width: 31px;
  }
  .m-popup__list-item + .m-popup__list-item {
    margin-top: 10px;
  }
  .m-popup__controls {
    margin-top: 24px;
    display: block;
    font-size: 14px;
  }
  .m-popup__btn-proceed {
    display: block;
    width: 100%;
  }
  .m-popup__btn-cancel {
    display: block;
    width: 100%;
    margin-top: 16px;
  }
}

.m-instock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ebeff1;
}

.m-instock-item_not-available {
  opacity: .5;
}

.m-instock-item__img {
  width: 60px;
  height: 86px;
  flex-shrink: 0;
}

.m-instock-item__name {
  width: 160px;
  flex-shrink: 0;
  font-size: 12px;
}

.m-instock-item__name-link {
  color: inherit;
}

.m-instock-item__name-value {
  display: block;
}

.m-instock-item__price {
  display: block;
}

.m-instock-item__params {
  width: 94px;
  font-size: 11px;
}

.m-instock-item__color-circle {
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .m-instock-item {
    flex-wrap: wrap;
  }
  .m-instock-item__name {
    font-size: 14px;
    width: calc(100% - 60px);
    padding-left: 20px;
  }
  .m-instock-item__params {
    width: auto;
    display: flex;
    padding: 5px 0;
  }
  .m-instock-item__param + .m-instock-item__param {
    margin-left: 20px;
  }
}
