@import "https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css";
@import 'https://cdn.jsdelivr.net/npm/trix@2.1.5/dist/trix.min.css';
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--base8);
}

@font-face {
  font-family: "Open Sans";
  src: url(/assets/open_sans-5f8b75e69e6e6183a2f9fac17f9d0ff0998f8e1c3520eabad15f978c4463b139.woff2) format("woff2 supports variations"), url(/assets/open_sans-5f8b75e69e6e6183a2f9fac17f9d0ff0998f8e1c3520eabad15f978c4463b139.woff2);
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}
@font-face {
  font-family: "Open Sans Italic";
  src: url(/assets/open_sans_italic-8f9dc16c71070e83717a41f2cb87bf7f53afeb01b6852cb1ab2d50db76c130aa.woff2) format("woff2 supports variations"), url(/assets/open_sans_italic-8f9dc16c71070e83717a41f2cb87bf7f53afeb01b6852cb1ab2d50db76c130aa.woff2);
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}
html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility;
  color: var(--base2);
}
html.right-text {
  text-align: right;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1rem, 5vw, 1.75rem);
}

h3 {
  font-size: clamp(1rem, 5vw, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 5vw, 1.125rem);
}

h5 {
  font-size: clamp(1rem, 5vw, 1.1rem);
}

h6 {
  font-size: clamp(1rem, 5vw, 1.1rem);
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--base2);
}
a:hover {
  text-decoration: underline;
}

.trix-content .attachment {
  position: inherit;
}

main > header.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
main > header.hero.three-qtr-height {
  height: 75vh;
}
main > header.hero .inner {
  max-width: 1200px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
main > header.hero .inner .title {
  color: var(--base8);
}
main > header.hero .inner .title h1, main > header.hero .inner .title h2, main > header.hero .inner .title h3, main > header.hero .inner .title h4, main > header.hero .inner .title h5, main > header.hero .inner .title h6, main > header.hero .inner .title p {
  margin-bottom: 1rem;
}
main > header.hero .inner .title h1 {
  font-size: 2.25rem;
}
main > header.hero .inner .title p {
  line-height: 1.5rem;
}
main > header.hero video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.flex {
  display: flex;
}
.flex.wrapped {
  flex-wrap: wrap;
}
.flex.column {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.reversed {
  justify-content: flex-end;
}
.flex.aligned.center {
  justify-content: center;
}
.flex.aligned.right {
  justify-content: right;
}
.flex.aligned.middle {
  align-items: center;
}
.flex.aligned.bottom {
  align-items: flex-end;
}
.flex.spaced.out {
  justify-content: space-between;
}
.flex.spaced.evenly {
  justify-content: space-evenly;
}
@media screen and (max-width: 640px) {
  .flex.responsive {
    flex-wrap: wrap;
  }
  .flex.responsive > * {
    min-width: 100%;
    order: 1;
  }
  .flex.responsive > *.image-background {
    height: 25rem;
    order: 0;
  }
}
.flex.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .flex.reverse {
    flex-direction: row;
  }
}
.flex .spaced {
  padding: 0.5rem;
}
.flex .broad-spaced {
  padding: 1rem;
}
.flex .narrow-spaced {
  padding: 0.25rem;
}
.flex .one {
  flex: 1;
}
.flex .two {
  flex: 2;
}
.flex .three {
  flex: 3;
}
.flex .four {
  flex: 4;
}
.flex .five {
  flex: 5;
}
.flex .six {
  flex: 6;
}
.flex > * {
  margin-right: 0.5rem;
}
.flex .centered {
  display: flex;
  align-items: center;
}

.grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}
.grid.five {
  grid-column-gap: 5rem;
}
.grid.centered {
  align-items: center;
}
.grid.aligned > * {
  display: flex;
}
.grid.aligned.middle > * {
  align-items: center;
}
.grid > div {
  grid-column: span 12;
}
@media screen and (min-width: 640px) {
  .grid .fifth {
    grid-column: span 2;
  }
}
@media screen and (min-width: 640px) {
  .grid .third {
    grid-column: span 4;
  }
}
@media screen and (min-width: 640px) {
  .grid .qtr {
    grid-column: span 3;
  }
}
@media screen and (min-width: 640px) {
  .grid .half {
    grid-column: span 6;
  }
}
@media screen and (min-width: 640px) {
  .grid .two-thirds {
    grid-column: span 8;
  }
}
@media screen and (min-width: 640px) {
  .grid .three-qtr {
    grid-column: span 9;
  }
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
}
.image-grid:not(:first-of-type) {
  margin-top: 3rem;
}
.image-grid .image {
  flex: 1;
}
.image-grid .image img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .image-grid .image {
    flex: 1 0 50%;
  }
}

