// Set default customise component variables here,
// Override it in theme variables files

$custom-select-padding-x-lg:     $input-btn-padding-x-lg  !default;
$custom-select-border-radius-lg: $border-radius-lg        !default;

.x-custom-select-lg {
  @include media-breakpoint-up(sm) {
    @include border-radius($custom-select-border-radius-lg);
    padding-left: $custom-select-padding-x-lg;

    // Form Responsive Control sizing
    //
    // Copy from Bootstrap to avoid Sass extend issues.
    // = custom-select-lg;
    height: $custom-select-height-lg;
    padding-top: $custom-select-padding-y;
    padding-bottom: $custom-select-padding-y;
    font-size: $custom-select-font-size-lg;
  }
}
