body {
    overflow: hidden;
    margin: 0;
    padding: 0;

    font-family: "Chakra Petch", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
}

a{
    color: #28a745 !important; 
    text-decoration: none;
}

.row{
    display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 4px;
}

.stock-code{
    font-weight: bold;
}

/* bp */
.ticker {
    display: flex;
    grid-template-columns: 2% minmax(350px, 96%) 2%;
    width: 100%;
    overflow: hidden;
}

.ticker__list {
    display: flex;
    animation: ticker 800s infinite linear;
}

.ticker:hover .ticker__list {
    animation-play-state: paused;
}

.ticker__item {
    background-color: #f8f9fa;
    margin: 2px 10px 10px 0;

    padding: 2px 10px;
    display: inline-block;
    width: 150px;  
    border-radius: 12px;

    box-shadow: rgba(0, 0, 0, 0.05) 1.95px 1.95px 2.6px;
position: relative;

}

.stock-ticker-item-content {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-top: 2px;
    justify-content: space-between;
}

.stock-ticker-item-arrow {
    position: absolute;
    top: 16px;
    right: 8px;
}

.stock-ticker-item p {
    margin-top: 0;
    margin-bottom: 0;
}

@-moz-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

@-o-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}

@keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}


/* ------------------- Font ------------------ */
.chakra-petch-light {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .chakra-petch-regular {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .chakra-petch-medium {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .chakra-petch-semibold {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .chakra-petch-bold {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .chakra-petch-light-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .chakra-petch-regular-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .chakra-petch-medium-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .chakra-petch-semibold-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .chakra-petch-bold-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
