:root {
  --tag-bg-color: #eea83d;
  --light-orange: #edb663;
  --main-orange: #eea83d;
  --dark-orange: #e79821;

  --main-bg: rgb(14, 14, 14);
  --main-bg-light: #151515;
  --lighter-bg: rgba(20, 20, 20, 0.97);
  --black-transparent: rgba(20, 20, 20, 0.953);
  --dark-grey: #d2d2d2;
  --dark-grey2: #2e2e2e;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0%;
  font-family: 'Roboto', 'Open Sans', sans-serif, verdana, arial;
  /*font-family: 'Roboto', "Open Sans", sans-serif,verdana,arial;*/
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  /*color: #1a1a1a;*/
  color: #ffffff;
  /* Curiocity */
  /* background-color: #020713;  */
  /* Netflix */
  /* background-color: #141414; */
  /* background-color: var(--main-bg); */
  background-image: linear-gradient(
    to right,
    rgb(0, 0, 4) 10%,
    rgba(14, 14, 14, 0.98) 30%,
    rgba(14, 14, 14, 0.96) 50%,
    rgba(14, 14, 14, 0.98) 70%,
    rgba(0, 0, 4, 1) 90%
  );

  overflow-x: hidden;
  /* min-height: 320vh; */
}

.max-width {
  max-width: 1920px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #e0e0e0;
  text-decoration: none;
}

h1 {
  font-size: 1.6rem;
  margin: 0px;
  margin-block-start: 0;
  margin-inline-start: 0;
}

h2 {
  font-size: 1rem;
  margin: 0px;
}

h3 {
  font-size: 0.8rem;
  margin: 0px;
}

h4 {
  font-size: 1.6rem;
  margin: 0px;
  font-weight: 400;
}

p {
  margin: 0px;
  /* margin-block-start: 0.1em; */
  /* margin-block-end: 0.11em; */
}

ul {
  padding: 0px;
  margin: 0px;
}

video {
  height: 100%;
  width: 100%;
}

/* .icon-left {
	content: "\e906";
	width:20px;
	height:30px;
}

.icon-right {
	content: "\e905";
} */

.arrow {
  width: 30px;
  height: 50px;
  opacity: 0.6;
}

.arrow svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

/* .arrow:hover {
	opacity: 1;
} */
.arrow:active {
  transform: scale(0.9);
}

/* #grid {
  display: grid;
  grid-template-columns: 330px 3fr minmax(300px, 1.1fr);
  grid-template-rows: auto minmax(75vh, auto) 0px;
  column-gap: 40px;
} */

#header {
  position: fixed;
  width: 100%;
  z-index: 888;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0),
    rgba(0, 0, 0, 0.8) 20%,
    rgba(0, 0, 0, 0.4) 70%,
    transparent
  );
  transition: opacity 1.6s ease-in-out;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}

#hero {
  max-width: 1920px;
  margin: 0 auto;
}

#content {
  /* height: calc(100% + 500px); */
  padding-bottom: 200px;
  position: relative;
  top: 0;
  max-width: 1920px;
  margin: 0 auto;
  /* top:-calc(100vh + 15%); */
  overflow: hidden;
}

#footer {
  max-width: 1920px;
  margin: 0 auto;
}

.header-grid {
  display: grid;
  grid-template-columns: 220px auto 150px;
  /* grid-template-rows: 105px; */
  column-gap: 0px;
}

#header-grid .header-left {
  display: flex;
  align-items: center;
  height: fit-content;
}

#header .header-center {
  display: flex;
  align-items: center;
}

#header .header-right {
  display: flex;
  align-items: center;
  /* padding-right:5vw; */
  flex-direction: row-reverse;
  justify-content: right;
}

#header .header-right .topright-menu {
  position: relative;
  display: flex;
  gap: 20px;
}

#header .header-right .menu-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#header .header-right .menu-item .icon {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
}

#header .header-right .menu-item .icon svg {
  fill: #ffffff;
  height: 30px;
  width: 30px;
}

#header .header-right .menu-item .label {
  text-transform: capitalize;
}

#header .header-right .menu-item .arrow-round {
  padding-left: 5px;
}

#header .header-right .profile-link-header .arrow-round svg {
  fill: #ffffff;
  height: 15px;
  width: 15px;
}

#header .header-right .topright-menu .topright-menu-list {
  position: absolute;
  top: +40px;
  /* left: -20px; */
  right: 0;
  background-color: rgba(00, 00, 00, 0.7);
  display: none;
  /* padding:10px 20px; */
}

#header .header-right .topright-menu .topright-menu-list ul {
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0px;
}

#header .header-right .topright-menu .topright-menu-list li {
  padding: 10px 35px;
}

#header .header-right .topright-menu .showmenu {
  display: block;
}

#header .logo-link {
  display: flex;
  align-items: center;
  justify-content: left;
}

#header .logo-link .logo {
  margin-top: 5px;
  width: 210px;
  height: 58px;
}

#header .logo-link .logo svg {
  width: 100%;
  height: 100%;
}

/* ########################## MAIN THINGS ########################## */

a:hover {
  text-decoration: underline;
}

.label {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  /* text-transform: uppercase; */
  /* letter-spacing: 0.08rem; */
}

input[type='text'],
input[type='password'],
textarea {
  color: #ffffff;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 10px 10px;
  outline: none;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type='checkbox'] {
  padding: 5px;
}

.error input[type='text'],
.error input[type='password'],
.error textarea {
  outline-color: #a10c0c;
  --outline-from: #b51111;
  --outline-to: #830d0d;
  box-shadow: var(
    --shadow,
    0 -1px 1px 1px var(--outline-from),
    0 1px 1px 1px var(--outline-to)
  );
}

input:focus,
textarea:focus {
  outline-color: #eea83d;
  --outline-from: #ecc334;
  --outline-to: #eb8b4c;
  box-shadow: var(
    --shadow,
    0 -1px 1px 1px var(--outline-from),
    0 1px 1px 1px var(--outline-to)
  );
}

.password-field {
  position: relative;
}

input[type='password'] {
  padding-right: 30px;
}

.view-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.view-password svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.visible-pass svg {
  fill: var(--main-orange);
}

