:root{
    --label-required-color: red;
}
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;
}

label.required::after {
    content: '*';
    color: var(--label-required-color, red);
    padding-left: 0.25rem;
}

.loading-shade-container{
    position: relative;
}

.loading-shade {
    display:none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.loading-shade.show{
    display: flex;
}

.error-modal {
    min-width: 40vw;
    border: 0;
    box-shadow: 0 0 20px 5px rgba(0 0 0 / 40%);
    border-radius: 5px;
    margin-top: 20vh;
}