/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.job-post .job-post-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.video-thumbnail {
  width: 320px;
  height: 180px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-post-card {
  width: 18rem;
}

.tnc-modal {
 display: none;
}


.htmx-indicator{
  display:none;
}
.htmx-request .htmx-indicator{
  display:inline-block;
}
.htmx-request.htmx-indicator{
  display:inline-block;
}

.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}


@keyframes fadeInOpacity {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