a.orange-link {
  color: #eea83d;
}

a.orange-link:hover {
  text-decoration: underline;
}

.forgot-text {
  /* font-style:italic; */
  font-size: 0.6rem;
  font-weight: 400px;
}

.orange-button {
  color: #333333;
  display: block;
  padding: 15px 40px;
  cursor: pointer;
  /* margin: 0 auto; */
  border-radius: 5px;

  border-color: transparent;
  border-style: double;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  outline: none;
  font-size: 1rem;

  background: linear-gradient(
    to bottom,
    var(--light-orange),
    var(--main-orange)
  );
  width: fit-content;
}

.orange-button:hover {
  background: linear-gradient(
    to bottom,
    var(--main-orange),
    var(--dark-orange)
  );
}

.orange-button:active {
  /* background: linear-gradient(to bottom, var(--main-orange), var(--dark-orange)); */
  transform: scale(0.95);
}

.orange-button-small {
  padding: 6px 16px;
  font-weight: 500;
}

.btn-loading-spinner {
  display: none;
  width: 30px;
  height: 30px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--dark-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 40px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.grey-button {
  color: #444444;
  display: block;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  /* border-color: transparent; */
  /* border-style: double; */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  outline: none;
  font-size: 0.9rem;
  /* background: linear-gradient(to bottom, #bcbcbc, #868686); */
  background: #a6a6a6;
  width: fit-content;
}

.grey-button:hover {
  background: linear-gradient(to bottom, #b0b0b0, #808080);
}

.grey-button:active {
  transform: scale(0.95);
}

.link-button {
  color: #bdbdbd;
  cursor: pointer;
}

.link-button:hover {
  color: #ffffff;
}

.from-dark {
  --tw-gradient-from: #02040a;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, rgba(2, 7, 19, 0));
}

.main-background {
  height: 90vh;
  background: radial-gradient(
      ellipse at 50% 10%,
      rgba(0, 0, 0, 0.7) 10%,
      var(--main-bg) 80%
    ),
    url(/images/main-bg3.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-background {
  min-height: 90vh;
  background: radial-gradient(
      ellipse at 50% 10%,
      rgba(0, 0, 0, 0.7) 10%,
      var(--main-bg) 80%
    ),
    url(/images/main-bg3.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.align-top {
  align-items: flex-start;
}

.bg-image-3 {
  background: radial-gradient(
      ellipse at 50% 10%,
      rgba(0, 0, 0, 0.7) 10%,
      var(--main-bg) 80%
    ),
    url(/images/main-bg3.jpg);
}

.bg-image-4 {
  background: radial-gradient(
      ellipse at 50% 10%,
      rgba(0, 0, 0, 0.7) 10%,
      var(--main-bg) 80%
    ),
    url(/images/main-bg5.jpg);
}

#overlay {
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 100px;
  left: 0;
  right: 0;
  height: 120vh;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

#overlay.withmenu {
  visibility: visible;
}

.flex-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.padding-lr {
  padding: 0px 50px;
}

.content-list {
  padding: 100px 50px;
}

.content-under-video {
  padding-top: 10px;
}

.content-under-video .see-more-title {
  font-size: 1.4rem;
  padding: 10px 0px 2px 0px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--light-orange);
}

.content-page {
  padding: 100px 50px;
}

.terms {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.7rem;
  margin-top: 60px;
  line-height: 1.5 !important;
}

.terms p {
  line-height: 1.5 !important;
}

/* ########################## HOME PUBLIC ########################## */
.home-hero-message {
  flex-direction: column;

  max-width: 800px;
  margin: 50px 50px;
}

.home-hero-message .home-logo {
  width: 300px;
  height: 88px;
}

.home-hero-message .home-logo svg {
  width: 100%;
  height: 100%;
}

.home-hero-message .home-title {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: Ubuntu, 'Caveat', cursive;
}

.home-hero-message .home-subtitle {
  font-size: 1.2rem;
  /* font-family: sans-serif; */
  font-family: Ubuntu, cursive, verdana;
  line-height: 1.5;
  margin: 30px 0px;
  text-align: center;
}

.home-row-color {
  box-sizing: border-box;
  padding: 50px;
  height: 600px;
  background: linear-gradient(to bottom, #603f24, #4d3624);
  box-shadow: inset 3px 3px 60px rgba(20, 20, 20, 0.99);
}

.home-slider-container {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.home-slider {
  display: flex;
  min-height: 300px;
  width: 100%;
  justify-content: left;
  max-width: 900px;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
}

.home-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  box-sizing: border-box;
}

.home-slide-image {
  padding: 5px;
  box-sizing: border-box;
}
.home-slide-image img {
  box-shadow: 2px 2px 6px var(--black-transparent);
  /* box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); */
}

.home-slide-content {
  padding: 5px;
  /* background-color: rgba(0, 0, 0, 0.7); */

  color: #fff;
  text-shadow: 1px 1px 3px var(--black-transparent);
}

.home-slide-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.home-slide-content {
  font-size: 1.2rem;
}

.home-slider-arrows {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
  /* margin-right: 20px; */
}

.prev-slide,
.next-slide {
  /* font-size: 30px;
    cursor: pointer; */
}

.home-slider-breadcrumbs {
  display: flex;
  position: absolute;
  bottom: 0px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.active {
  background-color: var(--dark-orange);
}

.home-public-slider {
  padding-bottom: 50px;
}

/* ########################## HOME PUBLIC END ########################## */

/* ########################## CONTACTS ########################## */

.contact-form {
  margin: 20px;
  /* max-width:600px; */
  width: 100%;
  max-width: 400px;
}

.contact-form form {
  display: grid;
  gap: 20px;
}

label {
  font-weight: bold;
}

.contact-form input[type='text'],
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

/* ########################## CONTACTS END ########################## */

/* ########################## MENU MOBILE BOTTOM ########################## */

.menu-bottom {
  width: 100%;
  background-color: var(--black-transparent);
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  z-index: 200;
}

.menu-bottom .menu-item {
  text-align: center;
  text-decoration: none;
  color: #fff; /* White text color */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 40px;     */
}

.menu-bottom .menu-item svg {
  height: 25px;
  width: 25px;
  fill: #fff;
}

.menu-bottom .menu-active {
  color: var(--dark-orange);
}

.menu-bottom .menu-active svg {
  fill: var(--dark-orange);
}

/* Add your SVG icon styles here */

.menu-bottom .menu-item span {
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 400;
}

/* ########################## MAIN CONTENT ########################## */

/*########################## HEADER RIGHT #########################################*/

#header .header-right a:hover {
  text-decoration: underline;
}

/*########################## HEADER CENTER #########################################*/

#header .header-center a {
  margin-left: 30px;
}

#header .header-center a:hover {
  text-decoration: underline;
}

/*########################## SIGN UP #########################################*/

.signup-form {
  margin-top: 70px;
}

.no-margin-top {
  margin-top: 0px;
}
.margin-top-small {
  margin-top: 20px;
}
.signup-form .page-title {
  margin-bottom: 20px;
}

.signup-form .form-label {
  margin-top: 20px;
  margin-bottom: 5px;
}

.form-button {
  margin-top: 15px;
}

.must-register-title {
}
.must-register-buttons {
  gap: 20px;
}

.login-devider {
  display: flex;
  align-items: center;
  padding: 10px;
}

.ld-line {
  height: 1px;
  width: 100px;
  background-color: rgb(186, 186, 186);
}

.ld-text {
  margin: 0 10px;
  font-size: 1rem;
  /* font-weight: bold; */
  /* font-weight: 100; */
  color: rgb(186, 186, 186);
}

.social-login-button {
  width: 320px;
}

.g_id_signin {
  width: 320px !important;
  max-width: 320px !important;
}

.custom-google-btn {
  width: 320px; /* Set a fixed width */
  height: 40px; /* Optional: set a fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff; /* Google Blue */
  /* color: white; */
  border-radius: 5px; /* Rounded corners */
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.facebook-login {
  width: 320px;
  /* width:100%; */
  height: 40px;
  background-color: #475996; /* Dark blue Facebook color */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.facebook-login:hover {
  background-color: rgb(42, 74, 133); /* Darker blue on hover */
}

.facebook-logo {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.remember {
  padding: 20px 5px 5px 0px;
  text-align: center;
}

.error-text {
  text-align: center;
  color: #ff0000;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.4);
  /* max-width: 300px; */
  height: fit-content;
}

.error-text span {
  max-width: 300px;
  text-wrap: wrap;
}

/*########################## CANCEL SUBSCRIPTION #########################################*/

.cancel-subscription {
  margin-top: 70px;

  background: rgba(32, 32, 32, 0.7);
  /* background: rgba(255, 255, 255, 0.8); Frosted glass effect background */

  /* opacity: 0.95; */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border: 1px solid rgb(139, 121, 71);
  max-width: 500px;
  width: 85%;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.cancel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  margin-bottom: 15px;
}

.cancel-message {
  font-size: 16px;
  color: #fff;
  margin: 20px 0;
}
.cancel-actions {
  display: flex;
  justify-content: space-between;
}

/*########################## HERO #########################################*/

.main-background {
}

.hero-container {
  width: 100%;
  /* padding-top: 56.25%; */
  padding-top: 46.25%;
  /* height:100%; */

  position: relative;
  /* overflow: hidden; */
  /* margin-bottom:50px; */
}

.hero-vignete {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  padding-top: 56.8%;
  /* height: 56.25%; */
  /* background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 1%, rgba(0, 0, 0, 0.6) 100%); */
  pointer-events: none;
  /* background-image: radial-gradient(ellipse at 50% 10%,rgba(0, 0, 0, 0.3) 10%,var(--main-bg) 70%); */
}

.vignete {
  background: radial-gradient(
    ellipse at 40% 20%,
    rgba(0, 0, 0, 0.3) 10%,
    var(--main-bg) 90%
  );
}
.vignete-center {
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.9) 80%
  );
}

.vignete-linear {
  background: linear-gradient(0deg, #00000083 0, transparent),
    linear-gradient(180deg, #00000071 0, transparent);
}

.hero-container video {
  /* object-fit: cover; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* object-fit: cover; */
}

.hero-title {
  position: absolute;
  bottom: 20%;
  left: 5%;
  max-width: 60%;
  /* box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.3) inset; */
}
.hero-title .hero-descr {
  padding-left: 20px;
  line-height: 1.8;
  color: #f7f7f7;
}

/* ################### CHANNEL HERO  ###################*/

.channel-hero {
  overflow: hidden;
  position: relative;
  max-height: 30vh !important;
  height: auto;
  margin-bottom: 0px;
  height: 40vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.channel-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.6) 70%
  );
  pointer-events: none;
}

.channel-hero-buttons .orange-button {
  margin-left: 20px;
  margin-top: 20px;
}

/* ################### CHANNEL HERO END  ###################*/

/* ################### SLIDER  ###################*/

.channel-withslider {
  /* padding: 0px 50px;  */
  margin-top: 30px;
}
.channel-title {
  /* z-index: 600; */
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.channel-title:hover a {
  text-decoration: none;
}

.channel-title .channel-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.channel-title .thumb-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
}

.channel-title .thumb-icon svg {
  width: 90%;
  height: 90%;
  fill: #ffffff;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

.channel-title h4 {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.channel-title .view-all {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-left: 15px;
  color: #eea83d;
  margin-top: 3px;
  white-space: nowrap;
}

/* .channel-withslider:hover .slider-controls {
  opacity: 1;
} */

.slider-container {
  /* width: 100%; */
  /* overflow-x: hidden; */
  /* overflow-y: visible; */
  /* box-sizing: border-box; */

  position: relative;
  display: flex;

  /* width:100%; */

  /* overflow-x: visible; */
  overflow-x: visible;
  overflow-y: visible;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slider {
  display: flex;
  scroll-snap-align: start;
  gap: 20px;
  transition: transform 1s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.noscrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

/* Hide scrollbar thumb and track */
.noscrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Hide scrollbar track (background) */
.noscrollbar::-webkit-scrollbar-track {
  background: transparent;
}

/* Hide scrollbar corner (between vertical and horizontal scrollbar) */
.noscrollbar::-webkit-scrollbar-corner {
  display: none;
}

.slider-controls {
  display: flex;
  align-items: center;
  /* background-color: rgba(0, 0, 0, 0.5); */
  /* opacity: 0; */
  transition: opacity 0.3s ease-in-out;
  justify-content: space-between;
  height: 100%;
}

.prev-button,
.next-button {
  /* background-color: red;   */
  /* background-color: rgba(0, 0, 0, 0.8); */
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 10%,
    rgba(0, 0, 0, 0.7) 40%
  );
  height: 100%;
  box-sizing: border-box;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 100;
  /* width: 80px; */
  /* padding:0px 25px; */
  align-items: center;
  bottom: 0;
  top: 0;
  z-index: 60;
  color: #fff;
  display: flex;
  justify-content: center;
  position: absolute;
  text-align: center;
  opacity: 0.9;
  width: 80px;
  overflow: hidden;
  /* transition: visibility 0.5s ease-in-out; */
  opacity: 1;
  transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
}

.prev-button:hover svg,
.next-button:hover svg {
  fill: var(--dark-orange);
}

.prev-button {
  left: 0px;
  background: linear-gradient(
    to left,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 10%,
    rgba(0, 0, 0, 0.7) 40%
  );
}

.hidden-btn {
  /* visibility:hidden; */
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
}
.next-button {
  right: 0px;
}

/* ################### SLIDER END  ###################*/

/* ################### CHANNEL  ###################*/

.channel-season-button-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
}

.channel-subscribe {
  /* float:right; */
  /* display: flex;
	flex-direction:row-reverse; */
  gap: 20px;
  margin: 20px 0px;
  /* width:280px; */
  width: auto;
  /* justify-self: end; */
}

.channel-subscribe .orange-button,
.button-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  /* font-size:1.1rem; */
  font-weight: 600;
}

.channel-subscribe .subscribe-icon,
.button-with-icon .subscribe-icon {
  width: 30px;
  height: 30px;
  background-color: rgb(79, 79, 79);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-right: 10px; */
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}

.button-with-icon .icon {
  width: 30px;
  height: 30px;

  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}
.button-with-icon:hover svg {
  fill: #000000;
}

.button-with-icon svg {
  fill: #333;
  width: 100%;
  height: 100%;
}

.channel-seasons {
  display: flex;
  /* padding: 20px 30px; */
  overflow-x: scroll;
  gap: 20px;
  margin: 20px 0px;
  align-items: center;
}

.page-top-buttons {
  display: flex;
  /* padding: 20px 30px; */
  overflow-x: scroll;
  gap: 20px;
  margin: 20px 0px;
}

.elipse-button {
  font-size: 1rem;
  /* font-weight: bold; */
  padding: 5px 15px;
  cursor: pointer;
  text-wrap: nowrap;
  border: 1px solid #333333;
  border-radius: 20px;
}

.elipse-button:hover,
.elipse-button:active {
  border: 1px solid #cecece !important;
}

.selected-elipse-button {
  color: var(--main-orange);
  /* text-decoration: underline; */
  border: 1px solid #cecece !important;
  /* background-color: #212121; */
}

/* ################### CHANNEL END ###################*/

/*########################## OBJECTS GRID #########################################*/

.objects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  /* padding: 0px 80px; */
  /* padding-right: 60px; */
  transition: transform 0.5s ease-in-out;
}

.object {
  /* pointer-events: none; */
  /* border-radius: 5px; */
  /* overflow:hidden; */
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 1;
  position: relative;
  /* flex: 0 0 calc(350px - 20px); */
  flex: 0 0 calc(20% - 10px);
  /* width:18%; */
  display: block;
  height: fit-content;

  overflow: hidden;
  scroll-snap-align: start;
  /* background: var(--lighter-bg); */
  -webkit-user-select: none;
  user-select: none;
  max-width: 500px;
}

.object.object-hidden {
  display: none;
}

.object .thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
  pointer-events: auto;
  border-radius: 8px;

  z-index: 5;
  /* overflow:hidden; */
  -webkit-user-select: none;
  user-select: none;

  border: 1px solid rgba(104, 104, 104, 0.835);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* padding: 10px; */
  box-sizing: border-box;
}

.object .thumb:hover {
  border: 1px solid var(--dark-orange);
  box-sizing: border-box;
}

.object .watching {
  border: 5px solid var(--dark-orange);
  border-radius: 10px;
  box-sizing: border-box;
  /* box-shadow: inset 1px 1px 20px rgba(0, 0, 0, 0.9); */
  filter: brightness(1.5);
}
.object video.preview-player {
  -webkit-user-select: none;
  user-select: none;
}

/* .object-channel .thumb{
	border:2px solid #ffffff;
	border-radius: 8px;
	box-sizing: border-box;
} */

.object-channel .title-container {
  margin-top: 5px;
  gap: 5px;
  align-items: center;
}

.object .thumb img,
.object .thumb picture {
  width: 100%;
  display: block;
  height: auto;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  /* filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.9)); */
  -webkit-user-select: none;
  user-select: none;
}

.object .progress-bar-container {
  /* padding: 10px 0px; */
  /* background-color: var(--lighter-bg); */
  position: absolute;
  bottom: 0px;
  /* z-index: 20; */
  width: 100%;
}

.object .progress-bar {
  width: 100%;
  height: 4px;
  /* background-color: #eaeaea47; */
  margin: 0 auto;

  /* padding: 1px; */
}

.object .progress-bar .progress-filled {
  width: 100%;
  height: 100%;
  background-color: var(--dark-orange);
  box-shadow: 1px -1px 5px rgba(0, 0, 0, 0.9);
  /* background-color: #e10707; */
}

/* .object .thumb img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
} */

.object .play-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
  height: 35%;
  /* visibility: hidden; */
  opacity: 0.5;
  -webkit-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  -webkit-user-select: none;
  user-select: none;
}

.object:hover .play-icon {
  /* visibility: visible; */
  opacity: 0.6;
}

.object .play-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

.object .loading-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  height: 42%;
  /* visibility: hidden; */
  opacity: 0.5;
  -webkit-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  background: transparent;
  display: none;
  -webkit-user-select: none;
  user-select: none;
}

