.background-div {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 50%;
  background-color: #c50000;
  /* Color y transparencia */
  z-index: -1;
  /* Para que esté detrás de todo el contenido */
  border-bottom-left-radius: 4.5rem;
  border-bottom-right-radius: 4.5rem;
  justify-content: center !important;
  text-align: center !important;
}

.background-title {
  position: relative;
  top: 90px;
}

/* Estilo para el div de carga */
#loading {
  position: fixed;
  /* Fija el div para que ocupe toda la pantalla */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #ffffff, #c50000);
  display: flex;
  /* Utiliza flexbox para centrar el spinner */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Asegura que esté por encima de todo el contenido */
}

/* Estilo para la imagen de carga 2*/
.loading-image2 {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 30vw;
  /* Ajusta el tamaño de la imagen según tus necesidades */
  height: 18vh;
}

/* Estilo para el spinner */
.spinner {
  position: absolute;
  top: 60%;
  left: 45%;
  border: 16px solid #f3f3f3;
  /* Bordes del spinner */
  border-top: 16px solid #3498db;
  /* Color del borde superior */
  border-radius: 50%;
  /* Forma circular */
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  /* Animación de giro */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Oculta el contenido mientras se muestra el loading */
#content {
  display: none;
}

.modal-open .container-fluid,
.modal-open .container {
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

/* Round Corner for TOP LEFT COLUMN */

table thead tr:first-child th:first-child {
  border-top-left-radius: 15px;
}

/* Round Corner for TOP RIGHT COLUMN */

table thead tr:first-child th:last-child {
  border-top-right-radius: 15px;
}

/* Round Corner for BOTTOM LEFT COLUMN */

table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 15px;
}

/* Round Corner for BOTTOM RIGHT COLUMN */

table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}

.card-image {
  background-image: url("/assets/media/Images/ImagenToyota.png");
  background-size: cover;
  background-color: transparent;
  border: 0;
  width: 100%;
  height: 70vh;

  border-radius: 4.5rem;
  padding: 0;
}

.card-internal {
  background-color: #ffffff;
  border: 0;
  width: 50%;
  height: 60vh;
  border-radius: 4.5rem;
  padding: 0;
}

.card-internal2 {
  background-color: #ffffff;
  border: 0;
  width: 100%;
  height: 60vh;
  border-radius: 4.5rem;
  padding: 0;
}

.card-factura {
  width: 100%;
  color: #ffffff;
}

.image-response {
  width: 40%;
}

.hr-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: #666;
  margin: 20px 0;
}

.hr-text::before,
.hr-text::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.hr-text::before {
  margin-right: 10px;
}

.hr-text::after {
  margin-left: 10px;
}
