@font-face {
  font-family: 'Fredericka the Great';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/frederickathegreat/v16/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Sk.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Libre Barcode 128';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A.ttf) format('truetype');
}
:root,
html[data-theme='light'] {
  --foreground: #000000;
  --background: #ffffff;
  --secondary: #8d8d8d;
  --tertiary: #b1b1b1;
  --muted: #eaeaea;
  --transition: 300ms ease-in-out;
}
html[data-theme='dark'] {
  --foreground: #ffffff;
  --background: #000000;
  --secondary: #c6c6c6;
  --tertiary: #8a8a8a;
  --muted: #373737;
  --transition: 300ms ease-in-out;
}
body {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 1.2;
  color: var(--foreground);
  background-color: var(--background);
}
footer {
  color: var(--tertiary);
  font-family: 'Inter';
}
#container {
  max-width: 1920px;
  margin: 0 auto;
}
#side {
  grid-area: side;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 700px) {
  #side {
    height: 100vh;
    position: sticky;
    top: 0;
  }
}
#side .top {
  align-self: flex-start;
}
#side .bottom {
  align-self: baseline;
  margin-top: calc(32px / 2);
}
#content {
  grid-area: content;
  box-sizing: border-box;
  overflow: scroll;
  padding: 0 32px 32px 32px;
}
@media (min-width: 700px) {
  #content {
    padding: 32px;
  }
}
.layout {
  display: grid;
  gap: 0;
  grid-template-areas: "side" "content";
}
@media (min-width: 700px) {
  .layout {
    grid-template-columns: minmax(280px, 1fr) 3fr;
    grid-template-areas: "side content";
    min-height: 100vh;
  }
}
@media (min-width: 1000px) {
  .layout {
    grid-template-columns: minmax(320px, 1fr) 3fr;
    grid-template-areas: "side content";
  }
}
@media (min-width: 1200px) {
  .layout {
    grid-template-columns: minmax(420px, 1fr) 3fr;
    grid-template-areas: "side content";
  }
}
.d-none {
  display: none;
}
h1.site-heading {
  font-size: 1.8em;
  font-weight: bold;
  font-variant: small-caps;
  font-family: 'Fredericka the Great';
}
@media (min-width: 1000px) {
  h1.site-heading {
    font-size: 2.2em;
    display: table-caption;
  }
}
@media (min-width: 1200px) {
  h1.site-heading {
    font-size: 2.6em;
    display: table-caption;
  }
}
h1.album-heading {
  font-size: 1.8em;
  font-weight: bold;
  font-family: 'Fredericka the Great';
  font-variant: small-caps;
}
@media (min-width: 1000px) {
  h1.album-heading {
    font-size: 2.2em;
    display: table-caption;
  }
}
@media (min-width: 1200px) {
  h1.album-heading {
    font-size: 2.6em;
    display: table-caption;
  }
}
.zip p {
  color: var(--tertiary);
  transition: var(--transition);
}
.zip p a:hover {
  color: var(--secondary);
  transition: var(--transition);
}
.breadcrumbs {
  color: var(--secondary);
  margin-bottom: calc(32px / 2);
}
.breadcrumbs a {
  text-decoration: underline;
  color: var(--tertiary);
  transition: var(--transition);
}
.breadcrumbs a:hover {
  color: var(--secondary);
  transition: var(--transition);
}
.breadcrumbs a:first-of-type {
  font-weight: bold;
  color: var(--secondary);
}
.breadcrumbs a:first-of-type:hover {
  color: var(--foreground);
}
div.website-info {
  color: var(--secondary);
}
p.date-range {
  font-size: 1em;
  color: var(--tertiary);
}
.barcode {
  font-family: 'Libre Barcode 128';
  font-size: 2em;
  margin-top: 0.6em;
  margin-bottom: -0.1em;
  line-height: 0.8;
}
@media (min-width: 1000px) {
  .barcode {
    font-size: 3em;
    margin-top: 0.5em;
    margin-bottom: -0.1em;
    line-height: 0.8;
  }
}
@media (min-width: 1200px) {
  .barcode {
    font-size: 3em;
    margin-top: 0.5em;
    margin-bottom: -0.1em;
    line-height: 0.8;
  }
}
p {
  margin-top: calc(32px / 2);
}
p a {
  text-decoration: underline;
}
a {
  color: inherit;
  text-decoration: none;
}
hr {
  border: none;
  border-top: var(--muted) solid 1px;
  margin: 32px 0;
}
hr.hr-half {
  margin: calc(32px / 2) 0;
}
#albums {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
@media (min-width: 700px) {
  #albums {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1000px) {
  #albums {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  #albums {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
div.album img.album-cover {
  object-fit: cover;
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
}
div.album .album-info {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8em;
}
div.album .album-info .album-title {
  font-weight: 400;
}
div.album .album-info .album-count {
  color: var(--tertiary);
}
div.album .album-info .album-last-updated {
  color: var(--tertiary);
  font-weight: 300;
}
.lg-sub-html .caption {
  font-weight: bold;
}
.lg-sub-html .date {
  font-weight: 300;
}
.control-bar {
  display: flex;
  gap: 8px;
}
[data-BW='colour'] .d-block-colour,
[data-BW='BW'] .d-block-BW {
  display: block;
  cursor: pointer;
  fill: var(--tertiary);
  transition: var(--transition);
}
[data-BW='colour'] .d-block-colour:hover,
[data-BW='BW'] .d-block-BW:hover {
  fill: var(--secondary);
  transition: var(--transition);
}
[data-theme='light'] .d-block-light,
[data-theme='dark'] .d-block-dark {
  display: block;
  cursor: pointer;
  fill: var(--tertiary);
  transition: var(--transition);
}
[data-theme='light'] .d-block-light:hover,
[data-theme='dark'] .d-block-dark:hover {
  fill: var(--secondary);
  transition: var(--transition);
}
img {
  transition: filter var(--transition) !important;
}
[data-BW='BW'] img:not(:hover) {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
[data-BW='BW'] .lg-container img {
  -webkit-filter: unset;
  filter: unset;
}
.justified-gallery > a > img,
.justified-gallery > div > img,
.justified-gallery > figure > img,
.justified-gallery > a > a > img,
.justified-gallery > div > a > img,
.justified-gallery > figure > a > img,
.justified-gallery > a > svg,
.justified-gallery > div > svg,
.justified-gallery > figure > svg,
.justified-gallery > a > a > svg,
.justified-gallery > div > a > svg,
.justified-gallery > figure > a > svg {
  filter: "alpha(opacity=100)";
  opacity: 1;
}
.justified-gallery > a,
.justified-gallery > div,
.justified-gallery > figure {
  filter: "alpha(opacity=100)";
  opacity: 1;
}
html[data-theme='light'] .lg-outer .lg-thumb-outer {
  box-shadow: 0px 0px 6px -3.5px rgba(0, 0, 0, 0.25) inset;
}
html[data-theme='light'] .lg-sub-html {
  color: #333 !important;
}
html[data-theme='light'] .lg-sub-html a {
  color: #2f2f2f !important;
}
html[data-theme='light'] .lg-backdrop {
  background-color: #fff;
}
html[data-theme='light'] .lg-backdrop {
  background-color: #fff;
}
html[data-theme='light'] .lg-thumb-item.active,
html[data-theme='light'] .lg-thumb-item:hover {
  border-color: #333;
}
html[data-theme='light'] .lg-progress-bar {
  background-color: #999;
}
html[data-theme='light'] .lg-progress-bar .lg-progress {
  background-color: #333;
}
html[data-theme='light'] .lg-outer .lg-thumb-outer {
  background-color: #fcfcfc;
}
html[data-theme='light'] .lg-next,
html[data-theme='light'] .lg-prev {
  background-color: rgba(0, 0, 0, 0.03);
  color: #444;
}
html[data-theme='light'] .lg-next:hover,
html[data-theme='light'] .lg-prev:hover {
  color: #000;
}
html[data-theme='light'] .lg-next:focus,
html[data-theme='light'] .lg-prev:focus {
  outline: none;
  box-shadow: none;
}
html[data-theme='light'] .lg-toolbar .lg-icon {
  color: #555;
}
html[data-theme='light'] .lg-toolbar .lg-icon:hover {
  color: #000;
}
html[data-theme='light'] .lg-counter {
  color: #555;
}
html[data-theme='light'] .lg-outer .lg-thumb-item.active,
html[data-theme='light'] .lg-outer .lg-thumb-item:hover {
  border-color: #333;
}
.lg-media-overlap .lg-toolbar {
  background-image: none;
}
.lg-media-overlap .lg-sub-html {
  background-image: none;
}
