.gifff {
    animation: blinker 1s linear infinite;
    display: inline;
    color: black;
    background: #f0f058;
    padding: 0 7px;
    border-radius: 5px;
    margin-right: 6px;
}
.cdetails table tr th {
	text-align: center;
}
#vjrsidebarul ol {
  padding-left: 20px;
}
#vjrsidebarul ul {
  padding-left: 20px;
}
#lnews_block {
  margin-left: 140px;
}
#lnews_block a {
  color: white;
}
.lnews_label {
  color: white	;
  position: absolute;
  margin-left: 15px;
  font-family: Cursive;
  font-size: 14px;
  font-weight: bold;
  padding-top: 1px;
}
#block-meghclatestnewsblock {
  height: 23px;
}
 
 .container {
  display: inline-flex;
  align-items: center;
  padding-left: 0px !important;
}

.star {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid #616161;
  position: relative;
  animation: flash 2s infinite;
}

.star:before {
  content: "";
  position: absolute;
  top: 3px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #616161;
}

.text {
  margin-left: 5px;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Latest News CSS */
/* Optional: Style the marquee container */
.marquee-container {
    /* width: auto; /* Adjust width as needed */ 
    /* overflow: hidden; */
    border: 1px solid #ccc;
}

/* Style the list items */
.marquee-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    animation: marquee-scroll 10s linear infinite;
}

.marquee-list li {
    display: inline-block; /* Display list items in the same line */
    margin-right: 20px; /* Adjust spacing between list items as needed */
}

/* Define the marquee animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 20px)); /* Adjust for margin-right */
    }
}
/* Latest News CSS ends here*/