html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

:root {
  --bs-body-muted: var(--bs-gray-700);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bs-body-color: var(--bs-light);
    --bs-body-bg: var(--bs-dark);
    --bs-body-muted: var(--bs-gray-300);
  }
  .text-muted {
    color: #ced4da !important;
  }
  #ageVerifyPopup {
    background-color: var(--bs-gray-700);
  }
  .button-outline-primary {
    color: var(--bs-cyan);
    border-color: var(--bs-cyan);
  }
  .button-outline-secondary {
    color: var(--bs-gray-400);
    border-color: var(--bs-gray-400);
  }
}

@media (prefers-color-scheme: light) {
}

.img-container {
  width: 250px;
}
.data-list-item:not(.full) .img-container {
  width: 80%;
}
@media (min-width: 576px) {
  .img-container {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .img-container {
    width: 350px;
  }
}
@media (min-width: 992px) {
  .img-container {
    width: 500px;
  }
}
@media (min-width: 1200px) {
  .img-container {
    width: 600px;
  }
}
@media (min-width: 1400px) {
  .img-container {
    width: 700px;
  }
}

.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;
}

.hide {
  display: none;
}

#ageVerifyPopup {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-gray-300);
  text-align: center;
  padding-top: 5rem;
}
@media (prefers-color-scheme: dark) {
  #ageVerifyPopup {
    background-color: var(--bs-gray-700);
  }
  .btn-outline-primary {
    color: var(--bs-cyan);
    border-color: var(--bs-cyan);
  }
  .btn-outline-secondary {
    color: var(--bs-gray-400);
    border-color: var(--bs-gray-400);
  }
}

.nav-list {
  list-style-type: none;
}
.nav-list .nav-list-item {
  padding: 0 1rem;
}
.nav-list .nav-list-item .nav-list-link {
  display: block;
  text-decoration: none;
  color: #0d6efd;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.nav-list .nav-list-item .nav-list-link:hover {
  color: #0a58ca;
}
.nav-list .nav-list-item .nav-list-link:focus {
  color: #0a58ca;
}
.nav-list-toggle {
  display: block;
  text-decoration: none;
  color: var(--bs-body-color);
  margin: 0 1rem 1rem;
}
.list-truncated {
  margin-bottom: 0;
}
@media (prefers-color-scheme: dark) {
  .nav-list .nav-list-item .nav-list-link {
    color: rgba(255, 255, 255, 0.55);
  }
  .nav-list .nav-list-item .nav-list-link:hover, .nav-list .nav-list-item .nav-list-link:focus {
    color: rgba(255, 255, 255, 0.75);
  }
}

.panel-link .panel-body {
  display: flex;
  align-items: end;
  text-decoration: none;
}
.panel-link {
  position: relative;
  display: block;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.panel-link:hover {
  background-color: #e9ecef;
}
.panel-link:focus {
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
@media (prefers-color-scheme: dark) {
  .panel-link:hover {
    background-color: #343a40;
  }
  .panel-link:focus {
    background-color: #343a40;
  }
}

.icon-link {
  text-decoration: none !important;
  color: var(--bs-body-color);
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.data-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.data-list-item {
  flex-basis: 50%;
  padding-right: 1rem;
  padding-left: 1rem;
}
.data-list-item.full {
  flex-basis: 100%;
}
.data-list-item.flex-align-center {
  align-self: center;
}

.data-table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-body-color);
  vertical-align: top;
  border-color: var(--bs-body-color);
}
.data-table caption {
  color: var(--bs-body-muted);
  font-size: 125%;
  padding-bottom: 0;
}
.data-table tbody tr {
  border-bottom-width: 1px;
  border-color: inherit;
}

.flex-justify-right {
  justify-content: right;
}
.flex-justify-left {
  justify-content: left;
}

svg {
  stroke: none;
  stroke-width: 4;
  fill: none;
}
svg text {
  font-family: Bebas Neue, Helvetica, sans-serif;
  font-size: 50px;
  font-weight: bold;
  text-anchor: middle;
  dominant-baseline: central;
}
svg .stroke1 {
  stroke-width: 1;
}
svg .stroke8 {
  stroke-width: 8;
}
svg .stroke25 {
  stroke-width: 25;
}
svg .stroke30 {
  stroke-width: 30;
}
svg .dark-stroke {
  stroke: #343a40;
}
svg .dark-fill {
  fill: #343a40;
}
svg .red-fill {
  fill: #dc3545;
}
svg .red-stroke {
  stroke: #c42535;
}
svg .maroon-fill {
  fill: #800000;
}
svg .blue-fill {
  fill: #0d6efd;
}
svg .blue-stroke {
  stroke: #015ee9;
}
svg .darkblue-fill {
  fill: #110981;
}
svg .skyblue-fill {
  fill: #add8e6
}
svg .forest-fill {
  fill: #228b22;
}
svg .white-fill {
  fill: #e9ecef;
}
svg .white-stroke {
  stroke: #ced4da;
}
svg .lightgray-fill {
  fill: #d3d3d3;
}
svg .silver-fill {
  fill: #c0c0c0;
}
svg .silver-stroke {
  stroke: #c0c0c0;
}
svg .brown-fill {
  fill: #80471c;
}
svg .beer-fill {
  fill: #ffbf00;
}
svg .beer-stroke {
  stroke: #ffbf00;
}
svg .gold-fill {
  fill: #ffd700;
}
svg .font-large {
  font-size: 100px;
}
svg .font-spacing-10
{
  letter-spacing: 0.1em;
}
@media (prefers-color-scheme: dark) {
  svg .dark-stroke {
    stroke: #6c757d;
  }
  svg .dark-fill {
    fill: #6c757d;
  }
  svg .darkblue-fill {
    fill: #7d75f0;
  }
  svg .white-fill {
    fill: #fff;
  }
  svg .white-stroke {
    stroke: #f8f9fa;
  }
  svg .gold-fill {
    fill: #d4af37;
  }
  svg .skyblue-fill {
    fill: #389ebf;
  }
}

#map iframe {
  width: 300px;
  height: 180px;
}
@media (min-width:768px) {
  #map iframe {
    width: 400px;
    height: 240px;
  }
}
@media (min-width:992px) {
  #map iframe {
    width: 500px;
    height: 300px;
  }
}