@charset "UTF-8";
/* 
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
main {
  overflow: hidden;
}

.single main .content-center .divider-section-rac {
  margin-bottom: 3rem;
}
@media (min-width: 1025px) {
  .single main .content-center .divider-section-rac {
    width: calc(100% - 30rem);
  }
}
.single main .content-center .divider-section-rac .h-meet-the-raconteur-50 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-size: 4.2rem;
  border-bottom: 1px solid white;
  display: inline-block;
}
@media (max-width: 1024px) {
  .single main .content-center .divider-section-rac .h-meet-the-raconteur-50 {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .single main .content-center .divider-section-rac .h-meet-the-raconteur-50 {
    font-size: 2.4rem;
  }
}
.single main .content-center .divider-section-rac .h-meet-the-raconteur-50 + .d-meet-the-raconteur-50 {
  font-family: "sofia-pro";
}
.single main .content-center .divider-section-rac .h-meet-the-raconteur-50 + .d-meet-the-raconteur-50 p:last-child {
  margin-bottom: 0;
}
@media (min-width: 501px) {
  .single main .content-center .ceo-50-related {
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-top: -1rem;
    width: calc(100% + 3rem);
    max-width: calc(100% + 3rem);
  }
}
@media (min-width: 501px) and (max-width: 1440px) {
  .single main .content-center .ceo-50-related {
    width: calc(100% + 3rem);
    max-width: calc(100% + 3rem);
  }
}
@media (min-width: 501px) and (max-width: 1024px) {
  .single main .content-center .ceo-50-related {
    width: calc(100% + 4rem);
    max-width: calc(100% + 4rem);
  }
}
.single main .content-center .ceo-50-related .column {
  display: block !important;
}
@media (max-width: 500px) {
  .single main .content-center .ceo-50-related .column {
    margin-bottom: 2.5rem;
  }
  .single main .content-center .ceo-50-related .column:nth-child(n+5) .preview-ratio {
    display: none !important;
  }
}
@media (min-width: 501px) {
  .single main .content-center .ceo-50-related .column {
    margin-top: 2rem;
    margin-right: 3rem;
    width: calc(25% - 3rem);
  }
}
@media (min-width: 501px) and (max-width: 1440px) {
  .single main .content-center .ceo-50-related .column {
    width: calc(50% - 4rem);
    margin-right: 4rem;
    border: 0;
    padding-bottom: 0;
  }
  .single main .content-center .ceo-50-related .column:nth-child(even) {
    position: relative;
  }
  .single main .content-center .ceo-50-related .column:nth-child(even):before {
    content: "";
    position: absolute;
    left: -2rem;
    height: 100%;
    width: 1px;
    background-color: white;
  }
}

.header-rac-50-line {
  position: relative;
}
.header-rac-50-line:before {
  content: "";
  width: 200vw;
  height: 0.57%;
  background-color: white;
  z-index: 1;
  position: absolute;
  top: 55%;
  left: -50vw;
}
@media (max-width: 579px) {
  .header-rac-50-line:before {
    top: 47%;
    height: 0.49%;
  }
}
@media (max-width: 359px) {
  .header-rac-50-line:before {
    top: 57%;
    height: 0.4%;
  }
}

.dark-long-read.single main .content .header-raonteur-50 {
  display: block;
  position: relative;
  margin-bottom: 4rem;
  z-index: 3;
}
.dark-long-read.single main .content .header-raonteur-50:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 53%;
}
@media (max-width: 579px) {
  .dark-long-read.single main .content .header-raonteur-50:after {
    padding-bottom: 108%;
    /* … */
  }
}
@media (max-width: 359px) {
  .dark-long-read.single main .content .header-raonteur-50:after {
    padding-bottom: 137%;
    /* … */
  }
}
.dark-long-read.single main .content .header-raonteur-50 #rac50header {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.dark-long-read.single main .content .intro-tabs-rac50 {
  background: white;
  color: #191919;
  border-radius: 2.4rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.dark-long-read.single main .content .intro-tabs-rac50 * {
  color: #191919;
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-control {
  border-bottom: 1px solid #495057;
  display: flex;
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-control {
    padding: 0 2rem;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-control .tab-switch {
  margin-right: 10%;
  padding: 1.6rem 2rem;
  font-weight: normal;
  color: #495057;
  position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-control .tab-switch {
    margin-right: 0;
    padding: 1.6rem 1.8rem;
  }
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-control .tab-switch {
    padding: 1.4rem 1.6rem;
    text-align: center;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-control .tab-switch.active {
  font-weight: bold;
  border-bottom: 2px solid #fd2341;
  color: #191919;
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-control .tab-switch:hover:not(.active) {
  border-bottom: 2px solid #fd2341;
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content {
  padding: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .tab-content {
  position: absolute;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  padding: 3rem 4rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .tab-content {
    padding: 3rem;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .tab-content.active {
  pointer-events: all;
  position: relative;
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title {
    font-size: 3.8rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title {
    font-size: 3.4rem;
  }
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title {
    font-size: 2.6rem;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title b {
  font-weight: bold;
  display: block;
  font-size: 4.8rem;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title b {
    font-size: 4.6rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title b {
    font-size: 4.4rem;
  }
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .title b {
    font-size: 3rem;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex {
  display: flex;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:first-child {
  width: calc(100% - 30rem);
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child {
  width: 30rem;
  padding-left: 6rem;
  text-align: center;
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child .name {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:first-child {
    width: calc(100% - 28rem);
  }
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child {
    width: 28rem;
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:first-child {
    width: 100%;
  }
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child {
    width: 100%;
    padding-left: 19rem;
    position: relative;
    min-height: 19rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child {
    padding-left: 13rem;
    min-height: 11rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child .photo {
    max-width: 15.5rem;
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child .photo {
    max-width: 9.5rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child .name {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .dark-long-read.single main .content .intro-tabs-rac50 .tabs-content .flex .col:last-child .name {
    font-size: 1.8rem;
  }
}
.dark-long-read.single main .content .intro-tabs-rac50 .tabs-control:not(.changing) + .tabs-content .tab-content.active {
  opacity: 1;
  visibility: visible;
}
.dark-long-read.single main .content .legend {
  background-color: #E9ECEF;
  border-top: 2px solid #191919;
  padding: 3rem 4rem;
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .legend {
    padding: 3rem;
  }
}
.dark-long-read.single main .content .legend * {
  color: #191919;
}
.dark-long-read.single main .content .legend .title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid #191919;
  padding-bottom: 1rem;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .legend .title {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .legend .title {
    font-size: 2.6rem;
    display: block;
  }
}
.dark-long-read.single main .content .legend .title:after {
  content: "";
  display: block;
  clear: both;
}
.dark-long-read.single main .content .legend .description {
  width: calc(100% - 30rem);
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .legend .description {
    width: 100%;
  }
}
.dark-long-read.single main .content .legend .content-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .legend .content-legend {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.dark-long-read.single main .content .legend .content-legend .single {
  width: calc(20% - 0.5rem);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .legend .content-legend .single {
    width: 100%;
  }
  .dark-long-read.single main .content .legend .content-legend .single:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .dark-long-read.single main .content .legend .content-legend .single {
    flex-direction: row;
  }
}
.dark-long-read.single main .content .legend .content-legend .single .category-title {
  font-size: 2rem;
  padding: 1.2rem 1.6rem;
  padding-top: 1rem;
  border-top-left-radius: 2.4rem;
  border-top-right-radius: 2.4rem;
  font-weight: bold;
  height: 7.2rem;
  line-height: 1.2;
  border: 1px solid #191919;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.dark-long-read.single main .content .legend .content-legend .single .category-title span {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .legend .content-legend .single .category-title {
    width: 100%;
    height: auto;
    padding: 1.6rem;
    max-width: 20rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: 2.4rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .legend .content-legend .single .category-title {
    padding: 1.2rem 1.4rem;
    font-size: 1.5rem;
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2.4rem;
  }
}
.dark-long-read.single main .content .legend .content-legend .single[data-category=newfrontiers] .category-title {
  background-color: #FEE29E;
}
.dark-long-read.single main .content .legend .content-legend .single[data-category=industrychampions] .category-title {
  background-color: #ADDAFF;
}
.dark-long-read.single main .content .legend .content-legend .single[data-category=newfaces] .category-title {
  background-color: #66D9C4;
}
.dark-long-read.single main .content .legend .content-legend .single[data-category=wavemakers] .category-title {
  background-color: #FF7390;
}
.dark-long-read.single main .content .legend .content-legend .single[data-category=revolutionisers] .category-title {
  background-color: #26E6FF;
}
.dark-long-read.single main .content .legend .content-legend .single .category-description {
  border: 1px solid #191919;
  border-top: 0;
  padding: 0.8rem 1.6rem;
  padding-bottom: 1.6rem;
  background: white;
  border-bottom-left-radius: 2.4rem;
  border-bottom-right-radius: 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dark-long-read.single main .content .legend .content-legend .single .category-description > *:last-child {
  margin-bottom: 0;
  margin-top: auto;
}
.dark-long-read.single main .content .legend .content-legend .single .category-description > *.sort-category {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: #191919;
  padding-left: 1.8rem;
  background-image: url("../img/custom/sort-icon.svg");
  background-size: 1.2rem;
  background-repeat: no-repeat;
  background-position: left 0rem top 4px;
}
.dark-long-read.single main .content .legend .content-legend .single .category-description > *.sort-category:hover {
  color: #6c757d;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .legend .content-legend .single .category-description {
    border-top: 1px solid #191919;
    border-left: 0;
    padding-top: 1.6rem;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .legend .content-legend .single .category-description {
    padding: 0.8rem 1.4rem;
    font-size: 1.4rem;
    border-top: 0;
    border-left: 1px solid #191919;
    padding-bottom: 1.4rem;
    border-bottom-left-radius: 2.4rem;
    border-top-right-radius: 0;
  }
  .dark-long-read.single main .content .legend .content-legend .single .category-description > p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.dark-long-read.single main .content #gridme {
  min-height: 400px;
}
.dark-long-read.single main .content #gridme.rac50-spinner {
  position: relative;
}
.dark-long-read.single main .content #gridme.rac50-spinner > * {
  opacity: 0;
}
.dark-long-read.single main .content #gridme.rac50-spinner:before {
  content: "";
  height: 10rem;
  width: 10rem;
  position: absolute;
  left: calc(50% - 5rem);
  top: 4rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/custom/spinner-rac50.svg");
  animation-name: spin;
  animation-duration: 8000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.dark-long-read.single main .content .grid.muuri {
  position: relative;
  overflow: hidden;
  margin-left: -15px;
  width: calc(100% + 30px);
}
@media (max-width: 1440px) {
  .dark-long-read.single main .content .grid.muuri {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .grid.muuri {
    margin-left: -5px;
    width: calc(100% + 10px);
  }
}
.dark-long-read.single main .content .grid.muuri .item {
  display: block;
  position: absolute;
  width: 25%;
  padding: 15px;
  z-index: 1;
  transition: 0.1s all ease-in-out;
}
@media (max-width: 1440px) {
  .dark-long-read.single main .content .grid.muuri .item {
    padding: 10px;
  }
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .item {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .grid.muuri .item {
    padding: 5px;
  }
}
@media only screen and (max-width: 370px) {
  .dark-long-read.single main .content .grid.muuri .item {
    width: 100%;
  }
}
.dark-long-read.single main .content .grid.muuri .item:not(.item-desc) {
  cursor: pointer !important;
}
.dark-long-read.single main .content .grid.muuri .item:not(.item-desc) * {
  cursor: pointer !important;
}
.dark-long-read.single main .content .grid.muuri .item.industry-champions .item-content .image {
  background-color: #ADDAFF;
}
.dark-long-read.single main .content .grid.muuri .item.new-faces .item-content .image {
  background-color: #66D9C4;
}
.dark-long-read.single main .content .grid.muuri .item.revolutionisers .item-content .image {
  background-color: #26E6FF;
}
.dark-long-read.single main .content .grid.muuri .item.wavemakers .item-content .image {
  background-color: #FF7390;
}
.dark-long-read.single main .content .grid.muuri .item.new-frontiers .item-content .image {
  background-color: #FEE29E;
}
.dark-long-read.single main .content .grid.muuri .item404 {
  width: 100%;
  pointer-events: none;
  opacity: 0;
}
.dark-long-read.single main .content .grid.muuri .item404 .no-results {
  text-align: center;
  margin-top: 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.dark-long-read.single main .content .grid.muuri .item404 img {
  max-width: 50rem;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
.dark-long-read.single main .content .grid.muuri .item404.muuri-item-shown {
  opacity: 1;
}
.dark-long-read.single main .content .grid.muuri .item404.muuri-item-shown img {
  opacity: 1;
}
.dark-long-read.single main .content .grid.muuri .item.muuri-item-hidden {
  z-index: 0;
}
.dark-long-read.single main .content .grid.muuri .item-desc {
  width: 100% !important;
  display: block;
  z-index: 2;
  overflow: visible;
  /* position: absolute; */
  color: #191919;
}
.dark-long-read.single main .content .grid.muuri .item-desc .item-content {
  border: 1px solid #191919;
}
.dark-long-read.single main .content .grid.muuri .item-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: visible;
  border-radius: 0.8rem;
  color: #191919;
  padding: 0px;
  transition: all 0.2s ease-in-out;
  /* transition-duration: 5s; */
}
.dark-long-read.single main .content .grid.muuri .rac-50-content {
  display: flex;
  flex-direction: column;
  transition: 2s all ease-in-out;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content .category, .dark-long-read.single main .content .grid.muuri .rac-50-content .size, .dark-long-read.single main .content .grid.muuri .rac-50-content .industry {
  display: none;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content .open-desc {
  width: 2rem;
  background-image: url("../img/custom/open-arrow.svg");
  background-size: 1.4rem;
  background-repeat: no-repeat;
  background-position: center center;
  height: 2rem;
  transition: all 0.2s ease-in-out;
  transform: rotate(0);
  cursor: pointer;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content .open-desc.active {
  transform: rotate(180deg);
}
.dark-long-read.single main .content .grid.muuri .rac-50-content .image {
  width: 100%;
  border-bottom: 1px solid #191919;
  transition: all 0.2s ease-in-out;
  filter: grayscale(0);
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content .image .headshot {
  transition: all 0.2s ease-in-out;
  opacity: 1;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content .image .headshot:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 72%;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra {
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra {
    flex-wrap: wrap;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .open-desc {
  width: 4rem;
  z-index: 3;
  background-size: 1.5rem;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  right: -0.7rem;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #191919;
  top: -0.6rem;
  height: 4rem;
  transition: all 0.2s ease-in-out;
  transform: rotate(0);
  cursor: pointer;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .open-desc:before {
  content: "✕";
  position: absolute;
  left: 50%;
  top: calc(50% - 2px);
  transform: translate(-50%, -50%);
  line-height: 1;
  font-size: 18px;
  vertical-align: 2px;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .open-desc.active {
  transform: rotate(180deg);
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 25rem);
  height: 30px;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: flex;
  justify-content: column;
  align-items: center;
  padding-left: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #191919;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category.industry-champions {
  background-color: #ADDAFF;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category.new-faces {
  background-color: #66D9C4;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category.revolutionisers {
  background-color: #26E6FF;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category.wavemakers {
  background-color: #FF7390;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category.new-frontiers {
  background-color: #FEE29E;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category {
    width: 100%;
    border-top-left-radius: 0.8rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .category {
    padding-left: 1.5rem;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile {
  width: 25rem;
  border-right: 1px solid #191919;
  border-top-left-radius: 0.6rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile {
    width: 100%;
    padding-top: 3rem;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile {
    border-right: 0;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .image {
  width: 100%;
  border-bottom: 1px solid #191919;
  transition: all 0.2s ease-in-out;
  border-top-left-radius: 0.8rem;
  filter: grayscale(0);
}
@media (max-width: 1024px) and (min-width: 769px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .image {
    width: 25rem;
    position: absolute;
    border-right: 1px solid #191919;
    border-bottom: 0;
    left: 0;
  }
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .image ~ * {
    padding-left: 28rem !important;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .image .headshot {
  transition: all 0.2s ease-in-out;
  opacity: 1;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .image .headshot:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 72%;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .name, .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .company, .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .industry, .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .size {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .name {
  padding-top: 1.5rem;
  font-size: 2.6rem;
  line-height: 2.2rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .name {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .name {
    font-size: 2.8rem;
    padding-top: 2.7rem;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .company {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 0.5rem;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .company {
    font-size: 1.6rem;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .industry {
  padding-top: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.3rem;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .industry {
    font-size: 1.6rem;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .size {
  padding-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: 1.3rem;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .size {
    padding-bottom: 1.8rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .profile .size {
    font-size: 1.6rem;
    padding-bottom: 4.8rem;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio {
  width: calc(100% - 25rem);
  padding: 2.4rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .bio-text {
  margin-bottom: 2rem;
  white-space: break-spaces;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .bio-text {
    margin-bottom: 2.4rem;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .links {
  margin-top: auto;
  display: flex;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .links {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .links > .linkedin-profile:not(:first-child) {
    margin-top: 1rem;
    width: 100%;
  }
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .linkedin-profile {
  width: 10.5rem;
  height: 3.5rem;
  background-image: url("../img/custom/linkedin-profile.svg");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  display: inline-block;
  position: relative;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .linkedin-profile:hover {
  opacity: 0.8;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .linkedin-profile a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .raconteur-articles {
  width: 11.5rem;
  height: 3.5rem;
  background-image: url("../img/custom/raconteur-articles.svg");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  display: inline-block;
  margin-right: 1rem;
  position: relative;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .raconteur-articles:hover {
  opacity: 0.8;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .raconteur-articles a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .raconteur-articles.multiple a {
  position: relative;
  white-space: nowrap;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .open-extras {
  white-space: nowrap;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .open-extras a {
  display: inline-block;
  align-content: center;
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-weight: bold;
  border: 1px solid #191919;
  color: #191919;
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.4rem;
  line-height: 1.5;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .open-extras a span {
  font-size: 1.2rem;
  opacity: 0.5;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .open-extras a:last-child {
  margin-right: 2rem;
}
.dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio .open-extras a:hover {
  color: white;
  background-color: #191919;
}
@media (max-width: 1024px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio {
    width: 100%;
    padding-top: 2.4rem;
    border-top: 1px solid #191919;
  }
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .grid.muuri .rac-50-content-extra .bio {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
  }
}
.dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .name, .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .company {
  padding-left: 1.5rem;
  padding-right: 3.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .name, .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .company {
    padding-left: 1.2rem;
    padding-right: 3rem;
  }
}
.dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .name {
  padding-top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .name {
    font-size: 1.6rem;
    padding-top: 1.2rem;
  }
}
.dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .company {
  font-size: 1.4rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .company {
    font-size: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .open-desc {
  position: absolute;
  right: 1.2rem;
  bottom: 2.8rem;
}
@media (max-width: 500px) {
  .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .open-desc {
    right: 1.1rem;
    bottom: 2.2rem;
    width: 1.2rem;
  }
}
.dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .industry, .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .category, .dark-long-read.single main .content .grid.muuri:not(.list-view) .rac-50-content .size {
  position: absolute;
  left: 0.9rem;
  bottom: 6.8rem;
  background-color: white;
  font-size: 1rem;
  border: 1px solid #191919;
  padding: 0.2rem 0.7rem;
  color: #191919;
  padding-top: 0.1rem;
  border-radius: 2.4rem;
  font-weight: bold;
  max-width: calc(100% - 3rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  display: block;
}
.dark-long-read.single main .content .grid.muuri:not(.list-view)[data-order=industry] .rac-50-content .industry {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.dark-long-read.single main .content .grid.muuri:not(.list-view)[data-order=category] .rac-50-content .category {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.dark-long-read.single main .content .grid.muuri:not(.list-view)[data-order=size] .rac-50-content .size {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.dark-long-read.single main .content .grid.muuri .active .rac-50-content .image {
  filter: grayscale(1);
}
.dark-long-read.single main .content .grid.muuri .active .rac-50-content .image .headshot {
  opacity: 0.6;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view {
  margin-left: -5px;
  width: calc(100% + 10px);
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item {
  padding: 5px;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) {
  width: 100%;
  height: 50px;
  padding-top: 0;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #DEE2E6;
  transition: all 0.2s ease-in-out;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc).active .item-content {
  background-color: #fff;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content {
  flex-direction: row;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .image {
  display: none;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .category, .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .size, .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .industry {
  display: block;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .category, .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .size, .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .industry {
    display: none;
  }
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content > * {
  width: 20%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
@media (max-width: 768px) {
  .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content > * {
    width: 50%;
  }
  .dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content > *:nth-child(2) {
    padding-right: 8rem;
  }
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content > *:last-child {
  width: 5rem;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content > *.name {
  padding-left: 14px !important;
  font-weight: bold;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item:not(.item-desc) .rac-50-content .open-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 3;
}
.dark-long-read.single main .content .grid.muuri#gridme.list-view .item404 {
  padding-top: 1rem !important;
}

.grid-heading {
  display: flex;
  background-color: #DEE2E6;
  border-radius: 0.8rem;
  margin-bottom: 0.5rem !important;
}
.grid-heading > * {
  width: 20%;
  display: flex;
  cursor: pointer !important;
  align-items: center;
  font-weight: bold;
  color: #191919;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 768px) {
  .grid-heading > * {
    width: 50%;
  }
  .grid-heading > *:nth-child(n+3) {
    display: none;
  }
}
.grid-heading > * * {
  cursor: pointer !important;
}
.grid-heading > *:first-child {
  padding-left: 1.4rem;
}
.grid-heading > *:last-child {
  padding-right: 1.4rem;
}
.grid-heading > * .sort {
  display: flex;
  font-size: 0;
  flex-direction: column;
  align-items: center;
  margin-left: 1rem;
  transition: all 0.2s ease-in-out;
  opacity: 0.2;
}
.grid-heading > * .sort span {
  width: 14px;
  height: 7px;
  display: block;
  transition: all 0.2s ease-in-out;
}
.grid-heading > * .sort span:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  opacity: 1;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  transition: all 0.2s ease-in-out;
  border-bottom: 7px solid black;
}
.grid-heading > * .sort span:last-child {
  margin-top: 2px;
  transform: rotate(180deg);
}
.grid-heading > *.active .sort {
  opacity: 1;
}
.grid-heading > *.active[data-order=desc] .sort span:not(:first-child) {
  opacity: 0.2;
}
.grid-heading > *.active[data-order=asc] .sort span:not(:last-child) {
  opacity: 0.2;
}

.filters-heading {
  display: flex;
  width: 100%;
  background-color: #DEE2E6;
  padding: 1rem 1.4rem;
  border-radius: 0.8rem;
  margin-bottom: 0.5rem !important;
}
@media (max-width: 1024px) {
  .filters-heading {
    flex-wrap: wrap;
  }
  .filters-heading .col.display {
    order: 1;
    width: 30%;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .filters-heading.listed .col.display {
    width: calc(60% + 2rem);
  }
}
@media only screen and (max-width: 1024px) and (max-width: 370px) {
  .filters-heading:not(.listed) .sort.col {
    display: none;
  }
}
@media (max-width: 1024px) {
  .filters-heading .col.sort {
    order: 2;
    width: 30%;
  }
  .filters-heading .view {
    order: 3;
    flex-direction: column;
    margin-bottom: -7rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .filters-heading .view > * {
    margin-right: 0 !important;
    padding-left: 3rem !important;
    padding-right: 1.4rem !important;
    width: 7.6rem;
  }
  .filters-heading .view > *:first-child {
    margin-bottom: 0.8rem;
  }
  .filters-heading .view > *:before {
    right: auto !important;
    left: 1.4rem !important;
  }
}
@media (max-width: 1024px) {
  .filters-heading .col.search {
    order: 4;
    margin-top: 0.8rem;
    width: calc(60% + 2rem);
    margin-right: 0 !important;
    min-width: 38rem !important;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .filters-heading .col.search {
    min-width: auto !important;
  }
}
@media (max-width: 768px) {
  .filters-heading {
    flex-direction: column;
  }
  .filters-heading .col.display {
    order: 1;
    width: 100%;
    margin-right: 0 !important;
  }
  .filters-heading .col.sort {
    order: 2;
    width: 100%;
    margin-right: 0 !important;
    margin-top: 0.8rem;
  }
  .filters-heading .col.search {
    order: 3;
    width: 100%;
    margin-right: 0 !important;
  }
  .filters-heading .view {
    order: 4;
    flex-direction: row;
    margin-bottom: 0rem;
    margin-top: 0.8rem;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .filters-heading .view > * {
    width: calc(100% - 1rem);
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }
  .filters-heading .view > *:before {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    vertical-align: -2px;
    display: inline-block;
    right: auto !important;
    transform: none !important;
    margin-right: 3px;
  }
}
.filters-heading .col {
  width: calc(25% - 2rem);
}
.filters-heading .col:not(:last-child) {
  margin-right: 2rem;
  min-width: 18rem;
}
.filters-heading .col:last-child {
  margin-left: auto;
}
.filters-heading select {
  width: 100%;
}
.filters-heading .search-rac50 {
  padding: 0.8rem 1.6rem;
  padding-right: 2.4rem;
  height: 34px;
  border: 1px solid #191919;
  background: white;
  border-radius: 1.6rem;
  transition: all 0.2s ease-in-out;
  width: 100%;
  font-weight: bold;
  color: #191919;
  font-family: "sofia-pro";
  padding-right: 4rem;
  line-height: 2rem;
  font-family: "sofia-pro";
  background-image: url("https://assets.raconteur.net/uploads/2025/02/search-icon.svg");
  background-size: 1.4rem;
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
}
.filters-heading .search-rac50::placeholder {
  color: #191919;
}
.filters-heading .form-group .ms-drop input[type=radio], .filters-heading .form-group .ms-drop input[type=checkbox] {
  display: none !important;
}
.filters-heading .form-group .ms-choice {
  border: 1px solid #191919;
  background: white;
  padding: 0.8rem 1.6rem;
  padding-right: 2.4rem;
  height: 34px;
  border-radius: 1.6rem;
}
.filters-heading .form-group .ms-choice > span {
  top: 4px;
  left: 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #191919;
  font-family: "sofia-pro";
  right: 28px;
}
.filters-heading .form-group .ms-choice div.icon-caret {
  background-image: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 10px;
  height: 10px;
  border: 0;
  margin-top: -4px;
  right: 1.4rem;
  transition: all 0.2s ease-in-out;
}
.filters-heading .form-group .ms-parent-open .ms-choice {
  border-bottom-left-radius: 0rem;
  border-bottom-right-radius: 0rem;
}
.filters-heading .form-group .ms-parent-open .ms-choice div.icon-caret {
  transform: rotate(180deg);
}
.filters-heading .form-group .ms-drop {
  border-bottom-left-radius: 2.4rem;
  border-bottom-right-radius: 2.4rem;
}
.filters-heading .form-group .ms-drop ul {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.filters-heading .form-group .ms-drop ul li {
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0 !important;
  background: white;
  transition: all 0.2s ease-in-out;
  color: #191919;
  font-family: "sofia-pro";
  position: relative;
}
.filters-heading .form-group .ms-drop ul li:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #191919;
  position: absolute;
  left: 1.6rem;
  top: 0.6rem;
  border-radius: 1px;
  pointer-events: none;
}
.filters-heading .form-group .ms-drop ul li:after {
  content: "";
  width: 10px;
  pointer-events: none;
  height: 10px;
  background-color: #191919;
  position: absolute;
  left: 1.8rem;
  top: 0.8rem;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.filters-heading .form-group .ms-drop ul li.ms-select-all:before, .filters-heading .form-group .ms-drop ul li.ms-select-all:after, .filters-heading .form-group .ms-drop ul li.nocheckbox:before, .filters-heading .form-group .ms-drop ul li.nocheckbox:after, .filters-heading .form-group .ms-drop ul li.ms-no-results:before, .filters-heading .form-group .ms-drop ul li.ms-no-results:after {
  display: none;
}
.filters-heading .form-group .ms-drop ul li:hover {
  background: #F8F9FA;
}
.filters-heading .form-group .ms-drop ul li label {
  font-family: "sofia-pro";
  padding: 0;
  padding-left: 36px;
}
.filters-heading .form-group .ms-drop ul li.selected {
  background: #ADDAFF;
}
.filters-heading .form-group .ms-drop ul li.selected:after {
  opacity: 1;
}
.filters-heading .form-group .single-select .ms-drop ul li:before, .filters-heading .form-group .single-select .ms-drop ul li:after {
  border-radius: 50%;
}
.filters-heading .sort {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}
.filters-heading .sort.list-hide {
  opacity: 0;
  width: 0%;
  height: 0;
  margin: 0;
  pointer-events: none;
  visibility: hidden;
}
.filters-heading .multiple-select .ms-choice span:before {
  content: "Display: ";
}
.filters-heading .single-select .ms-choice span:before {
  content: "Sort by: ";
}
.filters-heading .single-select option[disabled], .filters-heading .single-select label.disabled, .filters-heading .single-select li[tabindex="-1"] {
  display: none !important;
}
.filters-heading .view {
  display: flex;
  margin-left: auto;
}
.filters-heading .view > * {
  background: white;
  text-transform: uppercase;
  border: 1px solid #191919;
  height: 34px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #191919;
  padding-left: 3.4rem;
  border-radius: 0.4rem;
  position: relative;
  text-align: center;
  transform: all 0.2s ease-in-out;
  cursor: pointer;
}
.filters-heading .view > *:first-child {
  margin-right: 1rem;
}
.filters-heading .view > *.grid-view-trigger {
  padding: 0.6rem 1.2rem;
  padding-left: 3rem;
}
.filters-heading .view > *.grid-view-trigger:before {
  background-image: url("../img/custom/grid-view.svg");
  content: "";
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  position: absolute;
  height: 14px;
  border: 0;
  top: 52%;
  transform: translateY(-50%);
  left: 1.2rem;
  transition: all 0.2s ease-in-out;
}
.filters-heading .view > *.list-view-trigger {
  padding: 0.6rem 1.2rem;
  padding-left: 3rem;
}
.filters-heading .view > *.list-view-trigger:before {
  content: "";
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  position: absolute;
  height: 14px;
  border: 0;
  top: 52%;
  transform: translateY(-50%);
  left: 1.2rem;
  transition: all 0.2s ease-in-out;
  background-image: url("../img/custom/list-view.svg");
}
.filters-heading .view > *.active {
  background: #AFF5FF;
}

.newsletter-signup-bottom {
  border-top: 1px solid #191919;
  margin: 0 !important;
  margin-top: 4rem !important;
  z-index: 9;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: #26E6FF;
  padding: 2rem 0;
  color: #191919;
}
.newsletter-signup-bottom .close {
  position: absolute;
  right: 2rem;
  top: -2rem;
  transform: translateY(-50%);
  z-index: 5;
  color: white;
  cursor: pointer;
  background-color: #191919;
  border-radius: 50%;
  border: 1px solid #191919;
  width: 3.6rem;
  text-align: center;
  height: 3.6rem;
  line-height: 2;
}
.newsletter-signup-bottom .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .newsletter-signup-bottom .wrap {
    flex-direction: column;
    align-items: center;
  }
}
.newsletter-signup-bottom .wrap .left {
  width: 50%;
  max-width: 40rem;
}
@media (max-width: 1024px) {
  .newsletter-signup-bottom .wrap .left {
    max-width: 100%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .newsletter-signup-bottom .wrap .left {
    width: 100%;
    text-align: center;
  }
}
.newsletter-signup-bottom .wrap .right {
  width: 50%;
  max-width: 40rem;
}
@media (max-width: 1024px) {
  .newsletter-signup-bottom .wrap .right {
    max-width: 100%;
    width: 50%;
  }
}
@media (max-width: 768px) {
  .newsletter-signup-bottom .wrap .right {
    width: 100%;
    text-align: center;
  }
}
.newsletter-signup-bottom .heading {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .newsletter-signup-bottom .heading {
    font-size: 4.2rem;
  }
}
@media (max-width: 768px) {
  .newsletter-signup-bottom .heading {
    font-size: 2.9rem;
  }
}
.newsletter-signup-bottom .subheading {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .newsletter-signup-bottom .subheading {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .newsletter-signup-bottom .subheading {
    font-size: 1.6rem;
  }
}
.newsletter-signup-bottom .privacy {
  font-size: 1.4rem;
}
.newsletter-signup-bottom .privacy a {
  color: #005BA5 !important;
  text-decoration: underline;
}
.newsletter-signup-bottom .style-form {
  padding-left: 6rem;
}
@media (max-width: 1024px) {
  .newsletter-signup-bottom .style-form {
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .newsletter-signup-bottom .style-form {
    padding-left: 0rem;
    margin-top: 2rem;
  }
}
.newsletter-signup-bottom .style-form form.hs-form {
  margin-top: auto;
}
.newsletter-signup-bottom .style-form form.hs-form > * {
  width: 100%;
  margin-bottom: 0;
}
.newsletter-signup-bottom .style-form form.hs-form .hs_submit input {
  margin-top: 1rem !important;
  border-color: #191919 !important;
}