.card {
  padding: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--base8);
  background-color: var(--base10);
  filter: drop-shadow(0.5rem 0.5rem 0.25rem color-mix(in srgb, var(--base4) 25%, transparent));
}
.card .image {
  height: 15rem;
}
.card > * {
  margin-top: 0.5rem;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html body.public {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
html body.public main {
  flex: 1;
}
html body.public main > header {
  padding-top: 3.9rem;
}
html body.public main section {
  padding: 1rem;
  margin: 1.5rem auto;
  max-width: 62rem;
}
html body.public main section.medium {
  max-width: 40rem;
  margin: auto;
}
html body.public main section.center-page {
  display: grid;
  place-items: center;
  min-height: 50vh;
}
html body.public main section.band {
  background-color: var(--base2);
  max-width: 100%;
}
html body.public main section.band > * {
  max-width: 62rem;
  margin: auto;
}
html body.public main section.band * {
  color: var(--base9);
}
html body.public main section p + p {
  margin-top: 1rem;
}
html body.public main section h3 {
  margin: 1.5rem auto;
}
html body.public main section h4 {
  margin: 0.5rem auto;
}

ul.list {
  list-style: none;
}

.separator {
  border: 0;
  font-size: 0.875rem;
  line-height: 1em;
  height: 1.5em;
  position: relative;
  text-align: center;
}
.separator:before {
  content: "";
  background: var(--base5);
  position: absolute;
  left: 0;
  top: 35%;
  width: 100%;
  height: 1px;
}
.separator:after {
  content: attr(data-text);
  position: relative;
  color: var(--base5);
  background-color: var(--base8);
  padding: 0 0.25rem;
  font-style: italic;
  font-weight: 300;
}

.button_to {
  display: inline;
  padding: 0;
  margin: 0;
  outline: 0;
  background: none;
  border: 0;
}
.button_to button {
  outline: 0;
  border: 0;
  background: none;
  display: inline;
  padding: 0;
  margin: 0;
}
.button_to button:hover {
  cursor: pointer;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.buttons.right {
  justify-content: flex-end;
}
.buttons a, .buttons button, .buttons input[type=submit], .buttons form .select select[type=submit], form .select .buttons select[type=submit], .buttons form textarea[type=submit], form .buttons textarea[type=submit], .buttons .button {
  background-color: var(--base2);
  color: white;
  border-radius: 2em;
  border: 3px solid var(--base2);
  text-align: center;
  text-wrap: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  transition: 0.3s ease;
  padding: 0.4rem 1.2rem;
}
.buttons a > svg, .buttons button > svg, .buttons input[type=submit] > svg, .buttons form .select select[type=submit] > svg, form .select .buttons select[type=submit] > svg, .buttons form textarea[type=submit] > svg, form .buttons textarea[type=submit] > svg, .buttons .button > svg {
  height: 1.2rem;
  aspect-ratio: 1/1;
  margin-right: 0.5rem;
}
.buttons a:hover, .buttons button:hover, .buttons input[type=submit]:hover, .buttons form .select select[type=submit]:hover, form .select .buttons select[type=submit]:hover, .buttons form textarea[type=submit]:hover, form .buttons textarea[type=submit]:hover, .buttons .button:hover {
  background-color: var(--base1);
  border-color: var(--base1);
  cursor: pointer;
}
.buttons a.outline, .buttons button.outline, .buttons input[type=submit].outline, .buttons form .select select[type=submit].outline, form .select .buttons select[type=submit].outline, .buttons form textarea[type=submit].outline, form .buttons textarea[type=submit].outline, .buttons .button.outline {
  background-color: transparent;
  color: var(--base2);
  border-radius: 2em;
  border: 3px solid var(--base2);
  text-wrap: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
  padding: 0.4rem 1.2rem;
}
.buttons a.outline > svg, .buttons button.outline > svg, .buttons input[type=submit].outline > svg, .buttons form .select select[type=submit].outline > svg, form .select .buttons select[type=submit].outline > svg, .buttons form textarea[type=submit].outline > svg, form .buttons textarea[type=submit].outline > svg, .buttons .button.outline > svg {
  height: 1.2rem;
  aspect-ratio: 1/1;
  margin-right: 0.5rem;
}
.buttons a.outline:hover, .buttons button.outline:hover, .buttons input[type=submit].outline:hover, .buttons form .select select[type=submit].outline:hover, form .select .buttons select[type=submit].outline:hover, .buttons form textarea[type=submit].outline:hover, form .buttons textarea[type=submit].outline:hover, .buttons .button.outline:hover {
  background-color: var(--base1);
  border-color: var(--base1);
  color: var(--base8);
}
.buttons a.outline.white, .buttons button.outline.white, .buttons input[type=submit].outline.white, .buttons form .select select[type=submit].outline.white, form .select .buttons select[type=submit].outline.white, .buttons form textarea[type=submit].outline.white, form .buttons textarea[type=submit].outline.white, .buttons .button.outline.white {
  background-color: transparent;
  color: var(--base8);
  border-radius: 2em;
  border: 3px solid var(--base8);
  text-wrap: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
  padding: 0.4rem 1.2rem;
}
.buttons a.outline.white > svg, .buttons button.outline.white > svg, .buttons input[type=submit].outline.white > svg, .buttons form .select select[type=submit].outline.white > svg, form .select .buttons select[type=submit].outline.white > svg, .buttons form textarea[type=submit].outline.white > svg, form .buttons textarea[type=submit].outline.white > svg, .buttons .button.outline.white > svg {
  height: 1.2rem;
  aspect-ratio: 1/1;
  margin-right: 0.5rem;
}
.buttons a.outline.white:hover, .buttons button.outline.white:hover, .buttons input[type=submit].outline.white:hover, .buttons form .select select[type=submit].outline.white:hover, form .select .buttons select[type=submit].outline.white:hover, .buttons form textarea[type=submit].outline.white:hover, form .buttons textarea[type=submit].outline.white:hover, .buttons .button.outline.white:hover {
  background-color: var(--base8);
  border-color: var(--base8);
  color: var(--base2);
}

footer {
  margin-top: 3rem;
  background-color: var(--base2);
}
footer #footer-inner {
  max-width: 62rem;
  margin: auto;
  padding: 1rem;
}
footer * {
  color: var(--base8);
  fill: var(--base8);
}
footer p {
  margin-top: 0.5rem;
}
footer #footer-logo {
  padding: 1rem;
}
footer #footer-logo svg {
  flex: 1;
  max-width: 7.5rem;
}
footer #footer-logo span {
  display: block;
  margin: auto;
  font-size: 2.5rem;
  line-height: 2rem;
  font-weight: 900;
  flex: 1;
}
footer .subnav {
  margin-top: 0;
  background-color: var(--base1);
  overflow-x: auto;
  list-style: none;
}
footer .subnav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
footer .subnav ul li a {
  display: block;
  padding: 0.5rem 1rem;
}

