/* Form */
.price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.price-old {
  position: relative;
}

.price-old:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.price-new {
  color: #d03232;
}

.order-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form {
  display: block;
}

input[type="text"],
input[type="tel"],
select {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  min-width: 0;
  background: #fff;
  border: 2px solid #9b9b9b;
}

.button-submit {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  margin: 20px auto;
  background: #2db7b538;
  border: 2px solid #9b9b9b;
  border-radius: 5px;
  cursor: pointer;
}

.button-submit:hover {
  background: #2db7b538;
  border-color: #2db7b5;
  color: #2db7b5;
}
