* {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.ticker-container {
  height: 30px;
  width: 100%;
  text-align: left;

  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(86, 86, 1, 0.45);
  border-radius: 0px;
  border: 0px solid rgba(255, 255, 255, 0.125);
  color: lemonchiffon;
  font-size: 1.1em;
  margin-bottom: 0px;
}

.ticker-container .ticker-caption {
	height: 50%;
	width: 100%;
	background-color: #EC0B43;
	display: table;
	position: absolute;
	color: white;
	font-size: 0.8em;
	z-index: 0;
}
.ticker-container .ticker-caption p {
	height: inherit;
	width: inherit;
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
}
.ticker-container ul {
	list-style: none;
	padding: 0;
	height: auto;
}
.ticker-container ul div {
	overflow: hidden;
	position: absolute;
	z-index: 0;
	display: inline;
	min-width: 100%;
	left: 0;
	height: 50%;
	transition: 0.25s ease-in-out;
}
.ticker-container ul div.ticker-active {
	top: 30px;
}
.ticker-container ul div.not-active {
	top: 60px;
}
.ticker-container ul div.remove {
	top: 0;
}
.ticker-container ul div li {
	padding: 5px 0;
}
.ticker-container ul div li a {
	color: #EC0B43;
}

.ticka {
color: #CDF77D;	
}

.ticka:hover {
color: #FFF134;	
}

@media (min-width: 500px) {
	.ticker-container {
		height: 30px;
		text-align: left;
	}
	
	.ticker-container .ticker-caption {
		background: url("../images/ticker-caption-bg-1.gif");
		background-repeat: no-repeat;
		background-color: #EC0B43;
		width: 150px; /* Ensure the element has dimensions */
		height: 100%; /* Set appropriate height */
	}
	
	.ticker-container .ticker-caption p {
		text-align: left;
		padding-left: 7px;
	}
	.ticker-container ul {
		margin-left: 170px;
		height: 10px;
	}
	.ticker-container ul div {
		height: 100%;
		left: 170px;
	}
	.ticker-container ul div.ticker-active {
		top: 0;
	}
	.ticker-container ul div.not-active {
		top: 30px;
	}
	.ticker-container ul div.remove {
		top: 30px;
	}
}



@media (min-width: 768px) {
  .ticker-container {
    margin-bottom: 0px;
  }
}

@media (min-width: 992px) {
  .ticker-container {
    margin-bottom: 0px;
  }
}