.marque-currency-wrapper {
    overflow: hidden;
    background: #fff;
/*     padding: 10px 0; */
    border: 1px solid #eee;
  }
  
  .marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
  }

.marquee-content {
    display: flex;
    animation: scroll-left 600s linear infinite;
/*     gap: 80px; */
    white-space: nowrap;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


  
/*   .marquee-content {
    display: flex;
    animation: scroll-left 60s linear infinite;
    gap: 80px;
  } */

  .two-marque {
    margin-left: 50px;
}
  
/*   @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  } */
  
  .marque-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  
  .flag-icon {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border: 1px solid #ccc;
  }
  
  .rate-boxes {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  
  .rate-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .rate-label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
  }
  
  .rate-value {
    font-size: 16px;
    font-weight: 600;
    color: #0073aa;
  }
  