@charset "UTF-8";
.field-form {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.field-form label {
  width: 100%;
  height: auto;
  font-size: clamp(15px, 1.2vw, 25px);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.field-form input, .field-form textarea {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 10px;
  border: solid 2px #e9e9e9;
  border-radius: 12px;
  padding: 12.5px 15px;
  font-size: clamp(15px, 1.2vw, 25px);
  font-weight: 400;
  color: #1b1b1b;
  background-color: #FFFFFF;
  outline: none;
  font-family: "Inter", sans-serif;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.field-form input:hover, .field-form input:focus, .field-form textarea:hover, .field-form textarea:focus {
  outline: none;
}
.field-form input:focus, .field-form textarea:focus {
  border: solid 2px #44D58C;
}
.field-form input[disabled] {
  background-color: #f7f7f7;
}
.field-form textarea {
  resize: none;
  height: auto;
  min-height: 200px;
}
.field-form textarea::-webkit-scrollbar {
  width: 8px; /* Tamaño del scroll en vertical */
  height: 8px; /* Tamaño del scroll en horizontal */
  display: none; /* Ocultar scroll */
}
.field-form--select {
  position: relative;
  z-index: 2;
}
.field-form--select .arrow {
  position: absolute;
  z-index: 1;
  right: 15px;
  top: calc(70% - 12.5px);
  width: 40px;
  height: 25px;
  border: none;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgb(255, 234, 196);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.field-form--select .arrow:hover, .field-form--select .arrow:focus {
  outline: none;
  cursor: pointer;
  background-color: rgb(253, 228, 181);
}
.field-form--select .arrow svg {
  width: 12px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  pointer-events: none;
}
.field-form--select .svg-selected svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.field-form--select > .cargo-options {
  position: absolute;
  z-index: 2;
  bottom: -200px;
  left: 0;
  right: 0;
  border: solid 2px #e9e9e9;
  border-radius: 10px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFFFFF;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.field-form--select > .cargo-options button {
  border: none;
  padding: 10px;
  background-color: transparent;
  -webkit-column-rule: #000000;
     -moz-column-rule: #000000;
          column-rule: #000000;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 25px);
  text-align: left;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.field-form--select > .cargo-options button:hover, .field-form--select > .cargo-options button:focus {
  cursor: pointer;
  color: #e6670d;
  outline: none;
  background-color: rgb(253, 228, 181);
}
.field-form--select > .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#otro-field {
  display: none;
}

@media (min-width: 1200px) {
  .field-form {
    margin-top: 1vw;
  }
  .field-form input, .field-form textarea {
    margin-top: 0.5vw;
    border: solid 0.21vw #e9e9e9;
    border-radius: 1vw;
    padding: 1vw;
  }
  .field-form textarea {
    width: 100%;
    height: auto;
    min-height: 10vw;
    resize: none;
  }
  .field-form--select {
    position: relative;
    z-index: 2;
  }
  .field-form--select .arrow {
    right: 1.5vw;
    top: calc(70% - 1vw);
    width: 4vw;
    height: 2vw;
    border-radius: 0.5vw;
  }
  .field-form--select .arrow svg {
    width: 1.2vw;
  }
  .field-form--select > .cargo-options {
    bottom: -18vw;
    left: 0;
    right: 0;
    border: solid 0.2vw #e9e9e9;
    border-radius: 1vw;
  }
  .field-form--select > .cargo-options button {
    border: none;
    padding: 1vw;
  }
  .field-form--select > .show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1660px) {
  .field-form {
    margin-top: 15px;
  }
  .field-form input, .field-form textarea {
    margin-top: 10px;
    border: solid 5px #e9e9e9;
    border-radius: 20px;
    padding: 20px;
  }
  .field-form textarea {
    width: 100%;
    height: auto;
    min-height: 300px;
    resize: none;
  }
  .field-form--select {
    position: relative;
    z-index: 2;
  }
  .field-form--select .arrow {
    right: 20px;
    top: calc(70% - 20px);
    width: 60px;
    height: 40px;
    border-radius: 15px;
  }
  .field-form--select .arrow svg {
    width: 20px;
  }
  .field-form--select > .cargo-options {
    bottom: -370px;
    left: 0;
    right: 0;
    border: solid 5px #e9e9e9;
    border-radius: 20px;
  }
  .field-form--select > .cargo-options button {
    border: none;
    padding: 20px;
  }
  .field-form--select > .show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}