.object .loading-icon object {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  background: transparent;

  /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
  /* filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3)); */
}

.object .sound-icon {
  display: inline-block;
  position: absolute;
  right: 8px;
  bottom: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  box-sizing: border-box;
  /* visibility: hidden; */
  opacity: 0.93;
  -webkit-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  z-index: 100;
  display: none;
  -webkit-user-select: none;
  user-select: none;
  /* background: var(--dark-grey2); */
  background: var(--dark-orange);
  border-radius: 50%;
  z-index: 140;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.9));
}

.object .sound-icon svg {
  width: 100%;
  height: 100%;
  /* fill: #ffffff; */
  fill: var(--dark-grey2);
  background: transparent;
}

.object .sound-icon:hover {
  opacity: 1;
  padding: 9px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 1));
}

.object .thumb-icon {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 12%;
  height: 12%;
}

.object .thumb-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

.object .premium-icon {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8%;
  height: 8%;
}

.object .premium-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--dark-orange);
  /* fill: #ffffff;	 */
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.7));
}

.object-await .thumb img {
  filter: grayscale(90%) opacity(90%);
}

.object .await-icon {
  display: inline-block;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);

  /* background-color: #ffcc00; */
  background-color: var(--light-orange);
  color: #333;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 10px;
  white-space: nowrap;
  text-transform: uppercase;
}

