span.newss {
color: red !important;
padding: 5px;
vertical-align: middle;
}

.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{ color: rgba(255, 255, 255, 0.7);}
    40%{ color: rgba(255, 255, 255, 0.7); }
    50%{ color: rgba(255, 255, 255, 1); }
    60%{ color: rgba(255, 255, 255, 0.7); }
    100%{ color: rgba(255, 255, 255, 0.7); }
}

.navbar {
	background: rgb(19,41,70);
	font-family: 'Lato', sans-serif !important;
	border-radius: 0 !important;
	height: 50px;
	text-shadow: none;
	z-index: 10 !important;
	-webkit-font-smoothing: antialiased;
}
.navbar a {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .navbar {
    margin-left: -1px;
  }
  .navbar li.active {
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.2);
  }
}
.navbar-toggle .icon-bar {
  background: rgba(255, 255, 255, 0.6);
}
.navbar-toggle:hover .icon-bar,
.navbar-toggle:focus {
  background: white;
}
.dropdown-menu{
	font-size: 1.5rem;
}


.navbar li.active {
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}
.navbar .nav > li {
  margin-right: 7px;
  margin-left: 7px;
}
.navbar .nav > li:not(.active) > a:hover{
  color: white;
}
.navbar .nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
  background: none !important;
  border-color: white !important;
}
/* uncollapsed on small screens*/
.navbar-collapse.in {
  background: #132946;
  border: none;
}
.navbar-collapse.in li.active {
  background: rgba(255, 255, 255, 0.2);
  border: none;
}
.navbar-collapse.in a:hover {
  border-bottom: 0 !important;
  background: rgba(255, 255, 255, 0.2);
}
/*# sourceMappingURL=nav.css.map */