/* 
* 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
*/
.page-template-page-webinar-template .content {
  padding-top: 0;
}
.page-template-page-webinar-template .content p {
  font-family: "sofia-pro";
}
.page-template-page-webinar-template main .container {
  position: relative;
}
.page-template-page-webinar-template .sponsored-topic-header {
  margin-bottom: 6rem;
  background-color: var(--main-bg-color) !important;
  color: var(--main-text-color) !important;
}
.page-template-page-webinar-template .sponsored-topic-header .intro {
  max-width: 50%;
}
.page-template-page-webinar-template .sponsored-topic-header .intro h1 {
  padding-bottom: 0;
  border-bottom: 0;
}
.page-template-page-webinar-template .sponsored-topic-header .intro .description {
  max-width: 100%;
}
@media (min-width: 1025px) {
  .page-template-page-webinar-template .sponsored-topic-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-webinar-template .sponsored-topic-header .intro {
    max-width: 100%;
    padding-bottom: 4rem;
    padding-top: 2rem;
  }
  .page-template-page-webinar-template .sponsored-topic-header .right-img {
    position: relative;
    left: 0;
    height: auto;
    width: 100%;
  }
  .page-template-page-webinar-template .sponsored-topic-header .right-img:after {
    content: "";
    padding-bottom: 55%;
    display: block;
    width: 100%;
  }
  .page-template-page-webinar-template .sponsored-topic-header .right-img img {
    min-width: 100%;
    right: 0;
  }
  .page-template-page-webinar-template .sponsored-topic-header .right-img.hide-mobile {
    display: none;
  }
}
.page-template-page-webinar-template .intro {
  padding: 5rem 0;
}
.page-template-page-webinar-template .intro h1 {
  font-size: 4.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  border-bottom: 1px solid #DEE2E6;
  padding-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .page-template-page-webinar-template .intro h1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-webinar-template .intro h1 {
    font-size: 3.2rem;
    border-bottom: 0;
    padding-bottom: 0rem;
  }
}
.page-template-page-webinar-template .intro .description {
  font-size: 2rem;
  font-family: "Acta", serif;
  font-weight: 400;
  max-width: 65%;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .page-template-page-webinar-template .intro .description {
    max-width: 80%;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .page-template-page-webinar-template .intro .description {
    max-width: 100%;
  }
}
.page-template-page-webinar-template .right {
  float: right;
}
.page-template-page-webinar-template .description:after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1024px) {
  .page-template-page-webinar-template {
    display: flex;
    flex-direction: column;
  }
  .page-template-page-webinar-template h1 {
    order: 1;
  }
  .page-template-page-webinar-template .description {
    order: 2;
  }
  .page-template-page-webinar-template .right {
    order: 3;
    margin-left: 0;
    float: left;
  }
}
@media (min-width: 1025px) {
  .page-template-page-webinar-template.col-small h1 {
    max-width: 65%;
    display: inline-block;
  }
  .page-template-page-webinar-template.col-small .right {
    margin-top: 1rem;
  }
}
.page-template-page-webinar-template .right-img {
  position: absolute;
  left: 50%;
  height: 100%;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}
.page-template-page-webinar-template .right-img img {
  position: absolute;
  right: 0%;
  top: 0;
  min-width: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 768px) {
  .page-template-page-webinar-template .right-img img {
    top: auto;
    bottom: 0;
  }
}

