@media screen and (max-width: 1200px) {
  
  .wrapper {
    flex-direction: column-reverse;
  }

  .price-panel {
    width: 100%;
    border: none;
    border-top: 5px solid var(--textColor);
    border-bottom: 5px solid var(--textColor);
  }

  .price-panel__price-list {
    align-items: flex-start;
  }

}

@media screen and (max-width: 1000px) {
  
  .form {
    width: 600px;
  }

  .form__form-input {
    width: 50%;
  }

}

/* @media screen and (max-width: 700px) {

  .wrapper {
    flex-direction: column-reverse;
  }

  .price-panel {
    width: 100%;
    border: none;
    border-top: 5px solid var(--textColor);
    border-bottom: 5px solid var(--textColor);
  }

  .price-panel__price-list {
    align-items: flex-start;
  }

} */

@media screen and (max-width: 650px) {

  .form {
    width: 450px;
  }

  .form__input-container {
    flex-direction: column;
    gap: 25px;
  }

  .form__form-input {
    width: 100%;
  }

}

@media screen and (max-width: 500px) {

  .market-block {
    width: 100%;
  }

  .market-block__title-block {
    margin-bottom: 15px;
  }

  .form {
    width: 350px;
  }

  .form__form-input {
    height: 75px;
  }

  .form__form-input {
    width: 100%;
  }

}

@media screen and (max-width: 400px) {

  .form {
    width: 300px;
  }

}