/*Styling Selectbox*/
#block-languageswitcher-2 {
  z-index: 3;
  position: absolute;
  right: 10%;
}

.dropdown {
  display: inline-flex;
  background-color: transparent;
  transition: all 0.5s ease;
  position: relative;
  font-size: 14px;
  color: #767584;
  height: 100%;
  text-align: left;
  outline: none;
  font-weight: 500;
}

.dropdown .select {
  cursor: pointer;
  display: block;
  height: 70px;
  display: flex;
  align-items: center;
  text-align: left;
}
.dropdown .select .choose {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: white;
}

.dropdown .select > i {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  float: right;
  line-height: 20px;
}

.dropdown.active .select > i {
  transform: rotate(-90deg);
}

.dropdown .dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: 50px;
  left: 0;
  border-radius: 0 1px 5px 5px;
  overflow: hidden;
  display: none;
  overflow-y: auto;
  z-index: 9;
  top: 50px;
  left: -10px;
}

.dropdown .dropdown-menu li {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.dropdown .dropdown-menu li a {
  font-size: 14px;
  display: flex;
  justify-content: center;
  line-height: 35px;
  font-weight: 700;
}
.dropdown .dropdown-menu li a img {
  margin-right: 10px;
  border-radius: 50%;
}

.dropdown .dropdown-menu {
  padding: 0;
  list-style: none;
}

.dropdown .dropdown-menu .is-active {
  display: none;
}

.dropdown span.choose::before {
  font-family: "Flaticon";
  content: "\f100";
  position: absolute;
  transform: rotate(90deg);
  left: 20px;
  font-size: 10px;
  width: 20px;
  padding-left: 5px;
}

/*# sourceMappingURL=dropdown.css.map */