.webinar-template .article-title {
  margin-bottom: 1rem !important;
}
.webinar-template .sub-heading {
  font-size: 2rem;
}
.webinar-template .block-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  border-bottom: 1px solid #191919;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
}
.webinar-template a.button {
  margin-top: 2rem !important;
  margin-bottom: 0rem !important;
  background: var(--main-text-color) !important;
  border-color: var(--main-text-color) !important;
  color: var(--main-bg-color) !important;
}
@media (min-width: 769px) {
  .webinar-template a.button:hover {
    background: transparent !important;
    color: var(--main-text-color) !important;
  }
}
.webinar-template .panelists-webinar {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  display: flex;
  flex-wrap: wrap !important;
}
@media (max-width: 768px) {
  .webinar-template .panelists-webinar {
    margin-bottom: 3rem !important;
    flex-wrap: wrap !important;
  }
}
.webinar-template .panelists-webinar > * {
  width: calc(25% - 0.5rem) !important;
  margin-top: 1rem;
  margin-right: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .webinar-template .panelists-webinar > * {
    width: calc(50% - 0.5rem) !important;
    order: 0;
  }
  .webinar-template .panelists-webinar > *.bio-panelist {
    order: 1;
    width: calc(100% - 0.5rem) !important;
  }
  .webinar-template .panelists-webinar > *:nth-child(n+5) {
    order: 2;
  }
  .webinar-template .panelists-webinar > *:nth-child(n+5).bio-panelist {
    order: 3;
  }
  .webinar-template .panelists-webinar > *:nth-child(n+5):nth-child(n+9) {
    order: 4;
  }
  .webinar-template .panelists-webinar > *:nth-child(n+5):nth-child(n+9).bio-panelist {
    order: 5;
  }
}
@media (min-width: 769px) {
  .webinar-template .panelists-webinar > * {
    order: 0;
  }
  .webinar-template .panelists-webinar > *.bio-panelist {
    order: 1;
    width: calc(100% - 0.5rem) !important;
  }
  .webinar-template .panelists-webinar > *:nth-child(n+9) {
    order: 2;
  }
  .webinar-template .panelists-webinar > *:nth-child(n+9).bio-panelist {
    order: 3;
  }
}
.webinar-template .panelists-webinar > *.open-bio {
  cursor: pointer;
}
.webinar-template .panelists-webinar > *.open-bio:hover .role-panel {
  text-decoration: underline;
}
.webinar-template .panelists-webinar > *.open-bio.active .arrow:after {
  transform: rotate(-180deg);
}
.webinar-template .panelists-webinar > *.open-bio .arrow {
  position: relative;
}
.webinar-template .panelists-webinar > *.open-bio .arrow:after {
  content: "";
  margin-left: 0.2rem;
  display: inline-block;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
  width: 1.3rem;
  height: 1.3rem;
  background-image: url("https://assets.raconteur.net/uploads/2025/02/arrow-down.svg");
  background-size: contain;
  background-position: center;
  vertical-align: -1px;
  background-repeat: no-repeat;
}
.webinar-template .panelists-webinar > * img {
  width: 90px !important;
  height: auto !important;
}
.webinar-template .panelists-webinar > * .role-panel {
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  margin-top: 0.5rem;
}
.webinar-template .panelists-webinar > * .role-panel h3 {
  font-size: 1.6rem;
}
.webinar-template .panelists-webinar > * .role-panel h4 {
  font-size: 1.4rem;
  font-weight: normal;
}
.webinar-template .panelists-webinar > * .role-panel h3, .webinar-template .panelists-webinar > * .role-panel h4 {
  margin: 0;
}
.webinar-template .panelists-webinar > *.bio-panelist {
  margin-top: 1rem;
  font-size: 1.4rem;
  display: none;
  position: relative;
}

#videoContainer video {
  width: 100%;
  position: relative;
  z-index: 5;
}
#videoContainer .preview {
  line-height: 0;
}
#videoContainer .close-modal-video {
  position: absolute;
  top: 1rem !important;
  right: 2rem !important;
  font-size: 32px;
  line-height: 1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  z-index: 8040;
  font-weight: 300;
  opacity: 1 !important;
  box-shadow: none;
  color: white;
}
#videoContainer .close-modal-video:hover, #videoContainer .close-modal-video:focus {
  color: #6c757d;
  text-decoration: none;
  cursor: pointer;
}

#iframeContainer .preview {
  line-height: 0;
}
#iframeContainer .modal-iframe-tag {
  height: 500px;
  max-height: 100vh;
}
#iframeContainer .modal-iframe-tag iframe {
  width: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 2;
}
#iframeContainer .modal-iframe-tag.vimeo-embed {
  height: 100%;
}
#iframeContainer .modal-iframe-tag.vimeo-embed:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
  width: 100%;
}
#iframeContainer .close-modal-iframe {
  position: absolute;
  top: 1rem !important;
  right: 2rem !important;
  font-size: 32px;
  line-height: 1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  z-index: 8040;
  font-weight: 300;
  opacity: 1 !important;
  box-shadow: none;
  color: white;
}
#iframeContainer .close-modal-iframe:hover, #iframeContainer .close-modal-iframe:focus {
  color: #6c757d;
  text-decoration: none;
  cursor: pointer;
}