.f-dropdown {
  border: none;
}
.custom-dropdown-area {
  display: inline-block;
  margin: 0 0 20px 0;
  position:relative;
  width: 100%;
  float: left;
  color: #FFF;
}
.custom-dropdown-button {
  background-color: #35333e;
  background-image: url("../images/arrow.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  border: none;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: #FFF !important;
  line-height: normal;
  border-radius: 0;
  height: 2.3125rem;
  width: 100%;
  display: block;
}
.custom-dropdown-button.radius {
  border-radius: 3px;
}
.custom-dropdown-area:hover .custom-dropdown-button {
  background-color: #35333e;
  color: #FFF;
}
.custom-dropdown-area:hover .custom-dropdown-options {
  background-color: #7a7885;
}
.custom-dropdown-area .f-dropdown li:hover {
    background-color: #35333e;
    color: #FFF;
}
.custom-dropdown-button:disabled {
  background-color: #FFF;
  cursor: default;
}
.custom-dropdown-options {
  background-color: #7a7885;
  border-top: 0;
  margin-top: -3px;
  max-width: 100%;
  width: 100% !important;
}
.custom-dropdown-options li {
  padding: 0.5rem;
}
.custom-dropdown-options li.disabled {
  color: #ccc;
}
.custom-dropdown-options li.disabled:hover {
  background: #35333e;
}
.custom-dropdown-options li.selected:after {
  content: '✓';
  float: right;
  padding-right: 0.5rem;
}
.custom-dropdown-options:before, .custom-dropdown-options:after {
  display: none;
}
@media only screen and (max-width: 40em) {
  .custom-dropdown-options {
    margin-left: -8px !important;
  }
}
