
.loading-bar__wrapper {
    background: #fff;
    border-radius: 5px;
    padding: 60px 60px 30px;
    box-shadow: 0 8px 10px rgba(223, 230, 241, 0.5);
    z-index: 99;
  }
  .loading-bar__wrapper label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: bold;
    color: #b71c1c;
  }
  .loading-bar {
    background: #b71c1c;
    height: 30px;
    border-radius: 100px;
    justify-content: space-around;
  }
  .loading-bar-bullet::before {
    content: "";
    display: block;
    background: #445058;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    z-index: 999;
    margin-top: -25px;
    border: 5px solid white;
    cursor: pointer;
  }
  .slick-current.loading-bar-bullet::before {
    height: 18px;
    width: 18px;
    margin-top: -5px;
    margin-left: -9px; /* Center bullet - Half .slick-current width*/
    border: 3px solid white;
  }
  .labels {
    margin-top: 50px;
    text-align: center;
  }

  @media (max-width: 768px) { 
    .loading-bar-bullet {
      text-align: center !important;
    }
  }




  