

.video-archive-outer {
  padding-top: 80px;
  background-color: #2e3135;
  padding-bottom: 100px;
}

.video-grid {
  display: flex;
  flex-direction: row;
}



.sidebar-date {
  display: flex;
  justify-content: flex-end;
  color: white;
  width: 10%;
  margin-top: 25%;
  margin-right: 20px;
  position: relative;
}

.sticky-date {
  position: fixed;
  top: auto;
}

.sticky-date ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sticky-date li {
  list-style: none;
}

.sticky-date li.active button {
  color: #ffffff;
}

.sticky-date button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  display: block;
  color: #808080;
  font-size: 15px;
}

.hide-mobile {
  display: none;
}



.video-archive-outer h2.gradient-text {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg,
      rgb(32, 155, 196) 0%,
      rgb(77, 201, 192) 100%);
  background-clip: text;
  font-weight: 600;
  font-size: 24px;
}

.video-archive-outer p {
  color: #b2b2b2;
  font-size: 15px;
}

.results-container {
  min-height: 100vh;
  position: relative;
  padding-right: 0;
  width: 90%;
}

.highlight-video {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
}

.video-item-container-highlight,
.video-item-keynotes,
.video-item-keynotes img.key-img {
  width: 100%;
  object-fit: contain;
  height: auto;
  cursor: pointer;
}

.video-item-highlight {
  position: relative;
}

.highlight-video img {
  border-radius: 30px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.highlight-video::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  content: "";
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.highlight-video:hover::before {
  opacity: 1;
}

.cta-container-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 99;
  display: none;
}

.highlight-video:hover .cta-container-highlight {
  display: flex;
}

.highlight-video img.icon-video {
  width: 92px;
  height: 92px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-65%);
  opacity: 0.2;
  transition: opacity 0.2s ease;
  z-index: 33;
}

.highlight-video:hover img.icon-video {
  opacity: 1;
}

.cta-container-highlight p {
  color: #fff;
  margin: 0;
  position: relative;
  transition: 0.5s;
  bottom: -200px;
  opacity: 0;
  margin-top: 92px;
  z-index: 33;
}

.highlight-video:hover .cta-container-highlight p {
  bottom: 0;
  opacity: 1;
}

.highlight p {
  
}

.video-archive-outer h2 {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
}

p.date-text {
  font-weight: bolder;
  color: #ffbb33;
  margin-bottom: 28px;
  font-size: 18px;
}

.grid-monday {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

body .video-item,
body .video-item:nth-child(odd) {
  width: 100%;
  margin-right: 0 !important;
  margin-bottom: 15px !important;
  color: white;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.video-item-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.video-item img {
  width: 100%;
}

.video-item img.company-logo {
  width: 60px;
  height: 60px;
  padding: 10px;
  background: white;
  border-radius: 16px;
  position: absolute;
  left: 12px;
  top: 12px;
}

.session.old .video-item-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.session.old .video-item-highlight img.key-img,
.session.old .video-item img {
  transform: scale(1.045);
  -webkit-transform: scale(1.045);
  -moz-transform: scale(1.045);
  -o-transform: scale(1.045);
}

.info-container {
  z-index: 9999;
  position: absolute;
  top: -20px;
  padding: 25px;
  opacity: 0;
  transition: top 0.5s, left 0.5s, opacity 0.1s;
}

.info-container p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
}

.info-container h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.video-item .cta-container {
  position: absolute;
  right: 0;
  right: 25px;
  bottom: -20px;
  opacity: 0;
  z-index: 999;
  transition: bottom 0.5s, left 0.5s, opacity 0.1s;
}

.video-item .cta-container p {
  font-weight: 700;
  display: flex;
  color: #fff;
  font-size: 16px;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cta-container p img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.video-item-container:hover::before {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.video-item-container:hover .info-container {
  top: 0;
  opacity: 1;
}

.video-item-container:hover .cta-container {
  bottom: 25px;
  opacity: 1;
}



img#open-filters {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
}

.sidebar-filters {
  transform: translateX(100%);
  position: fixed;
  z-index: 99999;
  background: #2e3135;
  width: 100% !important;
  min-height: 100vh;
  top: 0;
  right: 0;
  padding: 54px 24px;
  transition: transform 0.3s ease-in-out;
  height: 100%;
  overflow-y: auto;
}

.sidebar-filters.open {
  transform: translateX(0);
}

button#apply-filters {
  background: linear-gradient(135deg, #069fce 0, #51cbbf 100%);
  border: none;
  color: #fff;
  padding: 13px;
  border-radius: 8px;
  width: 100%;
  margin-top: 30px;
}

button#apply-filters:hover {
  background: linear-gradient(135deg, #06aadd 0, #5dcfc3 100%);
}

.mobile-filters,
.mobile-filters-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 43px;
}

.mobile-filters-footer {
  margin-bottom: 0;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-filters img {
  cursor: pointer;
}

.sticky-sidebar {
  position: unset;
  top: unset;
}

div#video-category-filters {
  box-shadow: -6px -6px 5px 3px rgba(82, 81, 81, 0.43),
    8px 8px 12px 0px rgba(0, 0, 0, 0.34);
  padding: 24px 16px;
  border-radius: 34px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

div#video-category-filters {
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}

#video-category-filters label {
  height: 100%;
  width: 100%;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-align: left;
  padding-left: 0;
  position: relative;
  cursor: pointer;
}

