/* Primary Color - #4cb849 */
/* Secondary Color - #193764 */
.nav-bg-light{
    background: white;
}
.get-started{
    color: white;
    background: #4cb84a;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    text-align: center;
}
.get-started:hover{
    color: white;
    background: #409a3e;
    transition: 0.2s;
}
.ms-10 {
    margin-left: 6rem !important;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .nav-bg-light {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.5);
    }
}
li a.btn-nav {
    background: #4cb84a;
    color: white !important;
    border-radius: 8px !important;
    display: block;
    text-align: center;
    width: 130px;
}
li a.btn-nav:hover{
    transition: 0.3s;
    background: #42a141;
}

.analysis-showcase {
  background-image: url('../img/analysis.png');
  background-size: cover;
  padding: 10rem;
  background-size: 20rem;
}

.watchlist-showcase {
  background-image: url('../img/watchlist.png');
  background-size: cover;
  padding: 10rem;
  background-size: 20rem;
}

.videos-showcase {
  background-image: url('../img/training_videos.png');
  background-size: cover;
  padding: 10rem;
  background-size: 20rem;
}

.active-nav{
  /*border-bottom: 3px solid #5cb377;*/
  border-radius: 0 0 3px 3px;
}

.active-nav a{
  color: #3caf61 !important;
}

.cat-insde-thumbnail{
  position: absolute;
    right: 0.2rem;
    bottom: 0.1rem;
    background: linear-gradient(#575c592b, #575857d6);
    color: rgb(233, 230, 230);
    font-size: 13px;
}

.created-at-insde-thumbnail{
  position: absolute;
  left: 0.2rem;
  bottom: 0.1rem;
  background: linear-gradient(#0000002b, #6e6e6ed6);
  color: rgb(233, 230, 230);
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
}

.app-card .app-card-body.has-card-actions {
  position: relative;
  padding-right: 1rem !important;
  min-height: 102px;
}

.thumbnail-video-svg{
  width: 26%;
  opacity: 0.7;
  margin-top: 29px;
}

.more-vid-sec .thumbnail-video-svg{
    width: 26%;
    opacity: 0.7;
    margin-top: 29px;
    margin-left: 36% !important;
}

.bbb_viewed_item:hover .thumbnail-video-svg{
  width: 29%;
  opacity: 0.8;
  transition: 0.3s;
  margin-top: 23px;
}
.bbb_viewed_title a{
  display: flex;
}
.link-image {
  width: 20px;
  display:none;
  margin: 8px 0 0 5px;
    height: 19px;
}

.bbb_viewed_title:hover a img.link-image{
  display: block;
}

.form-group textarea.form-input {
    font-size: 18px;
    line-height: 50px;
    font-weight: 400;
    color: #45464a;
    width: 100%;
    height: 50px;
    padding-left: 13px;
    padding-right: 12px;
    border: 1px solid #acacac;
    border-radius: 0px;
}
/*watch page*/
a.card {
    border-radius: 0 ;
}
a.more-ps-lst:hover {
    box-shadow: 0 0 2px #094d06;
    transition: 0.3s;
}

.be-comment-content span {
    display: inline-block;
    width: 49%;
    margin-bottom: 0 !important;
}

.card-title.more-title{
    margin-bottom: 0;
    height: 41px;
    line-height: 19px;
    padding-top: 5px;
    margin-top: 0px;
}

.text-accent {
    color: #00A1AB;
}

/* Ticker Container */
.ticker-chart {
    text-decoration: none;
    color: black;
}

.ticker-wrap {
    position: fixed;
    left: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
    background-color: white;
    z-index: 999;
    border-bottom: 1px solid #E5E4E2;
}

/* Ticker Track */
.ticker {
    display: inline-flex;
    height: 100%;
    align-items: center;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
    min-width: 100%;
}

/* Pause animation on hover */
.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

/* Ticker Item */
.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 100%;
    border-right: 1px solid #E5E4E2;
    transition: background-color 0.2s;
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Ticker Text */
.ticker-symbol {
    font-weight: 600;
    font-size: 13px;
}

.ticker-price {
    font-weight: 500;
    font-size: 13px;
}

.ticker-change {
    font-weight: 500;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Color States */
.ticker-up .ticker-price {
    color: #10b981;
}

.ticker-up .ticker-change {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.ticker-down .ticker-price {
    color: #ef4444;
}

.ticker-down .ticker-change {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Animation */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-item {
        padding: 0 12px;
        gap: 6px;
    }

    .ticker-symbol {
        font-size: 12px;
    }

    .ticker-price, .ticker-change {
        font-size: 11px;
    }
}
