.message-indicator {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  display: none; /* start hidden */
}


@media (max-width: 991px) {
  .message-indicator {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    display: none; /* start hidden */
  }
}
