.how-to-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order-step {
  margin-right: 2em;
  margin-bottom: 2em;
  max-width: 50%;
}

.order-step img {
  width: 600px;
  max-height: 300px;
  margin-bottom: 0.5em;
  -webkit-box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.order-step img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.order-step p {
  margin-bottom: 0;
}

/* Add Animation */
.modal-content {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (max-width: 1300px) {
  .order-step {
    max-width: 500px;
  }
  .order-step img {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .how-to-order {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .order-step {
    max-width: 750px;
    margin-right: 0;
  }
}

@media (max-width: 500px) {
  span {
    font-size: 0.9em !important;
  }
}
/*# sourceMappingURL=cara-belanja.css.map */