.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 9999999;
  padding: 30px 20px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px 63px;
  width: 100%;
  max-width: 506px;
}

.close_add_adress {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") center/15px no-repeat, #EEEEEE;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-order__section.error h3.main-order__title {
  border-bottom: 1px solid #e92f48;
  color: #E92F49;
}

.login__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #000000;
  text-align: center;
}

.login__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #000000;
  margin-top: 20px;
}

.login__form {
  margin-top: 30px;
}

.login__row {
  position: relative;
  padding-top: 25px;
}

.login__row:not(:first-child) {
  margin-top: 20px;
}

.login__row._focus .login__label {
  top: 0;
  font-size: 12px;
  line-height: 15px;
}

.login__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #9B9B9B;
  position: absolute;
  top: 25px;
  left: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login__input {
  padding-bottom: 15px;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  border-bottom: 1px solid #BDBDBD;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.login__input:focus {
  border-color: #000000;
}

.login__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 15px;
}

.login__forgot {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #009BF9;
}

.login__footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.login__footer._code {
  margin-top: 10px;
}

.login__btn {
  background: #111;
  width: 100%;
  max-width: 100%;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 999px;
}

.login__proseed {
  border: 1px solid #000000;
  width: 100%;
  max-width: 100%;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 99px;
}

.login__back-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #9B9B9B;
}

.login__back-login::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../img/icons/popup-back.svg) center/cover no-repeat;
}

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

.login__check .checkbox__text:before {
  margin: 0px 10px 0px 0px;
}

.under-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
}

.under-login__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px) / 2);
          flex: 0 0 calc((100% - 20px) / 2);
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  background: #111;
  border-radius: 12px;
}

.under-login__btn._login {
  color: #000000;
  background: #fff;
  border: 1px solid #000000;
}

.code-login {
  padding-top: 5px;
}

.code-login__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.code-login__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
          flex: 0 0 calc((100% - 20px * 3) / 4);
  padding-top: 25px;
}

.code-login__input {
  border-bottom: 1px solid #BDBDBD;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #000000;
}

.code-login__input:focus {
  border-color: #000;
}

.code-login__timer {
  margin-top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #9B9B9B;
}

.code-login__send {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #E92F48;
  display: block;
  margin-top: 10px;
}

.add-address__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #000000;
  text-align: center;
}

.add-address__form {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.add-address__row {
  position: relative;
  padding-top: 25px;
}

.add-address__row._focus .add-address__label {
  top: 0;
  font-size: 12px;
  line-height: 15px;
}

.add-address__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #9B9B9B;
  position: absolute;
  top: 25px;
  left: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.add-address__input {
  padding-bottom: 15px;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  border-bottom: 1px solid #BDBDBD;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.add-address__input:focus {
  border-color: #000000;
}

.add-address__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.add-address__other .add-address__row {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
          flex: 0 0 calc((100% - 20px * 2) / 3);
}

.add-address__btn {
  background: #E92F48;
  width: 100%;
  max-width: 100%;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  padding: 10px;
  margin-top: 10px;
}

.map-order {
  padding: 0px 0px;
}

.map-order .popup__body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.map-order__head {
  padding: 15px 40px;
  background: #fff;
  border-bottom: 1px solid #EAEAEA;
}

.map-order__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #000000;
  cursor: pointer;
}

.map-order__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
}

.map-order__icon img {
  width: 100%;
  max-width: 100%;
}

.map-order__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

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

.map-order__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  max-height: 100%;
}

.map-order__block {
  min-height: 100%;
  max-height: 100%;
}

.map-order__block.map-order-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 440px;
          flex: 0 0 440px;
  background: #FFFFFF;
  -webkit-box-shadow: 6px 0px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 6px 0px 12px rgba(0, 0, 0, 0.06);
}

.map-order__block.map-order-map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.map-order__block.map-order-map._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation-map-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #EAEAEA;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding: 0px 20px 10px;
}

.navigation-map-order__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navigation-map-order__item._active {
  color: #E92F48;
}

.navigation-map-order__item._active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #E92F48;
}

.map-order-list {
  padding: 10px 40px;
  max-height: 100%;
  overflow-y: auto;
}

.map-order-list::-webkit-scrollbar {
  width: 10px;
}

.map-order-list::-webkit-scrollbar-thumb {
  background: #C0C0C0;
}

.map-order-list__item {
  padding: 20px 40px;
  margin: 0px -40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.map-order-list__item._active {
  background: #F8F8F8;
}

.map-order-list__item:not(._active) .map-order-list__other,
.map-order-list__item:not(._active) .map-order-list__gallery,
.map-order-list__item:not(._active) .map-order-list__btn {
  display: none;
}

.map-order-list__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: #EAEAEA;
}

.map-order-list__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  cursor: pointer;
}

.map-order-list__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.map-order-list__address {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.map-order-list__take {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #0E9C86;
}

.map-order-list__other {
  margin-top: 15px;
}

.map-order-list__btn {
  background: #E92F48;
  min-height: 55px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.other-map-order-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.other-map-order-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.other-map-order-list__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #9B9B9B;
}

.other-map-order-list__value {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.gallery-map-order-list {
  position: relative;
}

.gallery-map-order-list__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  height: 130px;
  position: relative;
}

.gallery-map-order-list__item:not(:last-child) {
  margin-right: 10px;
}

.gallery-map-order-list__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-map-order-list__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  height: 40px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gallery-map-order-list__arrow.gallery-map-order-list-arrow-next {
  left: auto;
  right: 0;
}

.gallery-map-order-list__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.gallery-map-order-list__arrow img {
  width: 22px;
  max-width: 22px;
}

.map-order-map {
  position: relative;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.map-order-map__main {
  position: relative;
  min-height: 300px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.map-order-map__main iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.map-order-map__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: none;
}

.map-order-map__list._view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-map-order-map {
  padding: 20px;
  background: #FFFFFF;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.info-map-order-map__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.info-map-order-map__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  cursor: pointer;
}

.info-map-order-map__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.info-map-order-map__address {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  max-width: 240px;
}

.info-map-order-map__take {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #0E9C86;
}

.info-map-order-map__btn {
  background: #E92F48;
  min-height: 55px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  max-width: 230px;
}

.other-info-map-order-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  row-gap: 15px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding-bottom: 5px;
}

.other-info-map-order-map__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.other-info-map-order-map__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #9B9B9B;
}

.other-info-map-order-map__value {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.gallery-info-map-order-map {
  position: relative;
}

.gallery-info-map-order-map__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  height: 130px;
  position: relative;
}

.gallery-info-map-order-map__item:not(:last-child) {
  margin-right: 10px;
}

.gallery-info-map-order-map__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-info-map-order-map__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  height: 40px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gallery-info-map-order-map__arrow.gallery-info-map-order-map-arrow-next {
  left: auto;
  right: 0;
}

.gallery-info-map-order-map__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.gallery-info-map-order-map__arrow img {
  width: 22px;
  max-width: 22px;
}

