.dropdown {
  position: relative;
  display: inline-block;
  color: var(--palette-color-1);
  text-align: center;
  min-width: 8rem;
}

.dropdown-content {
  border-bottom: solid var(--palette-color-1) 3px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--global-element-box-shadow);
  opacity: 0%;
  position: absolute;
  background-color: var(--palette-color-4);
  min-width: 8rem;
  z-index: -1;
  transition: 0.5s;
}

.dropdown:hover .dropdown-content {
  opacity: 100%;
  z-index: 1;
}

.dropdown-content > ul {
    margin:0px;
    padding:10px;
}

.dropdown-content > ul > li:hover {
  background-color: #b3b3b3;

}

.dropdown-content > ul > li {
  list-style-type: none;
  color: var(--palette-color-1);
  min-width: 60px;
  text-align: center;
 }