
.Select {
  &.is-focused {
    .Select-control,
    .Select-menu-outer {
      border-color: $primary-color;  
    }
  }

  &.is-focused:not(.is-open) {
    .Select-control {
      border-color: $primary-color;
    }
  }

  &.is-open {
    .Select-control {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  &.is-open.up .Select-control {
    border-radius: 0.2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  &.is-disabled {
    .Select-control {
      cursor: not-allowed;
    }
  }

  .Select-control {
    padding: 7px 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.2rem;
    cursor: text;

    .Select-multi-value-wrapper {
      display: block;

      .Select-value {
        margin: 0;
        background-color: transparent;

        .Select-value-label {
          display: block;
          font-family: sans-serif;
          font-size: .8rem;
        }
      }

      .Select-input {
        height: inherit;
        margin: 0px 0 0 -2px;
        padding: 0;

        input {
          padding: 0;
          font-family: sans-serif;
        }
      }
    }

    .Select-arrow-zone {
      width: 8px;
      background: $custom-select-indicator no-repeat center;
      background-size: $custom-select-bg-size;
    }
  }

  > .Select-menu-outer {
    max-height: 176px;
    overflow: hidden;

    > .Select-menu {
      max-height: 176px;
    }

    .Select-option {
      padding: 8px 10px;
      font-family: sans-serif;
      font-size: .8rem;
    }

    .Select-option {
      &.is-focused {
        background-color: #f2f2f2;
      }

      &.is-selected {
        background-color: #e2e2e2;
      }
    }

    &.up {
      top: auto;
      bottom: 100%;
      margin-bottom: -2px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      border-top-left-radius: 0.2rem;
      border-top-right-radius: 0.2rem;
    }
  }

  .Select-placeholder {
    padding: 2px 12px;
  }

  &.Select-lg {
    .Select-control {
      padding: 13.5px 16px;
    }

    .Select-placeholder {
      padding: 9px 16px;
    }

    .Select-arrow-zone {
      top: 1px;
    }
  }
}
