/* Form styles - design from screenshot */
.matcha-order {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 25px 15px 30px;
  max-width: 1025px;
  margin: 0 auto;
}
.matcha-order__product {
  max-width: 350px;
  width: 100%;
  flex-shrink: 0;
}
.matcha-order__form {
  max-width: 360px;
  width: 100%;
  flex-shrink: 0;
}
.matcha-order .form {
  width: 100%;
}
.matcha-order .form__title {
  font-size: 30px;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}
.matcha-order .form__timer {
  margin-bottom: 20px;
}
.matcha-order .form__price {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-end;
}
.matcha-order .form__field {
  position: relative;
}
.matcha-order .form__field:not(:last-of-type) {
  margin-bottom: 10px;
}
.matcha-order .form__label {
  font-size: 12px;
  line-height: 20px;
  display: block;
  color: rgba(0,0,0,.5);
  margin-bottom: 4px;
}
.matcha-order .form__input {
  width: 100%;
  box-sizing: border-box;
  height: 46px;
  line-height: 46px;
  color: #000;
  font-size: 16px;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border: 2px solid #a8a8a8;
  outline: 0;
  padding: 0 16px;
  background: #fff;
}
.matcha-order .form__input::-webkit-input-placeholder {
  color: #c4c4c4;
  font-size: 16px;
}
.matcha-order .form__input::placeholder {
  color: #c4c4c4;
  font-size: 16px;
}
.matcha-order .form__input.error {
  border-color: #ea2700;
}
.matcha-order .form__input:focus {
  border-color: #040404;
}
.matcha-order .form__error {
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: translateY(50%);
  color: #ea2700;
  display: none;
  font-size: 12px;
  font-weight: 300;
  margin-top: 3px;
}
.matcha-order .form__button {
  width: 100%;
  margin-top: 20px;
  display: inline-block;
  outline: 0;
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: 144px;
  text-transform: uppercase;
  color: #fff;
  background: #ec008c;
  font-weight: 700;
  font-size: 28px;
  line-height: 53px;
  padding: 3px 15px;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  transition: all .2s;
}
.matcha-order .form__button:hover {
  box-shadow: 0 17.81px 49.48px 0 rgba(216,82,194,.46);
  background: #a50162;
}
.matcha-order .timer {
  text-align: center;
  color: #ec008c;
  background: #fef4ff;
  padding: 15px;
  border-radius: 8px;
}
.matcha-order .timer__block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.matcha-order .timer__col {
  width: 62px;
}
.matcha-order .timer__num {
  font-weight: 800;
  font-size: 50px;
  line-height: 120%;
  display: block;
}
.matcha-order .timer__dots {
  font-weight: 700;
  font-size: 36px;
  line-height: 14px;
  margin: 0 12px;
}
.matcha-order .price {
  font-weight: 500;
  line-height: 1;
}
.matcha-order .price .al-raw-currency {
  vertical-align: top;
  margin-right: 2px;
}
.matcha-order .price__old {
  font-size: 34px;
  color: #c3c3c3;
  position: relative;
  display: inline-block;
}
.matcha-order .price__old .al-raw-currency {
  font-size: 20px;
}
.matcha-order .price__old::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  height: 3px;
  left: -3px;
  right: -3px;
  background: #ec008c;
  transform: rotate(-17deg);
}
.matcha-order .price__new {
  font-size: 56px;
  color: #ec008c;
}
.matcha-order .price__new .al-raw-currency {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .matcha-order {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .matcha-order__product {
    max-width: 280px;
  }
}