form.small {
  max-width: 20rem;
}
form.medium {
  max-width: 30rem;
}
form input:not([type=submit]):not([type=checkbox]), form .select select:not([type=submit]):not([type=checkbox]), form textarea:not([type=submit]):not([type=checkbox]) {
  outline: 0;
  background-color: transparent;
  padding: 0.5rem;
  border: 1px solid var(--base7);
  font-size: 0.875rem;
  border-radius: 0.4rem;
  margin-bottom: 0.5rem;
  display: block;
  width: 100%;
}
form input:not([type=submit]):not([type=checkbox]):focus, form .select select:not([type=submit]):not([type=checkbox]):focus, form textarea:not([type=submit]):not([type=checkbox]):focus {
  border-color: var(--base2);
}
form .field_with_errors input, form .field_with_errors .select select, form .select .field_with_errors select, form .field_with_errors textarea {
  border-style: dashed;
}
form h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
form fieldset {
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--base4);
  padding: 1rem;
}
form fieldset > p {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--base3);
}
form textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
}
form .select {
  position: relative;
}
form .select:after {
  content: "";
  border: solid var(--base3);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  top: 1rem;
  transform: translateY(-50%) translateX(-0.5rem) rotate(45deg);
  margin-left: 5px;
  position: absolute;
  right: 0.25rem;
  pointer-events: none;
}
form .select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2rem;
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5em;
}
form .select select::-ms-expand {
  display: none;
}
form .select select:focus {
  border-color: var(--base2);
  outline: none;
}
form .select select:focus + .select__arrow {
  border-color: var(--base2);
}
form .checkboxes {
  margin-bottom: 0.25rem;
}
form .checkboxes .checkbox {
  display: flex;
}
form .checkboxes .checkbox input, form .checkboxes .checkbox textarea, form .checkboxes .checkbox .select select, form .select .checkboxes .checkbox select {
  margin-right: 0.5rem;
  padding: unset;
  width: 1rem;
  height: 1rem;
}
form .color-picker-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
form .color-picker-wrapper .color-input {
  display: none;
}
form .color-picker-wrapper .display {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
form .color-picker-wrapper .display .color-display {
  height: 20px;
  width: 100%;
  background-color: var(--base1);
  border-radius: 4px;
  border: 1px solid var(--base6);
}
form .color-picker-wrapper .display .delete-color {
  padding: 0.25rem;
  border: 1px solid var(--base1);
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
form .color-picker-wrapper .display .delete-color svg {
  height: 1.25rem;
  width: 1.25rem;
}

#admin {
  padding-top: 4rem;
  font-size: 0.875rem;
}
#admin > header, #admin > section {
  max-width: 65rem;
  margin: auto;
}
#admin main {
  max-width: 65rem;
  margin: auto;
}
#admin section {
  margin-top: 1rem;
}
#admin section > * {
  max-width: unset;
}
#admin > header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--base7);
}
#admin > header h1 {
  font-size: 1.75rem;
  font-weight: 300;
}
#admin > header section {
  margin-top: 1rem;
}
#admin > header section header h1, #admin > header section header h2, #admin > header section header h3, #admin > header section header h4, #admin > header section header h5, #admin > header section header h6 {
  margin: auto;
}
#admin #page_list.program.table li:nth-child(2) {
  position: relative;
}
#admin #page_list.program.table li:nth-child(2):before {
  content: "H";
  left: -1rem;
  font-size: 0.875rem;
  font-weight: bold;
  position: absolute;
  color: var(--base5);
}

