
  .custom_timeline .timeline {
    margin-left: auto;
    margin-right: auto;
    list-style-type: none;
    display: flex;
    padding: 0;
    text-align: center;
  }
  
  .custom_timeline .timeline li {
    transition: all 200ms ease-in;
  }
  .custom_timeline .timestamp {
    width: 100%;
    margin-bottom: 20px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    color: gray;
    font-size: 16px;
  }
  .custom_timeline .status {
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    border-top: 4px solid slateblue;
    position: relative;
    transition: all 200ms ease-in ;
    color: lightgray;
  }
    
  .custom_timeline .status span {
    padding-top: 20px;
  }
  .custom_timeline .status span:before {
    content: '';
    width: 25px;
    height: 25px;
    background-color: lightskyblue;
    border-radius: 25px;
    border: 4px solid slateblue;
    position: absolute;
    top: -15px;
    left: calc(50% - 12px);
    transition: all 200ms ease-in;
  }
  .custom_timeline .swiper-control {
    text-align: right;
  }
  
  .custom_timeline .swiper-container {
    width: 100%;
    height: 130px;
    margin: 0px 0px 50px 0px;
    overflow: hidden;
    padding: 0px 20px 30px 20px;
  }
  .custom_timeline .swiper-slide .status {
    width: 200px;
    text-align: center;
    font-size: 12px;
  }

  .custom_timeline .swiper-slide .status b {
    font-size: 15px;
  }

