/* setting the color palette */
html {
    --dark-gray: rgb(90, 90, 90);
    --light-gray: rgb(148, 148, 148);
    --focus-blue: rgb(69, 159, 189);
  }
  
  .searchbox {
    --target-size: 48px; /* https://web.dev/accessible-tap-targets/ */
    --box-height: var(--target-size);
    --border-radius: calc(var(--box-height) / 2);
    --border-width: 2px;
    --icon-size: calc(var(--box-height) * 3/4 );
    --side-margin: calc(var(--border-radius) / 2);
    --icon-vertical-margin: calc( ( var(--box-height) - var(--icon-size) ) / 2 );
  }
/* 
  #root{
    font-family: Inter,Avenir,Helvetica,Arial,sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    --black: #04152d;
    --black2: #041226;
    --black3: #020c1b;
    --black-lighter: #1c4b91;
    --black-light: #173d77;
    --pink: #da2f68;
    --orange: #f89e00;
    --gradient: linear-gradient(98.37deg, #f89e00 .99%, #da2f68 100%);
  } */
  .related-img img{
    height: 150px !important;
    border-radius: 20px;
  }

  .outer{
    height: 100%;
    background: rgb(51,45,253);
    background: linear-gradient(0deg, rgba(51,45,253,1) 0%, rgba(0,15,15,1) 100%);
  }
  
   .item-video img{
    max-height: 250px;
    /* height: 230px !important;  */
    object-fit: fill;
    border-radius: 25px;
   }
  /* shaping the box */
  .searchbox {
    height: var(--box-height);
    max-width: 561px; /* to follow the search box of google.com */
  }
  .searchbox input[type="search"] {
    border: var(--border-width) solid var(--dark-gray);
    border-radius: var(--border-radius);
    height: 100%;
    width: 100%;
  }
  
  /* Styling each component */
  .searchbox svg {
    fill: var(--dark-gray);
    height: var(--icon-size);
    width: var(--icon-size);
  }
  .searchbox input[type="search"] {
    -webkit-appearance: none; /* to prevent Safari from ignoring font-size */
    color: var(--dark-gray); 
    font-family: 'Noto Sans', Verdana, sans-serif;
    font-size: 1rem;
  }
  .searchbox input[type="search"]::placeholder {
    color: var(--light-gray);
    opacity: 1; /* to override the default of Firefox */
  }
  
   /* positioning inner elements */
  .searchbox {
    position: relative;
  }
  .searchbox svg {
    position: absolute;
    left: var(--side-margin);
    top: var(--icon-vertical-margin);
    bottom: var(--icon-vertical-margin);
  }
  .searchbox input[type="search"] {
    padding-left: calc( var(--side-margin) + var(--icon-size) + 4px);
    padding-right: var(--side-margin);
  }
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; /* Remove the left padding inside the box for Safari; see https://github.com/filipelinhares/ress/blob/master/ress.css */
  }
  
  
  /* Ensuring that tapping the icon focuses the search box */
  .searchbox svg {
    z-index: 1;
  }
  .searchbox input[type="search"] {
    background: transparent;
  }
  
  /* Styling focus state */
  .searchbox input[type="search"]:focus {
    border-color: var(--focus-blue);
    box-shadow: 0px 0px 5px var(--focus-blue);
    outline: 1px solid transparent; /* fallback for forced color modes; see https://www.sarasoueidan.com/blog/focus-indicators/#tips-for-styling-focus-indicators */
    /* it also removes the default focus ring imposed by browsers */
  }
  
  /* Custom-style the delete button that appears once the user enters text (Chrome and Safari only); see https://css-tricks.com/webkit-html5-search-inputs/#aa-styling-search-graphical-widgets */
  .searchbox input[type="search"]::-webkit-search-cancel-button {
    /* Remove default */
    -webkit-appearance: none;
    /* Now your own custom styles */
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgb(148, 148, 148)' %3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z' /%3E%3C/svg%3E%0A");
    height: calc(var(--box-height) / 2);
    width: calc(var(--box-height) / 2);
  }
  
  input[type="search"] {
    -webkit-tap-highlight-color: transparent; /* Otherwise, tapping will show a flash of grey background on iOS Safari; see https://twitter.com/masa_kudamatsu/status/1429387005658468356 */
  }
  
  
  /* Positioning the search box */
  body .searchbox {
    width: 90%;
    margin: 0 auto;
    top: 15px;
  }
  

  /* tab styling */
  /* .banner-img-box{
    max-width: 1240px !important;
    justify-content: center;
    justify-items: center;
  } */

  .movie-wrapper{
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAwMCAxMzMzIiB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIxMzMzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGJ2LWlkZW50aWZlcj0iMiIgYnYtYmctc3R5bGU9IiIgYnYtcmVzaXplZC1pbmZvcz0iIj48L3N2Zz4=);
    height: auto;
  }
  
  /* .banner-img{
    width: 1200Px;
    height: 60%;
  }
  .banner-img img{
    width: 100%;
    height: 60vh;
  } */

  .imdb-logo img{
    width: 60px !important;
    height: 60px !important;
  }


  /* ********************************sWIPER Start *************************************************/

  .swiper {
    width: 80%;
    height: 100%;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent , #0002 , #0004);
  }

  /* .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  } */
  /* ********************************sWIPER End *************************************************/
  @media only screen and (max-width: 760px) {
    carousal-img{
      height: 120px;
      align-items: center;
      justify-content: center;
    }
    .carousal-img img{
      height: 100px;
      width: 100%;
    }
  }

  /* ***************Rating */

  .comments-rating {
    border: none;
    padding: 0;
    margin-left: 0;
  }
  
  .comments-rating label {
    display: inline-block;
  }
  
  .rating-container {
    font-size: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  
  .rating-container * {
    font-size: 1.4rem;
  }
  
  .rating-container > input {
    display: none;
  }
  
  .rating-container > input + label {
    /* only enough room for the star */
    font-family: 'dashicons';
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 1em;
    white-space: nowrap;
    cursor: pointer;
    margin: 0;
  }
  
  .rating-container > input + label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "\f154";
    color: #888;
  }
  
  .rating-container > input:checked ~ label:before,
  .rating-container > input + label:hover ~ label:before,
  .rating-container > input + label:hover:before {
    content: "\f155";
    color: #e52;
    text-shadow: 0 0 1px #333;
  }
  
  .rating-container > .star-cb-clear + label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -.5em;
  }
  
  .rating-container > .star-cb-clear + label:before {
    width: .5em;
  }
  
  .rating-container:hover > input + label:before {
    content: "\f154";
    color: #888;
    text-shadow: none;
  }
  
  .rating-container:hover > input + label:hover ~ label:before,
  .rating-container:hover > input + label:hover:before {
    content: "\f155";
    color: #e52;
    text-shadow: 0 0 1px #333;
  }
  
  .comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
    text-indent: 9999px;
  }
  
  .comment-respond .rating-container > input + label {
    text-indent: -9999px;
  }

  /* ************ accordian ++++++++++ */

  
