/* Dropdown customer login */

.dropdown-top {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 130px;
    z-index: 1;    
  background-color: #ccc;
  border-radius: 3px;
  margin-left: 30px;
  text-align: center;
  }
  
  .dropdown-content a {
    padding: 5px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {  text-decoration: none;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  
  
  /* Dropdown customer login end
  <div class="dropdown">
        <img class="rounded-x" src="assets/img/driver-img-alt.png" width="50px" height="50px" alt=""> name  &#10507;
        <div class="dropdown-content">
            <a href="/customerprofile">cp</a>
    <a href='/CustomerDashboard'>Dashboard</a>
    <a href='/customernotification'>Notification</a>
            <a href="/logout">Logout</a>
        </div>
</div>
  */