/* Your custom styles */
.carousel .carousel-indicators li {
    max-width: 30px;
    height: 10px;
    border-radius: 0% !important;
    cursor: pointer; }

body{
font-family: NTR sans-serif;


}

.adds{
  border: 5px;
  border-color: red;
}

.map{
	width: 10px;
	height: 10px;
}
.blink {
  animation: blink 1s steps(1, end) infinite;
  
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