.object .info {
  /* opacity: 0;
  visibility: hidden; */
  /* position: absolute; */
  width: 100%;
  box-sizing: border-box;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  white-space: wrap;
  z-index: 2;
  padding: 0px 2px 2px 2px;
}

/* .object .with-info {
  opacity: 100;
  height: fit-content;
  visibility: visible !important;
  overflow: visible;
  z-index: 40 !important;
} */

.object .info .title-container {
  display: flex;
  min-height: 20px;
  /* padding-left: 5px; */
  /* align-items: top; */
  justify-content: center;
}

.object .info .title-container .icon {
  width: 35px;
  height: 35px;
  display: flex;
  /* align-items: top; */
  justify-content: center;
}

.object .info .title-container .icon svg {
  /*padding:10px;*/
  height: 30px;
  width: 30px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.768));
  fill: #ffffff;
}

.object .info .title {
  width: 100%;
  /* margin-left: 10px; */
  padding: 5px 2px 5px 2px;
  -webkit-user-select: none;
  user-select: none;
}

.object .info .title h2 {
  /* Zoom only */
  /* font-size: 0.8rem; */
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  -webkit-user-select: none;
  user-select: none;
}

/* .object:hover .info .title-container .icon svg {
    fill: #ffc400;
} */

/*.object .info .title-container:hover .icon svg{
	fill:#FFC400;
}*/

