html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


/*********************************************** SELECT2 *************************************************/
/* align select2 more with default Bootstrap look */
.select2-selection__rendered {
    line-height: 38px !important;
    font-size: initial;
}
.select2-container .select2-selection--single {
    height: 38px !important;
    border: 1px solid #ced4da;
}
.select2-container--default .select2-results__option {
    font-size: initial;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #fff;
    color: #212529;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #808080;
    color: #fff;
    font-size:initial;
}
.select2-selection__arrow {
    display: none;
}
.select2-container .select2-results > .select2-results__options {
    max-height: 250px !important;
}
.select2-container {
    width: 100% !important;
}
@media (min-width: 768px) {
    .select2-container--open .select2-dropdown {
        width: 31% !important;
    }
}
/* select2 readonly */
select[readonly].select2-hidden-accessible + .select2-container {
    pointer-events: none;
    touch-action: none;
}
select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}
select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow, select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
    display: none;
}