span.choose {
  color: #555;
  padding: 5px 0 10px;
  display: inherit;
}

/*Styling Selectbox*/
.dropdown {
  width: 250px;
  display: inline-block;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  position: relative;
  font-size: 14px;
  color: #5F5F5F;
  height: 100%;
  text-align: left;
}
@media (max-width: 1024px) {
  .dropdown {
    width: 100%;
    max-width: 100%;
  }
}
.dropdown .select {
  cursor: pointer;
  display: block;
  padding: 10px;
  font-size: 20px;
  height: 50px;
}
.dropdown .select span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
}
.dropdown .select i {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  float: right;
  line-height: 30px;
}
.dropdown:active {
  background-color: #f8f8f8;
}

.dropdown.active:hover,
.dropdown.active {
  box-shadow: 0 0 4px #cccccc;
  border-radius: 2px 2px 0 0;
  background-color: #f8f8f8;
}

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

.dropdown .dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  box-shadow: 0 1px 2px #cccccc;
  border-radius: 0 1px 2px 2px;
  overflow: hidden;
  display: none;
  max-height: 160px;
  overflow-y: auto;
  z-index: 9;
}

.dropdown .dropdown-menu .sign i {
  font-weight: bold;
}

.dropdown .dropdown-menu li {
  padding: 10px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

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

.dropdown .dropdown-menu li:hover {
  background-color: #f2f2f2;
}

.dropdown .dropdown-menu li:active {
  background-color: #e2e2e2;
}

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