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: 0;
  /*padding-top: 150px;*/
  /* Sticky footer: body is a flex column so <footer> sits at viewport bottom
     when the page content is shorter than the viewport. site.js still sets
     padding-top dynamically to clear the fixed header. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

:root {
    --bs-primary-rgb: 255, 102, 0;
    --bs-secondary-rgb: 1, 0, 102;
    --bs-gray: #F0F0F0;
}

.bg-gray {
    background-color: var(--bs-gray);
}

footer {
    line-height: normal !important;
    position: static !important;
}

.btn-secondary {
    color: #fff;
    background-color: rgba(var(--bs-secondary-rgb));
    border: none;
}

.btn-gray {
    background-color: var(--bs-gray);
    border: none;
}

#topBar {
    transition: opacity 0.25s ease, height 0.25s ease;
}

#topBar.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
}