:root {
  --stepper-main-color: #007bff;
  --stepper-complete-color: #28A745;
}

.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.stepper__step {
  text-align: center;
  position: relative;
  flex: 1;
}

.stepper__step .stepper__circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
  
}

.stepper__step .stepper__label {
  font-weight: bold;
}

.stepper__circle--normal {
  background-color: white;
  color: var(--stepper-main-color);
  border: 1px solid var(--stepper-main-color);
  pointer-events: none;
  cursor: not-allowed;
}

.stepper__circle--complete {
  border: none;
  background: var(--stepper-complete-color);
  color: white;
  cursor: pointer;
}

.stepper__circle--current {
  border: none;
  background: var(--stepper-main-color);
  color: white;
  pointer-events: none;
  cursor: not-allowed;
}

.stepper__line {
  position: absolute;
  top: 20px;
  width: 100%;
  height: 2px;
  background-color: var(--stepper-main-color);
  z-index: -1;
}

.stepper__line--complete {
  background-color: var(--stepper-complete-color);
}

.stepper__step:first-child .stepper__line {
  left: 50%;
  width: 50%;
}

.stepper__step:last-child .stepper__line {
  right: 50%;
  width: 50%;
}

.tab-content {
  margin-top: 30px;
}

.booking-stepper__content .card-title{width:calc(100% - 20px)}

@media screen and (max-width:600px){
    .stepper__step .stepper__label{font-size:12px; line-height:120%}
}