@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/alegreya-sans-latin-900-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/alegreya-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/alegreya-latin-900-normal.woff2") format("woff2");
}
html,
body {
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Alegreya Sans", sans-serif;
  color: #000;
}

.page-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 0.5;
  color: #000;
  text-decoration: none;
  padding: 16px;
}
.page-header:hover {
  transition: opacity 0.2s ease;
  opacity: 1;
}

.page-header-back {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.page-header-logotype {
  height: 20px;
  margin-right: 16px;
  position: relative;
  top: -2px;
}

.page-header-title {
  font-family: "Alegreya Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  top: 1px;
}

@keyframes loading-circle-dash {
  0% {
    stroke-dasharray: 0, 0, 3.490658504px, 1000;
    animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
  }
  50% {
    stroke-dasharray: 0, 0, 94.2477796077px, 1000;
    animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
  }
  100% {
    stroke-dasharray: 0, 90.7571211037px, 3.490658504px, 1000;
  }
}
@keyframes loading-circle-appear {
  from {
    stroke-width: 0;
  }
  to {
    stroke-width: 4px;
  }
}
.loading-spinner {
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  animation: loading-spinner-rotate-48px 5s linear 2s infinite;
  animation-fill-mode: backwards;
}
.loading-spinner circle {
  fill: none;
  stroke: #000;
  stroke-width: 4px;
  stroke-dasharray: 3.490658504px, 1000;
  transform-origin: 50% 50%;
  animation: loading-circle-dash 1.5s linear 2s infinite, loading-circle-rotate 1.5s linear 2s infinite, loading-circle-appear 3s ease 2s;
  animation-fill-mode: backwards;
}
@keyframes loading-circle-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(100deg);
  }
}
@keyframes loading-spinner-rotate-48px {
  from {
    transform: translate(-50%, -50%) scale(1) rotate(-90deg);
  }
  to {
    transform: translate(-50%, -50%) scale(1) rotate(270deg);
  }
}

html,
body {
  background-color: #fff;
  color: #333;
  height: 100%;
}

.page-header {
  position: absolute;
  left: 0;
  top: 0;
}

#container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.month-carousel {
  width: 600px;
  position: relative;
  margin: 0 auto;
  flex: 1 0 auto;
}
.month-carousel.animate {
  transition: transform 0.2s ease;
}

.month-carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  margin-top: 72px;
  position: relative;
  overflow-x: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}

.archive-error {
  margin-top: 24px;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
}

.month {
  position: absolute;
  overflow-x: visible;
  overflow-y: visible;
  width: 100%;
  height: 100%;
  user-select: none;
  transition: opacity 0.2s ease;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  opacity: 0.15;
}
.month .click-screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1000;
}
.month.active {
  opacity: 1;
  cursor: -webkit-grab;
  cursor: grab;
}
.month.active .click-screen {
  display: none;
}

.month-row {
  flex-shrink: 0;
  margin: 0;
}
.month-row.month-header {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 900;
  font-size: 28px;
  margin-top: 16px;
  text-align: center;
}
.month-row.weekday-labels {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  color: rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.days {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1 1 auto;
  align-content: flex-start;
  width: 100%;
  padding: 0 8px 32px 8px;
  margin-left: -8px;
  margin-right: -8px;
  overflow-y: auto;
  margin-bottom: 0;
}

.cell {
  width: 78px;
  margin-right: 4px;
}

.days .cell {
  position: relative;
  left: 0;
  top: 0;
  height: 80px;
  margin-bottom: 4px;
}
.days .cell:not(.loaded) .meta {
  display: none;
}
.days .cell .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-size: cover;
  background-color: #eee;
}
.days .cell .meta {
  position: absolute;
  top: 100%;
  width: 100%;
  transform: translateY(-100%);
  padding: 4px 8px;
  background-color: #111;
  border-bottom: 4px solid #fff;
  color: #fff;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 1;
  opacity: 0;
}
.days .cell .meta .title {
  display: none;
}
.days .cell:hover {
  z-index: 10;
}
.days .cell:hover .meta {
  transform: translateY(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 1;
}
.days .cell:hover .meta .title {
  display: block;
}
.days .cell .overlay-link {
  display: none;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s ease;
  z-index: 3;
}
.days .cell:hover .overlay-link {
  opacity: 0;
}
.days .cell.today, .days .cell.past {
  color: #fff;
}
.days .cell.today .overlay-link, .days .cell.past .overlay-link {
  display: flex;
}
.days .cell .date {
  margin-top: 4px;
  margin-left: 8px;
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  color: #fff;
}
.days .cell.today .image {
  filter: grayscale(100%);
}
.days .cell.today:hover .image {
  filter: none;
}
.days .cell.today .overlay-link {
  background-color: rgba(242, 190, 25, 0.7);
}
.days .cell.today .date {
  font-weight: 900;
  color: rgb(72, 48, 0);
  text-shadow: -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 1px 1px 0 #fff;
}

@media only screen and (max-width: 799px) {
  .month-row.month-header {
    font-size: 16px;
    line-height: 40px;
    padding: 0;
    margin: 0;
  }
  .month-carousel-container {
    margin-top: 52px;
  }
  .month-carousel {
    width: 464px;
  }
  .month-row.weekday-labels {
    display: none;
  }
  .days .cell.skipped.before {
    display: none;
  }
  .days .cell {
    height: 64px;
  }
  .days .cell .image {
    position: absolute;
    left: 32px;
    top: 0;
    width: 64px;
    height: 100%;
    background-size: cover;
  }
  .days .cell .meta {
    visibility: visible;
    position: absolute;
    left: 96px;
    top: 0;
    transform: none;
    background-color: transparent !important;
    right: 0;
    width: auto;
    height: 100%;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    border-bottom: 0;
    color: #333;
    font-size: 14px;
    line-height: 16px;
    box-sizing: border-box;
    opacity: 1;
    z-index: 4;
  }
  .days .cell .meta .byline {
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .days .cell .meta .title {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .days .cell:hover .meta {
    visibility: visible;
    opacity: 1;
    top: auto;
  }
  .days .cell .overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
  .days .cell:hover .overlay-link {
    opacity: 1;
  }
  .days .cell.today, .days .cell.past {
    color: #000;
  }
  .days .cell.today .overlay-link, .days .cell.past .overlay-link {
    display: flex;
  }
  .days .cell .date {
    position: absolute;
    top: 50%;
    left: 8px;
    width: 16px;
    text-align: center;
    margin-top: -12px;
    margin-left: 0;
    font-size: 16px;
    height: 24px;
    line-height: 24px;
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 500;
    color: #333;
  }
  .days .cell.today .image {
    filter: grayscale(100%);
  }
  .days .cell.today:hover .image {
    filter: none;
  }
  .days .cell.today .overlay-link {
    background-color: rgba(242, 190, 25, 0.7);
  }
  .days .cell.today .date {
    font-weight: 900;
    color: rgb(72, 48, 0);
    text-shadow: none;
  }
  .cell {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .month-carousel {
    width: 100%;
  }
  .month {
    padding: 0;
  }
}

/*# sourceMappingURL=archive.css.map */