.object:hover .info .title-container h2 {
  color: #ffffff;
}

.object .info .title a:hover {
  /* text-decoration: none; */
}

.object .info .channel-info {
  display: flex;
  gap: 15px;
  justify-content: left;
  padding-left: 2px;
  margin: 1px 0px 1px 0px;
  /* height:15px; */
  overflow: hidden;
}

.object .info .channel-info .icon-label {
  display: flex;
  gap: 3px;
  align-items: center;
}

.object .info .channel .icon-label {
  gap: 5px;
}

.object .info .channel-info .icon {
  width: 5px;
  height: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 
.object .info .channel-info .channel-icon {
  width: 10px;
  height: 10px;
} */

.object .info .channel-info .icon svg {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.768));
  fill: #b8b8b8;
}

.object .info .channel-info .channel-icon {
  width: 40px;
  height: 40px;
}

.object .info .channel-info .channel-icon svg {
  height: 30px;
  width: 30px;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.768));
  fill: #ffffff;
}

.object .info .channel-info .label a {
  /* font-size: 0.5rem; ZOOM */
  font-size: 0.8rem;
  font-weight: normal;
  color: #aaa;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.object .info .channel .label a:hover {
  text-decoration: none;
  color: #ffffff;
}

.object .info .channel .label a {
  /* font-size: 0.8rem; ZOOM*/
  font-size: 0.9rem;
}

.object .info .object-buttons {
  display: flex;
  gap: 10px;
  justify-content: left;
  /* margin-top:10px; */
  z-index: 100;
  /* height:18px; */
  overflow: hidden;
  float: right;
  padding-bottom: 1px;
}

.object .info .object-buttons .icon {
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.object .info .object-buttons .icon svg {
  fill: #b8b8b8;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.768));
  opacity: 0.7;
}

.object .info .object-buttons .icon:hover svg {
  fill: #ffffff;
}

.object .info .object-buttons .selected svg {
  fill: var(--dark-orange);
  opacity: 1;
}

.object .info .object-buttons .selected:hover svg {
  fill: var(--dark-orange);
  opacity: 1;
}

.object .info .object-buttons .icon:active svg {
  fill: var(--dark-orange);
  opacity: 1;
  transform: scale(0.9);
}

.object .info .descr {
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.4;
  /*letter-spacing: 0.8px;*/
  color: #d2d2d2;
  margin-top: 10px;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in-out;
  -moz-transition: opacity 400ms ease-in-out;
  transition: opacity 400ms ease-in-out;
  text-wrap: wrap;
  overflow: hidden;
  clear: both;
}

.object .info .show-descr {
  display: block !important;
  opacity: 1 !important;
}

.slider-container:hover {
  z-index: 50 !important;
}

.preview-player {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  transform: scale(1.01);
  z-index: 120;
}

.object .info .special-descr {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.4;
  /*letter-spacing: 0.8px;*/
  color: #d2d2d2;
  margin-top: 10px;
  padding: 0px 10px 10px 1px;
}

/*########################################## OBJECT_PAGE ##############################################*/

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
  z-index: 1999;
}

.videoContainer {
  /* padding-top:100px; */
  max-width: 1280px;
  /* width: calc(70vw - 160px); */
  /* padding-bottom:56.25%; */
  margin-top: 55px;
  /* height: 100%; */
  width: 100%;
  position: relative;
  /* border: 1px solid var(--dark-orange); */
  border: 1px solid rgba(104, 104, 104, 0.635);
}

.videoContainer video {
  /* max-width: 100%;
  max-height: 100%; */
  height: 100%;
  width: 100%;
  /* padding-bottom:56.25%; */
}

