/* Style for single VOD page */
:root {
  --header-desktop-height: 110px;
  --header-mobile-height: 80px;
  --sidebar-left-desktop-width: 110px;
  --sidebar-right-desktop-width: 480px;
  --sidebar-right-desktop-width: 29%;
  --sidebar-right-medium-width: 25%;
  --tab-desktop-height: 47px;
  --tab-mobile-height: 40px;
  --background-color: #fff;
  --button-text-color: #fff;
  --scrollbar-color: hsl(0, 0%, 92%);
  --scrollbar-thumb-color: hsl(0, 0%, 75%);
  --scrollbar-thumb-hover-color: hsl(0, 0%, 60%);
  --header-desktop-bg-color: rgb(255 255 255 / 0.95);
  --top-position: 0px;
}

@media screen and (min-width: 992px) {
  .site-footer {
    display: none;
  }
}
/* Scrollbar */
.tab-content::-webkit-scrollbar {
  width: 0.5em;
}

.tab-content::-webkit-scrollbar-track {
  background: var(--scrollbar-color);
  /* border-radius: 100vw; */
}

.tab-content::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color);
  /* border-radius: 100vw; */
}

.tab-content::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover-color);
}
@supports (scrollbar-color: black white) {
  .tab-content {
    scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-color);
    scrollbar-width: thin;
  }
}

body strong,
body b {
  font-weight: 500;
}
body a {
  color: var(--main-button-color);
}
a:hover,
a:focus {
  color: var(--main-button-hover-color);
}
#ast-scroll-top.ast-scroll-top-icon {
  background-color: var(--main-theme-color);
  display: none !important;
}
#page {
  display: block;
  top: 0;
  position: absolute;
  left: 0;
  right: 0;
}
div#content {
  padding-bottom: 10px;
}

body.admin-bar {
  --top-position: 0px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --top-position: 46px;
  }
}
@media screen and (min-width: 783px) {
  body.admin-bar {
    --top-position: 32px;
  }
}

/*Hide scrollbars from body */

html::-webkit-scrollbar {
  width: 0 !important;
}
html {
  /*overflow: -moz-scrollbars-none;*/
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.center {
  grid-area: content;
}
.user-menu-wrap {
  grid-area: user-menu;
}
.video-element {
  position: relative;
}
.user-menu-wrap {
  grid-area: user-menu;
}
/* .current-session-element {
	grid-area: schedule;
  } */

/* External stage */
.header-container {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background-color: rgba(255 255 255);
  height: auto;
  padding: 1.5rem 3rem;
}
.header-container > a {
  margin-right: 0.8rem;
}
.external-stage-link-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
  padding: 18rem 3rem 4rem;
}
.external-stage-link-container a.quvent-button {
  font-size: 1.3rem;
  padding: 1.4rem 2.7rem;
}
/* Custom style for custom Stage page */
.main-wrapper {
  display: grid;
  grid-template-columns: var(--sidebar-left-desktop-width) 1fr var(
      --sidebar-right-desktop-width
    );
  grid-template-rows: var(--header-desktop-height) 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "side-left header user-menu"
    "side-left content side-right";
  min-height: 100vh;
  position: relative;
}
.page-header {
  grid-area: header;
  display: flex;
  align-items: center;
  position: fixed;
  top: var(--top-position);
  left: var(--sidebar-left-desktop-width);
  /* Ensure header appears on top of content/sidebars */
  z-index: 10;
  background-color: var(--header-desktop-bg-color);
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  width: calc(
    100% -
      (var(--sidebar-left-desktop-width) + var(--sidebar-right-desktop-width))
  );
  box-shadow: 0 4px 3px -3px rgb(0 0 0 / 0.3);
  backdrop-filter: blur(12px);
}

.sidebar.left {
  grid-area: side-left;
  width: var(--sidebar-left-desktop-width);
  position: fixed;
  top: var(--top-position);
  left: 0;
  height: 100%;
  background-color: var(--background-color);
  overflow-y: scroll;
  z-index: 99;
}

