* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background-color: #ffffff!important;
}

.card0 {
  margin: 50px 12px 40px 12px;
  border: 0
}

.card1 {
  margin: 0;
  padding: 0;
  object-fit: contain;
  height: 100%
}

#heading {
  font-size: 33px;
  color: #000000;
  padding-bottom: 20px;
}

.placeicon {
  font-family: fontawesome !important
}

.card2 {
  padding: 25px;
  padding-left: 35px;
  padding-right: 35px;
  margin: 0;
  height: 100%
}

.form-card .pay {
  font-weight: bold;
  color: #ffffff; /*Ajuste para imagen que no se vea gris*/
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
}

.form-card input,
.form-card textarea {
  padding: 5px 1px 10px 1px;
  border: none;
  border-bottom: 1px solid lightgrey;
  border-radius: 0px;
  /* margin-bottom: 35px;
  margin-top: 2px; */
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 20px;
  letter-spacing: 1px
}

.form-card input:focus,
.form-card textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  font-weight: bold;
  border-bottom: 1.5px solid lightgreen;
  padding-bottom: 9.5px;
  outline-width: 0
}

select.list-dt {
  border: none;
  outline: 0;
  border-bottom: 1px solid #ccc;
  padding: 12px 1px 10px 1px;
  margin: 2px 0px 30px 0px;
}

select#month {
  width: 50%;
}

select.list-dt:focus {
  border-bottom: 1.5px solid lightgreen;
}

.btn-success {
  color: #ffffff !important;
  margin-bottom: 25px !important;
}

/* Estilo para el botón deshabilitado */
.disabled-button {
  background-color: rgba(100, 200, 100, 0.5); /* Verde desvanecido con opacidad */
  color: #666;
  cursor: not-allowed;
  pointer-events: none; /* Evita que el botón reciba eventos del mouse */
}


/* loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo negro con opacidad */
  z-index: 9999; /* Asegura que el loader esté por encima del resto del contenido */
}

.loader {
  width: 48px;
  height: 48px;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(0, 0);
  background-color: #FFF;
  border-radius: 50%;
  animation: animloader 1s infinite ease-in-out;
}

.loader::before {
  background-color: #FF3D00;
  transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

@keyframes animloader {
  50% {
    transform: scale(1) translate(-50%, -50%);
  }
} 


    