@charset "UTF-8";

.video-ads .adbox > div { width: 100%; }

.video-ads .adbox table,
.video-ads .adbox table tbody {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: auto;
  width: 100%;
}
.video-ads .adbox table tr { display: block; position: relative; }
.video-ads .adbox table tr td {
  display: block;
  border-width: 0 !important;
  background: none !important;
}
.video-ads .adbox table tr td a {
  display: flex;
  height: 100px;
  border-radius: 5px !important;
  background-color: var(--secondary-background) !important;
  overflow: hidden;
  width: 100% !important;
  position: relative;
  padding: 10px 20px 10px 120px;
  flex-direction: column;
  justify-content: center;
}
.video-ads .adbox table tr td a div {
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  transition: color .25s;
  color: #fff !important;
}
.video-ads .adbox table tr td a div:nth-child(1) {
  position: absolute !important;
  top: 0;
  left: 0;
}
.video-ads .adbox table tr td a::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  opacity: 0;
  border-radius: 5px;
  border: 2px solid var(--brand);
  transition: opacity .25s;
}
.video-ads .adbox table tr:hover td a div { color: var(--brand) !important; }
.video-ads .adbox table tr:hover td a::after { opacity: 1; }

@media screen and (max-width: 1023.98px) {
  .video-ads .adbox table,
  .video-ads .adbox table tbody {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
  .video-ads .adbox table tr:nth-child(n+3) { display: none; }
}

@media screen and (max-width: 599.98px) {
  .video-ads .adbox table,
  .video-ads .adbox table tbody { grid-template-columns: 1fr; }
  .video-ads .adbox table tr:nth-child(n+2) { display: none; }
}

@media screen and (min-width: 1440px) {
  .video-ads .adbox table,
  .video-ads .adbox table tbody { grid-gap: 30px; }
}

.video-grid {
  grid-template-areas:
    "caption caption caption caption"
    "player player player ads"
    "rating channel channel ads"
    "desc desc desc desc"
    "banners banners banners banners"
    "models tags tags tags" !important;
}

@media (max-width: 1279.98px) {
  .video-grid {
    grid-template-areas:
      "caption caption caption"
      "player player ads"
      "rating channel ads"
      "desc desc desc"
      "banners banners banners"
      "models tags tags" !important;
  }
}

@media (max-width: 1023.98px) {
  .video-grid {
    grid-template-areas:
      "caption"
      "player"
      "rating"
      "channel"
      "desc"
      "banners"
      "models"
      "ads"
      "tags" !important;
  }
}

.video-grid > .content-banners:has(#eee2cf65ef) {
  grid-area: banners;
  width: 100%;
}

#eee2cf65ef > table,
#eee2cf65ef > table > tbody {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
  align-items: stretch;
}

#eee2cf65ef > table > tbody > tr:nth-child(n+5),
#eee2cf65ef > table > tr:nth-child(n+5) {
  display: none !important;
}

#eee2cf65ef tr {
  display: block !important;
  width: 100%;
  height: 100%;
}

#eee2cf65ef td {
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  vertical-align: top !important;
}

#eee2cf65ef td > a {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-background) !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  position: relative !important;
  transition: all .25s !important;
  text-decoration: none !important;
}

#eee2cf65ef td > a > div:first-child {
  position: relative !important;
  display: block !important;
  float: none !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56.25% !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#eee2cf65ef td > a > div:first-child img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#eee2cf65ef td > a > div:nth-child(2),
#eee2cf65ef td > a > div:nth-child(3) {
  margin: 0 !important;
  text-align: left !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  color: var(--default-color) !important;
}

#eee2cf65ef td > a > div:nth-child(2) {
  margin-top: 20px !important;
  margin-bottom: 8px !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#eee2cf65ef td > a > div:nth-child(3) {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 20px !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  opacity: .5 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#eee2cf65ef td > a > div:nth-child(4),
#eee2cf65ef td > a > div:nth-child(5) {
  display: none !important;
}

#eee2cf65ef td > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brand);
  border-radius: 5px;
  opacity: 0;
  transition: opacity .25s;
}

#eee2cf65ef td > a:hover::after { opacity: 1; }

@media (max-width: 1279.98px) {
  #eee2cf65ef > table,
  #eee2cf65ef > table > tbody {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  #eee2cf65ef > table > tbody > tr:nth-child(n+5),
  #eee2cf65ef > table > tr:nth-child(n+5) { display: block !important; }
  #eee2cf65ef > table > tbody > tr:nth-child(n+4),
  #eee2cf65ef > table > tr:nth-child(n+4) { display: none !important; }
}

@media (max-width: 1023.98px) {
  #eee2cf65ef > table,
  #eee2cf65ef > table > tbody {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  #eee2cf65ef > table > tbody > tr:nth-child(n+4),
  #eee2cf65ef > table > tr:nth-child(n+4) { display: block !important; }
  #eee2cf65ef > table > tbody > tr:nth-child(n+3),
  #eee2cf65ef > table > tr:nth-child(n+3) { display: none !important; }
}

@media (max-width: 599.98px) {
  #eee2cf65ef > table,
  #eee2cf65ef > table > tbody {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #eee2cf65ef > table > tbody > tr:nth-child(n+3),
  #eee2cf65ef > table > tr:nth-child(n+3) { display: block !important; }
  #eee2cf65ef > table > tbody > tr:nth-child(n+2),
  #eee2cf65ef > table > tr:nth-child(n+2) { display: none !important; }

  #eee2cf65ef td > a > div:nth-child(2),
  #eee2cf65ef td > a > div:nth-child(3) {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #eee2cf65ef td > a > div:nth-child(2) { margin-top: 15px !important; }
  #eee2cf65ef td > a > div:nth-child(3) {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-size: 12px !important;
  }
}