.video-overlays {
  transition: opacity 1.6s ease-in-out;
}

.videoContainer .vignete-overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.9) 100%);
}

.videoContainer .video-ended {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.9) 100%); */
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.95) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  transition: opacity 0.8s ease-in-out;
  display: none;
  opacity: 0;
  z-index: 1200;
}

.endscreen-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}

.endscreen-logo .icon {
  width: 220px;
  transition: transform 0.3s ease-in-out;
}

.endscreen-logo .icon:hover {
  transform: scale(1.2);
}

.endscreen-logo .icon svg {
  max-width: 100%;
}

.video-ended .txt-next-video {
  font-size: 1.2rem;
}
.video-ended .object-next-video {
  max-width: 400px;
}

.video-ended .title-next-video h2 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  -webkit-user-select: none;
  user-select: none;
}

.endscreen-next-video .responsive-thumb {
  /* max-width: 30%;  */
  /* height: auto; */
  border: 1px solid rgba(104, 104, 104, 0.835);
  box-sizing: border-box;
}

.endscreen-next-video:hover .responsive-thumb {
  border: 1px solid var(--dark-orange);
  box-sizing: border-box;
}

.skip-texts {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  font-size: 1rem;
  color: #cecece;
  width: 100%;
  opacity: 0.9;
}

.skip-texts .skipback {
  position: absolute;
  left: calc(15%);
  display: none;
}

.skip-texts .skipforward {
  position: absolute;
  right: calc(15%);
  display: none;
}

.play-pause-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateY(-50%);
  transform: translateX(-50%);
  font-size: 1rem;
  color: #cecece;
  /* width:50px; */

  display: flex;
  align-items: center;
  justify-content: center;
}

.play-pause-btn div {
  width: 120px;
  height: 120px;
  cursor: pointer;
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.3));
  opacity: 0.6;
}

.play-pause-btn div:hover {
  opacity: 0.8;
}

.play-pause-btn svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.play-pause-btn .pause-btn {
  display: none;
}

/* ################ */

.video-title-below {
  /* padding:30px; */
  /* max-width: 1600px; */
  margin: 0 auto;
  /* height: 100%; */
  /* padding: 10px 0px 20px 0px; */
  display: grid;
  grid-template-columns: 1fr auto;
  /* gap: 20px; */
  align-items: start;
}

.padding-lr-video-page {
  padding: 0px 120px;
}

.title-info-wrapper {
  /* max-width: 70%; */
  max-width: 100%;
  padding-top: 5px;
}

.video-title-below .title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: left;
}

.video-title-below h1 {
  font-size: 1.2rem;
  /* text-shadow: 1px 1px 2px var(--black-transparent);	 */
  font-weight: 500;
}

.video-title-below .channel-info {
  /* display:flex; */
  /* grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); */
  /* gap:20px; */
  /* justify-content: left; */
  /* padding-left:5px; */
  /* margin:10px 0px 10px 0px; */
  /* height:15px; */
  font-size: 1.2rem;
  overflow: hidden;
  margin: 0px 0px 30px 0px;
}

.video-title-below .channel-info .info-row {
  display: flex;
  width: fit-content;
  text-wrap: nowrap;
  /* margin: 10px 0px 0px 0px; */
  gap: 20px;
}

.channel-info .icon-label {
  display: flex;
  gap: 10px;
  align-items: center;
  /* margin-right:20px;	 */
}

.channel-info .icon {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-info .channel-icon {
  width: 20px;
  height: 20px;
}

.video-title-below .channel {
  /* padding: 10px 0px; */
}

.video-title-below .channel .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-info .icon svg {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.768));
  fill: #b8b8b8;
  width: 100%;
  height: 100%;
}

.channel-info .label a {
  font-size: 0.9rem;
  font-weight: normal;
  color: #b8b8b8;
  display: flex;
  align-items: center;
}

.channel .label a {
  font-size: 1.2rem;
  color: #e1e1e1;
}

.video-title-below .object-buttons {
  display: flex;
  gap: 10px;
  justify-content: left;
  /* margin-top:10px; */
  z-index: 100;
  height: 36px;
  overflow: hidden;
}

.video-title-below .object-buttons .icon {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-title-below .object-buttons .icon svg {
  fill: #b8b8b8;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.768));
  opacity: 0.7;
  /* width: 25px;
	height: 25px; */
}

.video-title-below .object-buttons .icon:hover svg {
  fill: #ffffff;
}

.video-title-below .object-buttons .selected svg {
  fill: var(--dark-orange);
  opacity: 1;
}

.video-title-below .object-buttons .selected:hover svg {
  fill: var(--dark-orange);
  opacity: 1;
}

.video-title-below .object-buttons .icon:active svg {
  fill: var(--dark-orange);
  opacity: 1;
  transform: scale(0.9);
}

.public-video-poster-preview .public-video-overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.must-login-under-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.must-login-container {
  /* display: flex; */
  /* align-items: center; */

  /* margin:15px 0px 30px 0px; */
  /* width: 320px; */
  /* height: 10%; */
  /* text-align: left; */
  background: rgba(73, 73, 73, 0.8);
  /* border: 1px solid var(--main-orange); */
  border-bottom: 2px solid rgba(200, 200, 200, 0.6);
  padding: 15px 15px 30px 15px;
  margin: 15px 0px 15px 0px;
  box-sizing: border-box;
  /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9); */
  /* z-index: 999; */
  max-width: 500px;
}

.related-objects {
  margin-bottom: 45px;
}
.related-objects .channel-withslider {
  margin-top: 0px;
}

/* ################### OBJECT_END  ###################*/

/* ################### COLLECTIONS  ###################*/

.page-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.collections {
  /* padding:0px 50px; */
  padding-top: 100px;
}
.collection-cover {
  width: 100%;
  /* height: 33.33vh;  */
  position: relative;
  overflow: hidden;
  margin-bottom: 150px;
}

/* Styles for the centered background image */
.collection-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