@keyframes fadeInBackground {
  from {
    background-color: transparent;
  }
  to {
    background-color: color-mix(in srgb, var(--base3) 40%, transparent 60%);
  }
}
.modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  z-index: 30;
}
.modal-container.open {
  display: grid;
  padding: 1rem;
}
.modal-container .modal-backdrop.active {
  backdrop-filter: blur(5px);
  webkit-backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--base2) 40%, transparent 60%);
  animation: fadeInBackground 1s ease-in-out forwards;
  z-index: 1;
}
.modal-container .modal {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-container .modal::-webkit-scrollbar {
  display: none;
}
.modal-container .modal.active {
  display: flex;
  flex-direction: column;
  background-color: var(--base10);
  min-width: 50%;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  position: relative;
  z-index: 2;
  border-radius: 0.5rem;
}
.modal-container .modal.active.full-size {
  max-width: unset;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.modal-container .modal .modal-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  position: sticky;
  top: 0;
  background-color: inherit;
  border-bottom: 1px solid var(--base7);
}
.modal-container .modal .modal-header .inner {
  flex: 1;
}
.modal-container .modal .modal-header .inner h1 {
  font-size: 1.25rem;
  margin: 0;
  line-height: unset;
}
.modal-container .modal .modal-header .modal-closer {
  flex: 1 0 auto 20px;
}
.modal-container .modal .modal-header .modal-closer svg {
  stroke: var(--base5);
}
.modal-container .modal .modal-header .modal-closer svg:hover {
  cursor: pointer;
}
.modal-container .modal .body {
  padding: 1rem;
  flex: 1;
}
.modal-container .modal .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--base7);
  padding: 1rem;
  position: sticky;
  bottom: 0;
  background-color: var(--base7);
}
.modal-container .modal form {
  padding: initial;
  filter: none;
  background-color: initial;
}

