.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;
}

body.with-filter-panel-open .result-filter {
  visibility: visible;
  pointer-events: auto;
}
body.with-filter-panel-open .result-filter .panel {
  transform: translateX(0);
}
body.with-filter-panel-open {
  overflow: hidden;
}

.result-filter {
  position: fixed;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
.result-filter .blocker {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
.result-filter h3 {
  font-size: 16px;
  margin-bottom: 0;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #eee;
  font-weight: normal !important;
}
.result-filter ul, .result-filter li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.result-filter .panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25);
  background-color: white;
  transform: translateX(400px);
  transition: 0.5s all;
  display: flex;
  flex-direction: column;
}
.result-filter .panel > .actions {
  padding: 20px 10px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.result-filter .panel > ul {
  overflow-y: auto;
  flex: 1 1 100%;
}
.result-filter .panel > ul > li {
  padding: 0 10px;
  margin: 0 0 35px 0;
}
.result-filter .panel > ul > li span.count {
  padding-left: 0.25em;
}
.result-filter .panel > ul > li a.more-less {
  font-size: 13px;
  cursor: pointer;
  display: none;
}
.result-filter .panel > ul > li a.more-less:after {
  content: "See More";
}
.result-filter .panel > ul > li a.more-less:hover {
  color: #8B7BFF;
}
.result-filter .panel > ul > li.with-more .more-less {
  display: block;
}
.result-filter .panel > ul > li.with-more ul {
  max-height: 72px;
  overflow: hidden;
}
.result-filter .panel > ul > li.with-more.expanded ul {
  max-height: 500px;
  overflow: hidden;
}
.result-filter .panel > ul > li.with-more.expanded a.more-less:after {
  content: "See Less";
}
.result-filter .panel > ul > li > ul {
  transition: 0.5s max-height 0s;
  overflow-y: auto;
  margin: 10px 0;
}
.result-filter .panel > ul > li > ul > li label {
  display: flex;
  padding: 5px 0;
  user-select: none;
  cursor: pointer;
}
.result-filter .panel > ul > li > ul > li input {
  vertical-align: middle;
  border: 1px solid black;
  border-radius: 0;
  margin: 0 10px 0 5px;
  position: absolute;
  top: -50px;
  left: -50px;
}
.result-filter .panel > ul > li > ul > li .checkbox {
  display: inline-block;
  vertical-align: center;
  width: 14px;
  height: 14px;
  border: 2px solid #666;
  border-radius: 2px;
  margin: 0 5px 0 3px;
}
.result-filter .panel > ul > li > ul > li .checkbox:after {
  content: "check";
  font-family: Material Icons;
  display: block;
  position: absolute;
  bottom: -2px;
  left: -2px;
  color: transparent;
  transform: scale(0, 0);
  transition: 0.25s all 0.05s;
}
.result-filter .panel > ul > li > ul > li input:checked + label {
  background-color: #eee;
  font-weight: bold;
}
.result-filter .panel > ul > li > ul > li input:checked + label .checkbox {
  background-color: #d8532d;
  border-color: #d8532d;
  position: relative;
}
.result-filter .panel > ul > li > ul > li input:checked + label .checkbox:after {
  color: white;
  transform: scale(1, 1);
}
.result-filter .panel > ul > li > ul > li {
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  overflow: hidden;
  transition: 0.5s all;
  white-space: nowrap;
  max-height: 30px;
}
.result-filter .panel > ul > li > ul > li.disabled {
  /*max-height: 0px;
  visibility: hidden;*/
}
.result-filter .panel > ul > li > ul > li.disabled span {
  opacity: 0.25;
}

.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;
  }
}

.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;
}

main.death-faqs {
  font-size: 16px;
  padding: 0 0 2em 0;
  font-family: "sofia-pro";
}
main.death-faqs p {
  font-family: "sofia-pro";
  line-height: 150%;
}
main.death-faqs h1, main.death-faqs h2, main.death-faqs h3, main.death-faqs h4 {
  font-weight: 600;
}
main.death-faqs h1 {
  font-size: 34px;
  text-align: center;
}
main.death-faqs > header {
  text-align: center;
  margin-bottom: 35px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.43) 0%, rgba(0, 0, 0, 0) 66%), url("https://res.cloudinary.com/roundglass/image/upload/v1594321118/rg/collective/v2/images/eol/DFAQ_Hero.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  color: white;
  text-shadow: 0 0 3px black;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 500px;
}
main.death-faqs > header p {
  font-size: 20px;
}
main.death-faqs {
  /*.results-panel {
    header {
      display: none;
    }
  }*/
}
main.death-faqs .filter-choices .facet[data-facet=tags] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
}
main.death-faqs .filter-choices .facet[data-facet=tags] label > span {
  text-transform: capitalize;
}
main.death-faqs .filter-choices .facet[data-facet=tags] > :first-child {
  grid-column: span 3;
}
main.death-faqs .filter-selections .pill > span {
  text-transform: capitalize;
  display: inline-block;
}
main.death-faqs .results a.result {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
}
main.death-faqs .results a.result .type, main.death-faqs .results a.result .summary {
  display: none;
}
main.death-faqs .results a.result .thumbnail {
  aspect-ratio: 1/1;
}

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