form {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 30px; */
  margin-top: 30px;
}
h2 {
  font-size: 3rem;
  color: var(--blue-strong);
}
label {
  width: 100%;
  font-size: 1.6rem;
}
select,
.grupo input {
  width: 100%;
  height: 50px;
  font-size: 1.6rem;
  padding: 10px;
}
.det-cotizacion {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.cot-container,
cotizacion-component,
.cotizacion-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e7e7e7;
  gap: 20px;
  padding: 10px;
  border-radius: 20px;
}
.cotizacion-wrapper {
  border-bottom: 1px solid black;
  box-shadow: 2px 2px 10px 0px black;
}
.btnContainer{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.remove-cotizacion{
  border: none;
  background: transparent;
  cursor: pointer;
}
.remove-cotizacion img, .add-cotizacion img{
  width: 40px;
}
.add-cotizacion{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue-strong);
}
.add-cotizacion:hover{
 background: var(--blue-strong);
  color: white;
}
.inputs-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}
.grupo {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.servicios-data-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: start;
  align-items: center;
  background-image: url(../assets/images/fondos/fondo1920x2100.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom;
}
.servicios,
.datos-envio {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.servicios-inputs,
.envio-inputs {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.servicios-inputs input:first-child,
.envio-inputs input:first-child,
.envio-inputs input:nth-child(6) {
  width: 100%;
  height: 70px;
  border-radius: 20px;
  padding: 20px;
  font-size: 2rem;
  color: var(--blue-strong);
}
.servicios-inputs input,
.envio-inputs input {
  width: 45%;
  height: 70px;
  border-radius: 20px;
  padding: 20px;
  font-size: 2rem;
  color: var(--blue-strong);
}
.servicios-inputs input::placeholder,
.envio-inputs input::placeholder,
.envio-inputs textarea::placeholder {
  font-size: 2rem;
  color: var(--blue-strong);
  font-weight: bold;
}
.envio-inputs textarea {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
  font-size: 2rem;
  color: var(--blue-strong);
}
.btnEnvio {
  width: 45%;
  height: 100px;
  background: var(--blue-strong);
  color: white;
  text-decoration: none;
  border: none;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 30px;
  margin-bottom: 50px;
}
.btnEnvio:hover {
  background: white;
  color: var(--blue-strong);
  text-decoration: none;
  border: 3px solid var(--blue-strong);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  width: 50%;
  height: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--blue-light);
  color: white;
  text-shadow: 7px 7px 6px rgb(106 78 1 / 50%);
  text-align: center;
  border-radius: 30px;
  gap: 30px;
  padding: 25px;
}
.modal-text {
  font-size: 3rem;
  font-weight: bold;
}
.modal-btn {
  width: 25%;
  height: 25%;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  font-size: 3rem;
  background-color: white;
  color: var(--blue-strong);
}
.modal-btn:hover {
  background-color: var(--blue-light);
  color: var(--blue-strong);
}
.direnv{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.direnv span{
  font-size: 1.6rem;
}
/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  h2 {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
  }
  .servicios-data-container {
    padding: 10px;
  }
  .det-cotizacion,
  .servicios-inputs,
  .envio-inputs,
  .servicios-inputs input,
  .envio-inputs input {
    width: 100%;
  }
  .info-container {
    flex-direction: column;
    padding: 0;
  }
  .grupo {
    width: 100%;
    padding: 10px;
  }
  .btnEnvio {
    width: 100%;
    height: 65px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
 
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
  .info-container{
    gap: 10px;
  }
  label{
    font-size: 1.3rem;
  }
}
