/* Dropdown wrapper */
.custom-restaurants-dropdown {
  position: relative;
  width: 90%;
  max-width: 480px;
}

/* Button */
.custom-restaurants-dropdown .dropdown-toggle {
  font-family: "TradeGothic";
  font-size: 18px;
  text-transform: uppercase;
  background: #303030;
  color: #fff;
  padding: 17px 40px;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}

.custom-restaurants-dropdown .dropdown-toggle .caret {
  margin-left: 8px;
  border-top: 5px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  height: 0;
  width: 0;
}

/* Menu */
.custom-restaurants-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 1;
  margin-top: 5px;
  list-style-type: none;
  padding: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Show menu when open */
.custom-restaurants-dropdown.open .dropdown-menu {
  display: block;
}

/* Headers */
.custom-restaurants-dropdown .dropdown-header {
  padding: 5px 20px;
  font-size: 12px;
  color: #777;
}

/* Links */
.custom-restaurants-dropdown .dropdown-menu li a {
  padding: 5px 20px;
  display: block;
  color: #262626;
  text-decoration: none;
}

.custom-restaurants-dropdown .dropdown-menu li a:hover {
  background-color: #f5f5f5;
}
