/* css for dropdown extension */
.dropdown-content {
  background-color: white;
  top: 40px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 100;
  left: -70%;
  padding: 0 !important;
}

.dropdown-content li a {
  color: #1e2a36 !important;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  border: none !important;
  width: 320px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 6px;
  line-height: 20px;
  background-color: transparent !important;
}

.dropdown-content li {
  background-color: white;
  margin: 0 !important;
  width: 100%;
  transition: all 0.5s;
}

.dropdown-content li i {
  display: none;
}

.dropdown-content li:hover {
  background-color: #f58363;
  color: white;
}

.dropdown-content li:hover a {
  color: #fff;
}

#special_offers_btn .dropdown-content {
  padding: 0;
}
#special_offers_btn .dropdown-content li a {
  color: #1e2a36 !important;
}
