.sp-select {
  position: relative;
  width: 100%;

  .form-control {
    cursor: pointer;
    min-height: 38px;
    transition: all 0.2s ease;

    &.focus {
      border-color: $input-focus-border-color;
      //box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
      box-shadow: $input-focus-box-shadow;
    }
  }

  .dropdown-item {
    cursor: pointer;
    border-radius: 0.25rem;
  }

  .dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
  }
}