.video-category-label:hover span.label-text {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg,
      rgb(32, 155, 196) 0%,
      rgb(77, 201, 192) 100%);
  background-clip: text;
}

.video-category-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #808080;
  border-radius: 6px;
  cursor: pointer;
}

.video-category-label.active::before {
  content: "✔";
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg,
      rgb(32, 155, 196) 0%,
      rgb(77, 201, 192) 100%);
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

#video-category-filters label:hover {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg,
      rgb(32, 155, 196) 0%,
      rgb(77, 201, 192) 100%);
}

.video-category-checkbox {
  display: none;
}

div#video-category-filters .label-text {
  font-size: 12px;
  margin-left: 30px;
}

.company-filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
  
  max-width: 336px;
}

label.company-label {
  box-shadow: -3px -3px 3px 3px rgba(82, 81, 81, 0.64),
    3px 3px 3px 0px rgba(0, 0, 0, 0.34);
  padding: 8px;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}

span.label-text {
  position: relative;
}

label.company-label.toast {
  background: none;
  width: fit-content;
  display: block !important;
}

label.company-label.adobe,
label.company-label.databricks,
label.company-label.karakun-ag,
label.company-label.morgan-stanley,
label.company-label.quotient,
label.company-label.shipyard,
label.company-label.shipyard-quotient,
label.company-label.square {
  display: none !important;
}

label.company-label .company-logo.hover {
  display: none;
  transform: scale(0);
  transition: 1s;
}

label.company-label:hover .company-logo.hover {
  transform: scale(1.3);
  display: block;
  height: 24px;
  position: relative;
  top: unset;
  opacity: 1;
}

img.company-logo {
  transition: 0.3s;
}

