@charset "utf-8";

.dropbtn {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  color: #fff;
  opacity: .6;
  width: auto;
	text-align: center;
    line-height: 38px;
}

.dropdown {
  position: relative;
  display: inline-block;
	line-height: 24px;
}

.dropdown-content {
  display: none;
  background : #0f3e68;
  position: absolute;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content li {
	width: 120px;
	height: auto;
  background: #0a2c4e;
  box-shadow: none;
  border-radius: 0;
  border-top: 0;
  transition: all all 0.3s ease-in-out;
	display: inline-block;
	line-height: 24px;
	text-align: left;
	border: none;
}

.dropdown-content li a {
    display: block;
    line-height: 48px;
}

.dropdown-content li:hover {
	color: #fff;
}

.dropdown-content a:hover {
	opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}