/* Progress bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}

.progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: -1;
}

.progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  background-color: #3498db;
  width: 0%;
  z-index: -1;
  transition: 0.3s;
}

.progress-step {
  background-color: #dcdcdc;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-step.active {
  background-color: #3498db;
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 35px;
  font-size: 0.8rem;
}

/* Form */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#date .datepicker.datepicker-inline {
  width: 300px !important;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  margin: 0 auto;
}
.loader::before,
.loader::after {    
  content:"";
  grid-area: 1/1;
  --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
  background: 
    var(--c) 50%  0, 
    var(--c) 50%  100%, 
    var(--c) 100% 50%, 
    var(--c) 0    50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}
.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear
}

@keyframes l12 { 
  100%{transform: rotate(.5turn)}
}
.no-times-message {
  padding: 15px;
  text-align: center;
  color: #666;
}
#step-2-next:hover {
    background-color: #c16b3f;
}