/* Styles for the content within the div */
.collection-content {
  padding: 100px;
  text-align: left;
  /* color: #fff; */
  position: relative;
  z-index: 2; /* Place content above the background */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.collection-content .title {
  font-size: 2rem;
}

.collection-content .description {
  font-size: 1.1rem;
}

.collection-content .collection-explore {
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
  margin-top: 18px;
  text-transform: uppercase;
}

/* ################### COLLECTIONS_END  ###################*/

/* ################### PROFILE  ###################*/

.profile-info {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 20px;
}
.profile-info .profile-title {
  border-bottom: 1px solid var(--dark-grey);
  width: 100%;
  font-size: 1.1rem;
  margin-top: 20px;
}

.profile-info .profile-data {
  padding: 10px 30px;
}

.profile-info .profile-data .label {
  margin-top: 20px;
  /* color:var(--dark-grey); */
  font-weight: bold;
}

.profile-info .profile-data .field {
  font-size: 0.9rem;
  margin-top: 5px;
  color: var(--dark-grey);
}

.profile-info .profile-data .text-link {
  float: right;
  margin-top: 30px;
  color: var(--dark-orange);
}

.profile-info .profile-data .text-link a {
  color: var(--dark-orange);
}

.profile-info .profile-data .text-info {
  float: right;
  margin-top: 30px;
  color: var(--dark-grey);
}

/* ################### PROFILE END  ###################*/

/* ################### FOOTER  ###################*/

.footer {
  padding-bottom: 20px;
}

.footer .footer-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /* justify-content: left; */
  align-items: baseline;
  box-sizing: border-box;
  border-bottom: 2px solid #cecece;
  width: 100%;
  padding: 10px 20px;
}

.footer .footer-logo {
  height: 60px;
  width: 170px;
  transform: translateY(10px);
}

.footer .footer-logo svg {
  width: 100%;
  height: 100%;
}

.footer .footer-menu {
  /* width:100%; */
  flex-grow: 1;
  display: flex;
  gap: 20px;
  font-size: 1rem;
  text-wrap: nowrap !important;
  flex-wrap: wrap;
}

.footer .footer-social {
  /* width:100%; */
  display: flex;
  gap: 20px;
  /* flex-direction: row-reverse; */
  justify-content: right;
}

.footer .footer-social .social-icon {
  width: 30px;
  height: 30px;
}

.footer .footer-social .social-icon svg {
  width: 100%;
  height: 100%;
  fill: #b8b8b8;
}

.footer .footer-social .social-icon:hover svg {
  fill: #e6e6e6;
}

.footer .footer-row2 {
  text-align: right;
  font-size: 0.8rem;
  padding-top: 2px;
}

/* ################### FOOTER END  ###################*/

#subscribe-popup {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);

  /* scale: 0.8; */
  background: rgba(32, 32, 32, 0.7);
  /* background: rgba(255, 255, 255, 0.8); Frosted glass effect background */

  /* opacity: 0.95; */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2001;
  border: 1px solid rgb(139, 121, 71);
  max-width: 500px;
  width: 85%;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  display: none;
}

.popup-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Darkened background */
  z-index: 1900;
  backdrop-filter: blur(2px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}

.icon-label {
  display: flex;
  gap: 3px;
  align-items: center;
}

.close-button {
  background: #e0e0e0;
  z-index: 2001;
  border: none;
  font-size: 25px;
  cursor: pointer;
  color: #888;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-button:hover {
  color: #333;
}

.popup-content {
  /* padding: 20px; */
}

.popup-content .white-elipse {
  background: rgba(255, 255, 255, 0.9); /* Frosted glass effect background */
  border-radius: 20px;
  padding: 0px 20px;
  margin-top: 20px;
  color: #333;
  border: 1px solid #333333;
}

.popup-content .label {
  /* font-weight: bold; */
  color: #424242;
}

.popup-content .channel .icon {
  width: 80px;
  height: 80px;
}

.popup-content .white-elipse .info-row {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px dotted #898989;
  width: 100%;
  text-wrap: pretty;
}

.popup-content .white-elipse .price-info {
  font-size: 16px;
  /* font-weight: bold; */
  padding: 10px 0px 0px 0px;
  width: 100%;
  text-align: center;
  color: #424242;
}

.popup-content .white-elipse .price-info .price {
  font-weight: bold;
}

.faq {
  margin-top: 30px;
  padding: 10px 10px;
  border-top: 1px solid #e0e0e0;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px dotted #a7a7a7;
  padding-bottom: 10px;
}

.faq-title {
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 5px;
  transition: color 0.3s;
  color: #d2d2d2;
}

.faq-title:hover {
  color: #fafafa;
}

.faq-description {
  display: none;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #9a9a9a;
  line-height: 1.5;
}

.faq-item.open .faq-description {
  display: block;
  /* color:#fafafa */
}

.faq-item.open .faq-title {
  color: #fdfdfd;
}

.popup-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 2px;
}

.popup-actions .button-with-icon .icon {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}

/*########################################## MEDIA QUERIES ##########################################*/
/*########################################## MEDIA QUERIES ##########################################*/
/*########################################## MEDIA QUERIES ##########################################*/

@media screen and (min-width: 1601px) {
  .object {
    flex: 0 0 calc(22% - 20px) !important;
  }
  .home-content-push-up {
    transform: translateY(-150px);
  }
}

@media screen and (max-width: 1600px) {
  .videoContainer {
    max-width: 800px;
  }

  /* .video-title-below {
    max-width: 1000px;
  } */

  .padding-lr-video-page {
    padding: 0px 10px;
  }
}

@media screen and (min-width: 1281px) {
  .slider {
    gap: 20px;
  }
  .object {
    flex: 0 0 calc(25% - 20px);
  }
  .home-content-push-up {
    transform: translateY(-50px);
  }

  /* ZOOM */
  /* .show-info { 
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    z-index: 40 !important;
    overflow: visible;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.9));
  } 

  .show-info .info {
    z-index: 50 !important;
    pointer-events: auto !important;
    background: var(--lighter-bg);
  }
  .show-info .thumb {
    z-index: 51 !important;
  }
    */
}