.table {
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
}
.table li {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--base7);
}
.table li:last-child {
  border-bottom: unset;
}
.table li .one {
  flex: 1;
}
.table li .two {
  flex: 2;
}
.table li .three {
  flex: 3;
}
.table li .four {
  flex: 4;
}
.table li .five {
  flex: 5;
}
.table li .options {
  display: flex;
  justify-content: flex-end;
}
.table li > *:last-child {
  text-align: right;
}
.table li.header {
  border-radius: 0.25rem;
}
.table li.header * {
  color: var(--base5);
  text-transform: uppercase;
  font-size: 0.875rem;
}

.audio-player {
  display: flex;
  align-items: center;
}
.audio-player figure {
  margin: unset;
}
@media screen and (min-width: 640px) {
  .audio-player {
    margin-top: 0.5rem;
  }
}
.audio-player .player-toggle {
  position: relative;
  color: var(--base8);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 30px;
  border: 2px solid var(--base8);
  aspect-ratio: 1/1;
  transition: 0.3s;
}
.audio-player .player-toggle > div {
  display: flex;
}
.audio-player .player-toggle:hover {
  background-color: var(--base8);
  color: var(--base2);
}
.audio-player .player-toggle .pause-button {
  display: none;
}
.audio-player .player-toggle svg {
  stroke-width: 3px;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
}
.audio-player.playing .pause-button {
  display: flex;
}
.audio-player.playing .play-button {
  display: none;
}

.audio-active {
  position: relative;
}
.audio-active:before {
  content: "";
  position: absolute;
  left: -1rem;
  margin-bottom: 50%;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-volume'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15 8a5 5 0 0 1 0 8' /%3E%3Cpath d='M17.7 5a9 9 0 0 1 0 14' /%3E%3Cpath d='M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5' /%3E%3C/svg%3E");
}

#page header {
  padding-top: 4rem;
  background-color: var(--base7);
}
#page header .inner {
  max-width: 62rem;
  padding: 3rem 0;
  margin: auto;
}
#page section .trix-content h1 {
  font-size: 2rem;
}

#program header {
  background-color: var(--base8);
  padding: 1rem;
  padding-top: 2rem;
}
#program header .inner {
  max-width: 62rem;
  padding: 3rem 0;
  margin: auto;
}
#program header .inner > * {
  margin-bottom: 1rem;
}
#program header .inner .program-links {
  padding-left: 0;
  list-style: none;
}
@media screen and (min-width: 640px) {
  #program header .inner .program-links {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    grid-auto-columns: max-content;
  }
}
#program header .inner .program-links a {
  padding: 0.25rem;
}
#program {
  background-color: var(--base9);
}
#program main {
  padding-top: 1rem;
}
#program nav {
  background-color: var(--base2);
}

