.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 10px;
  background-color: #FF4C4F;
  color: #fff;
}

body.open-order .shop-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.shop-menu {
  position: fixed;
  right: 0;
  top: 0;
  max-width: 380px;
  width: 100%;
  height: 100vh;
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  overflow: auto;
  z-index: 100;
  box-shadow: inset 0px 0px 21px -16px rgba(0, 0, 0, 0.75);
  transition: all 0.5s ease-in-out;
}
.shop-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 150px;
  background-color: #75AFD5;
  transform: translateY(-50%);
  cursor: pointer;
}
.shop-menu__close path {
  fill: #fff;
}
.shop-menu__wrap {
  position: relative;
}
.shop-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
  color: #000;
}
.shop-menu__title {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.17px;
}
.shop-menu__item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
}
.shop-menu__item-img {
  margin-right: 15px;
  width: 100px;
  height: 83px;
}
.shop-menu__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop-menu__item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  flex: 1;
}
.shop-menu__item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18px;
  line-height: 18px;
  color: #000;
}
.shop-menu__checkout {
  margin: 20px 40px 0;
}
.shop-menu__checkout-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  color: #000;
}
.shop-menu__checkout > label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px auto;
  width: 100%;
}
.shop-menu__checkout > label span {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 14px;
  color: #000;
}
.shop-menu__checkout > label input, .shop-menu__checkout > label select {
  padding: 8px 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.11px;
  line-height: 11px;
  background-color: #ffffff;
}
.shop-menu__checkout > label input::placeholder, .shop-menu__checkout > label select::placeholder {
  color: #a1a1a1;
}
.shop-menu__checkout > label textarea {
  padding: 8px 10px;
  width: 100%;
  height: 70px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.11px;
  line-height: 18px;
  background-color: #ffffff;
  resize: none;
  overflow-y: auto;
}
.shop-menu__checkout-size {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px auto;
  width: 100%;
}
.shop-menu__checkout-size input {
  margin: 5px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.11px;
  line-height: 11px;
  background-color: #ffffff;
  width: calc(100% / 3 - 10px);
}
.shop-menu__checkout-size input::placeholder {
  color: #a1a1a1;
}
.shop-menu__checkout-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px auto 20px;
  width: 100%;
}
.shop-menu__checkout-confirmation-btn {
  display: block;
  margin-top: auto;
  padding: 15px 10px;
  max-width: 100%;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.28px;
  background-color: #FF4C4F;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 480px) {
  .shop-menu {
    max-width: 280px;
  }
  .shop-menu__item {
    flex-direction: column;
    padding: 10px;
  }
  .shop-menu__item-img {
    margin-right: 8px;
    width: 80px;
  }
  .shop-menu__item-title {
    font-size: 14px;
    text-align: center;
  }
  .shop-menu__checkout {
    margin: 0 35px;
  }
  .shop-menu__checkout-size input {
    margin: 2px;
    width: 100px;
  }
  .shop-menu__checkout-confirmation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
  }
}
.shop-menu__success {
  margin-top: 20px;
  padding: 0 10px;
  text-align: center;
}
.shop-menu__success h4 {
  margin: 10px 0;
  font-size: 24px;
}
.shop-menu__success span {
  font-size: 18px;
}