@charset "utf-8";
/* CSS Trotec landing 2024 */
#overlay {
  background: #0005;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 7000;
}
#modal {
  background: #FFF;
  font-size: .875rem; /* font-size: 1rem; */
  width: 90%;
  max-width: 953px;
  border-radius: 6px;
  overflow: hidden;
  position: absolute;
  z-index: 7010;
  top: 0;
  left: 10%;
}
#modal h2 {
  background: #21509A;
  color: #FFF;
  font-size: 1.0625rem;
  display: block;
  padding: 12px 16px 14px 16px;
}
#modal .cerrarModal {
  color: #FFF;
  font-weight: 700;
  position: absolute;
  top: 12px;
  right: 14px;
}
#modal .cerrarModal:hover {
  color: #F7E91C;
}
#datosConsulta {
  padding: 17px 16px 28px 16px;
}
#datosConsulta p {
  margin: 0 0 10px 0;
}
#datosConsulta p:last-child {
  margin: 0 0 14px 0;
}
#datosConsulta li {
  padding: 0 0 0 18px;
  position: relative;
}
#datosConsulta li::before {
  content: '';
  background: var(--color-gris3);
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
}
#datosConsulta input {
  text-align: right;
  width: 128px;
  height: 26px;
  padding: 2px 7px;
  border: solid 1px #B3B3B3;
}
#datosForm {
  padding: 0 16px 24px 16px;
}
#datosForm label {
  background: #FFF;
  color: #666;
  padding: 0 4px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s ease;
  position: absolute;
  left: 18px;
  top: 50%;
}
#datosForm label > span {
  color: red;
}
#datosForm input, #datosForm textarea {
  background: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: .875rem;
  width: 100%;
  border: solid 1px #CCC;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  outline: none;
}
#datosForm input {
  padding: 5px 20px;
  height: 45px;
}
#datosForm textarea {
  padding: 17px 20px;
  resize: vertical;
  min-height: 100px;
}
#datosForm input:focus, #datosForm textarea:focus {
  border-color: #0333;
}
#datosForm textarea + label {
  top: 23px;
}
#datosForm input:focus + label, #datosForm input:not(:placeholder-shown) + label, #datosForm textarea:focus + label, #datosForm textarea:not(:placeholder-shown) + label {
  color: #333;
  top: 0;
  font-size: 12px;
  font-weight: 700;
}
#datosForm p {
  padding: 0 0 18px 0;
}
#datosForm p a {
  color: var(--color-gris3);
  text-decoration: underline;
}
#datosForm button {
  background: #F7E91C;
  color: var(--color-gris3);
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 47px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
#datosForm button:hover {
  opacity: .7;
}
.labelMaterial {
  width: 100%;
  margin: 0 0 15px 0;
  position: relative;
  font-family: sans-serif;
}
/* oculta overlay y modal */
#overlay, #modal {
  display: none;
}