.notifications {
  padding: 1rem;
  position: relative;
  max-height: 100vh;
  display: block;
  scrollbar-width: none;
}
@media screen and (max-width: 640px) {
  .notifications {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.notifications .notification {
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .notifications .notification {
    min-width: 80%;
    margin-right: 1rem;
  }
}
.notifications .notification * {
  font-size: 0.875rem;
  color: var(--base2);
}
.notifications::-webkit-scrollbar {
  display: none;
}

.tab-container {
  padding: 0.5rem;
}
.tab-container ul.tabs {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-left: 0;
  margin: 0;
}
.tab-container .tab {
  border-radius: 50px;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.tab-container .tab:hover {
  background-color: var(--base7);
  cursor: pointer;
}
.tab-container .tab.is-active {
  background-color: var(--base5);
  color: var(--base9);
}
.tab-container .tab svg {
  max-width: 1.5rem;
  max-height: 1.5rem;
}

.panels .panel {
  margin-top: 1rem;
  transition: 0.5s;
  display: none;
}
.panels .panel.is-active {
  display: block;
}

.sortable .draggable {
  padding-left: 1rem;
  position: relative;
  cursor: grab;
}
.sortable .draggable.sortable-ghost {
  background-color: var(--base9);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transition: background-color 0.5s ease;
  background-color: color-mix(in srgb, var(--base1), transparent 100%);
}
nav.solid {
  background-color: color-mix(in srgb, var(--base1), transparent 0%);
}
nav #logo {
  display: flex;
  text-decoration: none;
  align-items: center;
  z-index: 2;
}
nav #logo svg {
  flex: 1;
  fill: var(--base8);
  margin-right: 0.5rem;
  width: 4.5rem;
}
nav #logo .inner {
  flex: 3;
}
nav #logo .inner span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--base8);
}
nav > ul {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
nav > ul:last-child {
  justify-content: flex-end;
}
nav > ul li {
  margin-right: 1.25rem;
  padding: 0.25rem;
}
nav > ul li:last-child {
  margin-right: 0;
}
nav > ul li > a, nav > ul li > span {
  display: block;
  padding: 1rem;
  color: var(--base8);
  text-decoration: none;
  font-weight: bold;
  color: var(--base8);
}
nav > ul li > a:hover, nav > ul li > span:hover {
  text-decoration: none;
  background-color: color-mix(in srgb, var(--base1), transparent 40%);
  cursor: pointer;
}
nav #lang_select {
  display: flex;
  align-items: center;
}
nav #lang_select .select:after {
  content: "";
  border: solid var(--base8);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  top: 1rem;
  transform: translateY(-50%) translateX(-0.5rem) rotate(45deg);
  margin-left: 5px;
  position: absolute;
  right: 0.25rem;
  pointer-events: none;
}
nav #lang_select .select select {
  width: auto;
  margin-bottom: 0;
  border-radius: 20px;
  border-width: 2px;
  color: var(--base9);
}
nav #lang_select .select select:focus {
  border-color: unset;
}
@media screen and (min-width: 640px) {
  nav form {
    margin-top: 0.5rem;
  }
}
nav #burger-outer {
  display: none;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  nav #burger-outer {
    display: block;
  }
  nav #burger-outer > #burger-container {
    padding: 1.4rem;
    cursor: pointer;
  }
  nav #burger-outer > #burger-container .burger {
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  nav #burger-outer > #burger-container .burger, nav #burger-outer > #burger-container .burger::before, nav #burger-outer > #burger-container .burger::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--base8);
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  nav #burger-outer > #burger-container .burger::before, nav #burger-outer > #burger-container .burger::after {
    position: absolute;
    content: "";
  }
  nav #burger-outer > #burger-container .burger::before {
    top: -8px;
  }
  nav #burger-outer > #burger-container .burger::after {
    top: 8px;
  }
  nav #burger-outer > #burger-container.active .burger {
    background-color: transparent;
  }
  nav #burger-outer > #burger-container.active .burger::before {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  nav #burger-outer > #burger-container.active .burger::after {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
}
nav #main-nav {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 640px) {
  nav #main-nav {
    display: none;
  }
  nav #main-nav.active {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    top: 0;
    left: 0;
    background-color: var(--base2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
  }
  nav #main-nav.active li {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 640px) {
  nav .audio-player {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: block;
    padding: 0.75rem;
    border-radius: 50px;
    background-color: color-mix(in srgb, var(--base1), transparent 40%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}
nav .expandable {
  position: relative;
}
@media screen and (min-width: 640px) {
  nav .expandable ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    margin: 0;
    background-color: var(--base2);
    border: 1px solid var(--base4);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style-type: none;
    border-radius: 0.5rem;
  }
  nav .expandable ul:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--base2);
    z-index: 1;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  nav .expandable ul:after {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid var(--base4);
    z-index: 0;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  nav .expandable ul.opened {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 40rem;
    max-width: 90vw;
  }
  nav .expandable ul.opened li a {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem;
  }
  nav .expandable ul.opened li a:hover {
    background-color: unset;
    text-decoration: underline;
  }
}
@media screen and (max-width: 640px) {
  nav .expandable ul {
    display: none;
    padding-left: 1.5rem;
  }
  nav .expandable ul.opened {
    display: block;
  }
}

