.shipping-progress-container {
    
    text-align: center;
}

.shipping-progress-message {
    font-size: 16px;
    margin-bottom: 0;
    padding:0.5em 0;
    color: #333;
    font-weight: 500;
}

.shipping-progress-bar {
    background-color: #e0e0e0;   
    height: 0.6em;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.shipping-progress-bar-inner {
    background-color: #f09898; 
    height: 100%;
    text-align: center;
    line-height: 20px;
    color: white;
    transition: width 0.5s ease-in-out; 
  
}

.suceess-progress-bar{
    background-color: #6bb16d; 
    
}

.shipping-message {
    color: #752204;

    background: #EDF1FF;
    text-align: center;
    

}
.progress-bar-animated {
      animation: progress-animation 2s linear infinite;
    }

    @keyframes progress-animation {
      from {
        width: 0%;
      }
      to {
        width: 100%;
      }
    }
