.wrapper {
  position: relative;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.wrapper:not(:first-child):before {
  content: "";
  position: absolute;
  right: 50%;
  top: 40px;
  width: 100%;
  height: 4px;
  background: #0089b6;
  z-index: 1;
}
.wrapper .round{
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#9A9B9D;
    border: 3px solid #9A9B9D;
}
.wrapper .round.active{
    background: #0089b6;
    border: 3px solid #0089b6;
}
.wrapper .round i{
    color: #FFFFFF;
    font-size: 24px;
}
.wrapper .description{
    margin-top: 20px;
    font-size: 15px;
    color: #4C4C4E;
    text-align: center;
}
.wrapper-content {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.wrapper-content .wrapper *{
    z-index: 2;
}
.container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper-main-message{
    margin-top: 20px;
    font-size: 28px;
    text-align: center;
}
.delivery-name-logo {
    font-size: 30px;
}
.tracking-number .content{
    font-size: 28px;
}
.information-area .title{
    font-size: 14px;
}
/*colors*/
.cyan{
    color: #0089b6;
}
.cyan-bg {
    background-color: #0089b6;
}
.cool-gray{
    color: #4C4C4E;
}
.cool-gray-7-bg{
    background-color: #9A9B9D;
}
.white-bg{
    background-color: #FFFFFF;
}
/*colors*/
font-weight-bold{
    font-weight: 600;
}
@media (max-width: 575.98px) { 
   .no-padding-sm{
       padding: 0;
   }
    .wrapper .round{
        width: 40px;
        height: 40px;
    }
    .wrapper .description{
        font-size: 9px;
        font-weight: 600;
    }
    .wrapper:not(:first-child):before {
        top: 20px;
      }
      .wrapper .round i{
        font-size: 12px;
    }
    .card-body{
        padding: .8rem !important;
    }
 }
 .passive-delivery-panel {
    opacity: 0.5;
 }
 
