.custom-dropdown {
      display: inline-block;
      position: relative;
}
.custom-listing-dropdown {
      display: inline-block;
      position: relative;
      margin-bottom: 0px;
      font-weight: normal;
}
.dd-button {
  display: inline-block;
  border: 1px solid gray;
  border-radius: 4px;
  padding: 10px 30px 10px 20px;
  background-color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
}

.dd-button:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.dd-listing-button:hover {
  background-color: #eeeeee;
}

.dd-listing-button {
 /* display: inline-block;
  border: 1px solid #DCDCDC;
  border-radius: 4px;*/
  padding: 0px 30px 0px 0px;
  /*background-color: #F3F3F3;
  cursor: pointer;
  white-space: nowrap;
  color: #6E6E6E;*/
}

.dd-listing-button:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}
.dd-button:hover {
  background-color: #eeeeee;
}

.dd-input {
  display: none;
}

.dd-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0 0;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
  background-color: #ffffff;
  list-style-type: none;
  z-index: 2;
}

.dd-input + .dd-menu {
  display: none;
} 

.dd-input:checked + .dd-menu {
  display: block;
} 

.dd-menu li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}
.dd-menu li a {
  text-decoration: none;
  color: #000000;
}

.dd-menu li a:hover {
  color: #222222
}

.dd-menu li:hover {
  background-color: #f6f6f6;
}

.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}


.dd-menu li.divider{
  padding: 0;
  border-bottom: 1px solid #cccccc;
}