.live {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 22px;
    background-color: #eee
}

.live-down {
    animation: live-down 1.5s ease-in-out infinite;
}


@keyframes live-down {
    0% {
        background: #ff626280;
    }

    50% {
        background: #ff626240;
    }

    100% {
        background: #ff626280;
    }

}

.live-up {
    animation: live-up 1.5s ease-in-out infinite;
}

@keyframes live-up {
    0% {
        background: #89ff8999;
    }

    50% {
        background: #89ff8920;
    }

    100% {
        background: #89ff8999;
    }
}



.change-red {
    animation-name: change-red;
    animation-duration: 0.7s;
}

@keyframes change-red {
    from {
        background: #ff626280;
    }

    to {
        background: transparent;
    }
}

.change-green {
    animation-name: change-green;
    animation-duration: 0.7s;
}

@keyframes change-green {
    from {
        background: #89ff8980;
    }

    to {
        background: transparent;
    }
}

.change-gray {
    animation-name: change-gray;
    animation-duration: 0.7s;
}

@keyframes change-gray {
    from {
        background: #f2f2f2;
    }

    to {
        background: transparent;
    }
}

.green {
    color: green !important;
}

.red {
    color: red !important;
}

.black {
    color: #000;
}

/* header-bar */
.scroll-container {
  position: relative;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.25em 0.25em;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.scroll-btn.visible {
  opacity: 1;
}
.scroll-btn.left  { inset-inline-start: 0.25rem; }  /* RTL/LTR aware */
.scroll-btn.right { inset-inline-end: 0.25rem; }    /* RTL/LTR aware */

/* Show buttons when container is overflowed */
.scroll-container.overflowing .scroll-btn {
  display: block;
}

.header-bar {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.5rem;
  margin: 0 auto;          /* ✅ centers the container itself */
  width: fit-content;      /* ✅ shrink to fit its content */
  scroll-behavior: smooth;  /* ✅ smooth scrolling */
    scrollbar-width: none;    /* hide scrollbar (Firefox) */

}
.header-bar::-webkit-scrollbar {
  display: none;            /* hide scrollbar (Chrome, Safari) */
}

.header-bar-item {
  flex: 0 0 180px;   /* fixed width: 200px each */
  height: 150px;
  border: 1px solid #ccc;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
    text-align: center;
}


.header-bar .header-bar-item-main .main-rate {
    margin-bottom: 5px;
}

.header-bar .header-bar-item-main .large {
    font-size: 30px;
    font-weight: bolder;
    max-width: 350px;
    overflow: hidden;
}

.header-bar .header-bar-item-main .symbol {
    font-size: 30px;
    font-weight: bolder;
    max-width: 350px;
    overflow: hidden;
}

.header-bar .header-bar-item-main .currency-unit {
    font-size: 14px;
    font-weight: bolder;
    display: block;
    margin-bottom: 5px;
}

.header-bar .meta-rates {
    direction: ltr;
    height: 27px;
    font-size: 20px;
    font-weight: bolder;
}
.market {
    height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}
/* header-bar */
.open {
    color: green;
}

.closed {
    color: red;
}

.text-end {
    text-align: right !important;
}
.faq details{
    border:1px solid #e5e7eb;border-radius:12px;padding:.75rem 1rem;margin-bottom:.75rem;background:#fff;
}
.faq summary{
    cursor:pointer;font-weight:700;
}
.faq .answer{
    margin-top:.5rem;line-height:1.9;color:#111827;
}