 /* Progress Slider Styles */
 .progress-slider-container {
     /* position: absolute;
     top: 85%;
     left: 22.5%;
     right: 22.5%; */
     width: 100%;
     height: 55px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-between;
 }

 .progress-slider {
     width: 100%;
     height: 38%;
     background: #FFFFFF3B;
     border: 1px solid white;
     border-radius: 10px;
     position: relative;
     overflow: hidden;
 }

 .progress-fill {
     height: 100%;
     background: linear-gradient(180deg, #FFC800 29.16%, #FFDD00 86.56%, #998500 116.89%);
     border-radius: 9px;
     transition: width 0.8s ease-in-out;
     width: 72%;
     /* 7.2M out of 10M = 72% */
 }

 .progress-labels {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .progress-label-left {
     color: white;
     font-family: 'Nunito', sans-serif;
     font-size: 16px;
     font-weight: 600;
 }

 .progress-label-right {
     color: white;
     font-family: 'Nunito', sans-serif;
     font-size: 16px;
     font-weight: 600;
 }

 /* @keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* @keyframes slideInFromBottomWithTransform {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
} */

 /* .progressive-slider-container {
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out forwards;
    animation-delay: 1.4s;
} */

 @media (max-width: 480px) {
     .progress-slider-container {
         width: 100%;
         height: 55px;
     }

     .progress-labels {
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .progress-label-left {
         font-size: 14px;
     }

     .progress-label-right {
         font-size: 14px;
     }
 }

 @media (max-width: 768px) and (min-width: 481px) {
     .progress-slider-container {
         width: 100%;
         height: 100%;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: space-between;
     }

     .progress-labels {
         display: flex;
         justify-content: space-between;
         align-items: center;
         width: 100%;
     }

     .progress-label-left {
         font-size: 14px;
     }

     .progress-label-right {
         font-size: 14px;
     }
 }

 @media (max-width: 1080px) and (min-width: 769px) {
     .progress-slider-container {
         width: 100%;
         height: 55px;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: space-between;
     }

     .progress-labels {
         width: 100%;
         display: flex;
         justify-content: space-between;
         align-items: center;
     }
 }