/* Increase switch size in forms */
.form-check.form-switch .form-check-input {
  width: 3em;
  height: 1.5em;
  padding-right: 50px;
  margin-right: 10px;
}

.form-check.form-switch .form-check-input:checked {
  background-color: #0d6efd;
}

.form-check.form-switch .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Match select2 height with Bootstrap standard select height */
.select2-container .select2-selection--single {
  height: calc(2.25rem + 2px); /* same as .form-control */
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: calc(2.25rem + 2px);
}