#admin-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--base10);
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
#admin-nav ul {
  display: flex;
}
#admin-nav ul li a.active-link {
  color: var(--base2);
  border-radius: 50px;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}
#admin-nav ul li a.active-link.active {
  background-color: var(--base2);
  color: var(--base9);
}

.version-control {
  display: flex;
  max-width: 75rem;
  margin: auto;
  gap: 2rem;
}
.version-control .pane.main {
  flex: 4;
}
.version-control .pane.list {
  flex: 1;
}
.version-control .pane.list .inner {
  position: sticky;
  top: 4rem;
}
.version-control .pane.list .inner header {
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
.version-control .pane.list .inner header > * {
  margin-bottom: 0.5rem;
}
.version-control .pane.list .inner ul {
  list-style: none;
}
.version-control .pane.list .inner ul li a {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 30px;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--base4);
}
.timeline li {
  position: relative;
  margin-bottom: 1rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  bottom: 45%;
  left: -19px;
  width: 10px;
  height: 10px;
  background-color: var(--base4);
  border-radius: 50%;
}
.timeline li .bubble {
  position: relative;
  margin-left: 0.25rem;
  padding: 0.75rem;
  border: 2px solid var(--base6);
  border-radius: 0.25rem;
  background-color: var(--base9);
}
.timeline li .bubble::before {
  content: "";
  position: absolute;
  bottom: 40%;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--base6);
}
.timeline li .bubble::after {
  content: "";
  position: absolute;
  bottom: 40%;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--base9);
}
.timeline li.selected {
  filter: drop-shadow(0.25rem 0.25rem 0.5rem var(--base3));
}
.timeline li.selected::before {
  border: 2px solid var(--base7);
  outline: 2px solid var(--base4);
  left: -21px;
  bottom: 37px;
}
.timeline li.active::before {
  background-color: var(--base2);
  outline-color: var(--base2);
}
.timeline li.active .bubble {
  border-color: var(--base2);
}
.timeline li.active .bubble::before {
  content: "";
  position: absolute;
  bottom: 40%;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--base2);
}
.timeline li.active .bubble::after {
  content: "";
  position: absolute;
  bottom: 40%;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--base9);
}

trix-toolbar {
  position: sticky;
  top: 3.85rem;
  background-color: var(--base9);
  border-bottom: 1px solid var(--base6);
  padding: 0.5rem 0;
}

.trix-content figure {
  z-index: -1;
}
.trix-content a {
  display: unset;
  text-decoration: underline;
  font-weight: 500;
}
.trix-content a:hover {
  cursor: pointer;
  text-decoration-thickness: 3px;
}
