.category-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 1280px;
  max-width: 1280px;
  min-width: 1280px;
  height: 720px;
  max-height: 720px;
  min-height: 720px;
  background: #000000aa;
  backdrop-filter: blur(10px);
  padding: 50px;
  z-index: 3;
  animation: fadein 0.2s;
}

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

.category-overlay-header {
  display: flex;
  /*flex: 1;*/
  flex-direction: row;
  height: 260px;
}

.category-overlay-title {
  font-size: 64pt;
  font-weight: 700;
  margin-top: -10px;
  margin-bottom: 0;
  line-height: 1;
  font-family: "futura"; 
}

.category-overlay-description {
  font-size: 16pt;
  font-family: "montserrant";
}

.category-overlay-cover {
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  width: 460px;
  max-width: 460px;
  min-width: 460px;
  object-fit: cover;
  margin-right: 20px;
  -webkit-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.3);
}

.h2 {
  font-family: "montserrant";
}

.category-overlay-divider {
  height: 2px;
  width: 100%;
  background: #ffffff;
  margin-top: -15px;
}

.category-overlay-programs {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  padding-top: 10px;
  border: none !important;
  overflow: hidden;
  height: 345px;
  width: 1180px;
  max-width: 1180px;
  min-width: 1180px;
  /*scroll-behavior: smooth;*/
  font-family: "montserrant";
}

.vod-container {
  display: flex;
  flex-direction: column;
  /*height: 32vh;*/
  height: 230px;
  /*min-width: 20vw;*/
  /* max-width: 20vw;*/
  min-width: 350px;
  max-width: 350px;
  margin-right: 15px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.vod-cover {
  min-height: 190px;
  max-height: 190px;
  width: 100%;
  object-fit: cover;
  margin-right: 20px;
  transition: all 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.vod-cover.selected {
  transform: scale(1.1);
}

.vod-container.selected {
  margin: 0 30px 0 10px;
}

.vod-content {
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.vod-content.selected {
  opacity: 1;
}

.vod-title {
  font-weight: 700;
  margin-bottom: -8px;
  line-height: 1;
}

.vod-loader {
  /*height: 100%;*/
  height: 50vh;
  /*margin-top: 50px;*/
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon {
  height: 70px;
  position: absolute;
  top: calc(95px - 70px / 2);
  left: calc(175px - 70px / 2);
  z-index: 2;
}

.live-stream-badge {
  z-index: 2;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 10px;
  background: #ffffff;
  font-size: 10pt;
  border-radius: 5px;
}

.react-multi-carousel-track {
  border: none !important;
}

.react-multi-carousel-list {
  border: none !important;
}

.arrow-left {
  position: absolute;
  left: 5px;
  bottom: 210px;
  height: 40px;
  width: 40px;
}

.arrow-right {
  position: absolute;
  right: 5px;
  bottom: 210px;
  height: 40px;
  width: 40px;
}