@media screen and (max-width: 1280px) {
  .home-hero-message .home-title {
    font-size: 3rem;
  }

  .home-hero-message .home-subtitle {
    font-size: 1.2rem;
  }

  .hero-title {
    max-width: 40%;
  }

  .hero-title .hero-buttons .orange-button {
    padding: 10px 20px;
    /* margin-left: 20px !important; */
    /* margin-top: 2px !important; */
  }

  #header .header-grid {
    grid-template-columns: 160px auto 150px;
  }

  #header .header-right .topright-menu {
    gap: 10px;
  }

  #header .header-right .menu-item .label {
    display: none;
  }

  #header .logo-link {
    align-items: flex-start;
  }

  #header .logo-link .logo {
    padding-top: 5px;
    width: 200px;
    height: 50px;
  }

  #header .logo-link .logo svg {
    width: 100%;
    height: 100%;
  }

  .header-center .header-center-inner {
    display: none;
  }

  .object {
    flex: 0 0 calc(32% - 10px);
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.9));
  }

  .object .play-icon {
    display: none;
  }

  .object .play-preview {
    display: block;
    opacity: 0.9;
  }

  .object .info {
    visibility: visible;
    opacity: 100;
    position: relative;
    /* padding: 10px 10px 10px 10px; */
  }
  .object .info .channel-info .label a {
    font-size: 0.8rem;
  }
  .object .info .channel .label a {
    font-size: 1rem;
  }

  .object .info .descr {
    display: none;
  }
  .related-objects {
    margin-bottom: 20px;
  }

  .channel-withslider {
    margin-top: 20px;
  }

  .related-objects .channel-withslider {
    margin-top: 0px;
  }
  .hero-container .vignete {
    background: radial-gradient(
      ellipse at 50% 50%,
      rgba(0, 0, 0, 0.3) 50%,
      var(--main-bg) 90%
    );
  }

  .play-pause-btn {
    position: absolute;
    top: 30%;
    left: 50%;
  }

  .play-pause-btn div {
    width: 90px;
    height: 90px;
  }

  .video-title-below h1 {
    font-size: 1rem;
  }

  .video-title-below .channel-info .label a {
    font-size: 0.8rem;
  }

  .video-title-below .channel .label a {
    font-size: 1rem;
  }

  .menu-bottom {
    display: flex;
  }

  .home-row-color {
    padding: 10px;
  }

  .home-slide {
    /* flex: 0 0 95%; */
    /* margin:0px 10px; */

    grid-template-columns: 1fr;
  }

  .footer {
    margin-bottom: 100px !important;
  }
}
@media (pointer: coarse) and (max-width: 1280px) {
  .slider {
    overflow-x: scroll;
  }

  .hero-container .vignete {
    background: radial-gradient(
      ellipse at 50% 50%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.4) 70%
    );
  }
  .slider-controls {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  /* .object {
        flex: 0 0 calc(30% - 10px);
        max-width: 720px;
    } */

  .slider-controls {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .object {
    flex: 0 0 calc(45% - 10px);
  }
}

@media screen and (max-width: 768px) {
  body {
    background-image: linear-gradient(
      to right,
      rgb(0, 0, 4, 0.97) 10%,
      rgba(14, 14, 14, 0.9) 30%,
      rgba(14, 14, 14, 0.87) 50%,
      rgba(14, 14, 14, 0.9) 70%,
      rgba(0, 0, 4, 0.97) 90%
    );
  }
  #header {
    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 4),
      rgba(14, 14, 14, 0.6) 20%,
      rgba(14, 14, 14, 0.3) 70%,
      transparent
    );
  }

  #header .logo-link .logo svg {
    width: 150px;
    height: 40px;
  }

  .hero-container {
    padding-top: 100%; /* 1:1 aspect ratio */
  }

  .hero-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hero-vignete {
    padding-top: 100%; /* Match the container */
  }

  .hero-title {
    bottom: 10%;
    left: 5%;
    max-width: 80%;
  }

  .home-hero-message {
    margin: 50px 20px;
  }

  .home-hero-message .home-logo {
    width: 250px;
    height: 68px;
  }

  .home-hero-message .home-title {
    font-size: 2.8rem;
    line-height: 1.8;
  }

  .home-hero-message .home-subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    margin: 30px 0px;
    line-height: 1.4;
  }

  .hero-title .hero-buttons .orange-button {
    padding: 5px 15px;
    margin-left: 5px !important;
    /* margin-top: 2px !important; */
  }

  .orange-button-small {
    padding: 5px 15px;
    font-weight: 500;
  }

  .channel-title h4 {
    font-size: 1rem;
  }

  .home-content-push-up {
    transform: translateY(0);
  }
  .padding-lr {
    padding: 0px 10px;
  }

  .content-list {
    padding: 60px 5px;
  }

  .content-under-video {
    padding: 0px 5px;
  }

  .channel-withslider {
    margin-top: 40px;
  }

  .slider-controls {
    display: none;
  }

  .object {
    flex: 0 0 calc(80% - 10px);
    /* margin-right: 5px; */
    max-width: 720px;
  }
  .object .info .title h2 {
    font-size: 1rem;
  }

  .object .info .object-buttons .icon {
    height: 25px;
    width: 25px;
  }

  .play-pause-btn div {
    width: 70px;
    height: 70px;
  }

  .endscreen-logo .icon {
    width: 120px;
  }

  .video-ended .txt-next-video {
    font-size: 1rem;
  }

  .video-ended .object-next-video {
    max-width: 240px;
  }

  .video-ended .title-next-video h2 {
    font-size: 0.9rem;
  }

  .video-title-below {
    grid-template-columns: 1fr;
  }

  .channel-season-button-wrapper {
    grid-template-columns: 1fr;
  }

  .channel-subscribe {
    /* width:100%; */
    order: -1;
  }

  .channel-subscribe .orange-button {
    width: 100%;
    /* margin:10px; */
    justify-content: center;
    /* margin:0px 5px; */
  }
}

@media screen and (max-width: 480px) {
  /* .object {
        flex: 0 0 90%;
    } */
  .object {
    flex: 0 0 calc(93% - 10px);
    /* margin-right: 5px; */
  }

  .endscreen-logo .icon {
    width: 70px;
  }

  .video-ended .object-next-video {
    max-width: 180px;
  }

  .video-ended .title-next-video h2 {
    font-size: 0.9rem;
  }
}

.visible {
  display: block !important;
}