/* .accordion-container {
  width: 95%;
  max-width: 600px;
} */

.accordion-item {
  background-color: #FFFFFF; /* White background for items */
  border: 1px solid #E0E0E0; /* Light border */
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Softer shadow */
}

.accordion-header {
  background-color: #6C63FF; /* Soft purple */
  color: #FFFFFF; /* White text */
  padding: 15px;
  font-size: 18px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
  transition: background-color 0.3s ease;
}

.accordion-header h2{
  color: #FFFFFF; /* White text */
}
.accordion-header:hover {
  background-color: #5753C9; /* Darker shade of purple */
  font-size: 18px;
}

.accordion-content {
  background-color: #FAFAFA; /* Very light grey for content */
  overflow: hidden;
  padding: 0 15px;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
}

.icon {
  transition: transform 0.3s ease;
}

.active .icon {
  transform: rotate(45deg);
}

#loading-spinner {
  text-align: center;
  margin-top: 20px;
}

#loading-spinner img {
  width: 40px; /* Adjust the size as needed */
  height: 40px;
}


/* SHARING */

#custom-share-popup {
  position: relative;
}

#share-button {
  background-color: #0073e5;
  color: #fff;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
}

#share-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #3305bc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  z-index: 999;
}

#share-options.show {
  display: block;
}

#share-options a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #faf5f5;
}

#share-options a:hover {
  background-color: #830606;
}

.full-text {
  display: none;
}


.video iframe{
  width: 100%;
  height: calc(100vw/3.30);
}
/* 
@media  only screen and  (min-width: 641px){
  .video iframe{
    width: 100%;
    height: calc(100vw/2.40);
  }
}

@media only screen and (max-width: 481px){
  .video iframe{
    width: 100%;
    height: calc(100vw/1.70);
  }
}


@media  only screen and  (min-width: 321px){
  .video iframe{
    width: 100%;
    height: calc(100vw/1.40);
  }
}  */

.thumb-img{
  width: 180px;
  height: 100px;
}
.side-content img{
  width: 100%;
  height: 100px;
  object-fit: fill;
}