.sidebar.left::-webkit-scrollbar {
  width: 0 !important;
}
.sidebar.left {
  /*overflow: -moz-scrollbars-none;*/
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.center {
  z-index: 1;
  margin-top: var(--top-position);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.center::-webkit-scrollbar {
  width: 0 !important;
}

.sidebar.right {
  grid-area: side-right;
  width: var(--sidebar-right-desktop-width);
  position: fixed;
  top: calc(var(--header-desktop-height) + var(--top-position));
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .main-wrapper {
    grid-template-columns: var(--sidebar-left-desktop-width) 1fr var(
        --sidebar-right-medium-width
      );
  }
  .sidebar.right {
    width: var(--sidebar-right-medium-width);
  }
  .page-header {
    width: calc(
      100% -
        (var(--sidebar-left-desktop-width) + var(--sidebar-right-medium-width))
    );
  }
}
@media screen and (max-width: 992px) {
  /*.main-wrapper {
		  grid-template-rows: 80px auto 1fr;		
	  }
	  */
  .main-wrapper {
    grid-template-columns: 0.25fr 2fr 0.25fr;
    grid-template-rows: var(--header-mobile-height) auto auto;
    grid-template-areas:
      "hamburger header user-menu"
      "content content content"
      "schedule schedule schedule"
      "side-right side-right side-right";
    gap: 5px 0;
    margin-top: var(--top-position);
    padding: 0 0.6rem 0.2rem 0.6rem;
  }
  .page-header {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    border-right: none;
    border-left: none;
    box-shadow: none;
    background-color: var(--background-color);
    backdrop-filter: none;
  }
  .center {
    margin-top: 0;
  }
  .sidebar.left {
    width: 0;
  }
  .sidebar.right {
    width: 100%;
    position: relative;
    top: 0;
  }
}

/*
  @media screen and (max-width: 768px) {
	  .main-wrapper {
		  grid-template-columns: 0.25fr 2fr 0.35fr;
		  grid-template-rows: 80px auto auto;
		  grid-template-areas:
			  "hamburger sponsors user-menu"
			  "video video video"			
			  "schedule schedule schedule"
			  "tabs tabs tabs";
		  gap: 5px 4px;
	  }
	  .main-wrapper {
		  padding: 0 10px 3px 10px;
	  }
  }
  */
/* Site nav logo */
.site-logo {
  padding: 3px;
  display: none;
  line-height: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.site-logo img {
  max-width: 76px;
  max-height: 65px;
  height: auto;
  width: auto;
}
@media screen and (min-width: 993px) {
  .site-logo {
    height: var(--header-desktop-height);
    width: var(--sidebar-left-desktop-width);
    display: flex;
  }
  .site-logo img {
    max-width: 100px;
    max-height: 85px;
    height: auto;
    width: auto;
  }
}

/*
   * Nav Menu *
   * 
  */
.menu-stage-menu-container {
  margin-top: 2.5em;
}
.nav-menu {
  margin: 10px 0 5px 0;
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
}
.nav-menu ul.menu {
  margin: 0;
  padding: 0;
  list-style: none !important;
  position: relative;
}
.nav-menu .menu {
  text-align: center;
}
.nav-menu li {
  list-style: none !important;
}
.nav-menu .menu > li {
  margin: 5px;
  position: relative;
}
.nav-menu .menu > li > a {
  display: inline-block;
  padding: 8px 1px;
  line-height: 1;
  color: var(--main-button-color);
  font-size: 0.8em;
}
.nav-menu .menu .fa-stack-1x {
  color: #fff;
}
.nav-menu .menu a .icon-background,
.nav-menu .menu a .fa-stack,
.nav-menu .menu a .fa-stack-1x {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}
.nav-menu .menu li.current-menu-item .icon-background,
.nav-menu .menu a:hover .icon-background {
  opacity: 0.05;
}
.nav-menu .menu > li > a:hover,
.nav-menu .menu a:hover .fa-stack-1x,
.nav-menu .menu li.current-menu-item .fa-stack-1x {
  color: var(--main-button-color);
}

/*
   * Mobile menu *
   * 
  */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 120;
  grid-area: hamburger;
}
.hamburger {
  display: none;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--main-button-color);
}
@media only screen and (max-width: 992px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    flex-direction: column;
    background-color: rgba(255 255 255 / 0.95);
    width: 100%;
    height: 100%;
    margin: 0 0 5px 0;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 100;
  }

  .nav-menu.active {
    left: 0;
  }
  .menu-stage-menu-container {
    margin-top: 3.5em;
  }
  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger.active {
    position: fixed;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/*
   * Sponsors block *
   * 
  */
.sponsor-element {
  margin: 0 auto;
}
.sponsor-element .banner-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.625rem 0.75rem;
}
.sponsor-element .banner-image-wrap .img-content {
  max-width: 840px;
}
.sponsor-element .sponsor-main-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  padding: 5px 0;
  height: 80px;
}
.sponsor-element .sponsor-main-wrap .sponsor-item {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 16%;
  text-align: center;
}

.sponsor-item .img-content {
  border-radius: 0;
  display: inline-block;
  line-height: 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  margin: 0 10px;
}
.sponsor-element .sponsor-main-wrap .sponsor-item img {
  max-height: 68px;
  width: auto;
}
@media screen and (min-width: 993px) {
  .sponsor-element {
    flex: 1;
  }
  .sponsor-element .sponsor-main-wrap .sponsor-item {
    flex-grow: 0;
  }
}

