.order {
  width: 80%;
  /* max-width: 400px; */
  margin: 0 auto;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.order > * {
  margin-bottom: 10px;
}
.order > *:last-child {
  margin-bottom: 0;
}
.order_product {
  display: flex;
  justify-content: center;
}
.order_product img {
  max-width: 250px;
}
.order_prices {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.order_prices-old {
  color: red;
  font-weight: 600;
  text-decoration: line-through;
  font-size: 20px;
  text-align: center;
}
.order_prices-new {
  color: green;
  font-weight: 800;
  font-size: 30px;
  text-align: center;
}
.order_form {
  margin: 0 auto;
  width: 55%;
  padding: 40px 20px;
  background-color: rgba(7, 70, 130, 0.1);
  border-radius: 2px;
  height: 520px!important;
}
.order_form label {
  display: block;
  text-align: center;
}
.order_form input {
  display: block;
  width: 90%;
  padding: 10px;
  border: 1px solid grey;
  margin: 0 auto;
  margin-bottom: 10px;
  border-radius: 2px;
}
.order_form button {
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 20px 10px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 2px;
  background-color: rgb(7, 70, 130);
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s;
}
.order_form button:hover {
  background-color: #0a60b2;
}
.order_form button:disabled {
  background-color: #ccc;
}/*# sourceMappingURL=order.css.map */

@media (max-width: 991px) {
  .order_form {
    font-size: 16px;
    height: 680px!important;
  }
  .order_prices {
    font-size: 16px;
  }
  .title-small-2 {
    font-size: 16px;
  }
  .order_form button {
    font-size: 16px;
    height: auto;
}
}
@media (max-width: 580px) {
  .order_form {
    width: 70%!important;
  }
}
@media (max-width: 390px) {
  .order_form {
    width: 80%!important;
    height: 710px!important;
  }
}