.gis-bom-strip {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #003676;
  min-height: 40px;
  z-index: 999;
}

.gis-bom-label {
  padding: 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #ff3b3b;
  height: 40px;
  display: flex;
  align-items: center;
}
.gis-bom-item a {
    color: #fff;
    font-size: 16px;
	text-decoration: none !important;
    text-transform: capitalize;
}
.gis-bom-track {
  flex: 1;
  overflow: hidden;
}

.gis-bom-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
}

.gis-bom-item {
  margin-right: 20px;
  font-size: 14px;
}

.gis-bom-item a {
  color: #ffffff;
  text-decoration: none;
}

.gis-bom-item a:hover {
  color: #f7f7f7;
  text-decoration: underline;
}

.gis-bom-viewall {
  padding: 0 16px;
  color: #fff;
  font-size: 12px;
  background: rgba(255,255,255,0.08);
  height: 40px;
  display: flex;
  align-items: center;
}
.pulse-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #8F8F8F;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff0000;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  top: 0;
  left: 0;
  opacity: 0.7;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(2); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media(max-width:768px){
	.gis-bom-item {
		margin-right: 12px;
		font-size: 12px;
	}
	.gis-bom-label, .gis-bom-item a{
		font-size:12px;
	}
}