header{
    display:none;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
}
.header-contact {
  display: flex;
  align-items: center;
}
.header-contact svg {
  margin-left: 0.5rem;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.navbar-brand img {
  max-height: 40px;
}
.nav-link {
  padding: 0.5rem 1rem;
}
.search-bar-container {
  background: linear-gradient(
    90deg,
    rgb(237, 238, 255) 0%,
    rgb(255, 244, 226) 100%
  );
  border-radius: 4px;
  padding: 1rem;
  margin-top: 10rem;
}
.search-step {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  flex: 1;
}
.search-step span {
  margin-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.search-bar-container form {
  margin-top: 1rem;
}
.loading-spinner {
  width: 30px;
  height: 30px;
  border: 2px solid indigo;
  border-radius: 50%;
  border-top-color: #0001;
  display: inline-block;
  animation: loadingspinner 0.7s linear infinite;
  -webkit-animation: loadingspinner 0.7s linear infinite;
}
@keyframes loadingspinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* error */
.error-input {
  border-color: red !important;
}
.error-text {
  display: none;
  color: red;
}
/* loading */
.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.696);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ddd;
  border-top-color: #651fff;
  animation: loading 1s linear infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
