/* tickr price slider */
@keyframes translateinfinite {
  25% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(1300px);
  }
}

.arzban_main_container {
  height: 40px;
  background: white;
  padding: 10px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  direction: rtl;
}

.arzban_inner_container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  animation: translateinfinite 15s linear infinite;
}

.arzban_update_note {
  color: black;
  margin: 0px;
  white-space: nowrap;
}

.arzban_currency_name {
  color: black;
  margin: 0px;
  white-space: nowrap;
}

.arzban_currency_value {
  color: black;
  margin: 0px;
  white-space: nowrap;
}

.arzban_vertical_spacer {
  border-right: 2px dashed #000000;
  margin: 0px 10px;
  animation: translateinfinite 15s linear infinite;
}
