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;
}

.form-floating {
    .select2-container--bootstrap-5 {
        .select2-selection {
            height: calc(3.5rem + 2px);
            padding: 1rem 0.75rem;

            > .select2-selection__rendered {
                margin-top: .6rem;
                margin-left: .25rem;
                @include font-size($form-select-font-size);
            }
        }
    }
}

.floating-select-label {
    z-index: 1000;
}

.form-floating > .form-control::placeholder{
    color: revert;
}

.form-floating > .form-control:not(:focus)::placeholder{
    color:transparent;
}
.spinner-wrapper {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity;
    opacity: 0.4;
}

.spinner-border {
    height: 6rem;
    width: 6rem;
}