@charset "UTF-8";
.fcf-dropdown {
  position: relative; }
  .fcf-dropdown .fcf-dropdown-field {
    position: relative;
    text-align: left;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    cursor: pointer;
    border-radius: 3px; }
    .fcf-dropdown .fcf-dropdown-field .arrow {
      position: absolute;
      top: 0;
      right: 0;
      padding-right: .5em;
      z-index: 10;
      line-height: 1;
      background-color: #fff; }
      .fcf-dropdown .fcf-dropdown-field .arrow:before {
        line-height: 50px;
        content: "";
        font-family: "fcficons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .fcf-dropdown .fcf-dropdown-field .label {
      display: block;
      padding: 0.9em 1.8em 0.8em 0.9em;
      text-align: left;
      font-size: 1em;
      font-weight: 400;
      font-family: "Roboto", sans-serif;
      color: #535353; }
      .fcf-dropdown .fcf-dropdown-field .label .prefix,
      .fcf-dropdown .fcf-dropdown-field .label .suffix {
        color: #9b9b9b; }
    .fcf-dropdown .fcf-dropdown-field.fcf-active + .fcf-dropdown-wrapper {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0); }
    .fcf-dropdown .fcf-dropdown-field.fcf-active .arrow:before {
      content: ""; }
  .fcf-dropdown .fcf-dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    min-width: 250px;
    z-index: 20;
    margin-top: 8px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: translate3d(-50%, 10px, 0);
            transform: translate3d(-50%, 10px, 0);
    border-radius: 6px; }
    .fcf-dropdown .fcf-dropdown-wrapper:after {
      content: '';
      display: block;
      position: absolute;
      top: 3px;
      left: 50%;
      width: 10px;
      height: 10px;
      z-index: 2;
      border-left: 1px solid #c3c3c3;
      border-top: 1px solid #c3c3c3;
      background-color: #fff;
      -webkit-transform: rotate(45deg) translate(-50%, -50%);
              transform: rotate(45deg) translate(-50%, -50%); }
    .fcf-dropdown .fcf-dropdown-wrapper .fcf-dropdown-container {
      overflow: hidden;
      position: relative;
      border: 1px solid #c3c3c3;
      -webkit-box-shadow: 0 5px 20px rgba(17, 17, 17, 0.2);
              box-shadow: 0 5px 20px rgba(17, 17, 17, 0.2);
      background-color: #fff;
      border-radius: 5px; }
      .fcf-dropdown .fcf-dropdown-wrapper .fcf-dropdown-container > div {
        position: relative;
        z-index: 3; }
