/* The dropdown container */
.oncontentdrop {
 
  overflow: hidden;
}

/* Dropdown button */
.oncontentdrop .halimdropbtn {
text-align:left;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  font-size: 16px; 
  border: 1;
  outline: none;
  color: #000;
  width:100%;
  padding: 14px 16px;
  background-color: #fff;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.oncontentdrop:hover .halimdropbtn {
  background-color: red;
  cursor:pointer;
}

/* Dropdown content (hidden by default) */
.halimdropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.halimdropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
    cursor:pointer;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.halimdropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.oncontentdrop.selected .halimdropdown-content {
  display: block;
}
.halimdropbtn i.fa.fa-caret-down {
float:right;
}
