*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  background-color: #c9cbce;
  padding: 0 0 3rem 0;
  font-family: sans-serif;
  color: #000606;
  overflow-x: hidden;
}

button {
  background-color: #efefef;
}

.spinner {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 4px solid rgba(72, 195, 208, 0.2);
  border-top-color: #48c3d0;
  border-right-color: #127c88;
  animation: spin 0.8s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
p {
  font-size: 1.7rem;
  margin: 2rem auto;
  max-width: 70rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
@media (max-width: 600px) {
  p {
    font-size: 1.5rem;
    margin: 1.5rem auto;
  }
}

.billboard {
  height: 90vh;
  min-height: 40rem;
  background-size: cover;
  background-blend-mode: saturation;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 4rem;
}
.billboard__backdrop {
  width: 100%;
  height: auto;
}
.billboard__text {
  padding: 1.5rem 2rem;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.billboard__text--header {
  font-family: "Quattrocento", serif;
  font-size: 20rem;
  text-shadow: 8px 7px 1px #000606;
}
.billboard__text--header .mark {
  position: relative;
  color: white;
}
.billboard__text--header .mark::before {
  content: "";
  position: absolute;
  width: 0.15em;
  height: 0.15em;
  background-color: #48c3d0;
  border-radius: 50%;
  bottom: 0.23em;
  left: 44.4%;
  transform: translateX(-50%);
}
.billboard__text--sub-header {
  font-family: "Raleway", sans-serif;
  font-size: 4.5rem;
  max-width: 75%;
  font-weight: 700;
  text-shadow: 3px 3px 1px #000606;
}
.billboard__text--author {
  font-family: "Raleway", sans-serif;
  margin: 1rem;
  font-size: 1.5rem;
  max-width: 75%;
  font-weight: 700;
  text-shadow: 1px 1px 1px #000606;
}
.billboard__text--author a {
  text-decoration: underline;
  color: #48c3d0;
}
@media (max-width: 768px) {
  .billboard {
    height: 50vh;
    margin-bottom: 3rem;
  }
  .billboard__text--header {
    font-size: 10rem;
    text-shadow: 4px 4px 1px #000606;
  }
  .billboard__text--sub-header {
    font-size: 2.4rem;
    max-width: 90%;
    text-shadow: 2px 2px 1px #000606;
  }
}
@media (max-width: 480px) {
  .billboard {
    height: 35vh;
  }
  .billboard__text--header {
    font-size: 6.5rem;
  }
  .billboard__text--sub-header {
    font-size: 1.8rem;
    max-width: 95%;
  }
  .billboard__text--author {
    font-size: 1.3rem;
  }
}

.chart-container {
  background-color: white;
  padding: 2rem;
  width: 100%;
  max-width: 84rem;
  display: flex;
  margin: auto;
  border-radius: 4px;
  justify-content: center;
  transition: all 2s ease;
  box-shadow: 0 2px 4px rgba(0, 6, 6, 0.2);
}
.chart-container svg {
  width: 100%;
  height: auto;
  transition: all 2s ease;
  fill: #48c3d0;
}
.chart-container .plot-area {
  transition: all 2s ease;
}
.chart-container .bar {
  transition: y 2s ease, fill 0.8s ease, height 2s ease;
  cursor: pointer;
}
.chart-container .bar:hover {
  fill: #127c88;
}
@media (max-width: 600px) {
  .chart-container {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

.circle-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.circle-chart svg {
  width: 28rem;
  height: 28rem;
}
.circle-chart path.slice {
  transition: opacity 0.2s ease;
}
.circle-chart path.slice:hover {
  opacity: 0.75;
}
.circle-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-top: 2rem;
  width: 100%;
}
@media (max-width: 600px) {
  .circle-chart__legend {
    justify-content: space-evenly;
  }
}
.circle-chart__legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  color: #000606;
}
.circle-chart__legend-swatch {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.circle-chart__legend-word {
  font-weight: 500;
}
.circle-chart__legend-pct {
  color: #68696b;
}

.dashboard {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.dashboard__section {
  margin-bottom: 2.4rem;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 2px 4px rgba(0, 6, 6, 0.2);
  padding: 3rem;
  min-height: 55rem;
}
.dashboard__section-intro {
  margin: 0 1rem 3rem 1rem;
  background: none;
}
.dashboard__section-title {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.6rem;
  color: #000606;
}
.dashboard__section-desc {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  text-align: left;
  color: #68696b;
  margin: 0 0 2.4rem 0;
  line-height: 1.6;
}
.dashboard__year-exploration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.dashboard__word-exploration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 600px) {
  .dashboard {
    padding: 0 1.5rem;
  }
  .dashboard__section {
    margin-bottom: 1.6rem;
    padding: 2rem;
    min-height: 60rem;
  }
  .dashboard__section--word-search {
    min-height: 45rem;
  }
  .dashboard__section-title {
    font-size: 2rem;
  }
  .dashboard__section-desc {
    font-size: 1.4rem;
  }
}

.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 12rem;
}

.details {
  width: 100%;
  padding: 0 2rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 600px) {
  .details {
    padding: 0;
  }
}
.details .total {
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
}
.details .selection {
  font-size: 2rem;
  text-align: center;
}
.details .selection span {
  position: relative;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 200;
  bottom: 0.2rem;
}
.details .keyword {
  text-decoration: underline;
  text-decoration-color: #48c3d0;
}
@media (max-width: 600px) {
  .details .total {
    font-size: 1.75rem;
    text-align: left;
  }
  .details .selection {
    font-size: 1.4rem;
    text-align: left;
  }
  .details .selection span {
    font-size: 1.2rem;
    display: block;
  }
}

.year-chips__wrapper {
  position: relative;
  width: 100%;
}
.year-chips__wrapper::before, .year-chips__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.year-chips__wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.year-chips__wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.year-chips__wrapper--shadow-left::before {
  opacity: 1;
}
.year-chips__wrapper--shadow-right::after {
  opacity: 1;
}
.year-chips {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.6rem;
  width: 100%;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
}
.year-chips::-webkit-scrollbar {
  display: none;
}
.year-chips__chip {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  border: 1px solid #48c3d0;
  border-radius: 2rem;
  background: white;
  color: #000606;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.year-chips__chip:active, .year-chips__chip--active {
  background: #48c3d0;
  color: white;
}
.year-chips__count {
  font-size: 1.1rem;
  color: #68696b;
}
.year-chips__chip--active .year-chips__count {
  color: rgba(255, 255, 255, 0.7);
}

.lyrics {
  font-family: "Montserrat", sans-serif;
  transition: all 1s ease;
  overflow: hidden;
  pointer-events: none;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .lyrics {
      -webkit-transition: none;
    }
  }
}
.lyrics {
  width: 150%;
  position: relative;
  right: 25%;
}
.lyrics__text {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.lyrics b {
  font-weight: 700;
}
.lyrics[style*="opacity: 1"] {
  pointer-events: auto;
}
@media (max-width: 600px) {
  .lyrics {
    width: 100%;
    right: 0;
  }
}

.search {
  margin: 0;
  width: 100%;
  max-width: 30rem;
}
.search form {
  display: flex;
  box-shadow: 0 2px 4px rgba(0, 6, 6, 0.2);
  border-radius: 4px;
}
.search input,
.search button {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  border: none;
  height: 4rem;
  padding: 1rem;
}
.search input {
  border-radius: 4px 0 0 4px;
  flex: 1;
  min-width: 0;
}
.search button {
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.search button:hover {
  background-color: #48c3d0;
  color: white;
}
@media (max-width: 600px) {
  .search {
    max-width: 100%;
  }
}

.container {
  user-select: none;
  cursor: pointer;
  position: relative;
  text-align: left;
  display: block;
  margin: auto;
  width: 100%;
  max-width: 20rem;
  color: #000606;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  max-height: 4rem;
}
.container .select,
.container button,
.container ul {
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 6, 6, 0.2);
}
.container .select {
  width: 100%;
  background-color: white;
  color: #757575;
  height: 4rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: all 1.5s linear;
}
.container button {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  border: none;
  height: 4rem;
  padding: 1rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.container button:hover {
  background-color: #48c3d0;
  color: white;
}
.container ul {
  position: relative;
  display: block;
  list-style: none;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  z-index: 2;
  height: 0rem;
  padding: 0;
  max-height: 0rem;
  border-radius: 0 0 4px 4px;
  background-color: #efefef;
  transition: all 0.5s ease, border-radius;
}
.container ul li {
  width: 100%;
  margin: 0.5rem 0;
  text-align: center;
}
.container.selected .select {
  border-radius: 4px 4px 0 0;
}

.songs {
  width: 100%;
}
.songs__list {
  padding: 0;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin: 2rem 0 4rem 0;
}
.songs__list .selected {
  border: 2px solid #48c3d0;
}
.songs__list--container {
  width: 100%;
  overflow: hidden;
}
.songs__list--song-container {
  height: 12rem;
  list-style: none;
  box-shadow: 0 2px 4px rgba(0, 6, 6, 0.2);
  background: white;
  border-radius: 4px;
  transition: border 0.2s ease;
  border: 2px solid white;
  cursor: pointer;
}
.songs__list--song-container:hover {
  border: 2px solid #48c3d0;
}
@media (max-width: 480px) {
  .songs__list {
    grid-template-columns: 1fr;
  }
}

.song {
  padding: 1rem;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  box-sizing: border-box;
  font-size: 1.2rem;
  text-align: right;
  font-family: "Roboto", sans-serif;
}
.song__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 2rem;
  height: 100%;
  gap: 0.75rem;
}
.song__info--title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 0.6rem;
}
.song__info--position {
  font-size: 1rem;
  text-align: right;
}
.song__info--artist {
  font-family: "Source Serif Pro", serif;
  font-style: italic;
  max-width: 85%;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.7rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 6, 6, 0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal {
  background: white;
  border-radius: 1.2rem;
  width: 100%;
  max-width: 60rem;
  min-height: 85vh;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 6, 6, 0.3);
}
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 3rem 3rem 1.6rem;
  flex-shrink: 0;
}
.modal__info {
  min-width: 0;
}
.modal__close {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #68696b;
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem;
}
.modal__close:hover {
  color: #000606;
}
.modal__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000606;
}
.modal__artist {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #000606;
  margin: 0;
}
.modal__meta {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 200;
  color: #68696b;
  margin: 0;
}
.modal__body {
  overflow-y: auto;
  padding: 0 3rem 3rem;
  flex: 1;
}
.modal__body--scrolled::before {
  opacity: 1 !important;
}
.modal__body::before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  height: 2.4rem;
  margin-bottom: -2.4rem;
  background: linear-gradient(to bottom, white, transparent);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal__lyrics {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000606;
}
.modal__lyrics b {
  font-weight: 700;
  color: #127c88;
}
.modal__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 4rem 0;
}
@media (max-width: 600px) {
  .modal {
    max-height: 90vh;
  }
  .modal__header {
    padding: 2rem 2rem 1.2rem;
  }
  .modal__body {
    padding: 0 2rem 2rem;
  }
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #127c88;
  padding: 1rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-header--visible {
  transform: translateY(0);
}
.sticky-header__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: white;
  font-weight: 700;
}
.sticky-header__author {
  font-weight: 400;
  color: #48c3d0;
  text-decoration: none;
  font-size: 14px;
  margin-left: 0.75rem;
}
.sticky-header__author:hover {
  text-decoration: underline;
}

.tool-tip,
.pop_up {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 8.5rem;
  height: fit-content;
  padding: 0.5rem;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  background: white;
  border: 1px solid #127c88;
  border-radius: 3px;
  pointer-events: none;
  z-index: 100;
  transition: visibility 2s, opacity 0.5s linear;
}

.pop_up {
  width: 5rem;
  text-align: center;
}

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