label.company-label:hover .company-logo {
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

label.company-label:hover .company-logo {
  transform: scale(0);
  
}

label.company-label:hover .company-logo {
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

label.company-label:hover {
  border: 1px solid #808080;
  box-shadow: none;
}

label.company-label.active {
  border: 1px solid #069fce;
  box-shadow: none;
}

.company-filters input {
  display: none;
}



label.company-label img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}



.keynotes-inner {
  max-width: 100vw;
  width: 100%;
  overflow: hidden !important;
  position: absolute !important;
}

.video-item-keynotes {
  position: relative;
  z-index: 999999;
}

.owl-stage {
  display: flex;
}

.owl-item {
  display: flex;
  flex: 1 0 auto;
}

img.key-img {
  border-radius: 32px;
}





.session {
  display: none;
}

.grid-2024 {
  display: none;
}

.session.old .grid-monday {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  row-gap: 0;
  flex-direction: column;
}

.session.old .grid-monday .video-item {
  width: 100%;
  margin: 0;
}

.hidden-old .results-container {
  width: 90% !important;
  position: relative;
}

.video-item.\36 371 .info-container p {
  -webkit-line-clamp: 2;
}

.page-id-176 label.company-label.salesforce,
.page-id-176 label.company-label.pinterest,
.page-id-176 label.company-label.okta,
.page-id-176 label.company-label.miro,
.page-id-176 label.company-label.jpmorgan-chase,
.page-id-176 label.company-label.gradle-karakun-ag,
.page-id-176 label.company-label.cloudkitchens,
.page-id-176 label.company-label.cisco-systems {
  display: none;
}

@media only screen and (min-width: 744px) {
  .sidebar-date {
    margin-top: 10%;
  }

  

  .video-archive-outer h2.gradient-text {
    font-size: 28px;
  }

  .video-archive-outer h2 {
    font-size: 46px;
  }

  p.date-text {
    font-size: 19px;
  }

  body .video-item:nth-child(odd),
  body .video-item {
    width: calc(49% - 15px);
    margin-right: 15px !important;
    margin-left: 0;
  }

  

  .results-container {
    width: 100% !important;
  }

  .hidden-old .results-container {
    width: 100% !important;
    position: unset;
    padding-right: 0;
  }

  .session.old .grid-monday {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media only screen and (min-width: 1280px) {
  

  .video-archive-outer h2.gradient-text {
    font-size: 30px;
  }

  .video-archive-outer p {
    font-size: 17px;
  }

  .video-archive-outer h2 {
    font-size: 50px;
  }

  .results-container {
    padding-right: 50px;
    width: 100%;
  }

  p.date-text {
    font-size: 21px;
  }

  

  .sidebar-date {
    width: 5%;
    margin-right: 50px;
  }

  .hide-mobile {
    display: inline-block;
  }

  

  .mobile-filters,
  .mobile-filters-footer {
    display: none;
  }

  .sticky-sidebar {
    position: fixed;
    top: auto;
  }

  .hidden-old .sidebar-date {
    width: 3.7%;
  }

  .sidebar-filters {
    transform: unset;
    width: 35% !important;
    min-height: unset !important;
    overflow: unset !important;
    padding: 0;
    position: unset;
    height: fit-content;
    z-index: unset;
  }

  img#open-filters {
    display: none !important;
  }

  div#video-category-filters .label-text {
    font-size: 13px;
  }
}

@media only screen and (min-width: 1440px) {
  .info-container p {
    display: -webkit-box;
    font-size: 14px !important;
  }
}

@media only screen and (min-width: 1920px) {
  

  .video-archive-outer h2.gradient-text {
    font-size: 32px;
  }

  .video-archive-outer p {
    font-size: 19px;
  }

  .video-archive-outer h2 {
    font-size: 54px;
  }

  p.date-text {
    font-size: 22px;
  }

  

  div#video-category-filters .label-text {
    font-size: 15px;
  }
}


.lightbox {
  background-color: rgba(0, 0, 0, 0.8);
  overflow: scroll;
  position: fixed;
  display: none;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 2;
}

.lightbox-container {
  position: relative;
  max-width: 960px;
  margin: 7% auto;
  display: block;
  padding: 0 3%;
  height: auto;
  z-index: 10;
}

.video-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

article.past-event-cards {
  cursor: pointer;
}

.past-event-cards:hover .watch-the-keynote.watch-the-keynote-med {
  transform: translateY(0);
  opacity: 1;
  top: 128px;
  z-index: 2;
  left: 80px;
}

@media screen and (max-width: 1279px) {
  .sidebar-filters {
    padding: 24px;
  }

  .company-filters {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .lightbox-container {
    margin-top: 10%;
  }

  .mobile-nav {
    display: flex !important;
  }

  .video-archive-outer {
    padding-top: 50px;
  }
}

@media screen and (max-width: 430px) {
  .mobile-filters {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 414px) {
  .lightbox-container {
    margin-top: 13%;
  }
}


.Modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.Modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Modal-box>.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 56.25%;
  
  overflow: hidden;
}

.Modal-box>.video-container>iframe,
.Modal-box>.video-container>object,
.Modal-box>.video-container>embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.Modal-close {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 9001;
  padding: 5px 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.85);
}

.Modal-cancel-overflow {
  overflow: hidden;
}

.video-name-top.text-left,
.youtubelink {
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-height: 760px) {
  .sticky-sidebar {
    position: unset !important;
    top: unset !important;
    bottom: unset !important;
  }
}