@media screen and (min-width: 993px) {
  .sponsor-element .banner-image-wrap {
    height: var(--header-desktop-height);
    padding: 1rem 1.25rem;
  }
  .sponsor-element .sponsor-main-wrap {
    height: var(--header-desktop-height);
    padding: 10px 0;
  }
  .sponsor-element .sponsor-main-wrap .sponsor-item {
    flex-grow: 0;
    flex-basis: 13%;
  }
  .sponsor-element .sponsor-main-wrap .sponsor-item img {
    max-height: 90px;
    width: auto;
  }
}

/*
   * 
   * USER MENU * 
   *
  */
.user-menu-wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  width: auto;
  background-color: var(--background-color);
  padding-bottom: 0;
  z-index: 90;
}
.quvent-logo {
  display: none;
}

.menu-user-account-container {
  margin: 6px;
}
.user-account-menu {
  margin: 14px;
  line-height: 1;
}
.user-account-menu ul {
  list-style: none;
  margin: 0;
}
.user-account-menu .menu {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.4px;
}
.user-account-menu .menu > li {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.user-account-menu .menu > li > a {
  display: block;
}
.user-account-menu .menu-item-has-children .menu-link > .fa-user-circle {
  font-size: 25px;
}
.user-account-menu .menu-item-has-children .menu-link > .fa-angle-up {
  display: none;
  transition: all linear 200ms;
}
.user-account-menu .menu-item-has-children .menu-link > .fa-angle-down {
  font-size: 13px;
  transition: all linear 200ms;
}
.user-account-menu .menu .menu-item-has-children .menu-link {
  color: var(--main-button-color);
  display: flex;
  align-items: center;
  -webkit-transition: all linear 200ms;
  -moz-transition: all linear 200ms;
  transition: all linear 200ms;
  cursor: pointer;
}
.user-account-menu .menu .menu-item-has-children .menu-link:focus {
  outline: thin dotted;
}
.user-account-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 5px;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(216 216 222 / 0.65);
  border-radius: var(--global-card-border-radius);
  right: 0;
  z-index: 10;
  text-align: left;
  min-width: 60px;
  background-color: var(--background-color);
  -webkit-box-shadow: 0px 0px 8px rgb(0 0 0 / 15%);
  -ms-box-shadow: 0px 0px 8px rgb(0 0 0 / 15%);
  box-shadow: 0px 0px 8px rgb(0 0 0 / 0.15);
  white-space: nowrap;
}
.user-account-menu .menu .menu-link[aria-expanded="true"] + .sub-menu {
  display: block;
}
.user-account-menu .avatar-container {
  width: 34px;
  height: auto;
  margin-right: 0.5rem;
}
.user-account-menu .avatar-container img.avatar {
  width: 34px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.user-account-menu .sub-menu .user-info-wrap {
  display: flex;
  flex-wrap: nowrap;
  padding: 0.3em 0 0.8em 0;
  border-bottom: 1px solid #edeef2;
}
.user-account-menu .sub-menu .username {
  display: flex;
  flex-direction: column;
  padding-right: 5em;
}
.user-account-menu .sub-menu .username p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
}
.user-account-menu .sub-menu .username p.name {
  font-size: 15px;
  font-weight: 500;
}
.user-account-menu .sub-menu .username p.email {
  color: #8a94a2;
}
.user-account-menu .sub-menu a {
  display: block;
  padding: 10px 0;
  color: #5a6370;
}
.user-account-menu .sub-menu > li > a:hover {
  color: var(--main-button-color);
}
.user-account-menu .sub-menu a i {
  margin-right: 0.4em;
  font-size: 1.2em;
  vertical-align: text-bottom;
  color: #8c94a1;
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.user-account-menu .sub-menu a:hover i {
  color: var(--main-button-color);
}
.user-account-menu .sub-menu .help {
  border-bottom: 1px solid #edeef2;
  padding-bottom: 0.8em;
}
.user-account-menu .sub-menu .my-account {
  padding-top: 0.8em;
}
.user-account-menu .sub-menu .logout {
  padding-top: 0.8em;
}
.user-account-menu .sub-menu .login {
  padding-right: 3em;
}

@media screen and (min-width: 993px) {
  .quvent-logo {
    display: block;
    margin: 18px auto 18px 18px;
  }
  .quvent-logo img {
    height: 100%;
    max-height: 30px;
    width: auto;
  }
  .user-menu-wrap {
    /*height: var(--header-desktop-height);	*/
    width: var(--sidebar-right-medium-width);
    /*padding-bottom: var(--tab-desktop-height);*/
    position: fixed;
    top: var(--top-position);
    right: 0;
    height: calc(var(--header-desktop-height) - var(--tab-desktop-height));
  }
  .user-account-menu {
    margin: 18px;
  }
  .user-account-menu .menu-item-has-children .menu-link > .fa-user-circle {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .user-menu-wrap {
    width: var(--sidebar-right-desktop-width);
  }
}

/**
   * Tabs
   */
.tabs {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.tabs > label {
  order: 1;
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 4px;
  cursor: pointer;
  background-color: #f4f4f4;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  line-height: 1.3;
  -webkit-transition: background-color ease 0.3s, box-shadow ease 0.3s;
  -moz-transition: background-color ease 0.3s, box-shadow ease 0.3s;
  transition: background-color ease 0.3s, box-shadow ease 0.3s;
  border-right: solid 1px #e2e2e2;
  border-bottom: solid 1px #e2e2e2;
}

@media screen and (max-width: 768px) {
  .tabs > label {
    height: auto;
    padding: 10px 4px;
    font-size: 13px;
  }
  .ast-small-footer .ast-footer-overlay {
    padding: 0.2em 0;
    line-height: 1.4em;
  }
  .ast-small-footer .ast-footer-overlay .ast-container {
    padding: 0 0.6rem;
  }
  .ast-small-footer .ast-footer-overlay .ast-small-footer-section {
    margin-top: 0.2em;
  }
}
@media screen and (min-width: 769px) {
  .tabs > label {
    height: var(--tab-mobile-height);
    font-size: 13px;
  }
}
@media screen and (min-width: 993px) {
  .tabs {
    margin-top: calc(0px - var(--tab-desktop-height));
  }
  .tabs > label {
    height: var(--tab-desktop-height);
    font-size: 15px;
  }
}
.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  background-color: var(--background-color);
}
.tabs input[type="radio"] {
  /* 	display: none; */
  opacity: 0;
  position: absolute;
}
.tabs > input[type="radio"]:checked + label {
  background-color: var(--background-color);
  box-shadow: inset 0 3px 0 var(--main-theme-color);
  border-bottom: none;
}
.tabs > input[type="radio"]:checked + label + .tab {
  display: block;
}
.tabs > input[type="radio"]:focus-visible + [role="tab"] {
  border: 1px dotted #268bd2;
}

/* Inner Tabs
  */
.inner-tabs-container .top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem 0.45rem;
}
.sidebar.right .tabs__panels.flow .filtered-post-list {
  position: relative;
}
.sidebar.right .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0.2)),
    color-stop(25%, rgba(255, 255, 255, 0.9)),
    color-stop(75%, rgba(255, 255, 255, 0.9)),
    to(rgba(255, 255, 255, 0.2))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.9) 25%,
    rgba(255, 255, 255, 0.9) 75%,
    rgba(255, 255, 255, 0.2) 100%
  );
}
[role="tablist"] {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 0.5rem;
}
.inner-tabs-container [role="presentation"] {
  display: flex;
}
.inner-tabs-container [role="tab"] {
  padding: 0.4rem 0.75rem;
  font-weight: 400;
  font-size: 0.765rem;
  font-family: var(--main-font-family, "Lato", sans-serif);
  color: var(--main-button-color);
  border-radius: var(--global-button-border-radius);
  cursor: pointer;
  background-color: transparent;
  border-color: var(--main-button-color);
  border-width: 1px;
  border-style: solid;
  line-height: 1;
  -webkit-transition: background-color ease 0.2s, color ease 0.2s;
  -moz-transition: background-color ease 0.2s, color ease 0.2s;
  transition: background-color ease 0.2s, color ease 0.2s;
}
.inner-tabs-container [role="tab"]:hover,
.inner-tabs-container [role="tab"]:focus,
.inner-tabs-container [aria-selected="true"] {
  background-color: var(--main-button-color);
  color: var(--button-text-color);
}
.inner-tabs .inner-tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  background-color: var(--background-color);
}
.inner-tabs > input[type="radio"]:checked + label + .inner-tab {
  display: block;
}
/* Filtering related */
.inner-tabs-container .form-field.filter {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.inner-tabs-container .form-field.filter label {
  /* font-weight: 500; */
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
}
.inner-tabs-container input {
  accent-color: var(--main-theme-color);
  cursor: pointer;
}
.inner-tabs-container .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inner-tabs-container .filter-tags .filter-tags__item {
  border: none;
  cursor: default;
  display: inline-flex;
  outline: 0;
  padding: 0.16rem 0.325rem 0.16rem 0.5rem;
  font-size: 0.6471rem;
  align-items: center;
  white-space: nowrap;
  border-radius: 32px;
  vertical-align: middle;
  justify-content: center;
  background-color: var(--event-accent-color, #026202);
  color: var(--button-text-color, #fff);
  line-height: 1;
  cursor: pointer;
}
.filter-tags .filter-tags__item svg.remove-icon {
  width: 0.8235rem;
  height: 0.8235rem;
  fill: currentColor;
  opacity: 0.9;
  margin-left: 0.325em;
  transition: opacity 100ms linear;
}
.filter-tags .filter-tags__item:hover svg.remove-icon,
.filter-tags .filter-tags__item:focus svg.remove-icon {
  opacity: 1;
}
/**
   * Tab Content
   */

.chat-embed {
  display: flex;
  flex-direction: column;
  height: 450px;
}
.qa_content .digiContent {
  display: flex !important;
  flex-direction: column;
  height: 450px;
}
.schedule-content,
.tab-content {
  height: 450px;
  padding-bottom: 10px;
  overflow-y: scroll;
}
@media screen and (min-width: 769px) {
  /* .chat-embed {
	  height: calc(70vh - 80px);
	}
	.qa_content .digiContent {
	  height: calc(70vh - 80px);
	}
	.schedule-content,
	.tab-content {
	  height: calc(70vh - 80px);
	} */
}
@media screen and (min-width: 993px) {
  .chat-embed {
    height: calc(100vh - var(--header-desktop-height) - var(--top-position) - 50px);
    padding-bottom: 25px;
  }
  .qa_content .digiContent {
    height: calc(100vh - var(--header-desktop-height) - var(--top-position) - 50px);
    padding-bottom: 25px;
  }
  .schedule-content,
  .tab-content {
    height: calc(100vh - var(--header-desktop-height) - var(--top-position));
  }
}
.chat-embed iframe,
.qa_content .ExciteMContent,
.qa_content iframe {
  flex-grow: 1;
}
/* Hide link to Swift website */
.tab .qa_content .digiContent > div > a {
  display: none;
}

/* Tabs Events/Sessions */
/* Tabs VOD */
.filtered-post-list .no-posts {
  padding: 2em 1em;
  font-size: 0.9rem;
}
.filtered-post-list .no-posts i {
  color: rgba(0 0 0 / 0.15);
  margin-right: 0.2em;
  font-size: 3rem;
  vertical-align: middle;
}

/* .sidebar.right .filtered-post-list {
	position: relative;
  } */

.schedule-item,
.vod-item {
  border-bottom: 1px solid #dbdee9;
  display: block;
  padding: 0.6rem 0.6rem 0.6rem 0.3rem;
  background-color: var(--background-color);
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  transition: all 0.1s linear;
}
.schedule-item:hover,
.vod-item:hover,
.vod-item.current,
.schedule-item.event.current {
  background-color: #f4f5f7;
}
.schedule-item.event {
  cursor: default;
}
.schedule-outer-wrap,
.vod-outer-wrap {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.schedule-outer-wrap .schedule-image-wrap,
.vod-outer-wrap .vod-image-wrap {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
}
.schedule-outer-wrap .schedule-image-wrap .image-content,
.vod-outer-wrap .vod-image-wrap .image-content {
  position: relative;
  /* width: 110px;
	height: 90px;
	overflow: hidden; */
}
.schedule-outer-wrap .schedule-image-wrap .image-content img,
.vod-outer-wrap .vod-image-wrap .image-content img {
  max-width: 100%;
  width: 110px;
  height: 90px;
  object-fit: cover;
  margin: 0;
}
.vod-outer-wrap .vod-image-wrap .image-content a {
  display: block;
  position: relative;
}
.vod-outer-wrap .vod-image-wrap .image-content a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: background-color 150ms linear;
  -moz-transition: background-color 150ms linear;
  transition: background-color 150ms linear;
}
.vod-outer-wrap .vod-image-wrap .image-content a::after {
  position: absolute;
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgb(252 252 252);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 150ms linear;
  -moz-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
.vod-item:hover .vod-image-wrap .image-content a::before,
.vod-item .vod-image-wrap .image-content a:focus::before {
  background-color: rgb(0 0 0 / 0.3);
}
.vod-item:hover .vod-image-wrap .image-content a::after,
.vod-item .vod-image-wrap .image-content a:focus::after {
  opacity: 1;
}
.schedule-outer-wrap .schedule-content-wrap,
.vod-outer-wrap .vod-content-wrap {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 78%;
  display: flex;
  flex-direction: column;
  margin-left: 5px;
  padding: 3px 5px 3px 0;
  justify-content: flex-start;
}
.schedule-item .schedule-time-wrap {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.schedule-item .time {
  font-size: 0.825rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: none;
  color: var(--quvent-dark-b-90, #000000);
}
.schedule-outer-wrap .schedule-title-wrap,
.vod-outer-wrap .vod-title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.schedule-outer-wrap .schedule-title-wrap a,
.vod-outer-wrap .vod-title-wrap a {
  color: var(--main-button-color);
}
.schedule-outer-wrap .schedule-title-wrap a:hover,
.vod-outer-wrap .vod-title-wrap a:hover,
.schedule-outer-wrap .schedule-title-wrap a:focus,
.vod-outer-wrap .vod-title-wrap a:focus {
  color: var(--main-button-hover-color);
}
.schedule-outer-wrap .schedule-title-wrap a.title-link,
.vod-outer-wrap .vod-title-wrap a.title-link {
  margin-right: auto;
}
.schedule-outer-wrap .title,
.vod-outer-wrap .vod-content-wrap .title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  color: inherit;
  line-height: 1.1;
  /* margin-bottom: 0.325em; */
}
.schedule-item.event .title {
  color: var(--main-button-color);
  /* margin-bottom: 0.25rem; */
}
/* expanding details */
.post-item button.expand-details {
  display: flex;
  align-items: center;
  /* margin-left: auto; */
}
.post-item button.expand-details:focus-visible {
  outline: 1px dotted black;
}
.post-item button.expand-details > * {
  pointer-events: none;
}
.post-item button.expand-details i {
  font-size: 1.3rem;
  padding-top: 1px;
  transform: rotate(180deg);
  transition: transform 200ms ease-in-out;
}
.post-item button.expand-details[aria-expanded="true"] i {
  transform: rotate(0);
}
.post-item .post-item-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease-in-out;
}
.post-item .post-item-details .post-item-details__content {
  overflow: hidden;
}
.post-item .post-item-details .post-item-details__wrap {
  padding: 1rem 0.75rem 0.4rem;
}
.post-item .post-item-details .post-item-details__wrap > div {
  margin-bottom: 0.325em;
}
.post-item .post-item-details[aria-hidden="false"] {
  grid-template-rows: 1fr;
}
.post-item .post-item-details .time {
  font-size: 0.95rem;
  line-height: 1.4;
  /* margin-bottom: 0.35rem; */
}
.post-item .post-item-details .description-details p {
  color: var(--quvent-dark-b-90, #000000);
  font-size: 0.9rem;
  line-height: 1.5;
}
.post-item .post-item-details .description-details p:last-of-type {
  margin-bottom: 0;
}
.post-item .post-item-details .join-links {
  display: flex;
  justify-content: flex-end;
}
.post-item .post-item-details .join-links .quvent-button {
  font-size: 0.7647rem;
  padding: 0.4rem 0.7rem;
  letter-spacing: 1px;
}
/* Tags, agenda and below player*/
.tags-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0.375rem;
}
.vod-details-element .tags-container {
  margin: 0.5rem 0 0.25rem;
}
.tags-container .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.375rem;
  letter-spacing: 0.4px;
}
.tags-container .tag-heading {
  font-size: 0.825rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: none;
  color: var(--quvent-dark-b-90, #000000);
}
.tags-container .tag-wrap {
  flex-shrink: 0;
  display: flex;
  border-radius: calc(var(--global-button-border-radius) * 0.75);
  line-height: 1;
  font-family: var(--heading-font-family, Lato, Sans-serif);
  font-weight: 600;
  font-size: 0.70588rem;
  /* text-transform: uppercase; */
  white-space: nowrap;
}
.tags-container .tag-wrap.event {
  background-color: var(--event-accent-color, #026202);
}
.tags-container .tag-wrap.session {
  background-color: var(--session-accent-color, #0a3a5a);
}
.tags-container .tag-wrap.category {
  /* background-color: var(--category-bg-color);
  color: var(--category-text-color);
  padding: 4px 7px;
  cursor: default; */
  border-color: var(--category-text-color);
  border-width: 1px;
  border-style: solid;
  color: var(--category-text-color);
  padding: 3px 7px;
  cursor: default;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}
.tags-container .tag-wrap.category:hover,
.tags-container .tag-wrap.category:focus {
  background-color: var(--category-text-color);
  color: #fff;
}
.sidebar.right .tags-container .tag-wrap.category {
  /* font-size: 0.6rem; */
}
.tags-container .tag-wrap a {
  color: #fff;
  padding: 5px 7px;
}
.sidebar.right .tags-container .tag-wrap a {
  /* font-size: 0.6rem; */
  padding: 4px 7px;
}

.schedule-outer-wrap .details-link {
  font-size: 0.765rem;
  font-weight: 400;
  /* text-transform: uppercase; */
  line-height: 1.1;
  /* margin-left: 0.325em; */
  margin-right: auto;
  line-height: 1.4;
}
.schedule-outer-wrap .details,
.vod-outer-wrap .vod-content-wrap .details {
  font-size: 0.75rem;
  font-weight: 400;
  /* text-transform: uppercase; */
  color: inherit;
  line-height: 1.1;
  margin: 0.325em 0;
}
.vod-outer-wrap .vod-desc-wrap p,
.vod-outer-wrap .vod-date p {
  font-size: 0.75em;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.325em;
}

.vod-outer-wrap .vod-date p {
  font-weight: 500;
  margin-bottom: 0;
}
.vod-outer-wrap .vod-date {
  margin-top: 0.25rem;
}
.schedule-outer-wrap .schedule-image-wrap .date-wrap {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25em 0.4em 0.2em 0.4em;
  font-family: Lato, Sans-Serif;
  text-align: center;
  z-index: 90;
}
.schedule-outer-wrap .schedule-image-wrap .date-wrap .day {
  font-weight: 900;
  font-size: 1rem;
  color: var(--button-text-color, #fff);
  line-height: 1;
  margin: 2px 1px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.schedule-outer-wrap .schedule-image-wrap .date-wrap .date {
  margin: 2px 1px;
  line-height: 1;
  font-size: 0.65rem;
  color: var(--button-text-color, #fff);
}
.schedule-outer-wrap .schedule-image-wrap .date-wrap.full {
  right: 0;
  padding: 0.25em 0.2em 0.2em 0.2em;
  display: flex;
  justify-content: space-around;
  color: var(--button-text-color, #fff);
}
.schedule-outer-wrap .schedule-image-wrap .date-wrap.full .day {
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.schedule-outer-wrap .schedule-image-wrap .date-wrap.full .date {
  font-size: 0.65rem;
}
.schedule-outer-wrap .tags-main-wrap {
  display: flex;
  align-items: center;
  /* margin-top: auto;
  margin-bottom: 2px; */
  margin: 0.25em 0 0;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap {
  margin-right: 0.2em;
  flex-shrink: 0;
  padding: 3px 5px;
  border-radius: calc(var(--global-button-border-radius) * 0.75);
  margin-top: auto;
  margin-bottom: auto;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.online {
  border: 1px solid var(--online-event-color);
  cursor: default;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.in-person {
  border: 1px solid var(--in-person-event-color);
  cursor: default;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.online h5 {
  color: var(--online-event-color);
  font-weight: 600;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 0.2s ease-in;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.in-person h5 {
  color: var(--in-person-event-color);
  font-weight: 600;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 0.2s ease-in;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap .type-tag {
  line-height: 1;
}
.schedule-outer-wrap .type-wrap h5,
.schedule-outer-wrap .track-wrap h5 {
  font-size: 0.6em;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.online:hover {
  background: var(--online-event-color);
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.online:hover h5 {
  color: #fff;
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.in-person:hover {
  background: var(--in-person-event-color);
}
.schedule-outer-wrap .tags-main-wrap .type-wrap.in-person:hover h5 {
  color: #fff;
}
.schedule-outer-wrap .online-location-wrap {
  background: var(--online-event-color);
  border: 1px solid var(--online-event-color);
  border-radius: calc(var(--global-button-border-radius) * 0.75);
  /* margin-left: auto; */
  margin-top: auto;
  margin-right: 0.2em;
  flex-shrink: 0;
  padding: 3px 5px;
  cursor: default;
}
.schedule-outer-wrap .online-location-wrap h5 {
  color: #fff;
  font-size: 0.6rem;
  line-height: 1;
}
.schedule-outer-wrap .bottom {
  display: flex;
  align-items: center;
  margin: 0.25em 0 0;
}
/* .schedule-outer-wrap .live-now-wrap {
	margin-left: auto;
  } */
.schedule-outer-wrap .live-now-tag {
  line-height: 1;
  background: #fe3e2a;
  border-radius: 4px;
  padding: 3px 4px 3px 4px;
  display: none;
  align-items: center;
  cursor: default;
}
.schedule-outer-wrap .live-now-wrap.link .live-now-tag {
  cursor: pointer;
}
.schedule-outer-wrap .live-now-tag.live {
  display: flex;
}
.schedule-outer-wrap .live-now-tag span.live-now-text {
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
  vertical-align: middle;
  font-family: Lato, Sans-Serif;
}

.schedule-outer-wrap .live-now-tag .blink {
  animation: blinker 1s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
}

@keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.filtered-post-list .post-buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.filtered-post-list .post-buttons-wrap .quvent-button {
  font-size: 0.7647rem;
  padding: 0.5rem 0.9rem;
  letter-spacing: 1px;
}

/* EVENTS LIST SPECIFIC */
.events-list .schedule-content-wrap {
  position: relative;
}
.events-list .schedule-content-wrap::after {
  position: absolute;
  content: "";
  right: 0.25rem;
  top: 50%;
  border-right: 2px solid;
  border-bottom: 2px solid;
  height: 26px;
  width: 26px;
  transform: rotate(-45deg) translateY(-50%);
  opacity: 0.2;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  transition: all 0.1s linear;
}
.events-list .schedule-item:hover .schedule-content-wrap::after {
  opacity: 0.4;
}
/*
   * Scroller * 
   * 
   */
/* VOD Details below Player */
.vod-details-element {
  padding: 1rem 1rem 1rem 0.7rem;
  background-color: var(--background-color);
}
.vod-details-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.vod-details-wrap .vod-details-content,
.vod-details-wrap .no-posts {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.vod-details-wrap .vod-title-wrap {
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.vod-details-wrap .vod-title {
  font-family: var(--heading-font-family, Lato, sans-serif);
  text-transform: none;
  font-weight: 600;
  font-size: 1.325rem;
  letter-spacing: 0.6px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  line-height: 1.2;
  margin-bottom: 0;
}
.vod-details-wrap .vod-desc-wrap {
  font-size: 0.925rem;
  line-height: 1.4;
}
.vod-details-wrap .vod-desc-wrap p {
  margin-bottom: 0;
  font-size: inherit;
}
/*Vod excerpt */
.vod-details-content .desc.short {
  overflow: hidden;
}
.vod-details-content .read-more {
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  margin-top: 0.25rem;
}

.vod-details-element .speakers-container {
  margin: 0.5rem 0 0.25rem;
}
.vod-details-wrap h6.speakers {
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: none !important;
  line-height: 1.3em;
  margin-bottom: 0;
}
.vod-details-wrap h6.speakers a {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
}
/* .vod-details-wrap a {
	display: inline-block;
  } */
/* .vod-details-wrap .time-wrap {
	line-height: 1;
  } */

.vod-details-wrap .speakers a {
  color: var(--main-button-color) !important;
}
.vod-details-wrap .speakers a:hover {
  color: var(--main-button-hover-color) !important;
}
/* Schedule Item Below Player */
.current-session-element {
  padding: 1rem 1rem 1rem 0.7rem;
  background-color: var(--background-color);
}
.scroller-outer-wrap {
  display: block;
  /* height: 64px; */
  width: 100%;
  overflow: hidden;
}
.scroller-outer-wrap .scroller-wrap {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  /* height: 100%; */
}
.scroller-outer-wrap .scroller-content,
.scroller-outer-wrap .no-posts {
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  /* height: 64px; */
}
.scroller-outer-wrap .no-posts p {
  font-size: 1em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.3em;
}
.scroller-outer-wrap .next {
  flex: 0;
  /* margin-right: 0.6rem; */
  display: none;
}
.scroller-outer-wrap .next.visible {
  display: block;
}
.scroller-outer-wrap .next h3 {
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 900;
}
.current-session-element .tags-container {
  margin-left: auto;
}
.scroller-wrap .time {
  font-size: 0.9412rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: none !important;
  color: #000000;
  line-height: 1.3em;
}
.scroller-wrap h6.speakers {
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: none !important;
  line-height: 1.3em;
  margin-bottom: 0;
}
.scroller-wrap h6.speakers a {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
}
.scroller-wrap a {
  display: inline-block;
}
.scroller-wrap .time-wrap {
  line-height: 1;
}
.scroller-wrap .scroller-title-wrap {
  line-height: 1.3;
}
.scroller-wrap a.scroller-title,
.scroller-wrap .scroller-title-wrap h3 {
  color: var(--main-button-color);
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.6px;
  transition: all 0.2s linear;
  line-height: 1.1;
  margin-bottom: 0;
}
.scroller-wrap a.scroller-title:hover h3 {
  color: var(--main-button-hover-color);
}

.scroller-wrap .speakers a {
  color: var(--main-button-color) !important;
}
.scroller-wrap .speakers a:hover {
  color: var(--main-button-hover-color) !important;
}

@media screen and (max-width: 768px) {
  .current-session-element {
    padding: 5px 0 0;
  }
  .scroller-outer-wrap {
    /* height: 94px; */
    margin-top: 4px;
  }
  .scroller-outer-wrap .vod-details-wrap {
    align-items: start;
  }
  .scroller-outer-wrap .next h3 {
    font-size: 1.1rem;
  }
  .scroller-outer-wrap .vod-details-content,
  .scroller-outer-wrap .no-posts {
    height: 100%;
  }
  .vod-details-wrap .vod-title-wrap {
    line-height: 1.1;
    margin-bottom: 3px;
  }
  .vod-details-wrap .vod-title {
    font-size: 1em;
    letter-spacing: 0.5px;
    line-height: 1;
  }
}
@media screen and (max-width: 992px) {
  .current-session-element .tags-container {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 993px) {
  .vod-details-element {
    min-height: 40%;
  }
  .vod-details-element {
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
  }
  .current-session-element {
    min-height: 40%;
  }
  .current-session-element {
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
  }
}

/* YT & Vimeo EMBED */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.embed-container iframe {
  max-width: none !important;
}
