@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";

/* src/styles.css */
* {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
*:hover {
  scrollbar-color: rgba(0, 85, 140, 0.2) transparent;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}
*:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 85, 140, 0.2);
}
*:hover::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 85, 140, 0.4);
}
@supports (scrollbar-color: transparent transparent) {
  * {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: scrollbar-color 0.3s ease;
  }
  *:hover {
    scrollbar-color: rgba(0, 85, 140, 0.2) transparent;
  }
}
@media screen and (min-width: 1400px) {
  .col-per-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333334%;
    flex: 0 0 83.333334%;
    max-width: 83.333334%;
  }
  .col-per-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
  }
}
.general-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 25000;
}
.container-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5rem;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 3px 3px 10px rgba(37, 37, 37, 0.1);
  z-index: 2000;
}
.container-spinner h3 {
  font-size: 14px;
  font-weight: 200;
  color: #004379;
  letter-spacing: -0.2px;
  margin-top: 1rem;
  text-align: center;
}
.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: #004379;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: #004379;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.page-cont {
  width: 100%;
  padding: 0.5rem 1.5rem;
  background-color: white;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.title-cont {
  display: flex;
  justify-content: space-between;
  margin-bottom: -1rem;
}
.title-cont h4 {
  margin-top: 1rem;
}
.title-cont-left {
  display: flex;
  gap: 1rem;
}
.campos-obligatorios {
  font-size: 12px;
  color: #f3f4f6;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  padding: 0.25rem 1rem;
  background-color: rgb(30, 107, 158);
}
.campos-obligatorios p {
  margin-bottom: 0rem;
}
.asterisco {
  color: #00aef0 !important;
  font-size: 14px;
}
.campos-cont {
  display: block;
}
h1 {
  color: #00558c;
  font: normal normal bold 24px/20px Open Sans;
  letter-spacing: -0.48px;
}
body {
  color: #f3f4f6;
}
.logo-login {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mt-neg-2 {
  margin-top: -2.5rem;
}
.mt-neg-1 {
  margin-top: -1rem;
}
.mb-neg-2 {
  margin-bottom: -2rem;
}
.vh-100 {
  height: 100vh;
}
.title-h1 {
  font: normal normal 700 36px/79px Open Sans;
  letter-spacing: -1.45px;
  color: #00aef0;
  padding-bottom: 1rem;
}
.title-h2 {
  font: normal normal normal 400 18px/61px Open Sans;
  letter-spacing: -0.8px;
  color: #004379;
}
.title-h3 {
  color: #00558c;
  text-align: left;
  font: normal normal bold 24px/20px Open Sans;
  letter-spacing: -0.48px;
  margin-bottom: -0.5rem;
}
.title-h4 {
  color: #00558c;
  text-align: left;
  font: normal normal bold 21px/20px Open Sans;
  letter-spacing: -0.48px;
}
.title-h4-blue {
  color: #00aef0;
  text-align: left;
  font: normal normal bold 21px/20px Open Sans;
  letter-spacing: -0.48px;
}
.campo-obligatorio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  width: 290px;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  color: #00558c;
  background-color: #f3f4f6;
  border-radius: 8px;
}
.campo-obligatorio p {
  margin-bottom: 0rem;
  font-size: 12px;
}
.asterisco {
  color: #ff9800 !important;
}
.p-g {
  color: #00558c;
  font-size: 14px;
  margin-top: 1rem;
  padding: 0;
}
.subtitle-p {
  color: #9ea6be;
  text-align: left;
  font: normal normal normal 14px/20px Open Sans;
  letter-spacing: -0.3px;
}
.p-login {
  font: normal normal normal 16px Open Sans;
  letter-spacing: -0.2px;
  color: #004379;
}
.a-login {
  margin-left: 0.5rem;
  font: normal normal 400 16px Open Sans;
  text-decoration: underline;
  letter-spacing: -0.2px;
  color: #00aef0;
  text-decoration: none;
  transition: all ease-in-out 200ms;
}
.a-login:hover {
  text-decoration: underline;
}
.label-login {
  position: relative;
  bottom: 4px;
  font: normal normal normal 16px Open Sans;
  letter-spacing: -0.2px;
  color: #004379;
  margin-left: 0.5rem;
}
.button-main {
  font: normal normal normal 18px Open Sans;
  letter-spacing: -0.55px;
  color: #ffffff;
  background: #ff9e1b 0% 0% no-repeat padding-box;
  border-radius: 12px;
  min-width: 436px;
  height: 56px;
  border: transparent;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  padding: 0 15px;
  outline: none !important;
}
.button-main:focus {
  outline: none !important;
  box-shadow: none !important;
}
.button-main:hover {
  border: 1px solid #ff9e1b;
  border-radius: 12px;
  color: #ff9e1b;
  background-color: transparent;
}
.button-main:disabled {
  background-color: #f5f5f5;
  color: #9ea6be;
  border: 1px solid #e0e0e0;
  cursor: not-allowed;
  opacity: 0.7;
}
.button-secundary {
  font: normal normal normal 18px Open Sans;
  letter-spacing: -0.55px;
  color: #ffffff;
  background: #0099dc 0% 0% no-repeat padding-box;
  border-radius: 12px;
  min-width: 436px;
  height: 56px;
  border: transparent;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  padding: 0 15px;
  outline: none !important;
}
.button-secundary:focus {
  outline: none !important;
  box-shadow: none !important;
}
.button-secundary:hover {
  border: 1px solid #0099dc;
  border-radius: 12px;
  color: #0099dc;
  background-color: transparent;
}
.button-secundary:disabled {
  background-color: #f5f5f5;
  color: #9ea6be;
  border: 1px solid #e0e0e0;
  cursor: not-allowed;
  opacity: 0.7;
}
.input-container {
  width: 436px;
  position: relative;
}
.input-label {
  font: normal normal 200 12px Open Sans;
  letter-spacing: -0.2px;
  color: #004379;
  font-weight: 500;
  position: absolute;
  left: 30px;
  top: -11.5px;
  background-color: white;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.input-container img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.input-reservas {
  width: 100%;
  min-width: auto;
  height: 56px;
  padding: 12px 50px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.input-reservas:active {
  background-color: white;
}
.input-reservas:focus {
  outline: 1px solid #00aef0;
  border: 1px solid white;
}
.input-reservas:focus + .input-label,
.input-reservas:not(:placeholder-shown) + .input-label {
  opacity: 1;
  transform: translateY(0);
}
.input-reservas::placeholder {
  color: #9ea6be;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}
.input-reservas:focus::placeholder {
  color: transparent;
}
.back button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font: normal normal normal 16px Open Sans;
  color: white;
  background-color: #0099dc;
  border: 1px solid transparent;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  z-index: 2;
}
.back button:hover {
  background-color: transparent;
  border: 1px solid #0099dc;
  color: #0099dc;
}
.back button i {
  color: white !important;
  transition: all ease-in-out 200ms;
}
.back button:hover i {
  color: #0099dc !important;
}
.dropdown-container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.dropdown-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 16px;
  color: #757575;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown-button:hover {
  border-color: #0099dc;
}
.dropdown-button:focus {
  outline: none;
  border: 1px solid #0099dc;
}
.dropdown-button i:first-child {
  color: #757575;
  font-size: 20px;
}
.dropdown-button i:last-child {
  margin-left: auto;
  color: #757575;
}
.dropdown-button-cot {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 16px;
  color: #757575;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown-button-cot:hover {
  border-color: #0099dc;
}
.dropdown-button-cot:focus {
  outline: none;
  border: 1px solid #0099dc;
}
.dropdown-button-cot i:first-child {
  color: #757575;
  font-size: 20px;
}
.dropdown-button-cot i:last-child {
  margin-left: auto;
  color: #757575;
}
.dropdown-content {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  padding: 12px 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #0099dc;
}
.dropdown-item.selected {
  background-color: #f5f5f5;
  color: #0099dc;
}
.dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}
.bi-chevron-down {
  transition: transform 0.3s ease;
}
.bi-chevron-down.rotate {
  transform: rotate(180deg);
}
.dropdown-button span {
  flex: 1;
  text-align: left;
  color: #333;
}
.dropdown-button:not(:has(span:empty)) {
  color: #333;
}
input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
  display: none;
}
input[type=password]::-webkit-credentials-auto-fill-button,
input[type=password]::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1366px) {
  .input-container {
    width: 100%;
    max-width: 400px;
  }
  .button-main {
    min-width: 300px;
    width: 100%;
  }
  .input-reservas {
    font-size: 14px;
    padding: 10px 50px;
  }
  .dropdown-button-cot {
    width: 70%;
    font-size: 12px;
    height: 40px;
  }
  .dropdown-button i:first-child {
    font-size: 16px;
  }
  .dropdown-container {
    width: 100%;
  }
  .dropdown-button {
    min-width: 100%;
    height: 55px;
    font-size: 12px;
  }
  .dropdown-button:not(:has(span:empty)) {
    min-width: 100%;
    height: 55px;
    font-size: 12px;
  }
  .dropdown-content {
    max-height: 200px;
    width: 70%;
    overflow-y: auto;
  }
  .dropdown-item {
    padding: 8px 12px;
    font-size: 12px;
  }
  .dropdown-button {
    width: 50%;
    max-width: 200px;
    font-size: 12px;
    padding: 8px 12px;
    height: 40px;
  }
  .dropdown-button i:first-child {
    font-size: 14px;
  }
  .dropdown-button i:last-child {
    font-size: 12px;
  }
  .dropdown-button span {
    font-size: 12px;
    margin: 0 8px;
  }
  .title-h1 {
    font: normal normal 700 28px Open Sans;
    letter-spacing: -1.45px;
    color: #0099dc;
  }
  .title-h2 {
    font: normal normal normal 400 14px Open Sans;
    letter-spacing: -0.8px;
    color: #004379;
  }
  .title-h3 {
    color: #00558c;
    text-align: left;
    font: normal normal bold 20px Open Sans;
    letter-spacing: -0.48px;
  }
  .title-h4 {
    font: normal normal bold 14px Open Sans;
    letter-spacing: -0.48px;
  }
  .subtitle-p {
    color: #9ea6be;
    text-align: left;
    font: normal normal normal 10px Open Sans;
    letter-spacing: -0.3px;
  }
  .title-login {
    padding: 1rem 0;
  }
  .mt-neg-1 {
    margin-top: 0rem;
  }
  .mt-neg-2 {
    margin-top: -0.5rem;
  }
  .logo-login {
    top: 12%;
    width: 20%;
    height: auto;
  }
  .input-label {
    font: normal normal 200 10px Open Sans;
  }
  .p-login,
  .a-login,
  .label-login {
    font: normal normal normal 14px Open Sans;
  }
}
@media screen and (max-width: 480px) {
  .input-container {
    width: 100%;
    max-width: 100%;
  }
  .button-main {
    width: 90%;
    max-width: 100%;
  }
  .dropdown-container {
    max-width: 100%;
  }
  .container-img {
    display: none;
  }
  .logo-login {
    width: 40%;
  }
}
@media (max-width: 1040px) {
  .logo-login {
    width: 40%;
  }
  .title-cont {
    flex-direction: column;
  }
}
@media (-webkit-device-pixel-ratio: 1.25) {
  .content-container {
    zoom: 0.98;
    margin: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    top: -1.8rem;
    margin-left: 1rem;
  }
  .content-header {
    position: sticky;
    top: -1.8rem;
  }
}
@media screen and (max-width: 1440px) and (max-height: 900px) {
  .logo-login {
    top: 10%;
    width: 25%;
  }
}
button {
  outline: none !important;
}
.btn-m-new,
.btn-s-new {
  padding: 8px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  min-width: 120px;
  font-weight: 600;
  height: 38px;
  outline: none;
  transition: opacity 0.2s ease-in-out;
}
.btn-m-new {
  background-color: #ff9800;
  color: white;
  outline: none;
}
.btn-s-new {
  background-color: #0066b2;
  color: white;
  outline: none;
}
.btn-m-new:hover,
.btn-s-new:hover {
  opacity: 0.9;
}
.btn-m-new:disabled,
.btn-s-new:disabled {
  background-color: #e0e0e0;
  color: #9ea6be;
  opacity: 0.7;
  cursor: not-allowed;
}
select,
datalist {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ea6be' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 1.3em;
  padding-right: 30px;
}
.bank-cont {
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 8px;
  background-color: #e9f8ff;
  border: 1px solid #00aef0;
  height: 50px;
  box-shadow: 0px 3px 10px #b1b3b510;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bank-cont:hover {
  transform: scale(0.98);
}
.bank-cont img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
.bank-cont h1 {
  font: normal normal 700 16px Open Sans;
  color: #00aef0;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1040px) {
  .adicional-info-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bank-cont {
    height: 30px;
    margin-bottom: -1.5rem;
    width: 300px;
  }
  .bank-cont h1 {
    font-size: 12px;
  }
}
@media screen and (min-width: 3840px) and (min-height: 2160px) {
  html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  .back-button {
    zoom: 2;
  }
  body {
    zoom: 2;
    height: 100%;
  }
  .p-g {
    font-size: 15px;
  }
  .container-spinner {
    zoom: 1.2;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-RQEMII54.css.map */
