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;
}

.flex {
    display: flex;
}

.flex-column {
    display:flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.push-right {
    margin-left: auto;
}

.justify-center {
    justify-content: center;
}

label {
    --pico-form-label-font-weight: bold;
}

.nowrap {
    white-space: nowrap;
}

.nowrap-ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.authenticated-header {
    margin-bottom: 20px;
}

.logo {
    font-size: 22px;
    color: var(--pico-color);
    background-color: transparent;
}

.logo.small {
    font-size: 16px;
}

.top-header {
    font-size: 20px;
    font-weight: bold;
}

@media(max-width:800px) {
    .logo {
        font-size: 16px;
    }
}