.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }
  
  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px dotted #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }
  
  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px dotted #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }
  
.stepper-item .step-counter {
      position: relative;
      z-index: 5;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #FFF;
      margin-bottom: 6px;
      border: 2px solid #e1e1e1;
  }
  
  .stepper-item.active {
    font-weight: bold;
  }
  
.stepper-item.completed .step-counter {
      background-color: #003165;
      border: 2px solid #063165;
  }
  
  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px dotted #003165;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }
  
  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }
  .checked {
    color: orange;
  }

  html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 14px;
  }
  

  .fc-h-event {
    background-color: white;
    border:none;
  }
  
  
  .fc-event-title {
    white-space:normal;
  }
  #calendar {
    max-width: 1100px;
    margin: 40px auto;
  }
  
  a {
      color: #000e26;
      text-decoration: none;
      background-color: transparent;
  }

.recommanded-days {
      background-color: #FFF !important;
      width: fit-content;
      border-radius: 50px !important;
      padding: 4px 10px;
      margin: 0;
      color: green !important;
  }

   .selected-date {
      
       display: inline-block;
       width: 2.5em;
       height: 2.5em;
       line-height: 2em;
       text-align: center !important;
       border-radius: 50%;
       background-color: #003165 !important;
       color: white !important;
   }
  
   