.modal_form {
  background-color: #121212 !important;
  color: white;
  max-height: 600px;
  width: 100%;
  max-width: 500px;
  display: none;
  padding: 30px;
  border-radius: 4px;
  margin: 20px;
}
.modal_title h1 {
  margin-bottom: 0.1rem;
}

.modal_title h5 {
  margin-top: unset;
}
.form_container input{
  width: 100%;
  margin-bottom: 16px;
}
.form_container div input {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  height: 30px;
  font-size: 18px;
  outline: none;
}
.modal_form label {
  font-family: Nobel-Book;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 16px;
}

.form_container2 {
  line-height: 36px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_container2 select {
  display: inline-block;
  border-radius: 5px;  
  font-size: 16px;
}
.form_container2 option{
  width: 100%;
}
#slt_model{  
  width: 120%;  
  background-color: #121212 !important;
  color:white;
}
#prz_compra{  
  width: 110%;
  background-color: #121212 !important;
  color:white;
  padding-right: 5px;
}

.enviar {
  margin-top: 20px;
  border: 2px solid white;
  padding: 8px 20px;
  padding-top: 10px;
  text-decoration: none;
  color: white;
  transition: 0.5s;
  background: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.enviar:hover{
  background-color: white;
  color: black;
}

.form_container div input:invalid:focus{
  border-bottom: 3px solid red;
}

@media (max-width: 980px) {
  .modal_form {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    margin: 0;
    padding: 25px;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
}