html {
  background-color: #ebe300;
}
.custom-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-modal.show {
  opacity: 1;
  display: block;
}
.custom-modal .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-modal .btn-close {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}
.custom-modal .btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.modal-content {
  border-radius: 15px;
  overflow: visible;
  border: none;
}
.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
.radicado-banner {
  background-color: #28a745;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radicado-banner i {
  font-size: 24px;
  margin-right: 10px;
}
.radicado-banner h5 {
  margin: 0;
  font-size: 18px;
}
.modal-body {
  padding-top: 30px;
}
.video-container {
  margin: 20px 0;
}
.btn-success,
.btn-danger {
  margin: 0 10px;
}
.loader-container {
  display: none;
  /* Inicialmente oculto */
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.loader {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 16px solid #0000;
  border-right-color: #25b09b;
  position: relative;
  animation: l24 1s infinite linear;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: -16px;
  /* Ajustar el margen */
  border-radius: 50%;
  border: inherit;
  animation: inherit;
  animation-duration: 2s;
}
.loader:after {
  animation-duration: 4s;
}
@keyframes l24 {
  100% {
    transform: rotate(1turn);
  }
}
.email-suggestions {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
}

.email-suggestion {
  padding: 5px 10px;
  cursor: pointer;
}

.email-suggestion:hover {
  background-color: #f0f0f0;
}

.email-error {
  color: red;
  margin-top: 5px;
  display: none;
}

.text-white {
  color: white !important;
}

.bg-red {
  background-color: #e74a3b;
  padding: 10px;
  border-radius: 10px;
}

.bg-green {
  background-color: #1cc88a;
  padding: 10px;
  border-radius: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@font-face {
  font-family: Raleway;
  src: url("../../../Raleway-Regular.ttf");
}

/*nuevo modal de success*/
/* Estilos para el modal personalizado renombrado */
.custom-modal-renamed {
  display: none;
}

.custom-modal-renamed.show {
  display: block;
}

.custom-modal-dialog-renamed {
  max-width: 500px;
  margin: 1.75rem auto;
}

.custom-modal-content-renamed {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.custom-modal-header-renamed {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.custom-modal-body-renamed {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.custom-modal-footer-renamed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.custom-btn-success-renamed,
.custom-btn-secondary-renamed {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.custom-btn-success-renamed {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.custom-btn-secondary-renamed {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
