body {
  background: #000f18;
  color: #eee;
  font-family: "Inter", sans-serif;
}
.navbar {
  padding: 0;
}
.navbar.bg-dark {
  background-color: #061e36 !important;
}
.navbar-brand {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .navbar-collapse {
    margin-bottom: 1rem;
  }
  .nav-link {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .nav-link:last-of-type {
    border-top: unset;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

.banner {
  background-image: url(/static/banner-x2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.underwater {
  background-image: url(/static/water-full.jpg);
  background-position: top center;
  background-size: 100% 60px;
  background-repeat: repeat-x;
  margin-top: 0 !important;
  padding: 1rem;
  border-top: 1px solid #fff;
}

.pointer {
  cursor: pointer;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  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;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3398d1;
  --bs-btn-border-color: #3398d1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #369;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
.btn-secondary {
  --bs-btn-color: #3398d1;
  --bs-btn-bg: rgba(0, 0, 0, 0.5);
  --bs-btn-border-color: #3398d1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(0, 0, 0, 0.75);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
}

.form-switch .form-check-input {
  width: 3em;
  height: 1.5em;
  margin-right: 0.5em;
}
.form-check-input:checked {
  background-color: #3398d1;
  border-color: #3398d1;
}
.form-switch {
  align-items: center;
  display: flex;
  width: fit-content;
}

footer {
  background: #303030;
  background: linear-gradient(
    44deg,
    rgba(48, 48, 48, 1) 0%,
    rgba(52, 52, 52, 1) 100%
  );
  padding: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.run-card {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  background-color: #012332;
}

.run-title,
.run-desc,
.run-total {
  padding: 0.25rem 1rem;
  text-align: center;
}

.run-title {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1rem 1rem 0 0;
  color: #fff;
}

.run-total {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
}
ul.runs {
  margin: 0.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 0.5rem;
}

.runs li {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  list-style: none;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.runs li a {
  color: #ccc;
}

.accordion {
  --bs-accordion-border-color: transparent;

  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion,
.accordion-item {
  padding: 0;
  background-color: transparent;
}
.accordion-body {
  padding: 0;
}

.accordion-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.accordion-button {
  background-color: transparent !important;
  color: #ccc !important;
  padding: 0.5rem 0;

  border-radius: 0 !important;
}

.pass-hdr {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #666;
  color: #ccc;
  font-weight: 300;
}

.tricklist {
  margin: 1rem 0;
}
.trick-item {
  padding: 0.125rem 0;
}

.trick-item span {
  display: flex;
  grid-gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
