  .notification {
    position:static;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: -10px;
    /* margin: auto; */
    height: 20px;
    width: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 500px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  }
  .notification i.fa-bell {
    font-size: 20px;
    top: -10px;
    right: 10px;
    display: inline-block;
    position: relative;
    color: #BDBDBD;
    z-index: 0;
  }
  .notification span {
    display: inline-block;
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: 12px;
    left: 13px;
    font-size: 16px;
    text-align: center;
    border-radius: 500px;
    background-color: #081cb4;;
    padding: 2px;
    color: #fff;
  }
  .notification span::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    margin: auto;
    height: 30px;
    width: 30px;
    display: inline-block;
    border-radius: 500px;
    z-index: -2;
  }
  
  .notification:hover {
    box-shadow: 0px 0px 6px #6a1b9a;
  }
  .notification:hover i.fa-bell {
    color: #081cb4;;
  }
  .notification:hover .alert {
    animation: popup 0.5s ease forwards;
  }
  .notification:hover .alert::after {
    border: 1px solid #6a1b9a;
    animation-delay: 2s;
    animation: pulse 1s ease forwards;
  }
  
  @keyframes popup {
    0%, 50% {
      top: 50%;
      opacity: 0;
    }
    90% {
      top: -10%;
    }
    100% {
      top: 0;
      opacity: 1;
    }
  }
  @keyframes pulse {
    0%, 25% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }

  /* Style The Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  right: 10px;
  background-color: #f9f9f9;
  min-width: 260px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.counters {
  background-color: orange;
  border-radius: 20px;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.badge {
  background-color: orange;
}