@charset "UTF-8";
@keyframes favorite-throb {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.5);
  }
  75% {
    transform: scale(1.75);
  }
  100% {
    transform: scale(1);
  }
}
.audioplayer {
  user-select: none;
  font-family: "sofia-pro";
  position: fixed;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 100px;
  background-color: black;
  z-index: 1001;
  color: white;
  padding: 16px;
}
.audioplayer.playing button.play-pause:after {
  content: "pause_circle_filled" !important;
}
.audioplayer.with-current-track .nowplaying {
  visibility: visible;
}
.audioplayer .nowplaying {
  visibility: hidden;
  display: grid;
  grid-template-columns: 50px auto 1fr;
  grid-template-rows: 30px 20px;
  gap: 0 10px;
  white-space: nowrap;
  position: relative;
}
.audioplayer .nowplaying .track-title {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audioplayer .nowplaying .track-title:hover {
  text-decoration: underline;
}
.audioplayer .nowplaying .artist {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 400;
  color: #B8B7B7;
  grid-row: 2;
}
.audioplayer .nowplaying .album {
  display: none;
}
.audioplayer .nowplaying .tools {
  grid-row: 1/span 2;
  display: none;
}
.audioplayer .nowplaying button.favorite {
  cursor: pointer;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  padding: 0;
  margin: 0 10px;
}
.audioplayer .nowplaying button.favorite:after {
  color: white;
  font-size: 20px;
  vertical-align: middle;
  font-family: "Material Icons";
  content: "favorite_border";
  display: inline-block;
  position: relative;
  top: -1px;
}
.audioplayer .nowplaying button.favorite.selected:after {
  color: rgb(191, 63, 0);
  content: "favorite";
}
.audioplayer .nowplaying img.cover {
  grid-row: 1/span 2;
  width: 50px;
  height: 50px;
  object-fit: cover;
  background-color: #ccc;
  border-radius: 4px;
}
.audioplayer .nowplaying-auto {
  grid-template-columns: auto auto 1fr;
}
.audioplayer button {
  background-color: transparent;
  border: none;
}
.audioplayer .controls {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.audioplayer .controls .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.audioplayer .controls button {
  color: white;
  font-size: 38px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  line-height: 38px;
  text-align: center;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  justify-content: center;
}
.audioplayer .controls button:after {
  font-family: "Material Icons";
}
.audioplayer .controls button.play-pause:after {
  content: "play_circle_filled";
}
.audioplayer .controls button.next:after {
  content: "skip_next";
}
.audioplayer .controls button.prev:after {
  content: "skip_previous";
}
.audioplayer .controls button.shuffle:after {
  opacity: 0.6;
  font-size: 24px;
  content: "shuffle";
}
.audioplayer .controls button.enabled:after {
  color: #8B7BFF;
  opacity: 1 !important;
}
.audioplayer .controls button.repeat:after {
  opacity: 0.6;
  font-size: 24px;
  content: "repeat";
}
.audioplayer .volume-controls {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  align-self: center;
  justify-self: end;
}
.audioplayer .volume-controls input[type=range] {
  cursor: hand;
  width: 120px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  min-height: 6px;
  border-radius: 3px;
  background-color: #C6C6C6;
  pointer-events: none;
}
.audioplayer .volume-controls input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 14px;
  height: 14px;
  background-color: #8B7BFF;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.audioplayer .volume-controls input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
.audioplayer .volume-controls input[type=range]::-webkit-slider-thumb:hover {
  background: #d83d0e;
}
.audioplayer .volume-controls input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #8B7BFF, 0 0 9px #8B7BFF;
  -webkit-box-shadow: inset 0 0 3px #8B7BFF, 0 0 9px #8B7BFF;
}
.audioplayer .volume-controls button.mute {
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: white;
  display: grid;
  align-items: center;
  justify-content: center;
}
.audioplayer .volume-controls button.mute:after {
  font-family: "Material Icons";
  content: "volume_up";
  font-size: 24px;
}
.audioplayer .volume-controls button.mute.muted:after {
  content: "volume_off";
}
@media only screen and (max-width: 768px) {
  .audioplayer .volume-controls {
    display: none;
  }
}
.audioplayer .progress-display {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.audioplayer .progress-display .progress {
  background-color: rgba(255, 255, 255, 0.25);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
}
.audioplayer .progress-display .progress > span.bar {
  border-radius: 3px;
  background-color: #8B7BFF;
  height: 100%;
}
.audioplayer .progress-display .duration {
  font-size: 12px;
  line-height: 16px;
  min-width: 30px;
}
.audioplayer .progress-display .duration.elapsed {
  text-align: right;
}
.audioplayer .progress-display .duration.total {
  text-align: left;
}
.audioplayer {
  transition: 0.5s transform, 0.5s height, 0.5s max-height;
}
.audioplayer:not(.with-current-track) {
  transform: translateY(100%);
}
@media only screen and (max-width: 768px) {
  .audioplayer:not(.with-current-track) {
    transform: translateY(100%);
  }
  .audioplayer:not(.with-current-track) .progress-display .duration {
    display: none;
  }
  .audioplayer {
    height: 70px;
    max-height: 70px;
  }
  .audioplayer.expanded {
    max-height: 525px;
    height: 525px;
    padding: 35px 35px 30px 35px;
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .audioplayer.expanded .nowplaying {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
  }
  .audioplayer.expanded .nowplaying:before {
    display: block;
    position: absolute;
    font-family: "Material Icons";
    content: "expand_more";
    color: white;
    left: 0;
    top: -30px;
    font-size: 28px;
  }
  .audioplayer.expanded .nowplaying .album {
    text-transform: uppercase;
    display: block;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    text-align: center;
  }
  .audioplayer.expanded .nowplaying .artist {
    grid-row: 3;
  }
  .audioplayer.expanded .nowplaying .tools {
    grid-column: 2;
    grid-row: 2;
  }
  .audioplayer.expanded .nowplaying .cover {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
    grid-column: 1/span 2;
    grid-row: 1;
    position: relative;
  }
  .audioplayer.expanded .progress-display {
    order: -1;
    grid-template-columns: auto 1fr auto;
  }
  .audioplayer.expanded .progress-display .progress {
    grid-column: 1/span 3;
  }
  .audioplayer.expanded .progress-display .duration.elapsed {
    grid-row: 2;
    grid-column: 1;
    text-align: left;
  }
  .audioplayer.expanded .progress-display .duration.total {
    grid-row: 2;
    grid-column: 3;
    text-align: right;
  }
  .audioplayer:not(.expanded) {
    max-height: 70px;
    padding: 12px 8px 8px 8px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .audioplayer:not(.expanded) button.favorite {
    display: none;
  }
  .audioplayer:not(.expanded) .nowplaying {
    grid-template-rows: 25px 25px;
  }
  .audioplayer:not(.expanded) .nowplaying .artist {
    position: relative;
    left: 83px;
  }
  .audioplayer:not(.expanded) .nowplaying .artist:before {
    content: "•";
    position: relative;
    top: -1px;
    padding-right: 8px;
  }
  .audioplayer:not(.expanded) .controls {
    align-items: center;
  }
  .audioplayer:not(.expanded) .progress-display {
    position: absolute;
    top: 0px;
    left: 0;
    height: 4px;
    width: 100%;
    z-index: 1;
    background-color: #F0EFFB;
    grid-template-columns: 1fr;
  }
  .audioplayer:not(.expanded) .progress-display .progress {
    border-radius: 0;
  }
  .audioplayer:not(.expanded) .progress-display .progress > span.bar {
    height: 4px;
    border-radius: 0;
  }
  .audioplayer:not(.expanded) .progress-display .duration {
    position: absolute;
    bottom: -52px;
    left: 68px;
    z-index: 1;
    font-size: 13px;
    color: #B8B7B7;
    text-align: left;
  }
  .audioplayer:not(.expanded) .progress-display .duration.total {
    left: 100px;
  }
  .audioplayer:not(.expanded) .progress-display .duration.total:before {
    content: "/";
    padding-right: 8px;
  }
  .audioplayer:not(.expanded) .mob-extra-space-dur {
    left: 140px !important;
  }
  .audioplayer:not(.expanded) .mob-extra-space {
    left: 110px !important;
  }
  .audioplayer:not(.expanded) .controls button.next,
  .audioplayer:not(.expanded) .controls button.prev,
  .audioplayer:not(.expanded) .controls button.repeat,
  .audioplayer:not(.expanded) .controls button.shuffle {
    display: none;
  }
  .audioplayer:not(.expanded) .controls button.play-pause {
    font-size: 30px;
  }
  .audioplayer:not(.expanded) .controls button.play-pause:after {
    content: "play_arrow";
  }
  .audioplayer:not(.expanded).playing button.play-pause:after {
    content: "pause" !important;
  }
}

.aspect-16-9-img {
  aspect-ratio: 16/9;
  width: auto !important;
}

main.album h1, main.album h2, main.album h3, main.album h4, main.playlist h1, main.playlist h2, main.playlist h3, main.playlist h4 {
  font-weight: 400;
}
main.album h1, main.playlist h1 {
  font-size: 32px;
  margin: 0;
  line-height: 42px;
}
main.album h2, main.playlist h2 {
  font-size: 20px;
  margin: 0.25em 0 0.75em 0;
}
main.album, main.playlist {
  font-size: 16px;
  padding: 0 0 5em 0;
  font-family: "sofia-pro";
}
main.album.playing header button.play:before, main.playlist.playing header button.play:before {
  content: "pause" !important;
}
main.album header, main.playlist header {
  position: relative;
  color: white;
  text-shadow: 0 0 3px black;
  margin-bottom: 2em;
}
main.album header .actions, main.playlist header .actions {
  margin: 0;
  display: flex;
  gap: 8px;
}
main.album header .actions button.favorite, main.playlist header .actions button.favorite {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.album header .actions button.favorite:hover, main.playlist header .actions button.favorite:hover {
  background-color: rgb(220, 220, 220);
}
main.album header .actions button.favorite:after, main.playlist header .actions button.favorite:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
    right: 100%;
    left: auto;
  }
}
main.album header .actions button.favorite:hover:before, main.playlist header .actions button.favorite:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
    display: none;
  }
}
main.album header .actions button.favorite, main.playlist header .actions button.favorite {
  padding: 0px;
}
main.album header .actions button.favorite:before, main.playlist header .actions button.favorite:before {
  content: "Add favorite";
}
main.album header .actions button.favorite.selected:before, main.playlist header .actions button.favorite.selected:before {
  content: "Remove favorite";
}
main.album header .actions button.favorite.selected:after, main.playlist header .actions button.favorite.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmarkselected.svg");
  background-size: contain;
  animation-name: favorite-throb;
  animation-duration: 0.5s;
  animation-play-state: running;
  background-repeat: no-repeat;
  background-position: center;
}
main.album header .actions button.favorite:after, main.playlist header .actions button.favorite:after {
  content: "";
  background: url("/images/bookmark.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.album header .actions button.favorite:disabled, main.playlist header .actions button.favorite:disabled {
  opacity: 0.5;
}
main.album header .actions .favorite.sleepstories-icon.selected:after, main.playlist header .actions .favorite.sleepstories-icon.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmark_sleepstory_selected.svg") !important;
  background-size: contain !important;
  animation-name: favorite-throb !important;
  animation-duration: 0.5s !important;
  animation-play-state: running !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
main.album header .actions .favorite.sleepstories-icon:after, main.playlist header .actions .favorite.sleepstories-icon:after {
  content: " " !important;
  background: url("/images/bookmark_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.album header .actions button.share, main.playlist header .actions button.share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.album header .actions button.share:hover, main.playlist header .actions button.share:hover {
  background-color: rgb(220, 220, 220);
}
main.album header .actions button.share:after, main.playlist header .actions button.share:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions button.share:before, main.playlist header .actions button.share:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.album header .actions button.share:before, main.playlist header .actions button.share:before {
    right: 100%;
    left: auto;
  }
}
main.album header .actions button.share:hover:before, main.playlist header .actions button.share:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.album header .actions button.share:before, main.playlist header .actions button.share:before {
    display: none;
  }
}
main.album header .actions button.share, main.playlist header .actions button.share {
  padding: 0px;
}
main.album header .actions button.share:before, main.playlist header .actions button.share:before {
  content: "Share";
}
main.album header .actions button.share:after, main.playlist header .actions button.share:after {
  content: "";
  background: url("/images/share.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.album header .actions button.share.selected:before, main.playlist header .actions button.share.selected:before {
  display: none;
}
main.album header .actions button.share.selected .share-options, main.playlist header .actions button.share.selected .share-options {
  display: grid;
}
main.album header .actions button.share .share-options, main.playlist header .actions button.share .share-options {
  position: absolute;
  z-index: 900;
  top: calc(100% - 5px);
  left: 5px;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  display: none;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 6px;
}
main.album header .actions button.share .share-options.above, main.playlist header .actions button.share .share-options.above {
  top: auto;
  bottom: calc(100% - 5px);
}
main.album header .actions button.share .share-options.left, main.playlist header .actions button.share .share-options.left {
  left: auto;
  right: 5px;
}
main.album header .actions button.share .share-options button, main.playlist header .actions button.share .share-options button {
  font-family: "sofia-pro";
  color: black;
  background-color: white;
  line-height: 3em;
  text-align: left;
  padding: 0 15px 0 12px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
main.album header .actions button.share .share-options button:last-child, main.playlist header .actions button.share .share-options button:last-child {
  border-bottom: none;
}
main.album header .actions button.share .share-options button:before, main.playlist header .actions button.share .share-options button:before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  font-size: 18px;
  margin-right: 10px;
}
main.album header .actions button.share .share-options button[data-action=link]:before, main.playlist header .actions button.share .share-options button[data-action=link]:before {
  font-family: "Material Icons";
  content: "link";
  left: 1px;
  top: 0px;
}
main.album header .actions button.share .share-options button.icon:before, main.playlist header .actions button.share .share-options button.icon:before {
  font-size: 15px;
  font-family: "collective";
}
main.album header .actions button.share .share-options button:hover, main.playlist header .actions button.share .share-options button:hover {
  background-color: #eee;
}
main.album header .actions .share.sleepstories-icon:after, main.playlist header .actions .share.sleepstories-icon:after {
  content: "" !important;
  background: url("/images/share_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.album header .actions > button, main.playlist header .actions > button {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
main.album header .actions > button.play, main.playlist header .actions > button.play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.album header .actions > button.play:hover, main.playlist header .actions > button.play:hover {
  background-color: rgb(220, 220, 220);
}
main.album header .actions > button.play:after, main.playlist header .actions > button.play:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions > button.play, main.playlist header .actions > button.play {
  background-color: #8B7BFF !important;
}
main.album header .actions > button.play:before, main.playlist header .actions > button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  line-height: 40px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.album header .actions > button.selected, main.playlist header .actions > button.selected {
  background-color: #8B7BFF !important;
}
@media only screen and (max-width: 425px) {
  main.album header .actions, main.playlist header .actions {
    display: grid;
    grid-template-columns: auto auto 1fr;
  }
  main.album header .actions > button.play, main.playlist header .actions > button.play {
    order: 3;
    justify-self: end;
    width: 48px;
    height: 48px;
  }
  main.album header .actions > button.play:before, main.playlist header .actions > button.play:before {
    font-size: 26px;
    line-height: 48px;
  }
}
main.album header .wrapper, main.playlist header .wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 89px;
  padding-top: 40px;
  padding-right: 100px;
  padding-left: 100px;
}
main.album header .info, main.playlist header .info {
  display: flex;
  flex-direction: column;
}
main.album header .info .type, main.playlist header .info .type {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 6px;
}
main.album header .info .authors, main.playlist header .info .authors {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
main.album header .info .description, main.playlist header .info .description {
  max-width: 800px;
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 12px;
}
main.album header .info .description p:first-child, main.playlist header .info .description p:first-child {
  margin: 0;
}
main.album header .summary, main.playlist header .summary {
  font-family: "sofia-pro";
  font-weight: 300;
}
main.album header .cover, main.playlist header .cover {
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
main.album header .cover button.play, main.playlist header .cover button.play {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  text-align: center;
}
main.album header .cover button.play:before, main.playlist header .cover button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  color: black;
  line-height: 40px;
  position: relative;
  top: -1px;
}
main.album header .cover img, main.playlist header .cover img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
main.album header .cover .aspect-16-9, main.playlist header .cover .aspect-16-9 {
  aspect-ratio: 16/9;
}
main.album header .healing-tone, main.playlist header .healing-tone {
  aspect-ratio: 16/9;
}
main.album header .bottom-space, main.playlist header .bottom-space {
  margin-bottom: 30px;
}
main.album header .tags, main.playlist header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main.album header .tags a, main.playlist header .tags a {
  text-shadow: none;
  font-size: 13px;
  font-family: "sofia-pro";
  display: block;
  line-height: 32px;
  text-decoration: none;
  padding: 0 1em;
  white-space: nowrap;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.25);
}
main.album header .blurrybg, main.playlist header .blurrybg {
  z-index: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  main.album header .cover, main.playlist header .cover {
    width: 150px;
  }
  main.album header h1, main.playlist header h1 {
    font-size: 24px;
  }
  main.album header h2, main.playlist header h2 {
    font-size: 18px;
  }
  main.album header .wrapper, main.playlist header .wrapper {
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 426px) {
  main.album header, main.playlist header {
    margin-bottom: 1em;
  }
  main.album header h1, main.album header .type, main.album header .description, main.playlist header h1, main.playlist header .type, main.playlist header .description {
    text-align: center;
  }
  main.album header .cover, main.playlist header .cover {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  main.album header .wrapper, main.playlist header .wrapper {
    gap: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
}
main.album .sleep-story .info h1, main.playlist .sleep-story .info h1 {
  line-height: 110%;
  margin-bottom: 10px;
}
main.album .sleep-story .info .type, main.playlist .sleep-story .info .type {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.5px;
  margin-bottom: 14px;
}
main.album .sleep-story .info .description, main.playlist .sleep-story .info .description {
  margin-bottom: 12px;
}
main.album .sleep-story .info .actions, main.playlist .sleep-story .info .actions {
  margin-top: 12px;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  main.album .sleep-story .wrapper, main.playlist .sleep-story .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 526px) {
  main.album .sleep-story .wrapper, main.playlist .sleep-story .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main.album .tracks, main.playlist .tracks {
  width: 100%;
  max-width: 100%;
  border: none;
  border-spacing: 0;
  font-family: "sofia-pro";
  table-layout: fixed;
}
main.album .tracks tr.hidden > td, main.playlist .tracks tr.hidden > td {
  padding: 0;
  height: 0px;
}
main.album .tracks .tracknum, main.playlist .tracks .tracknum {
  width: 80px;
  text-align: center;
}
main.album .tracks .tracknum > div, main.playlist .tracks .tracknum > div {
  padding: 15px 15px 15px 20px;
  position: relative;
  font-size: 12px;
  line-height: 15px;
}
main.album .tracks .tracknum > div:after, main.playlist .tracks .tracknum > div:after {
  text-align: center;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  content: "play_arrow";
  font-family: "Material Icons";
  background-color: #8B7BFF;
  color: white;
  display: block;
  font-size: 18px;
}
main.album .tracks .audio-track, main.playlist .tracks .audio-track {
  cursor: pointer;
  padding: 10px 0;
}
main.album .tracks .audio-track:hover, main.playlist .tracks .audio-track:hover {
  border-radius: 0.5px;
  background: rgba(139, 123, 255, 0.06);
}
main.album .tracks .audio-track:hover .tracknum > div:after, main.playlist .tracks .audio-track:hover .tracknum > div:after {
  visibility: visible;
}
main.album .tracks .audio-track a, main.playlist .tracks .audio-track a {
  text-decoration: none;
}
main.album .tracks .audio-track a:hover, main.playlist .tracks .audio-track a:hover {
  text-decoration: underline;
}
main.album .tracks .audio-track.playing:not(:hover) .tracknum > div:after, main.playlist .tracks .audio-track.playing:not(:hover) .tracknum > div:after {
  visibility: visible;
  content: "";
  background-image: url("/images/eq.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
}
main.album .tracks .audio-track.playing:hover .tracknum > div:after, main.playlist .tracks .audio-track.playing:hover .tracknum > div:after {
  content: "pause";
}
main.album .tracks th, main.playlist .tracks th {
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  padding: 12px 10px 12px 10px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 17px;
}
main.album .tracks td.title, main.playlist .tracks td.title {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
}
main.album .tracks td.title .track-title, main.playlist .tracks td.title .track-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
main.album .tracks td.title .artist, main.playlist .tracks td.title .artist {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}
main.album .tracks td.album a, main.playlist .tracks td.album a {
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  white-space: nowrap;
}
main.album .tracks .duration, main.playlist .tracks .duration {
  text-align: right;
  padding-right: 15px;
  width: 70px;
  font-size: 12px;
  line-height: 19.5px;
  font-weight: 400;
}
main.album .tracks .thumbnail, main.playlist .tracks .thumbnail {
  text-align: center;
  width: 70px;
  padding: 10px 10px 10px 0;
}
main.album .tracks .thumbnail > div, main.playlist .tracks .thumbnail > div {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
main.album .tracks .thumbnail > div img, main.playlist .tracks .thumbnail > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  main.album .tracks .album, main.playlist .tracks .album {
    display: none;
  }
}
@media only screen and (max-width: 425px) {
  main.album .tracks .tracknum, main.album .tracks .album, main.album .tracks .duration, main.playlist .tracks .tracknum, main.playlist .tracks .album, main.playlist .tracks .duration {
    display: none;
  }
  main.album .tracks .tracknum, main.album .tracks .album, main.album .tracks .duration, main.playlist .tracks .tracknum, main.playlist .tracks .album, main.playlist .tracks .duration {
    display: none;
  }
  main.album .tracks .audio-track.playing .thumbnail > div:after, main.playlist .tracks .audio-track.playing .thumbnail > div:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 0;
    background-image: url("/images/eq-white.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    border-radius: 50%;
    background-color: #8B7BFF;
  }
  main.album .tracks, main.playlist .tracks {
    /*

     &:not(:hover) .tracknum > div:after {

     button.play {
        visibility: visible;
     }

    :not(:hover) button.play {
     &:after {
         display: none;
     }                
     background-image: url('/images/eq-white.svg');
     background-size: 20px 20px;
     background-repeat: no-repeat;
     background-position: center;
     }*/
  }
}
main.album .blurrybg, main.playlist .blurrybg {
  filter: brightness(50%);
}
main.album header .actions button.favorite.selected:after, main.playlist header .actions button.favorite.selected:after {
  background-image: url(/images/bookmarkselected-light.svg);
}

main.audio-track {
  flex: 1 1 100%;
  display: grid;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
main.audio-track h1, main.audio-track h2, main.audio-track h3, main.audio-track h4 {
  font-weight: 400;
}
main.audio-track h1 {
  font-size: 32px;
  margin: 0;
}
main.audio-track h2 {
  font-size: 20px;
  margin: 0.25em 0 0.75em 0;
}
main.audio-track {
  font-size: 16px;
  font-family: "sofia-pro";
}
main.audio-track header {
  position: relative;
  color: white;
  text-shadow: 0 0 3px black;
  margin-bottom: 2em;
}
main.audio-track header .actions {
  margin: 0;
  display: flex;
  gap: 8px;
}
main.audio-track header .actions button.favorite {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.audio-track header .actions button.favorite:hover {
  background-color: rgb(220, 220, 220);
}
main.audio-track header .actions button.favorite:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions button.favorite:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.audio-track header .actions button.favorite:before {
    right: 100%;
    left: auto;
  }
}
main.audio-track header .actions button.favorite:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.audio-track header .actions button.favorite:before {
    display: none;
  }
}
main.audio-track header .actions button.favorite {
  padding: 0px;
}
main.audio-track header .actions button.favorite:before {
  content: "Add favorite";
}
main.audio-track header .actions button.favorite.selected:before {
  content: "Remove favorite";
}
main.audio-track header .actions button.favorite.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmarkselected.svg");
  background-size: contain;
  animation-name: favorite-throb;
  animation-duration: 0.5s;
  animation-play-state: running;
  background-repeat: no-repeat;
  background-position: center;
}
main.audio-track header .actions button.favorite:after {
  content: "";
  background: url("/images/bookmark.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.audio-track header .actions button.favorite:disabled {
  opacity: 0.5;
}
main.audio-track header .actions .favorite.sleepstories-icon.selected:after {
  /* content: '\e8e7'; */
  background: url("/images/bookmark_sleepstory_selected.svg") !important;
  background-size: contain !important;
  animation-name: favorite-throb !important;
  animation-duration: 0.5s !important;
  animation-play-state: running !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
main.audio-track header .actions .favorite.sleepstories-icon:after {
  content: " " !important;
  background: url("/images/bookmark_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.audio-track header .actions button.share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.audio-track header .actions button.share:hover {
  background-color: rgb(220, 220, 220);
}
main.audio-track header .actions button.share:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions button.share:before {
  color: black;
  pointer-events: none;
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  top: 50%;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-family: "sofia-pro";
  font-weight: 300;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1em;
  opacity: 0;
  visibility: none;
  transition: 0s all 0s;
}
@media (max-width: 768px) {
  main.audio-track header .actions button.share:before {
    right: 100%;
    left: auto;
  }
}
main.audio-track header .actions button.share:hover:before {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}
@media (hover: none) {
  main.audio-track header .actions button.share:before {
    display: none;
  }
}
main.audio-track header .actions button.share {
  padding: 0px;
}
main.audio-track header .actions button.share:before {
  content: "Share";
}
main.audio-track header .actions button.share:after {
  content: "";
  background: url("/images/share.svg");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}
main.audio-track header .actions button.share.selected:before {
  display: none;
}
main.audio-track header .actions button.share.selected .share-options {
  display: grid;
}
main.audio-track header .actions button.share .share-options {
  position: absolute;
  z-index: 900;
  top: calc(100% - 5px);
  left: 5px;
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  display: none;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 6px;
}
main.audio-track header .actions button.share .share-options.above {
  top: auto;
  bottom: calc(100% - 5px);
}
main.audio-track header .actions button.share .share-options.left {
  left: auto;
  right: 5px;
}
main.audio-track header .actions button.share .share-options button {
  font-family: "sofia-pro";
  color: black;
  background-color: white;
  line-height: 3em;
  text-align: left;
  padding: 0 15px 0 12px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
main.audio-track header .actions button.share .share-options button:last-child {
  border-bottom: none;
}
main.audio-track header .actions button.share .share-options button:before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  font-size: 18px;
  margin-right: 10px;
}
main.audio-track header .actions button.share .share-options button[data-action=link]:before {
  font-family: "Material Icons";
  content: "link";
  left: 1px;
  top: 0px;
}
main.audio-track header .actions button.share .share-options button.icon:before {
  font-size: 15px;
  font-family: "collective";
}
main.audio-track header .actions button.share .share-options button:hover {
  background-color: #eee;
}
main.audio-track header .actions .share.sleepstories-icon:after {
  content: "" !important;
  background: url("/images/share_sleepstory.svg") !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
main.audio-track header .actions > button {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
main.audio-track header .actions > button.play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  cursor: pointer;
  background-color: rgb(241, 241, 241);
  position: relative;
  user-select: none;
  color: black;
}
main.audio-track header .actions > button.play:hover {
  background-color: rgb(220, 220, 220);
}
main.audio-track header .actions > button.play:after {
  font-family: "Material Icons Outlined";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions > button.play {
  background-color: #8B7BFF !important;
}
main.audio-track header .actions > button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  line-height: 40px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.audio-track header .actions > button.selected {
  background-color: #8B7BFF !important;
}
@media only screen and (max-width: 425px) {
  main.audio-track header .actions {
    display: grid;
    grid-template-columns: auto auto 1fr;
  }
  main.audio-track header .actions > button.play {
    order: 3;
    justify-self: end;
    width: 48px;
    height: 48px;
  }
  main.audio-track header .actions > button.play:before {
    font-size: 26px;
    line-height: 48px;
  }
}
main.audio-track header .wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 89px;
  padding-top: 40px;
  padding-right: 100px;
  padding-left: 100px;
}
main.audio-track header .info {
  display: flex;
  flex-direction: column;
}
main.audio-track header .info .type {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  margin-top: 6px;
}
main.audio-track header .info .authors {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
main.audio-track header .info .description {
  max-width: 800px;
  line-height: 150%;
  font-weight: 300;
  margin-bottom: 12px;
}
main.audio-track header .info .description p:first-child {
  margin: 0;
}
main.audio-track header .summary {
  font-family: "sofia-pro";
  font-weight: 300;
}
main.audio-track header .cover {
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  width: 240px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
main.audio-track header .cover button.play {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  text-align: center;
}
main.audio-track header .cover button.play:before {
  font-family: "Material Icons";
  content: "play_arrow";
  font-size: 23px;
  color: black;
  line-height: 40px;
  position: relative;
  top: -1px;
}
main.audio-track header .cover img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
main.audio-track header .cover .aspect-16-9 {
  aspect-ratio: 16/9;
}
main.audio-track header .healing-tone {
  aspect-ratio: 16/9;
}
main.audio-track header .bottom-space {
  margin-bottom: 30px;
}
main.audio-track header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main.audio-track header .tags a {
  text-shadow: none;
  font-size: 13px;
  font-family: "sofia-pro";
  display: block;
  line-height: 32px;
  text-decoration: none;
  padding: 0 1em;
  white-space: nowrap;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.25);
}
main.audio-track header .blurrybg {
  z-index: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  main.audio-track header .cover {
    width: 150px;
  }
  main.audio-track header h1 {
    font-size: 24px;
  }
  main.audio-track header h2 {
    font-size: 18px;
  }
  main.audio-track header .wrapper {
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 426px) {
  main.audio-track header {
    margin-bottom: 1em;
  }
  main.audio-track header h1, main.audio-track header .type, main.audio-track header .description {
    text-align: center;
  }
  main.audio-track header .cover {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  main.audio-track header .wrapper {
    gap: 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
}
main.audio-track .sleep-story .info h1 {
  line-height: 110%;
  margin-bottom: 10px;
}
main.audio-track .sleep-story .info .type {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.5px;
  margin-bottom: 14px;
}
main.audio-track .sleep-story .info .description {
  margin-bottom: 12px;
}
main.audio-track .sleep-story .info .actions {
  margin-top: 12px;
  gap: 15px;
}
@media only screen and (max-width: 768px) {
  main.audio-track .sleep-story .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 526px) {
  main.audio-track .sleep-story .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main.audio-track.playing header button.play:before {
  content: "pause";
}
main.audio-track header {
  margin-bottom: 0;
  align-items: center;
  display: grid;
  min-height: calc(100vh - var(--header-height));
  /* padding-bottom: 90px; */
}
@media only screen and (max-width: 768px) {
  main.audio-track header {
    padding-bottom: 70px;
  }
}

.dialog-container .blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0E1226;
  opacity: 0.6;
  z-index: 1500;
}
.dialog-container .dialog-content {
  padding: 30px 50px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 32px 40px rgba(70, 83, 97, 0.4), 0px 16px 32px -16px rgba(70, 83, 97, 0.32), 0px 8px 24px -8px rgba(70, 83, 97, 0.24), 0px 4px 16px -4px rgba(70, 83, 97, 0.16), 1px 2px 8px -2px rgba(70, 83, 97, 0.08), 0px 1px 4px -1px rgba(70, 83, 97, 0.08);
  border-radius: 8px;
  width: 542px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1600;
  font-family: "sofia-pro";
  max-width: 100%;
}
.dialog-container .dialog-content h2 {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .dialog-container .dialog-content h2 {
    font-size: 18px;
    font-weight: 400;
  }
}
.dialog-container .dialog-content .title {
  font-size: 28px;
}
.dialog-container .dialog-content .subtitle {
  font-family: "sofia-pro";
}
.dialog-container .dialog-content .subtitle span {
  font-weight: 600;
}
.dialog-container .dialog-content .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 580px) {
  .dialog-container .dialog-content {
    padding: 10px;
  }
}

html.with-hamburger-menu-open header.page-header nav.user.logged-in > nav,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out > nav {
  visibility: visible;
  transition-delay: 0s;
  height: auto;
  opacity: 1;
  position: absolute; /* switched to fixed to resolve Safari rendering issues on iOS */
  transform: translate3d(0, 0, 0);
  z-index: 5000;
  display: flex;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in > nav *,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out > nav * {
  visibility: initial;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in div.hamburger,
html.with-hamburger-menu-open header.page-header nav.user.logged-in div.hamburgerloggedout,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out div.hamburger,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out div.hamburgerloggedout {
  z-index: 5001;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile {
  transform: translateX(-180px);
  transition-delay: 0.25s;
  z-index: 5001;
}
html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile span,
html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile span {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.75s;
}

html header.page-header nav.user {
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}

html.with-login header.page-header nav.user.logged-in {
  display: flex;
  opacity: 1;
  visibility: visible;
}
html.with-login header.page-header nav.user.logged-out {
  display: none;
}

html.without-login header.page-header nav.user.logged-in {
  display: none;
}
html.without-login header.page-header nav.user.logged-out {
  display: flex;
  opacity: 1;
  visibility: visible;
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout {
  z-index: 10;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 40px;
  padding: 10px;
  gap: 5px;
  align-items: center;
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox] {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform: rotate(-45deg);
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform: scaleX(0);
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform: rotate(45deg);
}
html.without-login header.page-header nav.user.logged-out .hamburgerloggedout span {
  display: block;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  border-radius: 1px;
  transition: all 0.5s ease-in-out;
  transform-origin: 100% 50%;
  transform: scaleX(1) translateX(0);
}

@media only screen and (max-width: 1330px) {
  html.with-hamburger-menu-open header.page-header nav.user.logged-in > nav,
  html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out > nav {
    visibility: visible;
    display: flex !important;
    transition-delay: 0s;
  }
  html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile,
  html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile {
    transform: translateX(calc(-185px + 2.5vw));
    transition-delay: 0.25s;
  }
  html.with-hamburger-menu-open header.page-header nav.user.logged-in button.profile span,
  html.with-hamburgerloggedout-menu-open header.page-header nav.user.logged-out button.profile span {
    font-size: 16px;
    opacity: 1;
    visibility: visible;
    width: auto;
    transition-delay: 0.75s;
  }
  header.page-header nav.user.logged-in > nav,
  header.page-header nav.user.logged-out > nav {
    height: 100vh !important;
    transform: translateX(calc(100% + 2.5vw));
    opacity: 1;
    right: -2.5vw !important;
  }
}
header.page-header nav.user.logged-in {
  display: none;
}
header.page-header nav.user.logged-in > nav {
  opacity: 0;
}
header.page-header div.hamburger {
  z-index: 10;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 30px;
  padding: 10px 0px 10px 10px;
  gap: 5px;
  align-items: center;
}
header.page-header div.hamburger input[type=checkbox] {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  top: 0px;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
header.page-header div.hamburger input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform: rotate(-45deg);
}
header.page-header div.hamburger input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform: scaleX(0);
}
header.page-header div.hamburger input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform: rotate(45deg);
}
header.page-header div.hamburger span {
  display: block;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  border-radius: 1px;
  transition: all 0.5s ease-in-out;
  transform-origin: 100% 50%;
  transform: scaleX(1) translateX(0);
}
header.page-header nav.user.logged-out {
  gap: 20px;
}
header.page-header nav.user.logged-in,
header.page-header nav.user.logged-out {
  height: 100%;
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
header.page-header nav.user.logged-in button.profile,
header.page-header nav.user.logged-out button.profile {
  outline: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  background-size: cover;
  background-position: 50% 50%;
  cursor: pointer;
  z-index: 10;
  transform: translateX(0);
  transition: transform 0.5s;
  transition-delay: 0s;
  background-image: url("/images/no-user.png");
}
header.page-header nav.user.logged-in button.profile > span,
header.page-header nav.user.logged-out button.profile > span {
  opacity: 0;
  width: 0;
  position: absolute;
  white-space: nowrap;
  z-index: 9;
  color: #000000;
  top: 10px;
  left: 50px;
  font-size: 16px;
  transition: all 0.5s;
  transition-delay: 0s;
  /* overflow: hidden; */
}
header.page-header nav.user.logged-in > nav,
header.page-header nav.user.logged-out > nav {
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  min-width: 315px;
  position: absolute;
  z-index: 1;
  top: 0px;
  right: -15px;
  background-color: #E9EEF3;
  gap: 12px;
  line-height: 24px;
  font-size: 16px;
  transition: all 0.5s;
  padding: 92px 12px 12px 12px;
  align-items: stretch;
}
header.page-header nav.user.logged-in > nav:before,
header.page-header nav.user.logged-out > nav:before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
}
header.page-header nav.user.logged-in > nav *,
header.page-header nav.user.logged-out > nav * {
  visibility: hidden;
}
header.page-header nav.user.logged-in > nav a,
header.page-header nav.user.logged-out > nav a {
  display: block;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}
header.page-header nav.user.logged-in > nav a:hover,
header.page-header nav.user.logged-out > nav a:hover {
  background-color: white;
}
header.page-header nav.user.logged-in > nav button.logout,
header.page-header nav.user.logged-in > nav button.school-logout,
header.page-header nav.user.logged-out > nav button.logout,
header.page-header nav.user.logged-out > nav button.school-logout {
  margin: 0px;
  font-size: 16px;
  font-weight: 300;
}
header.page-header nav.user.logged-in > nav .switch-tabs,
header.page-header nav.user.logged-out > nav .switch-tabs {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 0px;
}
header.page-header nav.user.logged-in > nav .switch-tabs .tabs,
header.page-header nav.user.logged-out > nav .switch-tabs .tabs {
  width: 100%;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background-color: #DCE0E4;
  color: #999B9E;
}
header.page-header nav.user.logged-in > nav .switch-tabs .tab-kid,
header.page-header nav.user.logged-out > nav .switch-tabs .tab-kid {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
header.page-header nav.user.logged-in > nav .switch-tabs .tab-teens,
header.page-header nav.user.logged-out > nav .switch-tabs .tab-teens {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
header.page-header nav.user.logged-in > nav .switch-tabs .selected-tab,
header.page-header nav.user.logged-out > nav .switch-tabs .selected-tab {
  border: 1px solid rgb(139, 123, 255) !important;
  background-color: rgb(243, 242, 255);
  color: #000000;
  border-radius: 12px;
  z-index: 10;
}

body > nav.subnav {
  font-family: "sofia-pro";
  font-weight: 300;
  font-size: 15px;
  height: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: black;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
@media only screen and (max-width: 768px) {
  body > nav.subnav {
    overflow: scroll;
  }
}
body > nav.subnav .limited-width {
  display: flex;
  gap: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  body > nav.subnav .limited-width {
    overflow: visible;
  }
}
body > nav.subnav a {
  text-decoration: none;
  white-space: nowrap;
  text-transform: capitalize;
}
body > nav.subnav a:last-child {
  color: #8B7BFF;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  body > nav.subnav a:last-child {
    overflow: visible;
  }
}
body > nav.subnav a:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  position: relative;
  top: -1px;
  margin-left: 5px;
  background-image: url("/images/keyboard-arrow-right.svg");
  background-size: 100%;
  width: 16px;
  height: 16px;
  background-size: contain;
}

header.page-header {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  background-color: white;
  font-family: "sofia-pro";
  font-weight: 300;
  position: sticky;
  z-index: 1500;
  width: 100%;
  top: 0px;
  box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  font-weight: 500;
  color: #000000;
}
header.page-header nav {
  align-items: center;
}
header.page-header nav > .menu {
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
}
@media (hover) {
  header.page-header nav > .menu:hover .hoverable:after {
    visibility: visible;
  }
}
header.page-header a {
  text-decoration: none;
}
header.page-header a.search {
  display: flex;
  /* width: 40px; */
  /* height: 40px; */
  margin: 0 30px;
  text-align: center;
  color: #8b7bff;
}
header.page-header .nav-bar-item {
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}
header.page-header .nav-bar-item.hoverable {
  position: relative;
  height: 100%;
  display: grid;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
header.page-header .nav-bar-item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  height: 4px;
  left: 20px;
  right: 20px;
  background-color: #8B7BFF;
  visibility: hidden;
}
@media (hover) {
  header.page-header .nav-bar-item:hover:after {
    visibility: visible;
  }
}
header.page-header .nav-bar-item.search:after {
  display: none;
}
header.page-header nav.top-level {
  font-size: 15px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
}
header.page-header nav.top-level > nav {
  height: 100%;
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
}
header.page-header nav.top-level > nav.sunny-main-menu {
  display: none;
}
@media only screen and (max-width: 768px) {
  header.page-header nav.top-level {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  header.page-header nav.top-level nav.home a.logo img {
    width: 110px;
    top: 2px;
  }
  header.page-header nav.top-level nav.home a.logo:after {
    height: 25px;
    margin: 0 12px;
  }
  header.page-header nav.top-level nav.home a.business-unit {
    font-size: 18px;
    top: -1px;
  }
  header.page-header nav.top-level nav.main {
    border-top: 1px solid #eee;
    grid-row: 2;
    grid-column: 1/span 2;
    justify-content: left;
    margin-left: -2.5vw;
    margin-right: -2.5vw;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    height: 50px;
    grid-template-columns: auto auto auto 1fr;
  }
  header.page-header nav.top-level nav.main .nav-bar-item {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
  header.page-header nav.top-level nav.main .nav-bar-item:first-child {
    padding-left: 5px;
  }
  header.page-header nav.top-level nav.main .nav-bar-item:first-child:after {
    left: 5px;
    top: 36px;
  }
  header.page-header nav.top-level nav.main .nav-bar-item:after {
    left: 15px;
    right: 15px;
  }
  header.page-header nav.top-level nav.main a.search {
    justify-self: end;
    display: block;
    align-self: center;
    padding-right: 0;
    margin-right: 0;
  }
  header.page-header nav.top-level nav.user {
    gap: 10px;
  }
  header.page-header nav.top-level a.search {
    margin: 0 10px;
  }
  header.page-header nav.top-level nav.right a.search {
    display: none;
  }
}
header.page-header nav.home {
  height: 80px !important;
  display: grid;
  grid-template-columns: auto auto;
}
header.page-header nav.home a.logo img {
  display: block;
  width: 250px;
  position: relative;
  top: 2px;
}
header.page-header nav.home a.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header.page-header nav.home a.logo.living {
  display: block;
}
header.page-header nav.home a.logo.sunny {
  display: none;
}
header.page-header nav.home a.business-unit {
  font-size: 24px;
  font-weight: 400;
  color: #8B7BFF;
  position: relative;
  top: -1px;
}
header.page-header nav.main {
  justify-content: center;
  gap: 0px;
  margin-left: 20px;
  align-items: stretch;
}
header.page-header nav.main a.search {
  display: none;
}
header.page-header .button {
  color: #000000;
  background-color: #999;
  display: inline-block;
  white-space: nowrap;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
}
header.page-header .button.action {
  background-color: #8B7BFF;
  color: white;
  font-size: 18px;
  border-radius: 20px;
  height: 42px;
  width: 110px;
  display: flex;
  justify-content: CENTER;
  padding: 11px 0;
}
header.page-header a {
  display: block;
  text-decoration: inherit;
  color: inherit;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
header.page-header a.login {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
header.page-header .menu.open > nav.drop-down, header.page-header .menu.pinned > nav.drop-down {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition-delay: 0.25s;
}
header.page-header .menu.open > .hoverable:after, header.page-header .menu.pinned > .hoverable:after {
  visibility: visible;
}
header.page-header nav.drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  z-index: 2000;
  background: url("https://res.cloudinary.com/roundglass/image/upload/f_auto,q_auto/v1757415899/rg/collective/media/living-new/headerbg.png");
  background-size: cover;
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.25s;
  transition-delay: 0s;
  overflow: hidden;
}
header.page-header nav.drop-down > .limited-width {
  padding: 50px 0;
}
header.page-header nav.drop-down .panel {
  margin-bottom: 30px;
  text-align: center;
}
header.page-header nav.drop-down .panel h3 {
  margin: 0;
  font-size: 54px;
  font-weight: 400;
  line-height: normal;
}
header.page-header nav.drop-down .panel .subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
header.page-header nav.drop-down nav.choices {
  display: flex;
  gap: 20px 20px;
  justify-content: center;
  flex-wrap: wrap;
}
header.page-header nav.drop-down nav.choices > a {
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  min-width: 380px;
  height: 80px;
  border-radius: 50px;
  background: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}
header.page-header nav.drop-down nav.choices > a img {
  margin-right: 20px;
}
@media (hover) {
  header.page-header nav.drop-down nav.choices > a:hover {
    border: 2px solid #8B7BFF;
    background-color: #F6F4FF !important;
  }
}
@media (max-width: 449px) {
  header.page-header nav.drop-down nav.choices > a {
    width: 100%;
    min-width: 250px;
    padding: 4px 10px;
  }
}
header.page-header nav.drop-down.discover nav.choices > a {
  min-width: 300px;
}
@media (max-width: 768px) {
  header.page-header nav.drop-down.discover nav.choices > a {
    min-width: 280px;
  }
}
header.page-header nav.drop-down.initiatives {
  display: none !important;
}
header.page-header nav.drop-down.initiatives > .limited-width {
  grid-template-columns: 1fr;
  gap: 30px;
}
header.page-header nav.drop-down.initiatives .panel h3 {
  margin: 0 0 0.25em 0;
}
header.page-header nav.drop-down.initiatives nav.choices {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: center;
}
header.page-header nav.drop-down.initiatives nav.choices > a {
  width: 100%;
  position: relative;
  padding: 0;
  aspect-ratio: 1/1;
  min-width: 300px;
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-radius: 4px;
}
header.page-header nav.drop-down.initiatives nav.choices > a .title {
  display: grid;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  padding: 20px 10px 5px 10px;
  width: 100%;
  color: white;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
header.page-header nav.drop-down.initiatives nav.choices > a .thumbnail {
  position: relative;
}
header.page-header nav.drop-down.initiatives nav.choices > a .thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  header.page-header nav.drop-down {
    max-height: calc(100vh - var(--header-height));
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding-bottom: 100px;
  }
  header.page-header nav.drop-down > .limited-width {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  header.page-header nav.drop-down nav.choices {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  header.page-header nav.drop-down nav.choices > a {
    padding: 0px 20px;
    height: 60px;
    font-size: 18px;
    text-align: left;
    justify-content: flex-start;
  }
  header.page-header nav.drop-down .panel {
    display: none;
  }
  header.page-header nav.drop-down .panel h3 {
    margin-bottom: 0.25em;
    font-size: 30px;
  }
  header.page-header nav.drop-down .panel .subtitle {
    font-size: 18px;
    line-height: 150%;
  }
  header.page-header nav.drop-down.initiatives nav.choices {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 425px) {
  header.page-header nav.drop-down.initiatives nav.choices {
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
header.page-header .search.living {
  display: block;
}
header.page-header .search.sunny {
  display: none;
}

html.minimized-nav:not(.with-menu-open, .with-hamburger-menu-open) .page-header:not(:hover) {
  transform: translateY(-100%);
}

.section-dashboard .page-header {
  box-shadow: none;
}
@media (max-width: 768px) {
  .section-dashboard .page-header {
    padding: 0 16px;
  }
}

@font-face {
  font-family: "collective";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url(https://static-living.roundglass.com/assets/fonts/collective/collective.woff2) format("woff2");
}
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "collective";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-lotus:before {
  content: "\e800";
}

.icon-location:before {
  content: "\e801";
}

.icon-peoples:before {
  content: "\e802";
}

.icon-facebook:before {
  content: "\e803";
}

.icon-heart:before {
  content: "\e804";
}

.icon-collective-black:before {
  content: "\e805";
}

.icon-twitter-share:before {
  content: "";
  background: url("https://res.cloudinary.com/roundglass/image/upload/v1719375978/rg/collective/assets/images/newtwittericon.png");
  background-size: contain;
  background-position: center;
  height: 24px;
  background-repeat: no-repeat;
}

.icon-linkedin-share:before {
  content: "\e807";
}

.icon-fb-share:before {
  content: "\e808";
}

.icon-program:before {
  content: "\e809";
}

.icon-twitter:before {
  background: url("/images/X-1.png");
  background-size: contain;
  background-position: center;
  height: 100%;
  background-repeat: no-repeat;
  content: "";
}

.icon-photo:before {
  content: "\e80b";
}

.icon-nutrition:before {
  content: "\e80c";
}

.icon-notification:before {
  content: "\e80d";
}

.icon-method:before {
  content: "\e80e";
}

.icon-lessons:before {
  content: "\e80f";
}

.icon-media:before {
  content: "\e810";
}

.icon-ingredients:before {
  content: "\e811";
}

.icon-camera:before {
  content: "\e812";
}

.icon-pin:before {
  content: "\e813";
}

.icon-vimeo:before {
  content: "\e814";
}

.icon-zoom-in:before {
  content: "\e815";
}

.icon-zoom-out:before {
  content: "\e816";
}

.icon-picture:before {
  content: "\e817";
}

.icon-pinterest:before {
  content: "\e818";
}

.icon-fab-linkedin:before {
  content: "\e819";
}

.icon-globe:before {
  content: "\e80b";
}

.icon-fab-facebook:before {
  content: "\e81a";
}

.icon-fab-google:before {
  content: "\e81b";
}

.icon-discussion:before {
  content: "\e81c";
}

.icon-back_arrow:before {
  content: "\e81d";
}

.icon-instagram_color:before {
  content: "\e81e";
}

.icon-chevro-down:before {
  content: "\e81f";
}

.icon-chevron-left:before {
  content: "\e820";
}

.icon-chevron-right:before {
  content: "\e821";
}

.icon-chevron-up:before {
  content: "\e822";
}

.icon-triangle-down:before {
  content: "\e823";
}

.icon-compass:before {
  content: "\e824";
}

.icon-comment:before {
  content: "\e825";
}

.icon-calendar:before {
  content: "\e826";
}

.icon-triangle-left:before {
  content: "\e827";
}

.icon-triangle-right:before {
  content: "\e828";
}

.icon-triangle-up:before {
  content: "\e829";
}

.icon-medium:before {
  content: "\e836";
}

.icon-mail-alt:before {
  content: "\f0e0";
}

.icon-upload-cloud:before {
  content: "\f0ee";
}

.icon-youtube:before {
  content: "\f167";
}

.icon-instagram:before {
  content: "\f16d";
}

.icon-tumblr:before {
  content: "\f173";
}

.icon-apple:before {
  content: "\f179";
}

.icon-dribbble:before {
  content: "\f17d";
}

.icon-behance:before {
  content: "\f1b4";
}

.icon-spotify:before {
  content: "\f1bc";
}

.icon-soundcloud:before {
  content: "\f348";
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format("woff2");
  font-display: swap;
}
/* fallback */
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialiconsoutlined/v109/gok-H7zzDkdnRel8-DQ6KAXJ69wP1tGnf4ZGhUcel5euIg.woff2) format("woff2");
  font-display: swap;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.material-icons-outlined {
  font-family: "Material Icons Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

:root {
  --Living-purple: #8b7bff;
  --White: #fff;
  --Wild-Sand: #f0eeeb;
  --Ghost-White: #f1f3ff;
  --Black: #272727;
  --Page-stroke: #8b7bff;
  --Back-light: #ffe144;
  --Windsor: #40327d;
  --Amulet: #849b7d;
  --Medium-orchit: #bc6be8;
  --Jelly-Bean: #4b7d94;
  --Dim-Grey: #6d6d6d;
  --Purple-Gradient: linear-gradient(256deg, #7a5aec 27.7%, #602fd2 102.11%);
  --Light-Blue-Gradient: linear-gradient(
      180deg,
      rgba(170, 199, 252, 0.5) 0%,
      rgba(240, 220, 243, 0.5) 100%
    ),
    #fff;
  --Mask-Background: #010018;
  --Dark-popup-overlay: rgba(31, 27, 59, 0.7);
  --primary-dropshadow: 2px 4px 16px 0px #0000001f;
  --seconday-dropshadow-top: 0px 5.77px 18.36px -7.69px #0000001a;
  --secondary-dropshadow-bottom: 0px 12.5px 25.96px -4.81px #27272740;
}

footer.page-footer {
  padding-top: 3.75rem;
  padding-bottom: 7.1875rem;
  background: #F0EEEB;
  position: relative;
}
@media (max-width: 768px) {
  footer.page-footer {
    padding: 2.5rem 0 5rem;
  }
}
footer.page-footer .logo img {
  width: 13.125rem;
}
@media (max-width: 768px) {
  footer.page-footer .logo a {
    display: flex;
    justify-content: center;
  }
}
footer.page-footer a {
  color: inherit;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
}
footer.page-footer h4 {
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer.page-footer h4 {
    line-height: 115%;
    margin: 1.25rem 0 1rem 0;
  }
}
footer.page-footer .multilevel div {
  display: grid;
}
footer.page-footer .multilevel p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 140%;
  margin: 0;
  margin-bottom: 0.75rem;
}
footer.page-footer .multilevel a {
  margin-left: 1rem;
}
footer.page-footer nav.contents {
  margin: 2.5rem 0;
  display: flex;
  gap: 20%;
}
@media (max-width: 1400px) {
  footer.page-footer nav.contents {
    gap: 10%;
  }
}
@media (max-width: 1024px) {
  footer.page-footer nav.contents {
    justify-content: space-between;
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  footer.page-footer nav.contents {
    flex-direction: column;
    align-items: center;
  }
}
footer.page-footer nav.contents > div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer.page-footer nav.contents .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    display: none;
  }
}
footer.page-footer nav.contents .footer-nav a {
  margin-bottom: 0.75rem;
}
footer.page-footer nav.contents .footer-nav .about br {
  display: none;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav .about br {
    display: block;
  }
}
footer.page-footer nav.contents .footer-nav-sm {
  display: none;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .footer-nav-sm {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    display: grid;
  }
}
footer.page-footer nav.contents .footer-nav-sm a {
  margin-bottom: 1rem;
}
footer.page-footer nav.contents .footer-nav-sm .business {
  margin-bottom: 2.5rem;
}
footer.page-footer nav.contents .footer-nav-sm .resources {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .downloads {
    flex-direction: row;
  }
}
footer.page-footer nav.contents .downloads img {
  margin-bottom: 0.3125rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.contents .downloads img {
    width: 8.125rem;
  }
}
footer.page-footer nav.rg-pages {
  display: flex;
  align-items: center;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 0.0625rem solid #6A6E74;
  border-bottom: 0.0625rem solid #6A6E74;
  color: #040316;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages {
    flex-direction: column;
  }
}
footer.page-footer nav.rg-pages .rg-logo {
  margin-right: 1.25rem;
  display: flex;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rg-logo {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
footer.page-footer nav.rg-pages .rg-logo a {
  line-height: 1rem;
}
footer.page-footer nav.rg-pages .rg-logo img {
  width: 9.375rem;
}
footer.page-footer nav.rg-pages .rglinks {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.125rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks {
    gap: 0.625rem;
    flex-direction: column;
  }
}
footer.page-footer nav.rg-pages .rglinks div {
  display: flex;
}
footer.page-footer nav.rg-pages .rglinks span {
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks span {
    margin: 0 0.375rem;
  }
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks {
    grid-template-columns: 1fr 1fr;
  }
}
footer.page-footer nav.rg-pages .rglinks a,
footer.page-footer nav.rg-pages .rglinks span {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
}
@media (max-width: 768px) {
  footer.page-footer nav.rg-pages .rglinks a,
  footer.page-footer nav.rg-pages .rglinks span {
    font-size: 0.75rem;
    line-height: 100%;
  }
}
footer.page-footer nav.rg-pages .rglinks a {
  cursor: pointer;
}
footer.page-footer nav.toc {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
  color: #6A6E74;
}
@media (max-width: 768px) {
  footer.page-footer nav.toc {
    flex-direction: column;
    gap: 0.625rem;
  }
}
footer.page-footer nav.toc span {
  font-size: 0.75rem;
  font-weight: 400;
}
footer.page-footer nav.toc nav {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 140%;
}
@media (max-width: 576px) {
  footer.page-footer nav.toc nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer.page-footer .hidesm {
    display: none;
  }
}
footer.page-footer .legal {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer.page-footer .legal {
    flex-direction: column;
    gap: 0.625rem;
  }
}
footer.page-footer .legal div {
  display: flex;
  align-items: center;
}
footer.page-footer .legal span {
  margin: 0 0.625rem;
}
@media (max-width: 768px) {
  footer.page-footer .legal span {
    margin: 0 0.375rem;
  }
}
footer.page-footer .legal a {
  font-size: 0.75rem;
  font-weight: 400;
}
footer.page-footer .social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  footer.page-footer .social {
    justify-content: center;
    gap: 1.5rem;
  }
}
footer.page-footer .social img {
  width: 1.125rem;
}
footer.page-footer .social a {
  background-color: #000;
  height: 2.25rem;
  width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  footer.page-footer nav.contents {
    flex-wrap: wrap;
  }
  footer.page-footer nav.contents a.logo {
    flex: 1 0 100%;
    width: 100%;
  }
}

.footer-cta {
  z-index: 1000;
  background-color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-family: "sofia-pro", sans-serif;
  text-align: center;
  padding: 20px 2.5%;
  font-size: 1.5em;
  font-weight: 300;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.footer-cta strong {
  font-weight: 500;
}
.footer-cta .button {
  font-size: 16px;
  vertical-align: middle;
  font-weight: 500;
  line-height: 2.5em;
  margin: 10px 0;
}
@media only screen and (max-width: 576px) {
  .footer-cta {
    font-size: 1.2em;
    padding: 40px 2.5% 20px;
  }
}
.footer-cta.hidden {
  transform: translateY(105%);
}

.footer-cta.free {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 25px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.free h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.free div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
@media only screen and (max-width: 650px) {
  .footer-cta.free {
    grid-template-columns: auto;
  }
}
.footer-cta.free a.button {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .footer-cta.free a.button {
    grid-column: 1;
    grid-row: auto;
  }
}

.footer-cta.warn {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 25px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.warn h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 0.5em 0;
  text-align: left;
}
.footer-cta.warn div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.warn a.button {
  grid-column: 2;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn a.button {
    grid-column: 1;
    grid-row: auto;
  }
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn {
    grid-template-columns: auto;
  }
}
.footer-cta.warn button.close {
  font-family: "Material Icons";
  background-color: transparent;
  font-size: 18px;
  position: absolute;
  top: 15%;
  right: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .footer-cta.warn button.close {
    top: 10px;
    transform: none;
  }
}

.footer-cta.final {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  gap: 0 25px;
  padding: 80px 20px;
  color: rgba(0, 0, 0, 0.87);
}
.footer-cta.final:before {
  content: "";
  display: block;
  background-image: url("https://res.cloudinary.com/roundglass/image/upload/v1700632389/rg/collective/assets/logo986.png");
  background-position: 50% 50%;
  width: 80px;
  height: 80px;
  background-size: contain;
  grid-column: 1;
  grid-row: 1/span 2;
}
.footer-cta.final h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.final div.subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.footer-cta.final a.button {
  grid-column: 3;
  grid-row: 1/span 2;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.footer-cta.final button.close {
  font-family: "Material Icons";
  background-color: transparent;
  font-size: 24px;
  position: absolute;
  top: 10%;
  right: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}
@media only screen and (max-width: 650px) {
  .footer-cta.final button.close {
    top: 10px;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer-cta.final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .footer-cta.final:before {
    margin: 0;
  }
}

* {
  box-sizing: border-box;
  font-family: "sofia-pro";
}

html {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-size-adjust: none;
}

body {
  max-width: 100vw;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
body > header, body > footer {
  flex: 0 0 auto;
}
body > main {
  flex: 1 0 100%;
  position: relative;
  margin-top: -0.5px; /* fix small antialiasing bug in safari, where a while line would appear between the header and content */
}
body.webview > header, body.webview > footer, body.webview section.footer {
  display: none;
}

a {
  color: inherit;
}

button {
  border: none;
  outline: none;
  color: inherit;
}

.limited-width {
  max-width: 1260px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.mb-60 {
  margin-bottom: 60px;
}

button.standard, .button.standard {
  color: white;
  background-color: #999;
  display: inline-block;
  line-height: 26px;
  text-decoration: none;
  padding: 0 1.5em;
  /*text-transform: uppercase;*/
  white-space: nowrap;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 20px;
  padding: 7px 24px 9px;
  font-size: 18px;
}
button.standard.action, .button.standard.action {
  font-size: 18px;
  background-color: #8B7BFF;
}
button.standard.cancel, .button.standard.cancel {
  background-color: #f3f2ff !important;
  border: 1px solid #8b7bff !important;
  color: #000;
}
@media (max-width: 768px) {
  button.standard, .button.standard {
    font-size: 16px !important;
  }
}

button.mute {
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: white;
  display: grid;
  align-items: center;
  justify-content: center;
  background: transparent;
}
button.mute:after {
  font-family: "Material Icons";
  content: "volume_up";
  font-size: 24px;
}
button.mute.muted:after {
  content: "volume_off";
}

body > .alert {
  font-family: "sofia-pro";
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  padding: 15px 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}

body > .alert.hidden {
  opacity: 0;
}

body > .cookie-consent h3 {
  font-family: "sofia-pro";
  margin: 0 0 0.5em 0;
  font-size: 20px;
}
body > .cookie-consent h4 {
  margin: 0;
  font-weight: 400;
}
body > .cookie-consent blockquote {
  margin: 1em 0;
  font-size: 14px;
}
body > .cookie-consent button.action {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  line-height: 40px;
}
body > .cookie-consent fieldset {
  margin: 1em 0;
  padding: 0;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body > .cookie-consent fieldset label {
  font-size: 13px;
}
body > .cookie-consent fieldset label .title {
  text-transform: uppercase;
}
body > .cookie-consent fieldset label {
  position: relative;
}
body > .cookie-consent fieldset input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body > .cookie-consent fieldset input:not(:disabled) + div {
  cursor: pointer;
}
body > .cookie-consent fieldset input:checked:disabled + div > .box {
  background-color: #ccc;
  border-color: #ccc;
}
body > .cookie-consent fieldset input:checked + div {
  user-select: none;
}
body > .cookie-consent fieldset input:checked + div > .box {
  background-color: #8B7BFF;
  border-color: #8B7BFF;
}
body > .cookie-consent fieldset input:checked + div > .box:after {
  content: "check";
  display: block;
  font-family: "Material Icons";
  color: white;
  font-size: 18px;
  position: relative;
  top: 0px;
  left: 0px;
}
body > .cookie-consent fieldset input + div {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
body > .cookie-consent fieldset input + div > .box {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  position: relative;
}
body > .cookie-consent div.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: stretch;
  gap: 15px;
}
body > .cookie-consent div.actions button {
  font-size: 13px;
  text-transform: uppercase;
}
body > .cookie-consent button.close {
  background: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  display: grid;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
body > .cookie-consent button.close:after {
  content: "close";
  font-family: "Material Icons";
  color: #000;
}
body > .cookie-consent {
  font-family: "sofia-pro";
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1010;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  padding: 30px 30px 25px 30px;
}
@media (max-width: 768px) {
  body > .cookie-consent {
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    max-width: none;
    border-radius: 0px;
    padding-bottom: 35px;
  }
  body > .cookie-consent button.close {
    top: 15px;
    right: 15px;
  }
}

body.section-living > .cookie-consent h3 {
  font-family: "sofia-pro";
}
body.section-living > .cookie-consent fieldset input:checked + div {
  user-select: none;
}
body.section-living > .cookie-consent fieldset input:checked + div > .box {
  background-color: #8b7bff;
  border-color: #8b7bff;
}
body.section-living > .cookie-consent {
  font-family: "sofia-pro";
}
body.section-living > .cookie-consent .actions button.standard.action,
body.section-living > .cookie-consent .actions .button.standard.action {
  background-color: #8b7bff;
}

a.edit-cms {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0px;
  bottom: 50px;
  border-radius: 15px 0 0 15px;
  background-color: #8B7BFF;
  color: white;
  text-decoration: none;
  display: grid;
  align-items: center;
  justify-content: center;
}
a.edit-cms:after {
  font-family: "Material Icons";
  content: "edit";
}

a.analytics {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 0px;
  bottom: 15px;
  border-radius: 15px 0 0 15px;
  background-color: #8B7BFF;
  color: white;
  text-decoration: none;
  display: grid;
  align-items: center;
  justify-content: center;
}
a.analytics:after {
  font-family: "Material Icons";
  content: "bar_chart";
}

.d-none {
  display: none;
}

html.with-popup-video-playing body {
  overflow: hidden;
}

.full-page-player {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-page-player .close {
  right: 10px;
  top: 10px;
  position: fixed;
  color: white;
  background-color: rgba(255, 255, 255, 0.25);
  width: 45px;
  height: 45px;
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-page-player .close:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.full-page-player .close:after {
  font-family: "Material Icons";
  position: relative;
  top: -1px;
  content: "close";
}
.full-page-player .video-wrapper {
  position: relative;
  max-width: min(900px, 90%);
  flex: 1 1 90%;
  aspect-ratio: 16/9;
}
.full-page-player .video-wrapper .video-js {
  background-color: transparent;
}
.full-page-player .details {
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 1em;
}
.full-page-player .details h3 {
  margin: 0;
  font-family: "sofia-pro";
  font-size: 18px;
  font-weight: 400;
}
.full-page-player .details .button {
  font-family: "sofia-pro";
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.full-page-player .vjs-cloudinary-button {
  display: none !important;
}

.results-panel.with-filter header {
  grid-template-columns: 1fr;
}
.results-panel.with-filter header .filter-control {
  overflow-x: hidden;
  overflow-y: hidden;
}
.results-panel.with-filter header .filter-control .filter {
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .results-panel.with-filter header .filter-control .filter {
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
  }
  .results-panel.with-filter header .filter-control .filter::-webkit-scrollbar {
    -webkit-appearance: none;
  }
}
.results-panel.with-filter header .filter-control .filter .filter-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 15px;
  user-select: none;
}
@media (max-width: 768px) {
  .results-panel.with-filter header .filter-control .filter .filter-labels {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
.results-panel.with-filter header .filter-control .filter .filter-labels:empty {
  display: none;
}
.results-panel.with-filter header .filter-control .filter .filter-labels .filter-label {
  white-space: nowrap;
  font-family: "sofia-pro";
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  padding: 0px;
  padding-bottom: 13px;
  padding-top: 10px;
  cursor: pointer;
  border-bottom: 6px solid transparent;
  margin-bottom: -6px;
  font-weight: 500;
}
@media (max-width: 525px) {
  .results-panel.with-filter header .filter-control .filter .filter-labels .filter-label {
    font-size: 14px;
  }
}
.results-panel.with-filter header .filter-control .filter .filter-labels .filter-label:after {
  position: relative;
  top: -1px;
  font-family: "Material Icons";
  content: "expand_more";
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
  text-transform: none;
}
.results-panel.with-filter header .filter-control .filter .filter-labels .filter-label.selected:after {
  transform: rotate(180deg);
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page {
  padding: 20px;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  padding: 0;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page.selected {
  visibility: visible;
  max-height: none;
  padding: 10px 20px 20px 0px;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page h3 {
  margin: 0 0 1.5em 0;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  white-space: nowrap;
  flex: 1 1 190px;
}
@media (max-width: 525px) {
  .results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet {
    font-size: 16px;
  }
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet .all input + span {
  text-transform: capitalize;
  overflow: visible;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet .choices {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  columns: auto 250px;
}
@media only screen and (max-width: 768px) {
  .results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet .choices {
    columns: auto;
  }
}
@media (max-width: 525px) {
  .results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet .choices {
    font-size: 16px;
  }
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet input:disabled + span {
  opacity: 0.25;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet label {
  position: relative;
  overflow: hidden;
  display: flex;
  padding: 0 0 0 20px;
  user-select: none;
  cursor: pointer;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet label > span {
  padding: 6px 0;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet input {
  vertical-align: middle;
  border: 1px solid black;
  border-radius: 0;
  margin: 0 10px 0 5px;
  position: absolute;
  top: -50px;
  left: -50px;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet input:checked + span {
  font-weight: 400;
  color: #8B7BFF;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet input:checked + span:before {
  position: absolute;
  left: 0px;
  top: 8px;
  display: inline-block;
  content: "check";
  font-family: "Material Icons";
  text-transform: none !important;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet input:checked + label {
  font-weight: 400;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page .facet input:checked + label:before {
  position: absolute;
  left: 0px;
  top: 8px;
  display: inline-block;
  content: "check";
  font-family: "Material Icons";
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=activity] {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker {
  margin: 20px 10px;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider-labels {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  user-select: none;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider-labels .max, .results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider-labels .min {
  opacity: 0.5;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider-labels .current {
  font-weight: bold;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider {
  position: relative;
  min-height: 24px;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  min-height: 8px;
  border-radius: 4px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #8B7BFF;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider input[type=range]::-webkit-slider-thumb:hover {
  background: #8B7BFF;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=time] .duration-picker .slider input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #8B7BFF, 0 0 9px #8B7BFF;
  -webkit-box-shadow: inset 0 0 3px #8B7BFF, 0 0 9px #8B7BFF;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=teacher] .facet .choices {
  column-width: 210px;
}
.results-panel.with-filter header .filter-control .filter .filter-choices .choice-page[data-type=difficulty] .facet .choices {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-around;
}
@media (max-width: 768px) {
  .results-panel.with-filter header .filter-control .filter .filter-choices .choice-page {
    margin-left: -2.5vw;
    margin-right: -2.5vw;
  }
  .results-panel.with-filter header .filter-control .filter .filter-choices .choice-page.selected {
    padding: 20px 10px 15px 10px;
  }
}
.results-panel.with-filter header .filter-control .filter .filter-selections {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.results-panel.with-filter header .filter-control .filter .filter-selections:empty {
  margin: 0;
}
.results-panel.with-filter header .filter-control .filter .filter-selections:not(:empty) {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.results-panel.with-filter header .filter-control .filter .filter-selections > div.pill {
  font-size: 18px;
  /* text-transform: uppercase;  */
  white-space: nowrap;
  border-radius: 12px;
  border: 1px solid #000000;
  padding: 10px 15px 10px 15px;
  cursor: pointer;
  font-weight: 400;
  line-height: 27px;
}
.results-panel.with-filter header .filter-control .filter .filter-selections > div.pill:hover {
  background-color: #eee;
}
.results-panel.with-filter header .filter-control .filter .filter-selections > div.pill:before {
  content: "close";
  font-family: "Material Icons";
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-right: 8px;
  font-size: 14px;
  text-transform: none !important;
}
@media (max-width: 525px) {
  .results-panel.with-filter header .filter-control .filter .filter-selections > div.pill {
    font-size: 13px;
  }
}
.results-panel.with-filter header .filter-control .filter hr {
  border: 1px solid #DCD7FF;
  margin: 0px;
}
.results-panel header {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0;
  min-height: 36px;
}
.results-panel header > .subtitle {
  font-family: "sofia-pro";
  margin-top: 1em;
  grid-column: 1/span 2;
  grid-row-start: 2;
  font-weight: 200;
  font-size: 18px;
}
.results-panel header > h3 {
  margin: 0;
}
.results-panel header > h3 a {
  color: inherit;
  text-decoration: inherit;
  font-size: 24px;
  /* font-style: normal; */
  font-weight: 500;
}
.results-panel header a.view-all {
  font-family: "sofia-pro";
  letter-spacing: 1px;
  height: 2.29em;
  line-height: 2.29em;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  color: #8B7BFF;
  background-image: url("/images/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-position: 110% 60%;
  padding-right: 16px;
  white-space: nowrap;
  background-size: 6px;
}
.results-panel header .count {
  text-transform: capitalize;
  font-size: 24px;
  color: #000000;
  font-weight: 500;
  line-height: 31px;
  margin-top: 20px;
}
.results-panel header .filter-button {
  cursor: pointer;
  padding: 0 1em;
  line-height: 2.5em;
  border-radius: 0.25em;
  background-color: white;
  border: 1px solid #ccc;
}
.results-panel header .filter-button.enabled .count {
  color: #8B7BFF;
  font-weight: bold;
}
.results-panel header .filter-button.enabled .count:before {
  content: "(";
}
.results-panel header .filter-button.enabled .count:after {
  content: ")";
}
.results-panel header .filter-button:after {
  margin-left: 0.5em;
  display: inline-block;
  font-size: 1.1em;
  vertical-align: bottom;
  content: "tune";
  font-family: Material Icons;
}

.featured .results .result .title, .feature .results .result .title {
  font-size: 18px;
}

.results {
  display: grid;
  gap: 40px 25px;
}
.results .result {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  font-family: "sofia-pro";
}
.results .result.hidden {
  display: none;
}
.results .result .row.bar-separated {
  display: flex;
  font-size: 14px;
  line-height: 16px;
  color: #713093;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin-bottom: 4px;
}
.results .result .row.bar-separated > div:after {
  content: "|";
  padding: 0 0.4em;
  color: #ccc;
}
.results .result .row.bar-separated > div:last-child:after {
  display: none;
}
.results .result .row.bar-separated:first-child {
  text-transform: uppercase;
}
.results .result .title {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
}
.results .result .duration {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  width: 100px;
  max-width: fit-content;
}
.results .result .section {
  color: #8B7BFF;
}
.results .result .summary {
  font-size: 14px;
  color: #000000;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
  line-height: 18px;
}
.results .result .summary p {
  margin-top: 0px;
  margin-bottom: 0px;
}
.results .result .action {
  margin-top: 16px;
}
.results .result .row.authors {
  font-size: 14px;
  display: flex;
  margin-top: 4px;
  font-weight: 300;
  line-height: 21px;
  align-items: center;
}
.results .result .row.authors .author {
  display: inline;
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
}
.results .result .row.authors .author:not(:last-child):after {
  content: " & ";
}
.results .result .row.authors .duration {
  text-transform: capitalize;
  font-weight: 300;
}
.results .result .row.authors .duration-only {
  text-transform: capitalize;
}
.results .result .row.authors .separator {
  margin: 0px 5px;
  font-family: "sofia-pro";
  font-size: 14px;
  font-weight: 300;
  line-height: 130%;
}
.results .result .video-info {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 4px;
}
.results .result .thumbnail {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  position: relative;
  aspect-ratio: 16/9;
}
.results .result .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s;
}
.results .result .thumbnail img:hover {
  transform: scale(1.05);
}
.results .result.with-progress.complete .thumbnail:after {
  display: block;
  content: "COMPLETED";
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  color: white;
  background-color: #018786;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 4px;
  animation-name: wipe-enter;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.results .result.with-progress.complete .thumbnail .progress {
  display: none;
}
.results .result.with-progress .thumbnail .progress {
  position: absolute;
  display: block;
  height: 10px;
  top: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.35);
}
.results .result.with-progress .thumbnail .progress .bar {
  display: block;
  height: 100%;
  border-radius: 0 6px 6px 0;
  background-color: #8B7BFF;
  animation-name: grow-left;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
}
.results .result .professionaltitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  margin-top: 5px;
}
.results.listing {
  grid-template-columns: repeat(12, 1fr);
}
.results.listing .result {
  grid-column: span 3;
}
@media (max-width: 1020px) {
  .results.listing .result {
    grid-column: span 4;
  }
}
@media (max-width: 765px) {
  .results.listing .result {
    grid-column: span 6;
  }
}
@media (max-width: 505px) {
  .results.listing .result {
    grid-column: span 12;
  }
}
.results.listing.three-wide .result {
  grid-column: span 4;
}

.results.ar1_1 .thumbnail {
  aspect-ratio: 1/1;
}

.results-panel.books .results {
  gap: 60px;
}
.results-panel.books .results .result .thumbnail {
  aspect-ratio: 1/1;
}
.results-panel.books .results .result {
  text-align: center;
}
@media (max-width: 900px) {
  .results-panel.books .results {
    gap: 60px 40px;
  }
}
@media (max-width: 505px) {
  .results-panel.books .results {
    gap: 60px 0px;
  }
}

.results-panel.people .results .result .thumbnail {
  aspect-ratio: 1/1;
  background: #84CAFF;
}

.results.ingredients {
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 900px) {
  .results.ingredients {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 505px) {
  .results.ingredients {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 375px) {
  .results.ingredients {
    grid-template-columns: 1fr 1fr;
  }
}
.results.ingredients a {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.results.ingredients a .thumbnail {
  aspect-ratio: 1/1;
  display: grid;
  padding: 0 20px 20px 20px;
}
.results.ingredients a .thumbnail > img {
  width: 100%;
  height: auto;
  position: static;
}
.results.ingredients a .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  display: flex;
}
.results.ingredients a .title {
  width: 100%;
  padding: 0.1em 1em 0 1em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0.5em 0.5em rgba(255, 255, 255, 0.7);
}
.results.ingredients a {
  border: 1px solid #eee;
}

.results-panel.big-top-row:not(.filtered) > .results .result:nth-child(1),
.results-panel.big-top-row:not(.filtered) > .results .result:nth-child(2) {
  grid-column: span 6;
  gap: 23px;
}
@media only screen and (max-width: 765px) {
  .results-panel.big-top-row:not(.filtered) > .results .result:nth-child(1) {
    grid-column: span 12;
  }
}
@media (max-width: 505px) {
  .results-panel.big-top-row:not(.filtered) > .results .result:nth-child(1),
  .results-panel.big-top-row:not(.filtered) > .results .result:nth-child(2) {
    grid-column: span 12;
  }
}

.results-panel.feature-with-carousel {
  display: grid;
  grid-template-columns: 1fr;
}
.results-panel.feature-with-carousel .featured-item.results > a {
  background-color: #F0EFFB;
  grid-template-columns: 1fr 1fr;
  display: grid;
  grid-auto-flow: row dense;
  border-radius: 6px;
  overflow: hidden;
  align-items: center;
}
.results-panel.feature-with-carousel .featured-item.results > a .info {
  padding: 20px 40px;
}
.results-panel.feature-with-carousel .featured-item.results > a .info .type {
  display: none;
}
.results-panel.feature-with-carousel .featured-item.results > a .info .title {
  font-size: 2em;
  max-width: 455px;
  font-weight: 500;
  line-height: 110%;
  font-family: "sofia-pro";
}
.results-panel.feature-with-carousel .featured-item.results > a .info .summary {
  -webkit-line-clamp: 4;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
  margin-top: 19px;
  margin-bottom: 14px;
}
.results-panel.feature-with-carousel .featured-item.results > a .thumbnail {
  order: 1;
  border-radius: 0;
}
.results-panel.feature-with-carousel .featured-item.results {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .results-panel.feature-with-carousel .featured-item.results > a {
    grid-template-columns: 1fr;
    background-color: transparent;
  }
  .results-panel.feature-with-carousel .featured-item.results > a .thumbnail {
    order: 0;
    border-radius: 0;
  }
  .results-panel.feature-with-carousel .featured-item.results > a .info {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .results-panel.feature-with-carousel .featured-item.results > a .info .title {
    font-size: 25px;
    max-width: none;
  }
  .results-panel.feature-with-carousel .featured-item.results > a .info .summary {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.results-panel.feature-with-carousel.right .featured-item.results a > .info {
  order: 1;
}
.results-panel.feature-with-carousel .carousel .results {
  gap: 20px;
  display: grid;
  grid-auto-columns: calc(33% - 10px);
  grid-auto-flow: column;
}
.results-panel.feature-with-carousel .carousel .results .result .type,
.results-panel.feature-with-carousel .carousel .results .result .summary {
  display: none;
}
@media only screen and (max-width: 768px) {
  .results-panel.feature-with-carousel .carousel .results {
    scroll-padding-left: 2.5vw;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    margin-right: -2.5vw;
    margin-left: -2.5vw;
    grid-auto-columns: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .results-panel.feature-with-carousel .carousel .results {
    scroll-padding-left: 2.5vw;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    margin-right: -2.5vw;
    margin-left: -2.5vw;
    grid-auto-columns: 70%;
  }
}

.results-panel.feature > .results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
}
.results-panel.feature > .results > a:nth-child(1) {
  grid-column: 1;
  grid-row: 1/span 3;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
}
.results-panel.feature > .results > a {
  display: grid !important;
  gap: 15px;
  grid-template-columns: 42fr 58fr;
  grid-column: 2;
  width: 100%;
  align-items: center;
}
.results-panel.feature > .results .thumbnail {
  margin: 0;
}
.results-panel.feature.top > .results {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.results-panel.feature.top > .results > a:nth-child(1) {
  background-color: #F0EFFB;
  grid-column: 1/span 3;
  grid-template-columns: 1fr 1fr;
  display: grid !important;
  grid-auto-flow: row dense;
  border-radius: 6px;
  overflow: hidden;
  align-items: center;
}
.results-panel.feature.top > .results > a:nth-child(1) .info {
  padding: 20px 40px;
}
.results-panel.feature.top > .results > a:nth-child(1) .info .type {
  display: none;
}
.results-panel.feature.top > .results > a:nth-child(1) .info .title {
  font-size: 2em;
  max-width: 450px;
  font-family: "sofia-pro";
}
.results-panel.feature.top > .results > a:nth-child(1) .thumbnail {
  grid-column: 2;
  border-radius: 0;
}
.results-panel.feature.top > .results > a:nth-child(1) .info {
  grid-column: 1;
}
.results-panel.feature.top > .results > a:nth-child(n+2) {
  grid-column: auto;
  display: flex !important;
}
.results-panel.feature.top > .results > a:nth-child(n+2) .type,
.results-panel.feature.top > .results > a:nth-child(n+2) .summary {
  display: none;
}
.results-panel.feature.right > .results > a:nth-child(1) {
  grid-column: 2;
}
.results-panel.feature.right > .results > a {
  grid-column: 1;
}
@media only screen and (max-width: 768px) {
  .results-panel.feature > .results {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .results-panel.feature > .results > a:nth-child(1) {
    grid-column: 1/span 2 !important;
    grid-row: 1;
  }
  .results-panel.feature > .results a {
    grid-column: auto !important;
    display: flex !important;
    align-items: flex-start;
  }
  .results-panel.feature > .results > a:nth-child(n+4) {
    display: none !important;
  }
}
@media (max-width: 505px) {
  .results-panel.feature > .results {
    grid-template-columns: 1fr;
  }
  .results-panel.feature > .results > a:nth-child(1) {
    grid-column: 1 !important;
    grid-row: auto;
  }
  .results-panel.feature > .results > a:nth-child(n+4) {
    display: flex !important;
  }
}

.results-panel.carousel-strip .results {
  display: grid;
  gap: 20px;
  grid-auto-columns: calc(25% - 15px);
}
.results-panel.carousel-strip.col3 .results {
  grid-auto-columns: calc(33.33% - 13.33px);
}
@media (max-width: 768px) {
  .results-panel.carousel-strip .carousel {
    margin-left: -2.5vw;
    margin-right: -2.5vw;
  }
  .results-panel.carousel-strip .results {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    scroll-padding: 2.5vw;
    gap: 15px;
    grid-auto-columns: 30%;
  }
  .results-panel.carousel-strip.col3 .results {
    grid-auto-columns: 40%;
  }
}
@media (max-width: 425px) {
  .results-panel.carousel-strip .results {
    gap: 15px;
    grid-auto-columns: 45%;
  }
  .results-panel.carousel-strip.col3 .results {
    grid-auto-columns: 46%;
  }
}

@keyframes wipe-enter {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes grow-left {
  0% {
    transform-origin: 0 50%;
    transform: scale(0, 1);
  }
  100% {
    transform-origin: 0 50%;
    transform: scale(1, 1);
  }
}
.listpage .results .result .info .author, .listpage .results .result .info .duration {
  font-weight: 500;
  margin-top: 1px;
  width: auto;
}
.listpage .results .result .info .separator {
  margin: 0px 5px;
  margin-top: 1px;
}

.subtitleof-playlist, .subtitleof-album {
  display: flex;
  margin-top: 5px;
}
.subtitleof-playlist .separator, .subtitleof-album .separator {
  margin: 0px 5px;
  font-family: "sofia-pro";
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.ml-5 {
  margin-left: 5px;
}

.carousel .dots {
  position: absolute;
  bottom: 10px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  visibility: hidden;
}
.carousel .dots > span {
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 4px;
  transition: 0.5s background-color;
}
.carousel .dots > span.selected {
  background-color: black;
}

.results-panel .carousel {
  display: grid;
  position: relative;
}
.results-panel .carousel .results {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.results-panel .carousel .results::-webkit-scrollbar {
  display: none;
}
.results-panel .carousel .results {
  grid-template-columns: none;
  grid-auto-columns: calc(33% - 12.5px);
  grid-auto-flow: column;
  overflow-x: scroll;
}
.results-panel .carousel .results > * {
  scroll-snap-align: start;
}
.results-panel .carousel .results .result {
  grid-column: auto;
}
@media (max-width: 600px) {
  .results-panel .carousel .results {
    grid-auto-columns: 42%;
  }
}
@media (max-width: 425px) {
  .results-panel .carousel .results {
    grid-auto-columns: 65%;
  }
}
.results-panel .carousel.four-up .results {
  grid-auto-columns: calc(25% - 19px);
}
@media (max-width: 768px) {
  .results-panel .carousel.four-up .results {
    grid-auto-columns: 40%;
  }
}
.results-panel .carousel button.swiper {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s opacity;
  background-color: white;
}
.results-panel .carousel button.swiper:disabled {
  opacity: 0.5;
}
.results-panel .carousel button.swiper:after {
  font-size: 0;
  color: #8b7bff;
  line-height: 18px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  vertical-align: top;
  width: 10px;
  top: 2px;
}
.results-panel .carousel button.swiper.next {
  right: 0;
  transform: translateX(50%) translateY(-50%);
}
.results-panel .carousel button.swiper.next:after {
  transform: rotate(45deg);
  left: -2px;
}
.results-panel .carousel button.swiper.prev {
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}
.results-panel .carousel button.swiper.prev:after {
  transform: rotate(-135deg);
  left: 2px;
}
@media (hover: none) and (pointer: coarse) {
  .results-panel .carousel button.swiper {
    display: none;
  }
}
.results-panel .carousel:not(.scrollable) .next, .results-panel .carousel:not(.scrollable) .prev {
  display: none;
}

section.herobanner {
  margin-top: 0;
}
section.herobanner > .limited-width {
  position: relative;
}
section.herobanner .scroller {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow: hidden;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
section.herobanner .scroller::-webkit-scrollbar {
  display: none;
}
section.herobanner .slide {
  padding: 0 1px;
  display: grid;
  grid-template-columns: 40fr 60fr;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 12px;
  background-color: #F0EFFB;
}
section.herobanner .slide h1, section.herobanner .slide h2 {
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  line-height: 110%;
}
section.herobanner .slide p {
  font-size: 20px;
  margin: 12px 0;
  line-height: 130%;
  font-weight: 300;
}
section.herobanner .slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
section.herobanner .slide blockquote {
  align-self: stretch;
  position: relative;
  z-index: 1;
  padding: 0 55px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
section.herobanner .slide blockquote .button {
  font-family: "sofia-pro";
  font-weight: normal;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  padding: 7px 24px 9px;
  margin-top: 16px;
}
section.herobanner .dots {
  bottom: -25px;
}
@media (max-width: 768px) {
  section.herobanner .dots {
    bottom: 10px;
  }
}
@media (hover: none) and (pointer: coarse) {
  section.herobanner .dots {
    visibility: visible;
  }
}
section.herobanner button.swiper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s opacity;
  background-color: white;
}
@media (hover: none) and (pointer: coarse) {
  section.herobanner button.swiper {
    display: none;
  }
}
section.herobanner button.swiper:disabled {
  opacity: 0.5;
}
section.herobanner button.swiper:after {
  font-size: 0;
  color: #8b7bff;
  line-height: 18px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  vertical-align: top;
  width: 10px;
  top: 2px;
}
section.herobanner button.swiper.next:after {
  transform: rotate(45deg);
  left: -2px;
}
section.herobanner button.swiper.prev {
  right: 65px;
  prev: 0;
}
section.herobanner button.swiper.prev:after {
  transform: rotate(-135deg);
  left: 2px;
}
@media (max-width: 1024px) {
  section.herobanner {
    font-size: 14px;
  }
  section.herobanner .slide h1, section.herobanner .slide h2 {
    font-size: 1.5em;
  }
  section.herobanner .slide blockquote {
    padding: 20px 20px 30px 20px;
  }
}
@media (max-width: 768px) {
  section.herobanner .limited-width {
    width: 100%;
  }
  section.herobanner .slide {
    background-color: transparent;
    align-items: start;
    gap: 0;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    border-radius: 0;
  }
  section.herobanner .slide blockquote {
    order: 1;
  }
  section.herobanner button.swiper {
    top: 25vw;
  }
  section.herobanner button.swiper.prev {
    right: auto;
    left: 5px;
    z-index: 1;
  }
  section.herobanner button.swiper.next {
    right: 5px;
    z-index: 1;
  }
}

section.herobannerstatic {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}
section.herobannerstatic > .limited-width {
  position: relative;
}
section.herobannerstatic .slide {
  padding: 0;
  overflow: hidden;
  background-color: #F0EFFB;
  position: relative;
  display: flex;
  justify-content: end;
}
section.herobannerstatic .slide h1, section.herobannerstatic .slide h2 {
  text-align: left;
  font-size: 2em;
  margin: 0;
}
section.herobannerstatic .slide .media-wrapper {
  height: clamp(20rem, 56.25vw, 100vh);
  aspect-ratio: 16/9;
  width: 100%;
}
@media (max-width: 768px) {
  section.herobannerstatic .slide .media-wrapper {
    height: 70vh;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .media-wrapper {
    height: 60vh;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .media-wrapper {
    height: 75vh;
  }
}
section.herobannerstatic .slide .media-wrapper .media {
  height: clamp(20rem, 56.25vw, 100vh);
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media (max-width: 768px) {
  section.herobannerstatic .slide .media-wrapper .media {
    height: 70vh;
  }
}
section.herobannerstatic .slide .media-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: 100%;
}
section.herobannerstatic .slide .text-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0) 75%);
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay {
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 25%, rgba(255, 255, 255, 0) 75%);
  }
}
section.herobannerstatic .slide .text-overlay .banner-info {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  color: #000000;
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info {
    bottom: 1rem;
    justify-content: flex-end;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
  font-family: "sofia-pro";
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  color: #000000;
  width: 80%;
}
@media (max-width: 1280px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 2.2rem;
    width: 100%;
  }
}
@media (max-width: 992px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 1.688rem;
    color: #ffffff;
    text-shadow: -0.3px 0.7px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .text-overlay .banner-info .banner-headline {
    font-size: 1.25rem;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
  font-size: 1.875rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
    color: #ffffff;
    text-shadow: -0.3px 0.7px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .text-overlay .banner-info .subtitle {
    font-size: 1rem;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .tagline {
  font-size: 1.5rem;
  margin-top: 1.2rem;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  section.herobannerstatic .slide .text-overlay .banner-info .tagline {
    font-size: 1.2rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .tagline {
    font-size: 1.125rem;
    color: #ffffff;
    text-shadow: -0.3px 0.7px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
  }
}
@media (max-width: 360px) {
  section.herobannerstatic .slide .text-overlay .banner-info .tagline {
    font-size: 1rem;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos span {
  display: flex;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos span::after {
  content: "";
  background-color: #d7d7d7;
  display: block;
  width: 1px;
  height: 32px;
  margin-left: 16px;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos .rglogo {
  width: 150px;
  height: auto;
}
section.herobannerstatic .slide .text-overlay .banner-info .logos .logo {
  width: 85px;
  height: auto;
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .logos {
    justify-content: center;
  }
}
section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper button.standard.action,
section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper .button.standard.action {
  margin: 2rem 0;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "sofia-pro";
  font-size: 1rem;
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper button.standard.action,
  section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper .button.standard.action {
    padding: 0.25rem 1.25rem;
    letter-spacing: 1px;
    font-size: 0.875rem;
  }
}
@media (max-width: 640px) {
  section.herobannerstatic .slide .text-overlay .banner-info .actionBtnWrapper {
    display: flex;
    justify-content: center;
  }
}
section.herobannerstatic button.swiper {
  position: absolute;
  bottom: 4rem;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.5s opacity;
  background-color: white;
}
section.herobannerstatic button.swiper:disabled {
  opacity: 0.5;
}
section.herobannerstatic button.swiper:after {
  font-size: 0;
  color: #8b7bff;
  line-height: 18px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  vertical-align: top;
  width: 10px;
  top: 2px;
}
@media (max-width: 992px) {
  section.herobannerstatic button.swiper:after {
    height: 8px;
    width: 8px;
    top: 3px;
  }
}
section.herobannerstatic button.swiper.next:after {
  transform: rotate(45deg);
  left: -2px;
}
section.herobannerstatic button.swiper.prev {
  right: 65px;
  prev: 0;
}
section.herobannerstatic button.swiper.prev:after {
  transform: rotate(-135deg);
  left: 2px;
}
@media (max-width: 992px) {
  section.herobannerstatic button.swiper.prev {
    right: 55px;
  }
}
@media (max-width: 992px) {
  section.herobannerstatic button.swiper {
    bottom: 1rem;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  section.herobannerstatic {
    font-size: 14px;
  }
  section.herobannerstatic .slide h1, section.herobannerstatic .slide h2 {
    font-size: 1.5em;
  }
}

.dialog-container .blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0E1226;
  opacity: 0.6;
  z-index: 1500;
}
.dialog-container .dialog-content {
  padding: 30px 50px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 32px 40px rgba(70, 83, 97, 0.4), 0px 16px 32px -16px rgba(70, 83, 97, 0.32), 0px 8px 24px -8px rgba(70, 83, 97, 0.24), 0px 4px 16px -4px rgba(70, 83, 97, 0.16), 1px 2px 8px -2px rgba(70, 83, 97, 0.08), 0px 1px 4px -1px rgba(70, 83, 97, 0.08);
  border-radius: 8px;
  width: 542px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1600;
  font-family: "sofia-pro";
  max-width: 100%;
}
.dialog-container .dialog-content h2 {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .dialog-container .dialog-content h2 {
    font-size: 18px;
    font-weight: 400;
  }
}
.dialog-container .dialog-content .title {
  font-size: 28px;
}
.dialog-container .dialog-content .subtitle {
  font-family: "sofia-pro";
}
.dialog-container .dialog-content .subtitle span {
  font-weight: 600;
}
.dialog-container .dialog-content .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 580px) {
  .dialog-container .dialog-content {
    padding: 10px;
  }
}

.loader > * {
  display: none;
}
.loader:after {
  content: " ";
  display: block;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid #8B7BFF;
  border-color: #8B7BFF transparent;
  opacity: 0.75;
  animation: loading-ring 1.2s linear infinite;
}

@keyframes loading-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dialog-container .dialog-content .already-verified {
  display: none;
}
.dialog-container .dialog-content .already-verified p {
  font-size: 20px;
  font-weight: 600;
}
.dialog-container .dialog-content .successfully-verified {
  display: none;
}
.dialog-container .dialog-content .successfully-verified p {
  font-size: 20px;
  font-weight: 600;
}
.dialog-container .dialog-content.redeem-code .successfully-verified {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}
.dialog-container .dialog-content.redeem-code .successfully-verified p {
  font-family: "sofia-pro";
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #000000;
}
.dialog-container .dialog-content.redeem-code .successfully-verified .content {
  height: 300px;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .dialog-container .dialog-content.redeem-code .successfully-verified .content {
    height: 250px;
  }
}
.dialog-container .dialog-content.redeem-code .successfully-verified .content span {
  margin: auto;
}
.dialog-container .dialog-content.redeem-code .successfully-verified .success-icon {
  background-color: #8CDA82;
  color: #333;
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .dialog-container .dialog-content.redeem-code .successfully-verified .success-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
}
.dialog-container .dialog-content.redeem-code .successfully-verified button {
  border-radius: 100px;
  text-transform: capitalize;
  width: 126px;
  height: 40px;
}
.dialog-container .dialog-content .success-icon {
  color: #09b009;
  font-size: 60px;
}
.dialog-container .dialog-content .resend-link {
  background: none;
  padding: 0;
  color: #8B7BFF;
  font-size: 16px;
  cursor: pointer;
}
.dialog-container .dialog-content .emailsent {
  display: none;
  color: #09b009;
  font-size: 22px;
}
.dialog-container .dialog-content .verified-fail {
  display: none;
  color: #8B7BFF;
  font-size: 22px;
  font-weight: 600;
}

main.today-feed {
  font-size: 16px;
  padding: 0 0 0 0;
  font-family: "sofia-pro";
}
main.today-feed > nav.subnav {
  font-family: "sofia-pro";
  font-size: 14px;
  position: sticky;
  z-index: 10;
  top: calc(var(--header-height) - 1px);
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  background-color: white;
  transition: all 0.5s;
}
@at_root html.minimized-nav main.profile > nav.subnav {
  main.today-feed > nav.subnav {
    top: 0;
  }
}
main.today-feed > nav.subnav > .limited-width {
  display: flex;
  justify-content: center;
}
main.today-feed > nav.subnav a {
  margin: 0 20px;
  text-decoration: none;
  display: block;
  color: inherit;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  padding: 16px 4px;
}
main.today-feed > nav.subnav a.selected {
  font-weight: 700;
  color: #8B7BFF;
  border-bottom-color: #8B7BFF;
}
@media (max-width: 768px) {
  main.today-feed > nav.subnav {
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  main.today-feed > nav.subnav {
    font-size: 12px;
  }
  main.today-feed > nav.subnav a {
    margin: 0 10px;
  }
}
main.today-feed .exploremore {
  margin: 20px 0;
  display: grid;
  align-items: center;
}
main.today-feed .exploremore a.button {
  text-align: center;
  width: 100%;
  max-width: 300px;
  padding: 11px 25px;
  color: #8B7BFF;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin: 0 auto;
  display: block;
  border: 1px solid #8B7BFF;
  border-radius: 8px;
}
main.today-feed .daypicker {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  color: rgba(128, 128, 128, 0.5);
}
main.today-feed .daypicker button {
  font-size: 11px;
  opacity: 0.5;
}
main.today-feed section.music {
  padding: 45px 0;
  color: white;
  background: linear-gradient(180deg, #021221 0%, rgba(22, 41, 60, 0) 100%), linear-gradient(360deg, #000000 20%, rgba(0, 0, 0, 0) 50%), 50% 0/cover url("https://res.cloudinary.com/roundglass/image/upload/v1678826961/rg/web/milkyway.jpg") no-repeat, #D9D9D9;
  overflow: hidden;
}
main.today-feed section.music header {
  margin: 0 0 45px 0;
}
main.today-feed section.music header h3 {
  font-size: 24px;
  margin: 0 0 0.25em 0;
}
main.today-feed section.music header .subtitle {
  font-weight: 300;
}
main.today-feed section.music h4 {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
}
main.today-feed section.music .exploremore a {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
}
main.today-feed section.music .jump-back-in {
  margin: 45px 0;
}
main.today-feed section.music .jump-back-in .results {
  grid-auto-columns: 128px;
}
main.today-feed section.music .jump-back-in .result .title {
  font-size: 12px;
}
main.today-feed section.music .jump-back-in .result .duration {
  font-size: 12px;
  opacity: 0.5;
  cursor: default;
}
main.today-feed section.music .jump-back-in .result .thumbnail {
  aspect-ratio: 1/1;
}
main.today-feed section.music .jump-back-in .result .thumbnail img {
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  main.today-feed section.music .jump-back-in .carousel {
    margin-left: -2.5vw;
    margin-right: -2.5vw;
  }
  main.today-feed section.music .jump-back-in .carousel > .results {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    scroll-padding: 2.5vw;
  }
}
main.today-feed section.music .suggested-listening {
  padding-bottom: 20px;
}
main.today-feed section.music .suggested-listening .results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
main.today-feed section.music .suggested-listening a.selection {
  border-radius: 4px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  display: grid;
  align-items: center;
  grid-template-columns: 100px 1fr;
  gap: 20px;
}
main.today-feed section.music .suggested-listening a.selection .info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main.today-feed section.music .suggested-listening a.selection .genre {
  font-size: 18px;
  font-family: "sofia-pro";
  text-transform: uppercase;
  font-weight: 500;
}
main.today-feed section.music .suggested-listening a.selection.focus .genre {
  color: #FFBC96;
}
main.today-feed section.music .suggested-listening a.selection.focus {
  background: linear-gradient(85.88deg, rgba(255, 188, 150, 0.21) 29.12%, rgba(255, 188, 150, 0) 93.48%), rgba(255, 255, 255, 0.1);
}
main.today-feed section.music .suggested-listening a.selection.relax .genre {
  color: #A098FF;
}
main.today-feed section.music .suggested-listening a.selection.relax {
  background: linear-gradient(85.88deg, rgba(160, 152, 255, 0.17) 29.12%, rgba(255, 188, 150, 0) 93.48%), rgba(255, 255, 255, 0.1);
}
main.today-feed section.music .suggested-listening a.selection.moving .genre {
  color: #EB9EED;
}
main.today-feed section.music .suggested-listening a.selection.moving {
  background: linear-gradient(85.88deg, rgba(255, 152, 201, 0.17) 29.12%, rgba(255, 188, 150, 0) 93.48%), rgba(255, 255, 255, 0.1);
}
main.today-feed section.music .suggested-listening a.selection.healing .genre {
  color: #FFAF66;
}
main.today-feed section.music .suggested-listening a.selection.healing {
  background: linear-gradient(85.88deg, rgba(254, 162, 23, 0.17) 29.12%, rgba(255, 188, 150, 0) 93.48%), rgba(255, 255, 255, 0.1);
}
main.today-feed section.music .suggested-listening a.selection .title {
  font-size: 16px;
  font-weight: bold;
}
main.today-feed section.music .suggested-listening a.selection .duration {
  font-size: 14px;
  opacity: 0.5;
}
main.today-feed section.music .suggested-listening a.selection .thumbnail {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/1;
}
main.today-feed section.music .suggested-listening a.selection .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 600px) {
  main.today-feed section.music .suggested-listening a.selection {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
main.today-feed section.what-to-cook {
  border-top: 10px solid #37628A;
  margin: 40px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%;
  overflow: hidden;
  width: 100%;
}
main.today-feed section.what-to-cook > .limited-width {
  position: relative;
  z-index: 1;
}
main.today-feed section.what-to-cook > .limited-width > .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 25px;
  padding: 65px 0 50px 0;
}
main.today-feed section.what-to-cook > .limited-width > .wrapper header {
  /* color: #142E5C; */
  padding: 0 0 25px 0;
  text-shadow: 0px 0px 15px white;
}
main.today-feed section.what-to-cook > .limited-width > .wrapper header h3 {
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
}
main.today-feed section.what-to-cook > .limited-width > .wrapper header h4 {
  margin: 0.5em 0;
  font-size: 2.5em;
}
@media (max-width: 768px) {
  main.today-feed section.what-to-cook > .limited-width > .wrapper header h3 {
    font-size: 1em;
  }
  main.today-feed section.what-to-cook > .limited-width > .wrapper header h4 {
    font-size: 2em;
  }
}
main.today-feed section.what-to-cook > .limited-width .carousel {
  position: relative;
}
main.today-feed section.what-to-cook > .limited-width .carousel > .results {
  gap: 20px;
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: calc(33% - 10px);
  grid-auto-flow: column;
}
main.today-feed section.what-to-cook > .limited-width .carousel > .results > .result {
  grid-column: auto;
}
main.today-feed section.what-to-cook > .limited-width .carousel > .results .summary, main.today-feed section.what-to-cook > .limited-width .carousel > .results .author, main.today-feed section.what-to-cook > .limited-width .carousel > .results .type {
  display: none;
}
@media (max-width: 768px) {
  main.today-feed section.what-to-cook > .limited-width > .wrapper {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  main.today-feed section.what-to-cook > .limited-width > .wrapper header {
    grid-column: 1;
    text-align: center;
  }
  main.today-feed section.what-to-cook > .limited-width > .wrapper > .info {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
  }
  main.today-feed section.what-to-cook > .limited-width .carousel > .results {
    grid-auto-columns: 44%;
    margin-left: -2.5vw;
    margin-right: -2.5vw;
    scroll-padding-left: 2.5vw;
    padding: 0 2.5vw;
  }
  main.today-feed section.what-to-cook > .limited-width .carousel .swiper {
    display: none;
  }
}
@media (max-width: 425px) {
  main.today-feed section.what-to-cook > .limited-width .carousel > .results {
    grid-auto-columns: 80%;
    padding-right: 5%;
  }
}
main.today-feed section.what-to-cook:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
}
main.today-feed section.activities {
  padding-top: 45px;
}
main.today-feed section.activities .tl-entry {
  position: relative;
  width: inherit;
}
main.today-feed section.activities .tl-entry.separator .dot {
  width: 40px;
  height: 40px;
  border: none;
  color: #ccc;
}
main.today-feed section.activities .tl-entry.separator .dot:before {
  font-family: "Material Icons";
  font-size: 28px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  position: relative;
}
main.today-feed section.activities .tl-entry.separator.morning .dot:before {
  content: "wb_twilight";
  left: 7px;
  top: -1px;
}
main.today-feed section.activities .tl-entry.separator.afternoon .dot:before {
  content: "light_mode";
  left: 7px;
}
main.today-feed section.activities .tl-entry.separator.evening .dot:before {
  content: "nightlight";
  left: 6px;
}
main.today-feed section.activities .tl-entry .dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  left: -36px;
  top: 16px;
  border: 4px solid #8b7bff;
  z-index: 1;
  box-shadow: 0 0 0px 6px white;
  transform: translateX(-50%) translateY(-50%);
}
main.today-feed section.activities .tl-entry:after {
  content: "";
  position: absolute;
  left: -36px;
  top: 1px;
  width: 3px;
  height: calc(100% + 50px);
  background-color: #ddd;
  transform: translateX(-50%);
}
main.today-feed section.activities .tl-entry:last-child:after {
  display: none;
}
main.today-feed section.activities .tl-entry h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 34px;
}
main.today-feed section.activities .tl-entry.complete .dot {
  background-color: #018786;
  border-color: #018786;
  width: 22px;
  height: 22px;
}
main.today-feed section.activities .tl-entry.complete .dot:after {
  font-family: "Material Icons";
  font-size: 18px;
  line-height: 22px;
  width: 22px;
  height: 22px;
  position: absolute;
  content: "check";
  color: white;
  display: block;
  z-index: 1;
  left: 7px;
  top: 7px;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
}
main.today-feed section.activities .tl-entry.complete .play-icon {
  display: none;
}
main.today-feed section.activities .tl-entry.complete .result {
  grid-template-columns: 200px 1fr;
}
main.today-feed section.activities .tl-entry.complete .result:after {
  display: none;
}
main.today-feed section.activities .tl-entry.complete .result .info {
  order: 2;
  display: flex;
  flex-direction: column;
}
main.today-feed section.activities .tl-entry.complete .result .info .duration {
  position: static;
}
main.today-feed section.activities .tl-entry.complete .result .thumbnail:before {
  display: block;
  content: "COMPLETED";
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  color: white;
  background-color: #018786;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 4px;
}
main.today-feed section.activities .tl-entry.complete .result .thumbnail .progress {
  display: none !important;
}
@media (max-width: 450px) {
  main.today-feed section.activities .tl-entry.complete .result {
    grid-template-columns: 120px 1fr;
  }
  main.today-feed section.activities .tl-entry.complete .result .title {
    font-size: 16px;
  }
  main.today-feed section.activities .tl-entry.complete .result .nextin {
    font-size: 14px;
  }
  main.today-feed section.activities .tl-entry.complete .result .duration {
    display: none;
  }
}
main.today-feed section.activities p {
  font-family: "sofia-pro";
  line-height: 150%;
}
main.today-feed section.activities h1, main.today-feed section.activities h2, main.today-feed section.activities h3, main.today-feed section.activities h4 {
  font-weight: 600;
}
main.today-feed section.activities h1 {
  font-size: 34px;
  text-align: center;
}
main.today-feed section.activities > header {
  text-align: center;
  margin-bottom: 35px;
}
main.today-feed section.activities .results {
  max-width: 600px;
  gap: 50px;
  margin: 0 auto 60px auto;
}
main.today-feed section.activities .results .result {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  cursor: pointer;
}
main.today-feed section.activities .results .result .info {
  position: relative;
  padding-right: 50px;
}
main.today-feed section.activities .results .result .title {
  font-size: 20px;
}
main.today-feed section.activities .results .result .nextin {
  color: #018786;
}
main.today-feed section.activities .results .result .nextin a {
  text-decoration: none;
}
main.today-feed section.activities .results .result .duration {
  font-size: 13px;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: default;
}
main.today-feed section.activities .results .result .authors {
  display: none;
}
main.today-feed section.activities .results .result .thumbnail {
  order: 1;
  border-radius: 8px;
}
main.today-feed section.activities .results .result .thumbnail .progress {
  position: absolute;
  display: block;
  height: 12px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.35);
}
main.today-feed section.activities .results .result .thumbnail .progress .bar {
  display: block;
  height: 100%;
  border-radius: 0 6px 6px 0;
  background-color: #8b7bff;
}
main.today-feed section.activities .results .result .play-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  /* background-image: url(/images/play-large.svg); */
  /* background-size: 100% 100%; */
  left: 85%;
  /* right: 0px; */
  top: 90%;
  z-index: 1;
}
@media (max-width: 750px) {
  main.today-feed section.activities .results .result .play-icon {
    left: 80%;
  }
}
@media (max-width: 500px) {
  main.today-feed section.activities .results .result .play-icon {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 375px) {
  main.today-feed section.activities .results .result .play-icon {
    left: 77%;
  }
}
main.today-feed section.activities .placeholder.results .result {
  color: transparent;
}
main.today-feed section.activities .placeholder.results .result .title {
  background-color: #efefef;
  border-radius: 1em;
  max-width: 300px;
}
main.today-feed section.activities .placeholder.results .result .title:after {
  content: ".";
}
main.today-feed section.activities .placeholder.results .result .thumbnail {
  background-color: #efefef;
}
main.today-feed section.activities .placeholder.results .result .thumbnail:after {
  content: ".";
  width: 100%;
  height: 100%;
  display: block;
}
main.today-feed section.activities .placeholder.results .result:after {
  display: none;
}
@media (max-width: 750px) {
  main.today-feed section.activities h1 {
    font-size: 1.8em;
  }
  main.today-feed section.activities .results {
    margin-left: 45px;
  }
  main.today-feed section.activities .tl-entry .dot {
    left: -29px;
  }
  main.today-feed section.activities .tl-entry:after {
    left: -29px;
  }
}
@media (max-width: 300px) {
  main.today-feed section.activities .results {
    margin-left: 45px;
    width: 210px;
  }
}
main.today-feed.loading {
  min-height: calc(100vh - var(--header-height));
}
main.today-feed.loading > * {
  display: none;
}
main.today-feed.loading:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  content: " ";
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid #8B7BFF;
  border-color: #8B7BFF transparent;
  opacity: 0.75;
  animation: loading-ring 1.2s linear infinite;
}

.shimmer {
  animation-duration: 2.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  background: #ddd;
  background: linear-gradient(120deg, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 1200px 100%;
}

.video-dialog {
  display: none;
}
.video-dialog .blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 11;
}
.video-dialog .video-dialog-content {
  color: #fff;
  /* border-radius: 8px; */
  text-align: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  z-index: 12;
  margin: auto;
  padding: 120px 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-dialog .video-dialog-content h2 {
  font-family: "sofia-pro";
  font-weight: 700;
  font-size: 20px;
  line-height: 21px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .video-dialog .video-dialog-content h2 {
    font-size: 16px;
  }
}
.video-dialog .video-dialog-content p {
  font-family: "sofia-pro";
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 800px;
  margin: 10px auto 20px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
@media (max-width: 810px) {
  .video-dialog .video-dialog-content p {
    max-width: 100vw;
    -webkit-line-clamp: 3;
    margin: 20px auto;
    font-weight: 400;
    font-size: 14px;
  }
}
.video-dialog .video-dialog-content .image-container {
  margin-bottom: 30px;
}
.video-dialog .video-dialog-content .playable {
  visibility: hidden;
  width: 0;
}
.video-dialog .video-dialog-content .more-details {
  font-family: "sofia-pro";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  border: 1px solid;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  padding: 10px 20px;
}
.video-dialog .video-dialog-content .close-icon {
  background: rgba(217, 217, 217, 0.4);
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 110px;
  right: 50px;
  padding: 5px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .video-dialog .video-dialog-content .close-icon {
    top: 150px;
    right: 10px;
  }
}
.video-dialog .video-dialog-content .video-content {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  max-height: calc(100vh - 340px);
  display: flex;
  justify-content: center;
}
.video-dialog .video-dialog-content .video-content iframe {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-dialog .video-dialog-content img {
  display: none;
  cursor: pointer;
  position: absolute;
  aspect-ratio: 16/9;
  max-height: calc(100vh - 345px);
}

@keyframes loading-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0;
  }
}

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