* {
  box-sizing: border-box;
}
.order__wrapper {
  margin: 0 auto;
  padding: 10px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: #fff;
}
.order__img.order__img {
  width: 100%;
  max-width: 300px !important;
}
.order__title {
  text-align: center;
  font-size: 20px;
}
.price__wrapper {
  font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.price__old {
  text-decoration: line-through;
}
.price__new {
  font-weight: 700;
  color: red;
}
.order__countdown-title {
  font-size: 20px;
  text-align: center;
}
.timer__wrapper {
  font-size: 20px;
  font-weight: 700;
  color: red;
}
.order__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  border: 3px dashed red;
  background-color: #f2f3f6;
}
.order__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.order__input {
  width: 100%;
  padding: 15px 10px;
	font-size: 20px;
}
.order__form-btn, .bottom__button {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
  border: none;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.bottom__button {
  max-width: 450px;
}
.order__subtitle {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: red;
  text-transform: uppercase;
}
.order__countdown {
  padding: 20px;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px -1px 0px rgb(0, 0, 0), 0px -1px 0px rgb(0, 0, 0),
    0px 1px 0px rgb(0, 0, 0), 0px 1px 0px rgb(0, 0, 0),
    -1px 0px 0px rgb(0, 0, 0), 1px 0px 0px rgb(0, 0, 0),
    -1px 0px 0px rgb(0, 0, 0), 1px 0px 0px rgb(0, 0, 0),
    -1px -1px 0px rgb(0, 0, 0), 1px -1px 0px rgb(0, 0, 0),
    -1px 1px 0px rgb(0, 0, 0), 1px 1px 0px rgb(0, 0, 0),
    -1px -1px 0px rgb(0, 0, 0), 1px -1px 0px rgb(0, 0, 0),
    -1px 1px 0px rgb(0, 0, 0), 1px 1px 0px rgb(0, 0, 0);
  background-color: red;
}
