* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.stock-ticker img {
  height: 14px;
  margin-bottom: 0px;
  margin-left: 2px;
  margin-right: 2px;
}

.stock-ticker .ticker_sml {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.5em;
  font-weight: 400;
}

.powered-logo {
  height: 25px;
  width: 120px;
  margin-bottom: -4px !important;
  margin-left: 10px;
  margin-right: 5px;
}

body {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 135%;
  font-weight: 400;
}
b
{
	font-weight:500;
}

.stock-ticker {
  font-size: 15px;
  border -block: 1px solid;
  overflow: hidden;
  user-select: none;

  --gap: 10px;
  display: flex;
  gap: var(--gap);
}

.stock-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);

  animation: scroll 45s linear infinite;
}

.stock-ticker:hover ul {
  animation-play-state: paused;
}

.price img
{
	height:20px;
	width: 20px;
	vertical-align: middle;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}


.stock-ticker .price {
  margin-inline: 4px;
}

.stock-ticker .plus::before {
  content: "â†‘";
}

.stock-ticker .minus::before {
  content: "â†“";
}

.stock-ticker .plus .change,
.stock-ticker .plus::before {
  color: #089981;
}

.stock-ticker .minus .change,
.stock-ticker .minus::before {
  color: #f23645;
}