/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Roboto:wght@400;500&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(207, 65%, 65%);
  --title-color: hsl(207, 4%, 16%);
  --text-color: hsl(200, 5%, 87%);
  --text-color-light: hsl(207, 4%, 56%);
  --body-color: #1e1e2a;
  --container-color: #2b2b3e;

  --Moderate-blue: hsl(238, 40%, 52%);
  --Soft-Red: hsl(358, 79%, 66%);
  --Light-grayish-blue: hsl(239, 57%, 85%);
  --Pale-red: hsl(357, 100%, 86%);

  --Dark-blue: hsl(212, 24%, 26%);
  --Grayish-Blue: hsl(211, 10%, 45%);
  --Light-gray: hsl(223, 19%, 93%);
  --Very-light-gray: hsl(228, 33%, 97%);
  --White: hsl(0, 0%, 100%);

  /* Change the first number */
  /* Blue: 207 - Purple: 250 - Pink: 356 - Teal: 174 */
  --gradient-color: linear-gradient(
    180deg,
    hsla(207, 48%, 72%, 0),
    hsla(207, 65%, 65%, 1)
  );
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Roboto", sans-serif;
  --title-font: "Lora", serif;
  --biggest-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.625rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* @font-face {
  font-family: "Iranian Sans";
  font-style: normal;
  font-weight: normal;
  src: url("../font/IRANSans-web.eot");
  src: url("../font/IRANSans-web.eot?#iefix") format("embedded-opentype"),
    url("../font/IRANSans-web.woff2") format("woff2"),
    url("../font/IRANSans-web.woff") format("woff"),
    url("../font/IRANSans-web.ttf") format("truetype");
} */

@font-face {
  font-family: "Iranian Sans";
  src: url("../font/IranianSans.ttf");
}
@font-face {
  font-family: "Segoe Print";
  src: url("../font/segoepr.ttf");
}
@font-face {
  font-family: "Century Gothic";
  src: url("../font/CENTURY_GOTHIC.TTF");
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --tiny-font-size: 0.688rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background 0.4s;
  /* for dark mode animation */
}
h1,
h2,
h3 {
  font-family: var(--title-font);
  font-weight: var(--font-medium);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
/* img {
     max-width: 100%;
     height: auto;
}
 */
/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --title-color: hsl(207, 4%, 95%);
  --text-color: hsl(207, 4%, 65%);
  --body-color: hsl(207, 4%, 10%);
  --container-color: hsl(207, 4%, 12%);
}
/*========== Color changes in some parts of the website, in light theme ==========*/
/*=============== REUSABLE CSS CLASSES ===============*/
::selection {
  color: white;
  background: red;
}
.container {
  max-width: 1650px;
  margin: auto;
  width: 100%;
}
.container-list {
  display: flex;
  justify-content: center;
  /* gap: 5px; */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  z-index: var(--z-fixed);
  opacity: 0.97;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
/*=============== Logo ===============*/
.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  margin: 0 auto 0 0;
  font-family: "Segoe Print";
  margin-left: 15px;
}
.logo img {
  width: 2rem;
  margin-right: 10px;
}
.logo span {
  color: var(--text-color-light);
  font-size: 14px;
  margin-left: 2px;
}
/*=============== Search Box ===============*/
.search-box {
  position: relative;
  max-width: 340px;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 0.7rem;
  padding: 4px 10px;
  background-color: var(--container-color);
  border-radius: 4rem;
  margin-right: 1.2rem;
}
.search-box i {
  font-size: 1.1rem;
}
.search-box i:hover {
  color: var(--first-color);
  cursor: pointer;
}
#search-input {
  width: 100%;
  border: none;
  outline: none;
  color: var(--text-color);
  background: transparent;
  font-size: 0.938rem;
  padding: 5px 40px;
  border-radius: 20px;
  direction: ltr;
}
.search-box input::placeholder {
  text-align: center;
  color: #fff;
}
.search-box .ri-search-line {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 19px;
  cursor: pointer;
  color: #fff;
  transform: translateY(-50%);
}
.search-box .ri-settings-4-line {
  position: absolute;
  left: 20px;
  color: #f5f1f1;
  font-size: 22px;
  cursor: pointer;
}
.search-box .ri-settings-4-line:hover {
  color: red;
  rotate: 185deg;
  transition: 0.8s;
}
/*=============== Search Box ===============*/
.search-box .search {
  position: absolute;
  width: 100%;
  top: 45px;
  z-index: 99999;
  overflow-y: auto;
  display: none;
  background-color: #1e1e2a;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 340px;
}
.search-box .search a {
  background-color: rgba(1, 16, 31, 0.6);
}
.search-box .search a:hover {
  background-color: red;
}
.search-box .search::-webkit-scrollbar {
  width: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  visibility: hidden;
}
.search-box .search::-webkit-scrollbar-thumb {
  width: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  visibility: hidden;
}
.search-box .search:hover::-webkit-scrollbar {
  visibility: visible;
}
.search-box .search:hover:-webkit-scrollbar-thumb {
  visibility: visible;
}
.search .card-search {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 3px 0px;
  text-decoration: none;
}
.search .card-search::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 5px;
  z-index: -1;
}
.search .card-search img {
  width: 70px;
  height: 91%;
  border-radius: 2px;
  margin-left: 8px;

}
.search .card-search .cont {
  margin-left: 10px;
  color: #fff;
  width: 75%;
}
.search .card-search .cont h3 {
  font-size: 15px;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 250px;
  color: #fff;
  font-family: "Century Gothic";
}
.search .card-search .cont h6 {
  direction: rtl;
  font-family: "Iranian Sans";
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
  margin-right: 10px;
}

.search .card-search .cont p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-family: "Century Gothic";
}
.search .card-search .cont span {
  border: 1px solid yellow;
  color: yellow;
  padding: 0px 3px;
  margin: 0px 5px 0px 10px;
  border-radius: 5px;
}

.loading {
  position: absolute;
  left: 50%;
  top: 97px;
  transform: translate(-50%, -50%);
  background-color: #2a2a39;
  width: 86%;
  text-align: center;
  display: none;
  background-image: linear-gradient(10deg, #1E1E2A,#1E1E2A, silver, #1E1E2A,#1E1E2A);
  background-size: 400% 400%;
  animation: GradientBackground 3s ease infinite;
  direction: rtl;
  padding: 40px;
}

.hidden {
  display: none;
}

/*=============== User ===============*/
.user {
  display: flex;
}
.menu-user {
  position: fixed;
  top: 0;
  right: -160%;
  /* width: 20%; */
  width: 350px;
  height: 100%;
  background-color: var(--body-color);
  /* رنگ پس زمینه منو */
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.5s ease-in-out;
  /* انیمیشن حرکت */
  z-index: 1000;
  top: 70px;
  border: 1px solid var(--container-color);
}

.menu-user .logo {
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); */

  text-align: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  border-radius: 100%;
  height: 55px;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  border-bottom: 5px solid transparent; /* حاشیه اولیه شفاف است */
  animation: colorChange 60s infinite;
}
.menu-user .logo img {
  margin-right: 5px;
}

.menu-user .title-box-login {
  font-family: "Iranian Sans";
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 35px;
}

.menu-user .login {
  direction: rtl;
  margin-top: 55px;
  margin-bottom: 100px;
  overflow-y: auto;
}

.menu-user .login label {
  color: #fff;
  transform: scale(0.6);
  text-align: right !important;
  font-size: 25px;
  font-family: "Iranian Sans";
  float: inline-start;
  margin-bottom: 20px;
  padding-right: 15px;
  border-right: 5px solid transparent;
  animation: colorChange 60s infinite;
  margin-right: -20px;
}

.menu-user .inputBox-content-menu-user {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-left: 10%;
  padding-bottom: 10px;
  justify-content: center;
  display: flex;
}

.menu-user .inputBox-content-menu-user input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: var(--body-color);
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  direction: ltr;
  width: 90%;
  direction: ltr;
}

.menu-user .inputBox-content-menu-user span {
  position: absolute;
  padding: 10px;
  pointer-events: none;
  font-size: 0.8rem;
  color: rgb(253, 253, 253);
  text-transform: uppercase;
  transition: 0.5s;
  font-family: "Iranian Sans";
  right: 31px;
}
.menu-user .inputBox-content-menu-user input:valid ~ span,
.menu-user .inputBox-content-menu-user input:focus ~ span {
  color: rgb(255, 255, 255);
  transform: translateX(10px) translateY(-7px);
  font-size: 0.8rem;
  padding: 0 10px;
  background-color: var(--body-color);
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}
.menu-user .inputBox-content-menu-user input:valid,
.menu-user .inputBox-content-menu-user input:focus {
  border: 1px solid rgb(255, 255, 255);
}
.menu-user .active-input {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

.custom-login {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  width: 80%;
  margin-right: 10%;
  margin-top: 10px;
}
.custom-login:hover {
  background-color: #0056b3;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes custom-line-scale-pulse-out-rapid {
  from,
  90% {
    transform: scaleY(1);
  }
  80% {
    transform: scaleY(0.3);
  }
}

@keyframes custom-show-tick {
  to {
    stroke-dashoffset: 0;
  }
}

#error-message {
  color: red;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Iranian Sans";
  border-right: 1px solid rgb(240, 241, 248);
  margin-right: 10%;
  padding-right: 10px;
  font-size: 15px;
}
#error-message:hover {
  margin-right: 12%;
  transition: 0.5s;
}

.forgot-password {
  color: #999;
  text-align: center;
  font-family: "Iranian Sans";
  font-size: 15px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  cursor: pointer;
  border-top: 3px solid var(--body-color);
  border-bottom: 3px solid var(--body-color);
  transition: 0.5s;
}

.forgot-password:hover {
  color: #fff;
}

.middle-text {
  position: relative;
  width: 100%;
  margin: 30px 0;
  margin-top: 45px;
  margin-bottom: 45px;
}
.or-text {
  font-family: "Iranian Sans";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--body-color);

  padding: 10px;
}
hr {
  border: 1px solid var(--container-color);
}
.social-sign-in {
  display: flex;
  gap: 15px;
}

.social-sign-in {
  display: flex;
  gap: 15px;
}

.social-sign-in button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  border-top: 1px solid var(--container-color);
}
.input-google {
  width: 100%;
  height: 50px;
  padding: 0 30px;
  background: #1e1e2a;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.input-google img {
  width: 25px;
}
.social-sign-in button:hover {
  background-color: white;
  color: black;
  transition: 0.5s;
}
.input-google p {
  font-family: "Iranian Sans";
  font-size: 15px;
  width: 90%;
  font-weight: 600;
}

/* CSS */
.button-24 {
  background: #ff4742;
  border: 1px solid #ff4742;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-24:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: #ff4742;
}

.button-24:active {
  opacity: 0.5;
}

.menu-user.show {
  right: 0;
  top: 70px;
  overflow-y: auto;
}
.user-img {
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
  object-fit: cover;
  object-position: center;
  height: 40px;
}

.menu-user h3 {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.8rem;
  font-family: "Century Gothic";
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: none;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-radius: 1px 1px 30px 30px;
  /* border-top: 1px solid #3c3838; */
  /* box-shadow: 1px 5px 5px black; */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  margin-top: 15px;
}
.menu-user h3:hover {
  transition: 0.9s;
  border-radius: 30px 30px 30px 30px;
}
.menu-user h3 span {
  font-size: 0.8rem;
  color: #616060;
  font-weight: 490;
  font-family: "Iranian Sans";
}
.menu-user .day-time-menu-user {
  font-size: 0.8rem;
  color: #e4e4e4;
  font-weight: 330;
  font-family: "Iranian Sans";
}
.menu-user .day-time-menu-user:hover {
  font-size: 0.9rem;
  color: rgb(233, 233, 233);
  transition: 0.4s;
  border: none;
}
.menu-user ul li {
  list-style: none;
  padding: 12px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  direction: rtl;
  font-family: "Iranian Sans";
  margin-top: 15px;
}
.menu-user ul li span {
  color: #999;
}
.menu-user ul li i {
  max-width: 20px;
  margin-left: 10px;
  transition: 0.5s;
  font-size: 1.2rem;
  color: #999;
}
.menu-user ul li:hover i {
  color: #ffffff;
}
.menu-user li:hover {
  background-color: #fc0000;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  transition: 0.5s ease;
}
.menu-user ul li:hover i {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: 0.5s;
}
.menu-user ul li:hover span {
  color: #ffffff;
}
/* .menu-user ul li:hover a {
     color: rgb(14, 13, 13);
}
 */
/*=============== User button login===============*/
.user .btn-login {
  display: flex;
  border-radius: 4px;
  background-color: var(--body-color);
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  padding: 5px 20px;
  transition: all 0.4s;
  cursor: pointer;
  margin: 5px;
  font-family: "Iranian Sans";
  border: 0.5px solid #fff;
  box-shadow: inset 10px 10px 15px rgba(243, 241, 241, 0.12);
}
.user .btn-login i {
  font-size: 15px;
  margin-right: 15px;
}
.user .btn-login:hover {
  background-color: #098364;
  transition: 0.5s;
  border: none;
}
.user .btn-login span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.user .btn-login span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}
.user .btn-login:hover span {
  padding-right: 15px;
}
.user .btn-login:hover span:after {
  opacity: 1;
  right: 0;
}

/*=============== notification ===============*/

.dropdown-notification {
  position: relative;
  display: inline-block;
  direction: rtl;
  right: 4rem; /* حاشیه راست */
  top: 5px;
}

.dropdown-toggle {
  border: none;
  padding: 10px 6px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  position: relative;
}

.dropdown-toggle i {
  margin-right: 10px;
  font-size: 26px;
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 5px;
}

.badge {
  position: relative;
  background-color: #cc3333;
  border-radius: 100%;
  font-size: 1px;
  bottom: 10px;
  right: 10px;
  padding: 5px 5px;
}

.dropdown-content {
  position: fixed;
  right: -100%; /* از سمت راست خارج می‌شود */
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  /* display: none; */
  width: 350px;
  height: 100%;
  background-color: var(--body-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.5s ease-in-out;
  z-index: 1000;
  top: 70px;
  /* رنگ پس زمینه منو */
  padding: 20px;
  border: 1px solid var(--container-color);
}

.dropdown-content.show {
  right: 0; /* نمایش از سمت راست */
  display: block;
  top: 70px;
}

.timeline {
  padding: 10px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--body-color);
  direction: ltr;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border: 1px solid var(--container-color);
  margin-top: 10px;
  border-left: none;
  border-right: none;
  margin-bottom: 200px;
}

.notification {
  border-bottom: 1px solid var(--container-color);
  color: #ffffff;
  padding: 10px;
  display: flex;
}
.notification a {
  display: flex;
  color: #fff;
  width: 95%;
}

.notification:hover {
  border-bottom: 1px solid red;
  cursor: pointer;
  color: #f4f4f4;
  transition: 0.2s;
  margin: 1px;
}

.time {
  color: #aaa;
  font-size: 12px;
  font-family: "Iranian Sans";
  float: inline-end;
  margin-top: 15px;
}

.message {
  margin-top: 5px;
  font-family: "Iranian Sans";
  font-size: 0.8rem;
  line-height: 25px;
  direction: rtl;
  font-size: 13px;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

.message span[lang="en"] {
  font-family: "Century Gothic"; /* فونت برای متون انگلیسی */
}

.type-message {
  margin-top: 5px;
  font-family: "Iranian Sans";
  font-size: 0.8rem;
  line-height: 25px;
  direction: rtl;
  color: #aaa;
}

.name-news {
  direction: ltr;
  margin-left: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

.show-all-btn {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #3498db;
  font-family: "Iranian Sans";
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  background-color: #2c2c3f;
  margin-top: 20px;
  border-bottom: 1px solid var(--container-color);
}

.nall-news {
  font-family: "Iranian Sans";
  text-align: center;
  margin: 15px;
  font-size: medium;
  font-weight: bold;
}

.show-all-btn:hover {
  background-color: #2c3f31;
  color: #f4f4f4;
  text-decoration: none;
  transition: 0.2s;
}

.read-all-btn {
  display: block;
  text-align: center;
  margin-top: -5px;
  font-family: "Iranian Sans";
  font-size: 0.8rem;
  padding: 10px 0;
  color: #ffffff;
  text-decoration: none;
  background-color: #2c2c3f;
}

.read-all-btn:hover {
  background-color: #ff0000;
  color: #f4f4f4;
  text-decoration: none;
  transition: 0.2s;
}

.notification-icon {
  width: 75px;
  height: 100%;
  margin: auto;
  max-height: 125px;
}

.notification-details {
  flex: 1;
}

.timeline::-webkit-scrollbar {
  width: 5px;
  background: rgba(255, 0, 0, 0.3);
  border-radius: 5px;
  visibility: hidden;
}

.timeline::-webkit-scrollbar-thumb {
  width: 5px;
  background: rgba(255, 0, 0, 0.4);
  border-radius: 5px;
  visibility: hidden;
}

.timeline:hover::-webkit-scrollbar {
  visibility: visible;
}

.timeline:hover:-webkit-scrollbar-thumb {
  visibility: visible;
}

/* __________ */

#fullscreen-button {
  color: white;
  cursor: pointer;
  margin-right: 60px;
  font-size: 25px;
  color: #ffffff;
}
#fullscreen-button:hover {
  font-size: 30px;
  transition: 0.3s;
}
/*=============== Navbar ===============*/
.navbar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  font-family: "Iranian Sans";
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
}
.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #b7b7b7;
}
.nav-link:hover,
.nav-active {
  color: var(--text-color);
  transition: 0.3s all linear;
  transform: scale(1.1);
}
.nav-link i {
  font-size: 1.6rem;
}
.nav-link-title {
  font-size: 0.6rem;
  margin-top: 10px;
}
.main {
  overflow: hidden;
  /* For animation */
  min-height: 100vh;
}
section {
  padding: 3.2rem 0 0rem;
}
.popular-row {
  display: flex;
  height: 500px;
}
.popularone {
  margin-top: 1rem;
}
.popular-content {
  width: 95%;
  justify-content: center;
}

@media (min-width: 992px) {
  .navbar {
    display: none;
  }
}
/* Show menu */
/* Active link */
/*=============== HOME ===============*/
/*========= Heading =========*/
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border: 1px solid hsla(200 100% 99% 5%);
  border-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  /* box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.heading-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  font-family: "Iranian Sans";
  display: flex;
  align-items: center;
  justify-content: center;
}
/*========= swiper btn =========*/

.feed-filter-container {
  width: 95%;
  overflow-x: hidden;
  height: 75px;
  max-width: 1600px;
  margin: auto;
  direction: rtl;
}

.feed-filter-btn {
  padding: 5px 15px;
  font-size: 15px;
  /* border: 2px solid #414141; */
  color: white;
  background-color: transparent;
  cursor: pointer;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 5px;
  margin-left: 10px;
  font-family: "Iranian Sans";
  border-radius: 5px;
  background-color: var(--container-color);
}

.feed-filter-btn:hover {
  border: 2px solid #414141;
}

.feed-filter-btn:active {
  box-shadow: 0 0 10px rgba(9, 117, 241, 0.4);
}

.feed-filter-btn.active {
  background-color: #fff;
  color: #0d0d0d;
}

.swiper-slide {
  margin-top: 30px;
  width: auto;
  display: flex;
  justify-content: center;
}

.swiper-container {
  overflow: visible;
}

.custom-next-button,
.custom-prev-button {
  position: absolute !important;
  z-index: 1;
}

.custom-next-button {
  right: 100px;
  margin-bottom: 722px;
}

.custom-prev-button {
  left: 100px;
}

.custom-next-button::after,
.custom-prev-button::after {
  color: var(--text-color);
  font-size: 18px !important;
  font-weight: 700;
  margin-bottom: 780px;
}

.custom-next-button:hover::after,
.custom-prev-button:hover::after {
  background-color: #3f3f3f;
  padding: 5px 10px;
  border-radius: 50%;
}

.swiper-btn {
  display: flex;
}
.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  margin: 0 0 0 5px !important;
  margin-top: 0.5rem !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--text-color);
  font-size: 18px !important;
  font-weight: 700;
}
/*=============== button see more ===============*/
.btn {
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #414141;
  color: white;
  background-color: transparent;
  cursor: pointer;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 5px;
  margin-left: 10px;
  font-family: "Iranian Sans";
  border-radius: 10px;
}
.btn:hover {
  border-color: #eff2f7;
  box-shadow: 0 0 10px rgba(231, 231, 231, 0.8);
}
.btn:active {
  box-shadow: 0 0 10px rgba(9, 117, 241, 0.4);
}
/* Animation skills */
/*=============== card ===============*/

.card {
  position: relative;
  width: 246px;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 15px;
}
.card .poster {
  position: relative;
  overflow: hidden;
}
.card .poster::before {
  content: "";
  position: absolute;
  bottom: -300px;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #1e1e2a 50%, transparent);
  transition: 0.6s;
  z-index: 1;
}
.card:hover .poster::before {
  bottom: 0px;
}
.card .poster img {
  width: 246px;
  height: 389px;
  transition: 0.5s;
}
.card:hover .poster img {
  transform: translateY(-50px);
  filter: blur(5px);
}
.card .details {
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 2;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100%;
  /* flex-wrap: wrap; */
}
.card .details h5 {
  margin-left: 10px;
  color: rgb(189, 189, 189);
  font-size: 90%;
}
.card:hover {
  height: 430px;
  transition: 0.5s;
  box-shadow: none;
}
.card:hover .details {
  bottom: 350px;
  transition: 0.5s;
}
/*=============== card Movie title ===============*/
.card .movie-title {
  max-width: 100%;
  font-family: "Century Gothic";
  color: white;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 75%;
}

/*=============== card Ratte Imdb ===============*/
.ratte .imdb {
  position: relative;
  bottom: -80px;
  z-index: 2;
  display: flex;
  justify-content: center;
  /* background-color: rgb(224, 224, 8);
     */
  justify-content: center;
  align-items: center;
  width: 50%;
  font-family: "Century Gothic";
  font-size: 14px;
}

.card:hover .ratte .imdb {
  bottom: 298px;
  transition: 0.6s;
}
.ratte .imdb img {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ratte .imdb span {
  color: rgb(236, 231, 231);
  z-index: 3;
  font-weight: 700;
  margin-left: 9px;
}
/*=============== card Ratte Rotten ===============*/
.ratte .rotten {
  position: relative;
  bottom: -80px;
  z-index: 2;
  display: flex;
  width: 80%;
  font-family: "Century Gothic";
  font-size: 14px;
  left: 50%;
  /* background-color: rgb(245, 240, 240);
     */
  padding-top: 9px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.ratte .rotten img {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card:hover .ratte .rotten {
  bottom: 325px;
  transition: 0.6s;
}
.ratte .rotten span {
  color: rgb(238, 232, 232);
  z-index: 3;
  margin-left: 5px;
  font-weight: 700;
}
/*=============== card Genres ===============*/
.genres {
  position: relative;
  margin-top: 5px;
  font-family: "Iranian Sans";
  bottom: -100px;
  right: 5px;
  text-align: right;
  font-size: 14px;
  margin-top: 25px;
}
.genres span {
  padding: 4px 5px;
  color: #fff;
  background: #03a8f5;
  border-radius: 4px;
  margin-left: 2px;
}
.genres span:hover {
  padding: 4px 7px;
}
.genres span:nth-child(odd) {
  background-color: #ff5722;
}
.card:hover .genres {
  bottom: 310px;
  z-index: 2;
  transition: 0.6s;
}
/*=============== card Details Director ===============*/
.details-director {
  position: relative;
  direction: rtl;
  right: 5px;
  max-width: 100%;
  display: block;
  color: white;
  z-index: 2;
  bottom: -100px;
  font-family: "Iranian Sans";
  cursor: pointer;
  font-size: 13px;
}
.card:hover .details-director {
  position: relative;
  direction: rtl;
  bottom: 285px;
  right: 20px;
  max-width: 100%;
  display: block;
  transition: 0.5s;
}
.details-director span {
  color: #e2e2e2;
}
/* .details-director span:hover {
  color: #f1f2f3;
  font-size: 18px;
} */
/*=============== card story ===============*/
.card .info {
  position: relative;
  z-index: 3;
  color: white;
  font-size: 13px;
  bottom: 0px;
  direction: rtl;
  padding: 15px;
  line-height: 1.7;
  word-spacing: 1px;
  font-family: "Iranian Sans";
}
.card .info p {
  --max-lines: 4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  margin-bottom: 30px;
}
.card:hover .info {
  bottom: 285px;
  transition: 0.6s;
}
/*=============== card cast ===============*/
.card .cast {
  position: relative;
  z-index: 3;
}
.card .cast h4 {
  position: relative;
  z-index: 3;
  color: rgb(234, 236, 238);
  bottom: 0px;
  left: 10px;
  background: none;
  border: 3px #ad3631 solid;
  display: inline;
  padding: 6px;
  border-radius: 15px;
}
.card:hover .cast h4 {
  bottom: 310px;
  transition: 0.7s;
}
.cast:hover h4 {
  background-color: #ad3631;
}
.card .cast ul {
  position: relative;
  z-index: 3;
  display: flex;
  bottom: 0px;
  gap: 10px;
  left: 10px;
}
.card:hover .cast ul {
  bottom: 290px;
  transition: 0.8s;
}
.card .cast ul li {
  list-style: none;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}
.card .cast ul li img {
  max-width: 100%;
}
/*=============== modal - ads search ===============*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.829);
}
.modal-content {
  background-color: #232c3d;
  margin: 10% auto;
  padding: 10px;
  width: 50%;
  height: 385px;
  font-family: "Iranian Sans";
  border-radius: 20px;
}
.modal-content h2 {
  text-align: center;
  background-color: #232c3d;
  color: #fff;
  margin-top: -75px;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 0px 15px -6px #dfdfdf;
  font-size: 25px;
  font-family: "Iranian Sans";
}
.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -68px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 20px;
  border-radius: 5px;
  z-index: 10;
}
.close:hover,
.close:focus {
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
  background-color: red;
}
.close-button {
  background: none;
  color: white;
  border: 1px solid white;
  width: 15%;
  height: 40px;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 3%;
  margin-left: 1%;
}
.close-button:hover {
  background-color: #ae251b;
  color: white;
  border: none;
  transition: 0.5s;
}
/* Style for the search icon */
#search-icon {
  font-size: 24px;
  cursor: pointer;
}
/* Style for input and select elements */
.input-row {
  display: flex;
  justify-content: space-between;
}
.button-row {
  display: flex;
  justify-content: right;
  margin-top: 10px;
  margin: 15px;
}
.search-btn-modal {
  background-color: #e04135;
  color: white;
  width: 77%;
  height: 40px;
  border: none;
  margin-right: 2px;
  border-radius: 5px;
  font-size: 14px;
}
.search-btn-modal:hover {
  cursor: pointer;
  background-color: #ff1100;
  transition: 0.2s;
}
.tab-wrapper {
  width: 95%;
  height: 99%;
  margin: auto;
  background-color: #28344a;
  border-radius: 10px;
  box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}
.buttonWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.contentWrapper {
  font-size: 12px;
}
.tab-button {
  letter-spacing: 1px;
  border: none;
  font-family: "Iranian Sans";
  padding: 10px;
  background-color: #232c3d;
  color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
  font-size: 14px;
  font-family: "Iranian Sans";
}
.tab-button:hover {
  background-color: #d5e3ff;
  color: #000000;
  transition: 0.2s;
}
.tab-button.active {
  background-color: #28344a;
  color: #f5f5f5;
}
.tab-button.active:after {
  content: "";
  display: block;
  position: relative;
  width: 1%;
  border: 2px solid #ff0000;
  margin-top: 18px;
  align-items: center;
  margin-left: 50%;
}
.tab-button .active {
  background-color: rgb(255, 0, 0);
  color: #fff;
}
.tab-button p {
  text-align: left;
  padding: 10px;
  font-family: "Iranian Sans";
}
.content {
  display: none;
  padding: 10px 40px;
  margin-top: 10px;
  background-color: #28344a;
}
.content.active {
  display: block;
}
.input-div {
  padding: 50px;
  flex-direction: column;
  gap: 30px;
}
.inputBox {
  position: relative;
  width: 250px;
  margin-top: 20px;
}
.inputBox input {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: #232c3d;
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1rem;
  direction: rtl;
}
.inputBox span {
  position: absolute;
  left: 0;
  padding: 10px;
  pointer-events: none;
  font-size: 0.5rem;
  color: rgb(253, 253, 253);
  text-transform: uppercase;
  transition: 0.5s;
}
.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
  color: rgb(255, 0, 0);
  transform: translateX(10px) translateY(-7px);
  font-size: 0.9rem;
  padding: 0 10px;
  background-color: #232c3d;
  border-left: 1px solid red;
  border-right: 1px solid red;
}
.inputBox input:valid,
.inputBox input:focus {
  border: 1px solid red;
}
.dropdown {
  margin: 5px;
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.dropdown * {
  box-sizing: border-box;
}
.select {
  background: #364b71;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 2px #2a2f3b solid;
     */
  border: none;
  border-radius: 12px;
  padding: 1em;
  cursor: pointer;
  transition: background 0.3s;
  direction: rtl;
  font-family: "Iranian Sans";
}
.select-clicked {
  border: 2px #26489a solid;
  box-shadow: 0 0 0.8em #26489a;
}
.select:hover {
  background: #252830;
}
.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: 0.3s;
}
.caret-rotate {
  transform: rotate(180deg);
}
.menu {
  list-style: none;
  padding: 0.2em 0.5em;
  background: #232c3d;
  border: 1px #363a43 solid;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #9fa5b5;
  position: absolute;
  top: 3em;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
  font-size: 12px;
}
.menu li {
  padding: 0.7em 0.5em;
  margin: 0.3em 0;
  border-radius: 0.5em;
  cursor: pointer;
}
.menu li:hover {
  background: #28344a;
  color: #fff;
  margin-right: 5px;
  transition: 0.5s;
}
.menu-open {
  display: block;
  opacity: 1;
  height: 230px;
  overflow-y: auto;
  direction: rtl;
  margin-top: 20px;
  box-shadow: 0 0.5em 1em rgba(107, 106, 106, 0.2);
}
.help-Collaborations {
  direction: rtl;
  text-align: right;
  display: inline-block;
}
.help-Collaborations h3 {
  font-weight: 600;
  margin-bottom: -15px;
  color: #fff;
}
.help-Collaborations p {
  font-size: 0.9rem;
  line-height: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
  direction: rtl;
  text-align: right;
}
.input-div-content {
  flex-direction: column;
  display: flex;
  align-items: center;
  width: 100%;
}
.inputBox-content {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-left: 10%;
  padding-bottom: 10px;
}
.inputBox-content input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #28344a;
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  direction: ltr;
  width: 90%;
}
.inputBox-content span {
  position: absolute;
  left: 0;
  padding: 10px;
  pointer-events: none;
  font-size: 0.8rem;
  color: rgb(253, 253, 253);
  text-transform: uppercase;
  transition: 0.5s;
}
.inputBox-content input:valid ~ span,
.inputBox-content input:focus ~ span {
  color: rgb(255, 255, 255);
  transform: translateX(10px) translateY(-7px);
  font-size: 0.7rem;
  padding: 0 10px;
  background-color: #28344a;
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}
.inputBox-content input:valid,
.inputBox-content input:focus {
  border: 1px solid rgb(255, 255, 255);
}
.active-input {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

/*=============== tab-index  ===============*/

.custom-tab-wrapper {
  width: 98%;
  margin: 20px auto;
}

.custom-button-wrapper {
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-top: 1px solid var(--container-color);
  border-left: 1px solid var(--container-color);
}

.custom-tab-button {
  background-color: var(--body-color);
  color: white;
  padding: 10px 15px;
  border: 1px solid var(--body-color);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.custom-tab-button:hover {
  background-color: var(--container-color);
}

.custom-tab-button.active {
  background-color: var(--container-color);
}

.custom-content {
  display: none;
  /* padding: 20px; */
  border: 1px solid var(--body-color);
  border-top: none;
}

.custom-content.active {
  display: block;
}

.custom-content-v2 {
  display: none;
  /* padding: 20px; */
  border: 1px solid var(--body-color);
  border-top: none;
}

.custom-content-v2.active {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.Visit-content {
  display: none;
  /* padding: 20px; */
  border: 1px solid var(--body-color);
  border-top: none;
}

.Visit-content.active {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.Visit-series-content {
  display: none;
  /* padding: 20px; */
  border: 1px solid var(--body-color);
  border-top: none;
}

.Visit-series-content.active {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.top250-content {
  border-top: none;
  height: 100%;
}

.custom-tab-button-v2 {
  background-color: var(--body-color);
  color: white;
  padding: 10px 15px;
  border: 1px solid var(--body-color);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.custom-tab-button-v2:hover {
  background-color: var(--container-color);
}

.custom-tab-button-v2.active {
  background-color: var(--container-color);
}

.Visit-tab-button {
  background-color: var(--body-color);
  color: white;
  padding: 10px 15px;
  border: 1px solid var(--body-color);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.Visit-tab-button:hover {
  background-color: var(--container-color);
}

.Visit-tab-button.active {
  background-color: var(--container-color);
}

.Visit-tab-series-button {
  background-color: var(--body-color);
  color: white;
  padding: 10px 15px;
  border: 1px solid var(--body-color);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.Visit-tab-series-button:hover {
  background-color: var(--container-color);
}

.Visit-tab-series-button.active {
  background-color: var(--container-color);
}

.title-top250 {
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  margin-top: 20px;
  font-family: "Iranian Sans";
}

.title-top250:hover {
  color: red;
}

.custom-content {
  display: none;
  /* padding: 20px; */
  border: 1px solid var(--body-color);
  border-top: none;
}

.custom-content.active {
  display: block;
  /* box-shadow: 5px 5px 5px 2px black; */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

ul.maxdl-movie {
  list-style: none;
  cursor: pointer;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 99%;
  margin: 0 auto;
}

ul.maxdl-movie ul {
  border-bottom: 1px solid #2b2b3e;
  width: 100%;
}

.title-maxdl-movie {
  float: right;
  color: white;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid */
}

.title-maxdl-movie::after {
  content: "";
  display: flex;
  position: relative;
  width: 80%;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

ul.maxdl-movie li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

ul.maxdl-movie img {
  width: 120px;
  height: auto;
  margin-right: 10px;
  border-radius: 10px;
}

.name-en-movie .rank250 {
  font-size: 30px;
  color: yellow;
  padding-right: 5px;
  font-family: "Century Gothic";
}

ul.maxdl-movie .name-en-movie,
ul.maxdl-movie .year-en-movie,
ul.maxdl-movie .name-sub-movie,
ul.maxdl-movie .imdb-maxdl-movie,
ul.maxdl-movie .row-story-maxdl-movie {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
}

ul.maxdl-movie .name-en-movie {
  font-family: "Century Gothic";
  font-size: 100%;
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 280px;
  font-weight: bold;
}
ul.maxdl-movie .year-en-movie {
  font-family: "Century Gothic";
  font-size: 85%;
  padding-left: 20px;
  font-weight: 400;
  margin-right: 20px;
  text-align: right;
}

ul.maxdl-movie .name-sub-movie {
  font-family: "Iranian Sans";
  color: #c5c5c5;
  text-align: right;
  font-size: 11px;
  margin-right: 15px;
  direction: rtl;
}
/* ul.maxdl-movie .name-sub-movie::after {
  content: "🎯";
} */

ul.maxdl-movie .imdb-maxdl-movie {
  text-align: left;
}

ul.maxdl-movie .imdb-maxdl-movie::before {
  content: "⭐️";
}

ul.maxdl-movie .row-story-maxdl-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 24px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  margin-bottom: 5px;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  font-weight: normal;
}

ul.maxdl-movie ul:hover {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;

  background-color: #2b2b3e;

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  transition: 120ms;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

ul.maxdl-movie img:hover {
  border-radius: 0;
  transition: 0.25s;
}

.grid-container-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-left: 1%;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  width: 98%;
}

.grid-container-index-top250 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-left: 1%;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  width: 98%;
}

.grid-container-index a {
  color: white;
  display: flex;
}

.grid-container-top250 a {
  color: white;
  display: flex;
  margin-top: 5px;
}

/* academic */
ul.academic-movie {
  list-style: none;
  cursor: pointer;
  /* max-height: 750px; */
  overflow-y: auto;
  overflow-x: hidden;
  width: 99%;
  margin: 0 auto;
}

ul.academic-movie ul {
  border-bottom: 1px solid #2b2b3e;
  width: 100%;
  background: linear-gradient(
    90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
}

ul.academic-movie li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

ul.academic-movie ul:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

ul.academic-movie img {
  width: 120px;
  height: auto;
  border-radius: 10px;
}

ul.academic-movie .name-en-movie,
ul.academic-movie .winner-movie,
ul.academic-movie .name-sub-movie,
ul.academic-movie .imdb-academic-movie,
ul.academic-movie .row-story-academic-movie {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
}

ul.academic-movie .name-en-movie {
  font-family: "Century Gothic";
  font-size: 100%;
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px;
  font-weight: bold;
}

ul.academic-movie .winner-movie {
  font-family: "Iranian Sans";
  font-size: 95%;
  padding-left: 20px;
  font-weight: 400;
  margin-right: 20px;
  text-align: right;
  background: linear-gradient(
    -90deg,
    rgba(255, 196, 0, 0.5) 0%,
    rgba(30, 30, 42, 1) 100%,
    rgba(30, 30, 42, 1) 100%
  );
}

ul.academic-movie .imdb-academic-movie {
  text-align: left;
}

ul.academic-movie .imdb-academic-movie::before {
  content: "⭐️";
}

ul.academic-movie .row-story-academic-movie {
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 24px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  margin-bottom: 5px;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  font-weight: normal;
  border-top: 1px solid #474763;
}
ul.academic-movie .row-story-academic-movie span {
  float: left;
  font-family: "Century Gothic";
  text-align: right;
}

ul.academic-movie img:hover {
  border-radius: 0;
  transition: 0.25s;
}

.grid-container-academic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.grid-container-academic a {
  color: white;
  text-decoration: none;
}

/*=============== SERVICES ===============*/

.ns-container {
  margin-top: 100px;
  /* border: 1px solid white; */
  max-width: 1660px !important;
}

.ns-row {
  min-height: auto;
}

.img-banner {
  width: 100%;
  height: 100%;
  box-shadow: 5px 7px 9px 4px hwb(0 0% 100%);
  justify-content: center;
  max-height: 750px;
}

.row-btn-mylists {
  display: flex;
  align-items: center;
  margin-left: 15%;
  margin-top: 15px;
}

.row-btn-mylists i {
  font-size: 26px;
  cursor: pointer;
}
.row-btn-mylists i:hover {
  transition: 0.5ms;
  padding: 1px;
}

.row-btn-mylists .ri-notification-line {
  color: white;
}
.row-btn-mylists .ri-notification-2-fill {
  color: white;
}

.row-btn-mylists .ri-telegram-line {
  color: white;
}
.row-btn-mylists .ri-telegram-2-line {
  color: white;
}

.toastify {
  font-size: 14px;
  text-align: center;
  font-family: "Iranian Sans", sans-serif;
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  display: inline-block;

  border-bottom: 1px solid white;
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
  background-image: linear-gradient(100deg, #1e1e2a, #2b2b3e, #1e1e2a);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.success-message {
  color: white;
  font-weight: bold;
  background-image: linear-gradient(
    100deg,
    #1e1e2a,
    #1e1e2a,
    #15ff00,
    #1e1e2a,
    #1e1e2a
  );
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.error-message {
  color: white;
  font-weight: bold;
  background-image: linear-gradient(
    100deg,
    #1e1e2a,
    #1e1e2a,
    #ff0000,
    #1e1e2a,
    #1e1e2a
  );
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.toastify.on {
  opacity: 1;
}
.toast-close {
  background: 0 0;
  color: #000000;
  cursor: pointer;

  opacity: 0.4;
  padding: 0 5px;
}
.toastify-right {
  right: 15px;
}
.toastify-left {
  left: 15px;
}
.toastify-top {
  top: -150px;
}
.toastify-bottom {
  bottom: -150px;
}
.toastify-rounded {
  border-radius: 25px;
}
.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}
.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}
@media only screen and (max-width: 360px) {
  .toastify-left,
  .toastify-right {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}

.toastify-close {
  color: #fff;
}

.toastify-toast {
  padding: 16px;
}

.row-title-name {
  font-size: 42px;
  font-weight: 800;
  padding-top: 25px;
  padding-left: 15px;
  text-transform: capitalize;
  font-family: "Century Gothic";
  color: white;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}
.row-original-title {
  font-size: 15px;
  color: #c5c5c5;
  padding-left: 15px;
  text-transform: capitalize;
  font-family: "Century Gothic";
  display: flex;
}

.row-Persians-title {
  font-size: 15px;
  color: #c5c5c5;
  padding-left: 15px;
  text-transform: capitalize;
  font-family: "Iranian Sans";
  margin-top: 2px;
}

.row-year {
  font-size: 17px;
  color: #1e1e2a;
  padding-left: 15px;
  padding-right: 15px;
  text-transform: capitalize;
  font-family: "Century Gothic";
  display: flex;
  background: linear-gradient(
    90deg,
    rgba(247, 247, 247, 1) 0%,
    rgba(30, 30, 42, 1) 100%,
    rgba(30, 30, 42, 1) 100%
  );
  margin-top: 10px;
  margin-left: 10px;
}

.row-age_range {
  padding-left: 15px;
  padding-right: 15px;
}

.row-run-time {
  direction: rtl;
  font-family: "Iranian Sans";
}

.row-other {
  font-size: 17px;
  color: #1e1e2a;
  padding-left: 15px;
  padding-right: 15px;
  text-transform: capitalize;
  font-family: "Iranian Sans";
  display: flex;
  background: linear-gradient(
    -90deg,
    rgb(247, 247, 247) 0%,
    rgb(30, 30, 42) 100%,
    rgb(30, 30, 42) 100%
  );
  float: right;
  padding-left: 15%;
  margin-top: 10px;
  margin-left: 10px;
}

.other-movie {
  direction: rtl;
}

.row-genres {
  font-family: "Iranian Sans";
  font-size: 14px;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
}

.row-genres a {
  padding: 4px 5px;
  color: #fff;
  /* background: #96A6A8; */
  background: none;
  border: 1px solid white;
  border-radius: 4px;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 5px;
}
.row-genres a:hover {
  padding: 7px 15px;
  transition: 0.4s;
  background: #ccc;
  color: #000;
}
.row-genres a:nth-child(odd) {
  border: 1px solid #eb3f33;
}

.row-imdb {
  font-size: 17px;
  color: #ffffff;
  font-family: "Iranian Sans";
  display: flex;
  background: linear-gradient(
    90deg,
    rgb(251, 200, 29, 0.5) 0%,
    rgba(30, 30, 42, 1) 100%,
    rgba(30, 30, 42, 1) 100%
  );
  margin-left: 10px;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}
.row-imdb img {
  height: 20px;
  margin-left: 10px;
}
.row-imdb p {
  margin-right: 0px;
  margin-left: 45px;
  font-weight: 500;
}

.row-rottentomatoes {
  font-size: 17px;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  font-family: "Iranian Sans";
  display: flex;
  background: linear-gradient(
    90deg,
    rgb(165, 0, 0, 0.5) 0%,
    rgba(30, 30, 42, 1) 100%,
    rgba(30, 30, 42, 1) 100%
  );
  margin-top: 5px;
  margin-left: 10px;
  align-items: center;
  padding: 9px;
  cursor: pointer;
}

.row-rottentomatoes img {
  height: 20px;
}

.row-rottentomatoes p {
  margin-left: 25px;
  font-weight: 500;
  color: #fff;
}

#rotten_rate_count {
  margin-right: 0px;
  margin-left: 55px;
  font-weight: 500;
}

.row-Metacritic {
  font-size: 17px;
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
  font-family: "Iranian Sans";
  display: flex;
  background: linear-gradient(
    90deg,
    rgba(102, 204, 51, 0.5) 0%,
    rgba(30, 30, 42, 1) 100%,
    rgba(30, 30, 42, 1) 100%
  );
  margin-top: 5px;
  margin-left: 10px;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}

.row-Metacritic img {
  height: 30px;
  margin-left: 20px;
}

.row-Metacritic p {
  margin-left: 48px;
  font-weight: 500;
  color: #fff;
}

.row-story {
  width: 100%;
  direction: rtl;
  margin-top: 10px;
  /* border: 1px solid; */
  font-family: "Iranian Sans";
}

.basic-info .row-story h3 {
  font-size: 20px;
  background: linear-gradient(
    -90deg,
    rgba(80, 3, 0, 0.5) 0%,
    rgba(30, 30, 42, 1) 95%,
    rgba(30, 30, 42, 1) 100%
  );
  color: #f0f0f0;
  margin-bottom: 15px;
  padding-top: 2px;
  padding-bottom: 5px;
  font-family: "Iranian Sans";
  padding-right: 15px;
  /* text-align: center; */
}
.row-story p {
  font-size: 14px;
  line-height: 32px;
  margin-right: 10px;
  display: inline-block;
  color: #fff;

  /* border-right: 3px solid rgb(238, 0, 0); */
  padding-right: 15px;
  border-right: 2px solid transparent; /* حاشیه اولیه شفاف است */
  animation: colorChange 60s infinite; /* نام انیمیشن و زمان تغییر رنگ */
  --max-lines: 5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

.basic-info {
  /* border: 1px solid; */
  margin-top: 20px;
  color: #f0f0f0;
  direction: rtl;
}

.row-info {
  display: flex;
  justify-content: space-around;
}

.basic-info h3 {
  font-size: 18px;
  background: #2b2b3e;
  color: #b3b3b3;
  margin-bottom: 15px;
  font-family: "Iranian Sans";
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  /* border-top: 1px solid red; */
  /* border-right: 5px solid red; */
  /* text-align: center; */

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgba(30, 30, 42, 1) 95%,
    rgba(30, 30, 42, 1) 100%
  );
}

.row-info .ns-col-lg-12 {
  padding: 0px;
  display: flex;
}

.row-info a {
  text-decoration: none;
  color: #ccc8c8;
  align-items: center;
  display: flex;
}

.row-info a:hover {
  color: #03a8f5;
  transition: 0.5s;
  margin-right: 2px;
}
.basic-info i {
  /* border-left: solid red 1px; */
  padding: 5px;
  font-size: 20px;
  margin-top: -2px;
  margin-left: 5px;
}
.basic-info h6 {
  font-size: 14px;
  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgba(30, 30, 42, 1) 95%,
    rgba(30, 30, 42, 1) 100%
  );
  /* background:#2B2B3E; */
  color: #ccc8c8;
  margin-bottom: 8px;
  font-family: "Iranian Sans";
  padding-right: 15px;
  padding-top: 1px;
  padding-bottom: 5px;
  width: 100%;
  padding: 4px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
#gross_world,
#budget {
  font-family: "Iranian Sans";
  font-size: 12px;
}
.imdb-gold {
  font-size: 14px;
  background: linear-gradient(
    -90deg,
    rgba(255, 196, 0, 0.5) 0%,
    rgba(30, 30, 42, 1) 100%,
    rgba(30, 30, 42, 1) 100%
  );
  /* background:#2B2B3E; */
  color: #ccc8c8;
  margin-bottom: 8px;
  font-family: "Iranian Sans";
  padding-right: 15px;
  padding-top: 1px;
  padding-bottom: 5px;
  width: 100%;
  padding: 4px;
  border-radius: 5px;
  /* background:#2B2B3E; */
  color: #ccc8c8;
}
.basic-info h5 {
  font-size: 12px;
  background: #2b2b3e;
  color: #ccc8c8;
  margin-bottom: 8px;
  font-family: "Iranian Sans";
  margin-left: 3px;
  padding-top: 1px;
  padding-bottom: 5px;
  padding: 4px;
  width: 45%;
  text-align: center;

  /* border-right: 3px solid rgb(255, 0, 0); */
  border-right: 3px solid transparent; /* حاشیه اولیه شفاف است */
  animation: colorChange 60s infinite; /* نام انیمیشن و زمان تغییر رنگ */
}

.box-download {
  width: 100%;
  /* height: 100%; */
  margin: auto;
  /* box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.1); */
  font-family: "Iranian Sans";
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
}

.content-box {
  display: none;
  /* padding: 10px 40px; */
  margin-top: 10px;
}

.content-box.active {
  display: block;
}

.button-box-download {
  display: grid;
  grid-template-columns: 1fr 1fr 0fr;
}
.button-box-contentWrapper {
  font-size: 12px;
}
.box-download-tab-button {
  letter-spacing: 1px;
  border: none;
  font-family: "Iranian Sans";
  padding: 10px;
  background: none;
  color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
  font-size: 14px;
  font-family: "Iranian Sans";
}
.box-download-tab-button:hover {
  /* background-color: #232c3d; */
  color: #fff;
  transition: 0.2s;
}
.box-download-tab-button.active {
  /* background-color: #28344a; */
  background: none;
  color: #f5f5f5;
}
.box-download-tab-button.active:after {
  content: "";
  display: block;
  position: relative;
  width: 40%;
  margin-left: 30%;
  border: 1px solid #fafafa;
  margin-top: 18px;
  align-items: center;
}
.box-download-tab-button .active {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

.row-download {
  display: flex;
}

.box-download-link {
  border: 1px solid rgb(44, 44, 44);
  width: 100%;
  margin: 8px;
  margin-top: 12px;
  justify-content: space-around;
  border-radius: 18px;
  text-align: center;
  color: #00dcff;
  display: inline-flex;
  align-items: center;
  height: 55px;
  cursor: pointer;
  /* border-left: 8px solid transparent; حاشیه اولیه شفاف است */
  /* border-right: 8px solid transparent; حاشیه اولیه شفاف است */
  /* animation: colorChange 300s infinite; نام انیمیشن و زمان تغییر رنگ */
}

.box-download-link .Quality-box-dl {
  font-size: 18px;
  width: 50%;
  font-family: "Century Gothic";
}
.box-download-link .Qualitynum-box-dl {
  font-size: 15px;
  color: #fff;
  width: 30%;
  font-family: "Century Gothic";
}
.box-download-link .encode-box-dl {
  font-size: 18px;
  width: 30%;
  font-family: "Century Gothic";
}
.box-download-link .size-box-dl {
  font-size: 18px;
  color: #fff;
  width: 30%;
  font-family: "Century Gothic";
}
.box-download-link .other-box-dl {
  position: relative;
  /* top: 18px;
  left: 81%; */
  background-color: #1e1e2a;
  color: #f7f3f3;
  border-right: 1px solid rgb(44, 44, 44);
  padding-right: 8px;
  display: inherit;
  border-left: 1px solid rgb(44, 44, 44);
  padding-left: 8px;
  font-size: 9px;
}

.box-download-link:hover {
  -webkit-box-shadow: -1px 0px 16px 0px rgba(0, 221, 255, 0.98);
  -moz-box-shadow: -1px 0px 16px 0px rgba(0, 221, 255, 0.98);
  box-shadow: -1px 0px 16px 0px rgba(0, 221, 255, 0.98);
  transition: 0.5s;
  /* border: 0.5px solid #00DCFF; */
  /* border-left: 8px solid transparent; حاشیه اولیه شفاف است */
  /* border-right: 8px solid transparent; حاشیه اولیه شفاف است */
  /* animation: colorChange 2s infinite; نام انیمیشن و زمان تغییر رنگ */
}

.box-download-link button:hover {
  /* background-color: #00DCFF; */

  /* background: linear-gradient(90deg, #00DCFF 0%, rgba(30,30,42,1) 100%, rgba(30,30,42,1) 100%); */
  transition: 2s;
  color: #fff;
  border: none;
}

/* tv-show  box-download */

ul.box-download-menu {
  padding: 0;
  list-style: none;
  width: 100%;
  margin: auto;
  font-family: "Iranian Sans";
  clear: both;
  /* display: table; */
}

ul.box-download-menu .list {
  font-size: 14px;
  /* border-bottom: 1px solid #324252; */
  border-left: 0.8px solid transparent; /* حاشیه اولیه شفاف است */
  border-right: 0.8px solid transparent; /* حاشیه اولیه شفاف است */
  animation: colorChange 60s infinite; /* نام انیمیشن و زمان تغییر رنگ */
  position: relative;
  width: 97%;
  box-sizing: border-box;
  height: 70px;
  vertical-align: sub;
  background: #2b2b3e;
  clear: both;
  background-color: #2b2b3e;
  text-align: center;
  margin-top: 10px;
  margin: auto;
  margin-bottom: 5px;
  border-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  font-family: "Iranian Sans";
}

ul.box-download-menu .list:after {
  content: "👇";
  font-family: FontAwesome;
  position: absolute;
  right: 7px;
  top: 20px;
  padding: 0px 5px;
  color: #fff;
  transition: all 500ms;
}
ul.box-download-menu .list:before {
  content: "📁";
  font-family: FontAwesome;
  position: absolute;
  left: 7px;
  top: 20px;
  padding: 0px 5px;
  color: #fff;
  transition: all 500ms;
}
ul.box-download-menu .list a {
  text-decoration: none;
  color: #fff;
  padding: 25px 0px 17px 0px;
  display: block;
  height: 100%;
  box-sizing: border-box;
  font-family: "Iranian Sans";
  font-size: 19px;
}
ul.box-download-menu .list a:hover {
  background-color: #24243b;
  transition: 300ms all;
  color: #09fbd2;
  margin-bottom: 5px;
  border-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

ul.box-download-menu .list span {
  text-decoration: none;
  color: #fff;
  padding: 25px 0px 17px 0px;
  display: block;
  height: 100%;
  box-sizing: border-box;
  font-family: "Iranian Sans";
  font-size: 19px;
  width: 100%;
  cursor: pointer;
}
ul.box-download-menu .list span:hover {
  background-color: #24243b;
  transition: 300ms all;
  color: #09fbd2;
  margin-bottom: 5px;
  border-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

ul.box-download-menu .list .items {
  height: 0px;
  overflow: hidden;
}
ul.box-download-menu .list .items a {
  padding: 17px;
}
ul.box-download-menu .list .items a:hover {
  background-color: #2b3d4e;
  color: #fff;
  transition: 300ms all;
}
ul.box-download-menu .list:last-child {
  border-bottom: none;
}
ul.box-download-menu .active:after {
  content: "👇";
  font-family: FontAwesome;
  position: absolute;
  right: 7px;
  top: 20px;
  padding: 0px 5px;
  color: #fff;
  /* transition: 0.5s; */
  transition: all 300ms;
  rotate: 180deg;
}
ul.box-download-menu .active:before {
  content: "📂";
  font-family: FontAwesome;
  position: absolute;
  left: 7px;
  top: 20px;
  padding: 0px 5px;
  color: #fff;
  /* transition: 0.5s; */
  transition: all 500ms;
  rotate: 10deg;
}
ul.box-download-menu .active > .items {
  display: block;
  /* background: #23313f; */
  padding: 0px;
  height: auto;
  color: #fff;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 500ms;
  clear: both;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
ul.box-download-menu .active > .items li {
  padding: 0px;
  border: none;
  list-style: none;
  margin-top: 2px;
  /* background-color: #3b3b57; */
}
ul.box-download-menu .active > .items li:last-child {
  border-color: transparent;
  padding-bottom: 0px;
}
ul.box-download-menu .active > .items .active > .items {
  background-color: #2b2b3e;
}
ul.box-download-menu .active > a {
  color: #46efa4;
  /* text-transform: uppercase; */
  font-weight: bold;
}
ul.box-download-menu .active .list {
  background: #3b3b57;
}
ul.box-download-menu .active .list a {
  padding: 17px 0px 17px 0px;
  border-bottom: 2px solid #1e1e2a;
}

.box-download-link-ep {
  width: 92%;
  justify-content: space-around;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  /* font-family: "Century Gothic"; */
  font-family: "Iranian Sans";
  margin-top: 5px;
  font-weight: 600;
  font-size: 15px;
}

.box-download-link-ep .other-box-dl {
  font-size: 10px;
  color: #09fbd2 !important;
  font-weight: normal;
  padding-left: 0px;
}

.box-download-link-ep-one {
  width: 100%;
  justify-content: space-around;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  /* font-family: "Century Gothic"; */
  font-family: "Iranian Sans";
  margin-top: 5px;
  font-weight: 600;
  font-size: 15px;
  padding: 22px;
}
.box-download-link-ep-one:hover {
  transition: 300ms all;
  color: #09fbd2;
  margin-bottom: 5px;
  border-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.box-download-link-ep-one .Quality-box-dl {
  width: 40%;
}
.box-download-link-ep-one .Qualitynum-box-dl {
  width: 50%;
}
.box-download-link-ep-one .encode-box-dl {
  width: 50%;
  /* text-align: left; */
}
.box-download-link-ep-one .size-box-dl {
  width: 30%;
}

.box-download-link-ep .other-box-dl {
  position: relative;
  color: #f7f3f3;
  padding-right: 8px;
  display: inherit;
  border-left: 1px solid rgb(44, 44, 44);
  padding-left: 8px;
}

.dl-all-btn {
  color: rgb(255, 255, 255);
  display: inline;
  width: 100%;
  height: 100%;
  font-family: "Iranian Sans";
}

.req {
  text-align: right;
  direction: rtl;
  margin-top: 25px;
  font-family: "Iranian Sans";
  overflow-y: hidden;
  text-align: center;
}
/* ---------- */
#requestDescription {
  display: block; /* این خط برای پنهان کردن المان مورد نظر است */
}

.req-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.req-section .req-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.req-section.active .req-profile {
  display: none;
}

.req-profile .req-name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.req-profile .req-profession {
  font-size: 18px;
  font-weight: 400;
  margin-top: -6px;
  color: #333;
}

.req-profile .req-button {
  display: flex;
  align-items: center;
  background: #4070f4;
  padding: 12px 20px;
  border-radius: 6px;
  margin-top: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.req-profile .req-button:hover {
  background: #275df1;
}

.req-profile .req-button i {
  font-size: 18px;
  margin-right: 5px;
  color: #fff;
}

.req-profile .req-button button {
  background: none;
  display: inline-block;
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.req-section .popup-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
  transition: opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
  margin-top: 75px;
}

.req-section.active .popup-outer {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 100;
}

.req-section .popup-box {
  position: relative;
  background: var(--container-color);
  border-radius: 12px;
  padding: 20px;
  max-width: 450px;
  width: 80%;
  margin-bottom: 15px;
  height: auto;
  margin-top: 35%;
  box-shadow: 5px 7px 9px 4px hwb(0 0% 100%);
}

.popup-box .close-req {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: #b4b4b4;
  transition: all 0.2s ease;
  cursor: pointer;
}

.popup-box .close-req:hover {
  color: #333;
}

.popup-box .profile-text {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  direction: rtl;
  color: #ffffff;
  font-family: "Iranian Sans";
  line-height: 25px;
}

.popup-box .profile-text .text {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.profile-text .text .name {
  font-size: 14px;
  font-weight: 400;
}

.profile-text .text .profession {
  font-size: 12px;
  font-weight: 500;
  margin-top: 0px;
  margin-right: 10px;
}

.popup-box textarea {
  min-height: 300px;
  width: 100%;
  resize: none;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  padding: 10px 10px 10px 14px;
  font-weight: 400;
  background: #fcfcfc;
  direction: rtl;
  color: #333;
  font-family: "Iranian Sans";
  line-height: 25px;
}

.popup-box .button {
  display: flex;
  justify-content: flex-end;
}

.popup-box .button button {
  outline: none;
  border: none;
  margin-left: 10px;
  border-radius: 4px;
  margin-top: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-family: "Iranian Sans";
  width: 40%;
  height: 40px;
}

.cancel {
  background-color: var(--Soft-Red);
}

.cancel:hover {
  background-color: red;
}
.send {
  background: #275df1;
}
.send:hover {
  background: #124ceb;
}
/* ---------- */

.req h1 {
  color: white;
  margin-bottom: 25px;
  font-family: "Iranian Sans";
  line-height: 50px;
}
.not-released {
  color: #e0dede;
  margin-bottom: 20px;
  height: auto;
  text-align: center;
  padding: 15px;
  background-image: linear-gradient(
    90deg,
    #ff0000,
    #00687a,
    #15ff00,
    #8b00ad,
    #1900ff
  );
  background-size: 400% 400%;
  animation: GradientBackground 15s ease infinite;
  font-size: 20px;
  border-radius: 20px;
  font-family: "Iranian Sans";
}

.not-released h2 {
  font-family: "Iranian Sans";
  font-size: 20px;
}

.req h3 {
  color: rgb(179, 174, 174);
  margin-bottom: 25px;
  font-family: "Iranian Sans";
  line-height: 35px;
  font-size: 16px;
}

.req button {
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  font-family: "Iranian Sans";
  background: none;
  color: white;
  border: none;
  background-image: linear-gradient(10deg, #08fa00, #1e1e2a, #08fa00);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  font-size: 17px;
}

.req button:hover {
  background-image: linear-gradient(10deg, red, #1e1e2a, red);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  transform: 1s;
}
/* .not-sub{
  display: none;
} */
.not-sub {
  color: white;
  margin-top: 25px;
  text-align: center;
  font-family: "Iranian Sans";
  color: #ffffff;
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid red;
}

ul.box-col-cast {
  list-style: none;
  cursor: pointer;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 90%;
  margin: 0 auto;
}

ul.box-col-cast a {
  display: flex;
}

ul.box-col-cast ul {
  border-bottom: 1px solid #2b2b3e;
  width: 80%;
  color: #fff;
}

.title-box-col-cast {
  float: right;
  color: white;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #ffffff;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid; */
}

.title-box-col-cast::after {
  content: "";
  display: flex;
  position: relative;
  width: 75%;
  border: 1px solid #2b2b3e;
  /* border-bottom: 1px solid transparent; 
    animation: colorChange 60s infinite;  */
  margin-top: -10px;
}

ul.box-col-cast li {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

ul.box-col-cast img {
  width: 100px;
  height: 150px;
  margin-right: 10px;
  border-radius: 10px;
}

ul.box-col-cast .name-en,
ul.box-col-cast .name-fa,
ul.box-col-cast .title-cast,
ul.box-col-cast .name-role {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
  margin-bottom: 10px;
}

ul.box-col-cast .name-en {
  font-family: "Century Gothic";
  font-size: 18px;
  padding-left: 15px;
  font-weight: 600;
}

ul.box-col-cast .name-fa {
  font-size: 14px;
  font-family: "Iranian Sans";
  color: #c5c5c5;
  text-align: right;
}

ul.box-col-cast .episodes {
  float: left;
  padding-left: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 12px;
  color: #c5c5c5;
  text-align: right;
}

ul.box-col-cast .title-cast {
  float: right;
  padding-right: 15px;
  font-size: 12px;
  font-family: "Iranian Sans";
}

ul.box-col-cast .name-role {
  padding-top: 45px;
  font-family: "Century Gothic";
  font-size: 14px;
}

ul.box-col-cast ul:hover {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #2b2b3e;
  background: linear-gradient(
    90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  transition: 120ms;
}

ul.box-col-cast img:hover {
  border-radius: 0;
  transition: 0.25s;
}

/* ul.box-col-cast::-webkit-scrollbar {
    width: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

ul.box-col-cast::-webkit-scrollbar-thumb {
    width: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 5px;
}

ul.box-col-cast:hover::-webkit-scrollbar {
    width: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

ul.box-col-cast:hover::-webkit-scrollbar-thumb {
    width: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 5px;
} */

ul.box-col-cast::-webkit-scrollbar {
  width: 5px;
  direction: rtl;
}

/* Track */
ul.box-col-cast::-webkit-scrollbar-track {
  background: gainsboro;
  border-radius: 5px;
}

/* Handle */
ul.box-col-cast::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 5px;
}

/* Handle on hover */
ul.box-col-cast::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* similar-movie */

ul.similar-movie {
  list-style: none;
  cursor: pointer;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 90%;
  margin: 0 auto;
}

ul.similar-movie ul {
  border-bottom: 1px solid #2b2b3e;
  width: 100%;
  color: #fff;
}
ul.similar-movie a {
  display: contents;
}

.title-similar-movie {
  float: right;
  color: white;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid */
}

.title-similar-movie::after {
  content: "";
  display: flex;
  position: relative;
  width: 75%;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

ul.similar-movie li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

ul.similar-movie img {
  width: 100px;
  height: auto;
  margin-right: 10px;
  border-radius: 10px;
}

ul.similar-movie .name-en-movie,
ul.similar-movie .name-sub-movie,
ul.similar-movie .imdb-similar-movie,
ul.similar-movie .row-story-similar-movie {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
}

ul.similar-movie .name-en-movie {
  font-family: "Century Gothic";
  font-size: 20px;
  padding-left: 15px;
  font-weight: 600;
}

ul.similar-movie .name-sub-movie {
  font-family: "Iranian Sans";
  color: #c5c5c5;
  text-align: right;
  font-size: 13px;
  margin-right: 15px;
}
ul.similar-movie .name-sub-movie::after {
  content: "🎯";
}

ul.similar-movie .imdb-similar-movie {
  text-align: left;
}

ul.similar-movie .imdb-similar-movie::before {
  content: "⭐️";
}

ul.similar-movie .row-story-similar-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

ul.similar-movie ul:hover {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;

  background-color: #2b2b3e;

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  transition: 120ms;
}

ul.similar-movie img:hover {
  border-radius: 0;
  transition: 0.25s;
}

/* trailer */
.container-trailer {
  text-align: center; /* اضافه کردن text-align: center برای مرکز چین کردن محتوا */
}

.trailer {
  width: 75%;
  margin-top: 40px;
  margin-bottom: 50px;
  display: inline-block; /* اضافه کردن display: inline-block برای مرکز چین کردن ویدیو */
}

.title-trailer-movie {
  float: right;
  display: block;
  font-size: 20px;
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* margin-top: 50px; */
}

.title-trailer-movie::after {
  content: "";
  display: flex;
  position: relative;
  width: 90%;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

/* comment */

.title-comment-movie {
  float: right;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid */
  margin-top: 20px;
}

.title-comment-movie::after {
  content: "";
  display: flex;
  position: relative;
  width: 90%;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

.rtl {
  direction: rtl;
  text-align: right;
}

.bu-primary {
  background-color: var(--Moderate-blue);
  color: var(--White);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: "Iranian Sans";
}
.comment-section {
  padding: 0 1rem;
  max-height: 1200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.container-comment {
  border-radius: 8px;
  padding: 1.5rem;
  /* background-color: var(--container-color); */
  /* border-top: 1px solid ; */
  font-family: "Iranian Sans";
}
.comments-wrp {
  display: flex;
  flex-direction: column;
}
.comment-section {
  max-width: 80%;
  margin: auto;
  margin-top: 3rem;
}
.comment {
  margin-bottom: 1rem;
  display: grid;
  grid-template-areas:
    "score user controls"
    "score comment comment"
    "score comment comment";
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  row-gap: 1rem;
  color: var(--White);
  border: 1px solid var(--container-color);
}

.c-score {
  color: var(--White);
  font-weight: 500;
  grid-area: score;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0.75rem;
  padding-top: 0.5rem;
  width: 1rem;
  box-sizing: content-box;
  background-color: var(--container-color);
  border-radius: 8px;
  align-self: flex-start;
}
.score-control {
  width: 100%;
  cursor: pointer;
  object-fit: scale-down;
}
.c-text {
  grid-area: comment;
  width: 100%;
}
.c-user {
  width: 100%;
  grid-area: user;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.usr-name {
  color: var(--Dark-blue);
  font-weight: 700;
}
.usr-img {
  height: 2rem;
  width: 2rem;
}

.c-controls {
  display: flex;
  gap: 1rem;
  color: var(--Moderate-blue);
  grid-area: controls;
  align-self: center;
  justify-self: flex-end;
}
.c-controls a {
  align-items: center;
}
.edit,
.reply {
  color: var(--Moderate-blue);
  font-family: "Iranian Sans";
}
.edit {
  display: none;
  font-family: "Iranian Sans";
  font-size: 15px;
  margin-right: 5px;
}
.delete {
  color: var(--Soft-Red);
  display: none;
  font-family: "Iranian Sans";
}
.control-icon {
  margin-left: 0.5rem;
}

.replies {
  display: flex;
  margin-right: 2.5rem;
  padding-right: 2.4rem;
  border-right: 1px solid var(--Light-grayish-blue);
}

.reply-to {
  color: var(--Moderate-blue);
  font-weight: 500;
  display: block;
  direction: ltr;
}

.c-body {
  font-family: "Iranian Sans";
  line-height: 25px;
}

.cmnt-at {
  font-family: "Iranian Sans";
  font-size: 10px;
  color: #ccc;
  background-color: var(--container-color);
  padding: 5px;
  border-radius: 5px;
}

.reply-input {
  display: grid;
  margin-bottom: 1rem;
  grid-template-areas: "avatar input button";
  grid-template-columns: min-content auto min-content;
  justify-items: center;
  gap: 1rem;
  min-height: 9rem;
}
.reply-input img {
  grid-area: avatar;
  height: 2.5rem;
  width: 2.5rem;
}
.reply-input button {
  grid-area: button;
  align-self: flex-start;
}
.reply-input textarea {
  grid-area: input;
  padding: 1rem;
  width: 100%;
  border: 1px solid var(--Light-gray);
  border-radius: 4px;
  resize: none;
  grid-area: input;
  padding: 1rem;
  width: 100%;
  border: 1px solid hsl(240, 17.8%, 21%);
  border-radius: 4px;
  resize: none;
  color: white;
  background: none;
  font-family: "Iranian Sans";
}

.this-user .reply {
  display: none;
}
.this-user .edit,
.this-user .delete {
  display: flex;
}

.modal-wrp-comment {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.modal-comment {
  padding: 1.5rem;
  max-width: 32ch;
  display: grid;
  gap: 1rem;
  grid-template-areas:
    "heading heading"
    "body body"
    "no yes";
  background-color: var(--White);
}

.invisible {
  display: none;
}

.modal-comment h3 {
  grid-area: heading;
  color: var(--Dark-blue);
}
.modal-comment button {
  color: var(--White);
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  font-weight: 500;
}
.modal-comment p {
  grid-area: body;
  color: var(--Grayish-Blue);
  line-height: 1.5;
}
.modal-comment .yes {
  grid-area: yes;
  background-color: var(--Soft-Red);
}
.modal-comment .yes:hover {
  grid-area: yes;
  background-color: red;
  transition: 0.5s;
}
.modal-comment .no {
  background-color: var(--Grayish-Blue);
  grid-area: no;
}

/* collection */

.title-collection-movie {
  float: right;
  color: white;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid */
}

.title-collection-movie::after {
  content: "";
  display: flex;
  position: relative;
  width: 90%;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

ul.collection-movie {
  list-style: none;
  cursor: pointer;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 90%;
  margin: 0 auto;
}

ul.collection-movie ul {
  border-bottom: 1px solid #2b2b3e;
  width: 100%;
  color: #fff;
}
ul.collection-movie a {
  display: contents;
}

ul.collection-movie .name-en-movie,
ul.collection-movie .name-sub-movie,
ul.collection-movie .imdb-collection-movie,
ul.collection-movie .row-story-collection-movie {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
}

ul.collection-movie li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

ul.collection-movie img {
  width: 100px;
  height: auto;
  margin-right: 10px;
  border-radius: 10px;
}

ul.collection-movie .name-sub-movie {
  font-family: "Iranian Sans";
  color: #c5c5c5;
  text-align: right;
  font-size: 13px;
  margin-right: 15px;
}
ul.collection-movie .name-sub-movie::after {
  content: "🎯";
}

ul.collection-movie .imdb-collection-movie {
  text-align: left;
}

ul.collection-movie .imdb-collection-movie::before {
  content: "⭐️";
}

ul.collection-movie .row-story-collection-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

ul.collection-movie ul:hover {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;

  background-color: #2b2b3e;

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  transition: 120ms;
}

ul.collection-movie img:hover {
  border-radius: 0;
  transition: 0.25s;
}

ul.collection-movie .movie-tvshow {
  font-family: "Iranian Sans";
  font-size: 16px;
  font-weight: 400;
  float: right;
  margin-right: 25px;
  background-color: var(--container-color);
  padding: 3px 6px;
  border-radius: 5px;
  border-right: 1px solid transparent;
  margin-bottom: 15px;
  animation: colorChange 60s infinite;
}

/* awards */

.title-awards-movie {
  float: right;
  color: white;
  display: block;
  font-size: 18px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid */
}

.title-awards-movie::after {
  content: "";
  display: flex;
  position: relative;
  margin-right: 200px;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

ul.awards-movie {
  list-style: none;
  cursor: pointer;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 95%;
  margin: 0 auto;
}

ul.awards-movie ul {
  border-bottom: 1px solid #2b2b3e;
  width: 100%;
  color: #fff;
}
ul.collection-movie a {
  display: contents;
}

ul.awards-movie .name-en-movie,
ul.awards-movie .name-sub-movie,
ul.awards-movie .imdb-awards-movie,
ul.awards-movie .row-story-awards-movie {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
}

ul.awards-movie li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

ul.awards-movie img {
  width: 100px;
  height: auto;
  margin-right: 10px;
  border-radius: 10px;
}

ul.awards-movie .name-sub-movie {
  font-family: "Iranian Sans";
  color: #c5c5c5;
  text-align: right;
  font-size: 13px;
  margin-right: 15px;
}
ul.awards-movie .name-sub-movie::after {
  content: "🎯";
}

ul.awards-movie .imdb-awards-movie {
  text-align: left;
}

ul.awards-movie .imdb-awards-movie::before {
  content: "⭐️";
}

ul.awards-movie .row-story-awards-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

ul.awards-movie ul:hover {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;

  background-color: #2b2b3e;

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  transition: 120ms;
}

ul.awards-movie img:hover {
  border-radius: 0;
  transition: 0.25s;
}

ul.awards-movie .movie-tvshow {
  font-family: "Iranian Sans";
  font-size: 16px;
  font-weight: 400;
  float: right;
  margin-right: 25px;
  background-color: var(--container-color);
  padding: 3px 6px;
  border-radius: 5px;
  border-right: 1px solid transparent;
  margin-bottom: 15px;
  animation: colorChange 60s infinite;
}

ul.awards-movie .name-en-movie-cast {
  margin-left: 5px;
  font-size: 20px;
  margin-top: 34px;
}

ul.awards-movie .winer-actor-movie {
  float: right;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  border: 1px solid var(--container-color);
  padding: 5px 10px;
  margin: 2px;
  margin-top: 2px;
  border-top-right-radius: 15px;
  border-bottom: none;
  border-left: none;
  margin-top: 35px;
}

ul.awards-movie .winer-actor-movie::before {
  content: "🏅";
}

/* Filmography */

.title-Filmography-movie {
  float: right;
  color: white;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #fcfcfc;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  background: none;
  /* border-bottom: 1px solid */
}

.title-Filmography-movie::after {
  content: "";
  display: flex;
  position: relative;
  margin-right: 200px;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

ul.Filmography-movie {
  list-style: none;
  cursor: pointer;
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 95%;
  margin: 0 auto;
}

ul.Filmography-movie .name-en-movie-cast {
  margin-left: 5px;
  font-size: 20px;
  margin-top: 34px;
}
ul.Filmography-movie ul {
  border-bottom: 1px solid #2b2b3e;
  width: 100%;
  color: #fff;
}
ul.collection-movie a {
  display: contents;
}

ul.Filmography-movie .name-en-movie,
ul.Filmography-movie .name-sub-movie,
ul.Filmography-movie .imdb-Filmography-movie,
ul.Filmography-movie .row-story-Filmography-movie {
  font-family: "Century Gothic";
  display: block;
  padding-left: 15px;
}

ul.Filmography-movie li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

ul.Filmography-movie img {
  width: 100px;
  height: auto;
  margin-right: 10px;
  border-radius: 10px;
}

ul.Filmography-movie .name-sub-movie {
  font-family: "Iranian Sans";
  color: #c5c5c5;
  text-align: right;
  font-size: 13px;
  margin-right: 15px;
}
ul.Filmography-movie .name-sub-movie::after {
  content: "🎯";
}

ul.Filmography-movie .imdb-Filmography-movie {
  text-align: left;
}

ul.Filmography-movie .imdb-Filmography-movie::before {
  content: "⭐️";
}

ul.Filmography-movie .row-story-Filmography-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}

ul.Filmography-movie ul:hover {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;

  background-color: #2b2b3e;

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  transition: 120ms;
}

ul.Filmography-movie img:hover {
  border-radius: 0;
  transition: 0.25s;
}

.title-box-col-Filmography {
  float: right;
  color: white;
  display: block;
  font-size: 20px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #ffffff;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  /* border-bottom: 1px solid; */
  /* margin-top: 50px;
  margin-bottom: 30px; */
}

.title-box-col-Filmography::after {
  content: "";
  display: flex;
  position: relative;
  margin-right: 150px;
  border: 1px solid #2b2b3e;
  margin-top: -10px;
}

ul.Filmography-movie .movie-tvshow {
  font-family: "Iranian Sans";
  font-size: 16px;
  font-weight: 400;
  float: right;
  margin-right: 25px;
  background-color: var(--container-color);
  padding: 3px 6px;
  border-radius: 5px;
  border-right: 1px solid transparent;
  margin-bottom: 15px;
  animation: colorChange 60s infinite;
}

/* profile-cast */

.position-fixed {
  position: fixed;
}

.container-img-banner-actor {
  position: relative;
  width: fit-content; /* یا عرض مطلوب شما */
  margin: auto;
}

.img-banner-actor {
  width: 305px;
  max-height: 750px;
  display: block; /* تصویر باید به صورت بلوک باشد تا ربان بتواند به آن چسبد */
  box-shadow: rgb(0, 0, 0) 3px 3px 6px 0px inset,
    rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset;
  padding: 15px;
}

.ribbon {
  --f: 15px; /* کنترل بخش خمیده */
  position: absolute;
  top: 70px;
  left: 72px;
  color: #fff;
  padding: 0.5em 2.8em;
  background: var(--c, #cbd1d1);
  border-bottom: var(--f) solid rgba(204, 203, 203, 0.467);
  clip-path: polygon(
    100% calc(100% - var(--f)),
    100% 100%,
    calc(100% - var(--f)) calc(100% - var(--f)),
    var(--f) calc(100% - var(--f)),
    0 100%,
    0 calc(100% - var(--f)),
    999px calc(100% - var(--f) - 999px),
    calc(100% - 999px) calc(100% - var(--f) - 999px)
  );
}

.left {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: 0 100%;
}

/* a fix for firefox that show some strange lines*/
@supports (-moz-appearance: none) {
  .ribbon {
    background: linear-gradient(
          to top,
          #f8f8f800 1px,
          rgba(61, 61, 61, 0.333) 0 var(--f),
          #eeeded00 0
        )
        border-box,
      linear-gradient(var(--c, #000505) 0 0) 50% / calc(100% - 2px)
        calc(100% - 2px) no-repeat border-box;
    border-bottom-color: #f3eded00;
  }
}

.actor-official-sites {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.actor-official-sites a {
  text-decoration: none;
  color: #9e9d9d; /* رنگ متن لینک‌ها */
  margin: 0 10px; /* فاصله بین لینک‌ها */
}

.actor-official-sites a:hover {
  color: #007bff; /* تغییر رنگ متن لینک‌ها هنگام هاور */
}

.title-official-sites {
  font-size: 14px; /* اندازه متن عنوان‌ها */
  margin-top: 5px;
}

.basic-actor-info i {
  font-size: 30px; /* اندازه آیکون‌ها */
  margin-bottom: 5px;
}

.actor-title-name {
  font-size: 20px;
  text-align: center;
  font-family: "Century Gothic";
  margin-top: 15px;
  width: 100%;
  padding: 6px;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  margin: auto;
}

.box-left-actor {
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
  height: fit-content;
}
.box-right-actor {
  /* box-shadow: 1px 6px 8px 0px hwb(0 0% 100%); */
  height: fit-content;
}
.biography {
  width: 100%;
  direction: rtl;
  /* border: 1px solid; */
  font-family: "Iranian Sans";

  padding-right: 30px;
  padding-left: 30px;
}

.biography h3 {
  font-size: 27px;
  border-right: 5px solid red;
  color: #f0f0f0;
  padding-top: 8px;
  padding-bottom: 25px;
  font-family: "Iranian Sans";
  padding-right: 15px;
  text-align: right;
  /* box-shadow: rgb(0, 0, 0) 3px 3px 6px 0px inset, rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset; */
}

.biography p {
  font-size: 16px;
  line-height: 40px;
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
  color: #fff;
  padding-right: 35px;
  padding-left: 35px;
  direction: rtl;
  white-space: pre-line;
  text-align: justify;
  box-shadow: rgb(0, 0, 0) 3px 3px 6px 0px inset,
    rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset;
  /* box-shadow: 1px 6px 8px 0px hwb(0 0% 100%); */
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
  padding: 15px;
  text-align: center;
  width: 100%;
}

ul.similar-movie .movie-tvshow {
  font-family: "Iranian Sans";
  font-size: 16px;
  font-weight: 400;
  float: right;
  margin-right: 25px;
  background-color: var(--container-color);
  padding: 3px 6px;
  border-radius: 5px;
  border-right: 1px solid transparent;
  margin-bottom: 15px;
  animation: colorChange 60s infinite;
}

ul.similar-movie .name-en-movie-cast {
  font-family: "Century Gothic";
  font-size: 20px;
  padding-left: 15px;
  font-weight: 600;
  display: flex !important;
}

ul.similar-movie .row-story-cast-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  margin-bottom: 20px;
  margin-top: 25px;
}

ul.similar-movie .row-story-cast-movie span {
  border: 1px solid var(--container-color);
  padding: 5px 10px;
  margin: 2px;
  border-end-end-radius: 12px;
  border-right: none;
  border-top: none;
}

ul.similar-movie .row-story-cast-movie::before {
  content: "👤";
}

ul.similar-movie .movie-tvshoww {
  font-family: "Iranian Sans";
  font-size: 16px;
  font-weight: 400;
  margin-left: 15px;
  margin-top: 15px;
  float: left;
  background-color: var(--container-color);
  display: block;
  padding: 3px 6px;
  border-radius: 5px;
  border-left: 1px solid transparent;
  margin-bottom: 25px;
  animation: colorChange 60s infinite;
}

.row-genres-cast {
  font-family: "Iranian Sans";
  font-size: 14px;
  margin-top: 20px;
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
}

.row-genres-cast span {
  padding: 4px 5px;
  color: #fff;
  /* background: #96A6A8; */
  background: none;
  border: 1px solid white;
  border-radius: 4px;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 3px;
}
.row-genres-cast span:hover {
  padding: 7px 15px;
  transition: 0.4s;
  background: #ccc;
  color: #000;
}
.row-genres-cast span:nth-child(odd) {
  border: 1px solid #eb3f33;
}

ul.similar-movie .winer-actor-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  margin-bottom: 20px;
  margin-top: 25px;
  border: 1px solid var(--container-color);
  padding: 5px 10px;
  margin: 2px;
  border-top-right-radius: 15px;
  border-bottom: none;
  border-left: none;
  margin-top: 35px;
}

ul.similar-movie .winer-actor-movie::before {
  content: "🏅";
}

.basic-actor-info {
  color: #f0f0f0;
  direction: rtl;
  width: 100%;
  margin: 1px auto;
  /* box-shadow: rgb(0, 0, 0) 3px 3px 6px 0px inset,
    rgba(0, 0, 0, 0.5) -3px -3px 6px 1px inset; */
  padding: 15px;
}

.basic-actor-info .row-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.basic-actor-info h3 {
  font-size: 20px;
  background: #2b2b3e;
  color: #b3b3b3;
  margin-bottom: 15px;
  font-family: "Iranian Sans";
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  /* border-top: 1px solid red; */
  /* border-right: 5px solid red; */
  /* text-align: center; */

  background: linear-gradient(
    -90deg,
    #2b2b3e 0%,
    rgba(30, 30, 42, 1) 95%,
    rgba(30, 30, 42, 1) 100%
  );
  display: block;
}

.basic-actor-info .row-info .ns-col-lg-12 {
  padding: 0px;
  display: flex;
}

.basic-actor-info .row-info a {
  text-decoration: none;
  color: #ccc8c8;
}

.basic-actor-info .row-info a:hover {
  color: #03a8f5;
  transition: 0.5s;
  margin-right: 2px;
}
/* .basic-actor-info i {
  padding: 5px;
  font-size: 20px;
  margin-top: -2px;
  margin-left: 5px;
  padding: 25px;

} */
.basic-actor-info h6 {
  font-size: 14px;
  color: #ccc8c8;
  margin-bottom: 8px;
  font-family: "Iranian Sans";
  width: auto;
  padding: 4px;
  border-radius: 5px;
  padding-right: 5px;

  /* box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px; */
  line-height: 35px;
  font-weight: 400;
}

.basic-actor-info h5 {
  color: #787878;
  margin-bottom: 8px;
  font-family: "Iranian Sans";
  padding: 4px;
  padding-right: 4px;
  width: auto;
  display: flex;
  align-items: center;
  padding-right: 10px;
  font-weight: 800;
}

.title-box-col-Filmography {
  float: right;
  color: white;
  display: block;
  font-size: 18px;
  /* background: linear-gradient(90deg, rgba(30, 30, 42, 1) 10%, rgba(30, 30, 42, 1) 20%, rgb(241, 241, 241) 80%, rgba(30, 30, 42, 1) 80%); */
  /* background: linear-gradient(-90deg, rgba(30, 30, 42, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(247, 247, 247, 1) 20%, rgba(30, 30, 42, 1) 80%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  padding: 3px;
  color: #ffffff;
  font-family: "Iranian Sans";
  width: 100%;
  text-align: right;
  /* border-bottom: 1px solid; */
}

ul.Filmography-movie .row-story-cast-movie {
  float: right;
  padding-right: 15px;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 15px;
  line-height: 30px;
  color: #c5c5c5;
  text-align: right;
  height: auto;
  overflow: hidden;
  margin-bottom: 5px;
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  margin-bottom: 20px;
  margin-top: 25px;
}

ul.Filmography-movie .row-story-cast-movie span {
  border: 1px solid var(--container-color);
  padding: 5px 10px;
  margin: 2px;
  border-end-end-radius: 12px;
  border-right: none;
  border-top: none;
}

ul.Filmography-movie .row-story-cast-movie::before {
  content: "👤";
}

ul.Filmography-movie .movie-tvshoww {
  font-family: "Iranian Sans";
  font-size: 16px;
  font-weight: 400;
  margin-left: 15px;
  margin-top: 15px;
  float: left;
  background-color: var(--container-color);
  display: block;
  padding: 3px 6px;
  border-radius: 5px;
  border-left: 1px solid transparent;
  margin-bottom: 25px;
  animation: colorChange 60s infinite;
}

/* dashbord */

.title-dashbord {
  padding: 5px;
  direction: rtl;
  font-size: x-large;
  /* border-bottom: 1px solid ;  */
  margin-bottom: 27px;
  /* background: linear-gradient(-90deg, #ffffff 0%, rgba(30,30,42,1) 100%, rgba(30,30,42,1) 100%); */
  /* background-image: linear-gradient(to left, #1e1e2a, #43424d, #6a6972, #95939a, #c1c0c4, #c1c0c4, #c1c0c4, #c1c0c4, #95939a, #6a6972, #43424d, #1e1e2a); */
  background-image: linear-gradient(
    to left,
    #1e1e2a,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #f33100,
    #1e1e2a
  );

  color: var(--White);
  font-family: "Iranian Sans";
  text-align: center;
}

.card-account {
  border: 1px solid var(--container-color);
  height: auto;
  direction: rtl;
  /* box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px; */
  box-shadow: 5px 5px 5px black;
  margin-bottom: 15px;
  font-family: "Iranian Sans";
  font-size: 16px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.card-account:hover {
  margin-top: 1px;
  transition: 0.2s;
}

.card-account-header {
  padding: 0.3em 1.25rem;
  background-image: linear-gradient(
    to left,
    #1e1e2a,
    #43424d,
    #6a6972,
    #95939a,
    #c1c0c4,
    #c1c0c4,
    #c1c0c4,
    #c1c0c4,
    #95939a,
    #6a6972,
    #43424d,
    #1e1e2a
  );
  color: #000000;
  /* color: white; */
  font-size: 18px;
  font-weight: normal;
  font-family: "Iranian Sans";
  text-align: center;
  direction: rtl;
}

.card-account main {
  padding: 15px 35px;
  border: 1px solid var(--container-color);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.card-account main:hover {
  transition: 0.5s;
  border: 1px solid rgb(100, 98, 98);
  border-top: none;
  border-left: none;
  border-right: none;
}

.title-one-cart {
  color: #787878;
}
.card-account-date {
  text-align: left;
}

.card-account-time {
  color: #cccbcb;
  font-size: 17px;
  margin-top: 10px;
  text-align: left;
  display: flex;
  float: left;
}

.card-account-days-left {
  margin-top: 25px;
}

.card-account-email {
  margin-top: 15px;
  padding-top: 15px;
  color: #787878;
  border-top: 1px solid var(--container-color);
}
.card-account-change-email {
  margin-top: 15px;
  padding-top: 15px;
  color: #787878;
}
.card-account-change-email a {
  color: #787878;
}
.card-account-change-email a:hover {
  color: white;
}

.card-account-email-left {
  direction: ltr;
  font-family: "Century Gothic";
}
.card-not-active {
  margin: 15px;
  text-align: center;
  color: red;
}

.card-not-active-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-family: "Iranian Sans";
  color: white;
  border: 3px solid var(--container-color);
  margin-top: 20px;
  cursor: pointer;
  border-radius: 15px;
  background-image: linear-gradient(
    100deg,
    #f33100,
    #1e1e2a,
    #f33100,
    #1e1e2a,
    #f33100
  );
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.custom-input-row {
  display: flex;
  justify-content: space-between;
  margin: 30px;
}

.custom-input-div-content {
  flex-direction: column;
  display: flex;
  align-items: flex-end; /* تغییر اینجا به align-items: flex-end; */
  width: 100%;
}

.custom-inputBox-content {
  position: relative;
  width: 100%; /* تغییر اینجا به 90% */
  padding-bottom: 20px;
}

.custom-inputBox-content input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #1e1e2a;
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  direction: rtl; /* تغییر اینجا به rtl */
  width: 100%; /* تغییر اینجا به 100% */
  text-align: left;
}

.custom-inputBox-content span {
  position: absolute;
  right: 0; /* تغییر اینجا به right */
  padding: 10px;
  pointer-events: none;
  font-size: 0.8rem;
  color: rgb(253, 253, 253);
  text-transform: uppercase;
  transition: 0.5s;
}

.custom-inputBox-content input:valid ~ span,
.custom-inputBox-content input:focus ~ span {
  color: rgb(255, 255, 255);
  transform: translateX(-10px) translateY(-7px); /* تغییر اینجا به translateX(-10px) */
  font-size: 0.7rem;
  padding: 0 10px;
  background-color: #1e1e2a;
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}

.custom-inputBox-content input:valid,
.custom-inputBox-content input:focus {
  border: 1px solid rgb(255, 255, 255);
}

.custom-active-input {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

.custom-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: -10px;
}

.custom-input-wrapper {
  flex-direction: column;
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.custom-input-box {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 10px;
}

.custom-input-box input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #1e1e2a;
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  direction: rtl;
  width: 100%;
}

.custom-input-box span {
  position: absolute;
  right: 0;
  padding: 10px;
  pointer-events: none;
  font-size: 0.8rem;
  color: rgb(253, 253, 253);
  text-transform: uppercase;
  transition: 0.5s;
}

.custom-input-box input:valid ~ span,
.custom-input-box input:focus ~ span {
  color: rgb(255, 255, 255);
  transform: translateX(-10px) translateY(-7px);
  font-size: 0.7rem;
  padding: 0 10px;
  background-color: #1e1e2a;
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}

.custom-input-box input:valid,
.custom-input-box input:focus {
  border: 1px solid rgb(255, 255, 255);
}

.custom-active-input {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

.custom-table {
  width: 90%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-left: 5%;
  margin-bottom: 20px;
  font-family: "Iranian Sans";
  cursor: pointer;
}

.custom-table th,
.custom-table td {
  border-bottom: 1px solid #2b2b3e;
  padding: 8px 0px 8px 0px;
  text-align: center;
}
.custom-table th,
.custom-table tr:hover {
  background-color: #2b2b3e;
  transition: 0.5s;
}

.custom-table th:nth-child(1),
.custom-table td:nth-child(1) {
  width: 0px; /* عرض جدول برای ستون "شماره" */
  font-size: 10px;
  font-weight: lighter;
}

.custom-table th:nth-child(2),
.custom-table th:nth-child(3),
.custom-table th:nth-child(4),
.custom-table th:nth-child(5) {
  font-size: 12px;
}
.custom-table th:nth-child(2),
.custom-table td:nth-child(2) {
  width: 30px; /* عرض جدول برای ستون "شماره" */
}

.custom-table td:nth-child(3) {
  font-family: "Century Gothic";
  font-size: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.custom-table td:nth-child(4) {
  width: 100px;
  font-size: 14px;
}

.custom-table td:nth-child(5) {
  width: 110px;
  font-size: 15px;
}

.custom-table th {
  background-color: #1e1e2a;
}

.custom-table td img {
  max-width: 50px;
  height: auto;
  display: block;
  margin-left: 5px;
}

.delete-button {
  /* background-color: #dc3545; */
  background: none;
  color: wheat;
  border: none;
  border-bottom: 1px solid #dc3545;
  border-top: 1px solid #dc3545;
  transition: 0.4ms;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 90%;
}

.delete-button:hover {
  background-color: #c82333;
}

.confirmation-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1000;
  max-width: 490px;
  z-index: 1001;
}

.confirmation-modal-content {
  color: var(--Grayish-Blue);
  font-family: "Iranian Sans";
  padding: 15px;
}

.confirmation-modal-content p {
  line-height: 30px;
  font-size: 12px;
  direction: rtl;
  text-align: right;
}

.confirmation-modal-content h3 {
  direction: rtl;
  margin-bottom: 15px;
  font-family: "Iranian Sans";
  font-family: var(--title-font);
  font-weight: var(--font-medium);
}

.confirmation-modal button {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 8px;
  margin-top: 25px;
  font-family: "Iranian Sans";
  font-size: 100%;
}

.confirmation-modal .btncancel {
  background-color: #939292;
}

.confirmation-modal button:hover {
  background-color: #c82333;
}

.code-collection {
  /* background-color: #003a0a; */
  background: none;
  border: 1px solid white;
  text-align: center;
  padding: 15px;
  display: flex;
  direction: rtl;
  width: 20%;
  margin-left: 40%;
  /* margin-top: 5px; */
  border-top: none;
}

.code-collection p {
  margin-left: 45px;
  font-family: "Iranian Sans";
  padding: 10px 10px;
}
.code-collection h4 {
  font-family: "Iranian Sans";
  direction: ltr;
  border: 1px solid white;
  padding: 10px 10px;
}
.btn-control-pass {
  margin-top: 15px;
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  background-color: #25303f;
  border: none;
  color: white;
  font-family: "Iranian Sans";
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s; /* انیمیشن تغییر رنگ پس زمینه */
}

/* استایل برای حالت غیرفعال */
.btn-control-pass:disabled {
  cursor: not-allowed; /* تغییر نشانگر موس به حالت غیرمجاز */
  opacity: 0.6; /* شفافیت کمتر */
}

/* استایل برای حالت فعال هنگام هاور */
.btn-control-pass:hover:not(:disabled) {
  background-image: linear-gradient(100deg, #1e1e2a, #007bff, #1e1e2a);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.btn-control-token {
  margin-top: 15px;
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: none;
  color: white;
  font-family: "Iranian Sans";
  font-size: 18px;
  cursor: pointer;
  background-color: #25303f;
}

/* استایل برای حالت غیرفعال */
.btn-control-token:disabled {
  cursor: not-allowed; /* تغییر نشانگر موس به حالت غیرمجاز */
  opacity: 0.6; /* شفافیت کمتر */
}

.btn-control-token:hover:not(:disabled) {
  background-image: linear-gradient(100deg, #1e1e2a, #007bff, #1e1e2a);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

/*=============== list-movie ===============*/
/* list-movie */

.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* تعداد ستون‌ها و اندازه آنها */
  gap: 15px; /* فاصله بین عناصر درون grid */
  justify-content: center; /* وسط‌چین کردن در محور افقی */
  align-items: center; /* وسط‌چین کردن در محور عمودی */
  margin-top: 16px;
}

.grid-container-dr {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* تعداد ستون‌ها و اندازه آنها */
  gap: 20px; /* فاصله بین عناصر درون grid */
  /* margin-left: 1%; */
  justify-content: center; /* وسط‌چین کردن در محور افقی */
  align-items: center; /* وسط‌چین کردن در محور عمودی */
  margin-top: 16px;
}

/*========= Heading list-movie =========*/
.heading-lmovie {
  align-items: center;
  /* background: linear-gradient(-90deg, #2B2B3E 0%, rgba(30,30,42,1) 95%, rgba(30,30,42,1) 100%); */
  border-radius: 20px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  width: 90%;
  margin-left: auto;
  margin-right: 30px;
  border-right: 5px solid transparent; /* حاشیه اولیه شفاف است */
  animation: colorChange 120s infinite; /* نام انیمیشن و زمان تغییر رنگ */

  font-family: "Iranian Sans";
}

.heading-ltitle {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  font-family: "Iranian Sans";
  margin-top: 45px;
  /* margin-bottom: 95px; */
  text-align: right;
  margin-right: 15px;
  direction: rtl;
}
.feed-filter-container-lmovie {
  margin-top: 25px;
  font-size: 1.1rem;
  margin-left: auto;
  text-align: right;
  padding-bottom: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--container-color);
  /* box-shadow: 0 1px 1px rgba(0,0,0,0.08), 0 2px 2px rgba(0,0,0,0.12), 0 4px 4px rgba(0,0,0,0.16), 0 8px 8px rgba(0,0,0,0.20); */
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  border-bottom: none;

  font-family: "Iranian Sans";
}

/*========= custom-table-index =========*/

.custom-table-index {
  width: 50%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Iranian Sans";
}

.custom-table-index th,
.custom-table-index td {
  /* border-bottom: 1px solid #2b2b3e; */
  padding: 10px;
  /* text-align: center; */
}
.custom-table-index th,
.custom-table-index tr:hover {
  background-color: #2b2b3e;
  transition: 0.5s;
}

.custom-table-index th:nth-child(1),
.custom-table-index td:nth-child(1) {
  width: 30px; /* عرض جدول برای ستون "شماره" */
  text-decoration: underline;
}
.custom-table-index th:nth-child(2),
.custom-table-index td:nth-child(2) {
  width: 30px; /* عرض جدول برای ستون "شماره" */
}

.custom-table-index th:nth-child(3),
.custom-table-index td:nth-child(3) {
  font-family: "Century Gothic";
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  border-bottom: 1px solid #2b2b3e;
}

.custom-table-index th:nth-child(4),
.custom-table-index td:nth-child(4) {
  width: 180px;
  font-size: 18px;
}

.custom-table-index th:nth-child(5),
.custom-table-index td:nth-child(5) {
  width: 110px;
  font-size: 18px;
}

.custom-table-index th {
  background-color: #1e1e2a;
}

.custom-table-index td img {
  max-width: 60px;
  height: auto;
  display: block;
  margin-left: 5px;
}

/* actor-card */
.actor-card {
  position: relative;
  width: 200px;
  height: 270px;
  border-radius: 10%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  cursor: pointer;
  text-align: center;
  font-family: "Iranian Sans";
}

.actor-card-image {
  position: absolute;
  top: 0;
  width: 100%;
  border-top-right-radius: 10%;
  overflow: hidden;
  border-top-left-radius: 10%;
}

.actor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-name-actor {
  color: #fff;
  font-family: "Century Gothic";
  text-align: center;
  display: block;
}

.actor-card-details {
  position: absolute;
  left: 0;
  width: 100%; /* تغییر این مقدار برای انطباق با عکس */
  border-radius: 0 0 10px 10px;
  color: black;
  transition: 0.3s;
  font-family: "Iranian Sans";
  text-align: center;
  bottom: 0;
  background: linear-gradient(
    -180deg,
    rgba(30, 30, 42, 0.5),
    rgba(43, 43, 62, 0.5),
    rgb(30, 30, 42),
    rgb(30, 30, 42)
  );
  color: #fff;
}

.actor-card:hover .actor-card-details {
  /* transition: 0.5s; */
  transform: translateY(1px);
}

.actor-card-details h2,
.actor-card-details h5 {
  margin: 5px 0;
  padding: 4px;
}

.actor-card-details h2 {
  font-size: 18px;
  font-weight: normal;
}

.actor-card-details h5 {
  font-size: 16px; /* سایز متن سن */
  font-weight: normal;
}

.actor-card-details span {
  font-size: 16px;
  font-weight: normal;
  padding: 2px 6px;
  text-align: center;
  color: #999;
  font-family: "Iranian Sans";
  display: flow-root;
  background: rgb(30, 30, 42);
  border: 1px solid #282828;
  border-bottom: none;
}

.actor-card-details h6 {
  font-size: 15px;
  font-weight: normal;
  color: #999;
  font-family: "Century Gothic";
  border: 1px solid #282828;
  padding: 3px;
  display: inline-block;
  border-radius: 5px;
}

.schedule-table {
  max-width: 1600px;
  margin: 20px auto;
  background: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  height: 45vh;
  font-family: "Iranian Sans";
  box-shadow: 5px 5px 5px black;
  border-top: 1px solid var(--container-color);
  border-left: 1px solid var(--container-color);
}

.days-of-week {
  display: flex;
  /* border-bottom: 1px solid #ccc; */
  flex-direction: column;
  width: 240px;
  background-color: var(--container-color);
}

.day {
  flex: 1;
  padding: 10px;
  font-weight: bold;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.tv-shows {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.show {
  flex: 1;
  padding: 10px;
  /* border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc; */
  /* text-align: center; */
}

.day.active {
  background-color: #fd0000;
  color: #fff;
  cursor: pointer;
}

.show-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.show-card {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  background: none;
  width: 30%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  width: 90%;
  box-shadow: 5px 5px 5px black;
  border-top: 1px solid var(--container-color);
  border-left: 3px solid #fd0000;
}

.show-card:hover {
  transform: scale(1.05);
}

.show-card img {
  width: 50px;
  height: auto;
  object-fit: cover;
  border-radius: 10%;
  margin-right: 10px;
}

.details {
  flex: 1;
  padding-right: 10px;
}

.serial-title {
  font-size: 16px;
  margin-bottom: 5px;
  color: #ffffff;
}

.episode-name,
.episode-number {
  font-size: 14px;
  margin: 6px;
  color: #ffffff;
  text-align: right;
}

.csoon-container {
  max-width: 1600px;
  margin: 20px auto;
  background: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  height: 45vh;
  font-family: "Iranian Sans";
  box-shadow: 5px 5px 5px black;
  border-top: 1px solid var(--container-color);
  border-left: 1px solid var(--container-color);
}

.csoon-days-of-week {
  display: flex;
  flex-direction: column;
  width: 240px;
  background-color: var(--container-color);
}

.csoon-day {
  flex: 1;
  padding: 10px;
  font-weight: bold;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.csoon-tv-shows {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.csoon-show {
  flex: 1;
  padding: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.csoon-day.active {
  background-color: #fd0000;
  color: #fff;
  cursor: pointer;
}

.csoon-show-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.csoon-show-card {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  background: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  width: 90%;
  box-shadow: 5px 5px 5px black;
  border-top: 1px solid var(--container-color);
  border-left: 3px solid #fd0000;
  width: 30%;
}

.csoon-show-card:hover {
  transform: scale(1.05);
}

.csoon-show-card img {
  width: 50px;
  height: auto;
  object-fit: cover;
  border-radius: 10%;
  margin-right: 10px;
}

.csoon-details {
  flex: 1;
  padding-right: 10px;
}

.csoon-serial-title {
  font-size: 16px;
  margin-bottom: 5px;
  color: #ffffff;
}

.csoon-episode-name,
.csoon-episode-number {
  font-size: 14px;
  margin: 6px;
  color: #ffffff;
  text-align: right;
}

/* top-actor-card */
.top-actor-card {
  position: relative;
  width: 350px;
  height: 166px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  font-family: "Iranian Sans";
  display: flex;
  box-shadow: 5px 5px 5px black;
  border-top: 1px solid var(--container-color);
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.top-actor-card:hover {
  margin-left: 5px;
  transition: 0.5s;
  border-radius: 0px;
}

.top-actor-card-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  border-top-left-radius: 0px;
  width: 120px;
}

.top-actor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0px;
}

.top-actor-card-details {
  position: absolute;
  right: 0;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  color: #ffffff;
  transition: 0.3s;
  font-family: "Iranian Sans";
  left: 112px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.name-card-en-top-actor {
  display: block;
  text-align: left;
  font-family: "Century Gothic";
  font-size: 16px;
  height: 25px;
}

.name-card-fa-top-actor {
  text-align: right;
  display: block;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.row-movie-top-cards {
  left: 120px;
  position: absolute;
  color: #999;
  bottom: 5px;
  width: 63%;
}

.row-movie-top-cards p {
  height: 22px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  margin-left: 5px;
}

/* .row-movie-top-cards p::before {
  content: "🎬";
  display: inline;
  padding-right: 5px;
} */

/* بخش اسکار و گلدن */

.event-history-widget {
  position: fixed;
  background: none;
  padding: 20px;
  padding-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  height: 100vh;
  padding-bottom: 220px;
}

.event-history-widget a h4 {
  text-align: center;
  font-family: "Iranian Sans";
  font-weight: normal;
  margin-right: 15px;
  display: block;
  padding: 15px;
  width: 70%;
  margin-left: 15%;
  color: #f4f4f4;
  border: 1px solid goldenrod;
  border-radius: 10px;
}

.event-history-widget a h4:hover {
  background: gold;
  color: black;
  transition: all 0.5s ease;
}

.event-history-widget__title {
  direction: rtl;
}

.event-history-widget__title h3 {
  font-family: "Iranian Sans", sans-serif;
  font-weight: bold;
  text-align: center;
}

.event-history-widget__years {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #3e3e55;
  margin-bottom: 25px;
}

.year-link {
  display: inline-block;
  margin: 5px;
  padding: 6px 11px;
  color: #f7f7f7;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.year-link:hover,
.year-link:active {
  background-color: #aa352b;
  color: #fff;
  text-transform: uppercase;
}

.year-link.active {
  background-color: #ec4034;
  /* رنگ پس‌زمینه برای سال فعال */
  color: #fff;
  /* رنگ متن برای سال فعال */
  font-weight: bold;
  /* درشت کردن متن برای برجسته‌سازی بیشتر */
}
.event-year-header {
  display: flex;
  justify-content: space-between;
}
.event-widgets__award-name {
  width: 10%;
  margin-bottom: 20px;
  padding-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    -180deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
}

.event-year-header__year {
  text-align: center;
  font-family: "Iranian Sans";
  font-weight: normal;
  margin-right: 15px;
  display: flex;
  padding: 15px;
  margin-bottom: 15px;
  color: #f4f4f4;
  background: linear-gradient(
    -180deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
  width: 100%;
  justify-content: center;
  align-items: center;
}

.event-widgets__award-category {
  margin-top: 15px;
  margin-bottom: 55px;
}

.event-widgets__award-category-name {
  margin-top: 15px;
  text-align: center;
  font-family: "Iranian Sans";
  /* border-bottom: 1px solid #EA4034; */
  /* border-top: 1px solid #ffff; */
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  margin: auto;
  background: linear-gradient(
    -180deg,
    #2b2b3e 0%,
    rgb(30, 30, 42) 95%,
    rgb(30, 30, 42) 100%
  );
}

.grid-container-academic a {
  display: contents;
}

/* box-office */

.box-office-filmCard {
  background: linear-gradient(to left, #1e1e2a, #1e1e2a, #24243e);
  border-radius: 10px;
  overflow: hidden;
  width: 500px;
  height: 200px;
  display: inline-flex;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.box-office-img {
  height: 100%;
  object-fit: contain;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.box-office-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  text-align: left;
}

.box-office-h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #fff;
  font-weight: bold;
  font-family: "Century Gothic";
}

.box-office-p {
  font-size: 1rem;
  color: #bbb;
  margin: 5px 0;
  text-align: end;
  font-family: "Iranian Sans";
}

.box-office-p span {
  color: #ffdb58;
  font-weight: bold;
}

.box-office-filmCard:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.oscar-card-index {
  width: 96%;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--body-color),
    var(--container-color)
  );
  background-size: auto;
  background-size: cover, contain;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-left: 2%;
  border-right: 1px solid gold;
  border-left: 1px solid gold;
}

.oscar-card-index img {
  width: 10%;
}

.oscar-card-index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.oscar-card-index h1 {
  font-size: 24px;
  z-index: 1;
  margin: 20px;
}

.oscar-card-index span {
  font-size: 18px;
  color: #ffd700;
  font-weight: bold;
  z-index: 1;
}

.oscar-card-index:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

#swiper-wrapper-dr {
  padding-bottom: 25px;
}

.telegram-invite-container {
  /* Full width to center the card */
  display: flex;
  justify-content: center;
}

.telegram-invite-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: linear-gradient(
    90deg,
    rgba(27, 149, 224, 1) 0%,
    rgba(91, 200, 250, 1) 100%
  );
  border-radius: 30px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  width: 500px;
  /* Fixed width */
  transition: all 0.3s ease;
  position: relative;
  /* برای قرارگیری آیکون به صورت نسبی داخل کارت */
  padding: 20px 30px;
  /* افزودن فاصله از همه جهات */
  font-family: "Iranian Sans";
}

.telegram-invite-card:hover,
.instagram-invite-card:hover,
.telegram-bot-invite-card:hover {
  /* خصوصیات مورد نظر برای اعمال تغییرات به هنگام رویداد hover را در اینجا قرار دهید */
  transform: translateX(-15px);
  box-shadow: 0 12px 20px 0 #0a0908;
}

.telegram-icon {
  width: 40px;
  height: auto;
  margin-left: 20px;
}

.telegram-text {
  flex-grow: 1;
  text-align: right;
}

.telegram-arrow {
  position: absolute;
  /* قرار دادن آیکون به صورت مطلق داخل کارت */
  left: 20px;
  /* فاصله از سمت چپ */
  top: 50%;
  /* تراز در وسط عمودی کارت */
  transform: translateY(-50%);
  /* مرکز کردن دقیق آیکون در وسط عمودی */
  color: #ffffff;
  /* تغییر رنگ آیکون به سفید */
  font-size: 1.2rem;
  /* اندازه آیکون */
}

.telegram-text {
  flex-grow: 1;
  text-align: right;
  /* متن را در مرکز قرار دهید */
}

.social-media-container {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  justify-content: space-around;
}

.social-media-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: 30px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  width: 500px;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Iranian Sans";
}

.instagram-invite-card {
  background: linear-gradient(
    90deg,
    rgba(225, 48, 108, 1) 0%,
    rgba(225, 177, 44, 1) 100%
  );
}

.telegram-bot-invite-card {
  background: linear-gradient(90deg, #c53a30 0%, #656f6f 100%);
}

.social-media-arrow {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1.2rem;
}

.social-media-icon {
  width: 40px;
  height: auto;
  margin-left: 20px;
}

.social-media-text {
  flex-grow: 1;
  text-align: right;
  font-family: "Iranian Sans";
}

.floating-button {
  position: fixed;
  bottom: 20px;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.left-float {
  left: 20px;
}

.offer-button {
  position: fixed;
  bottom: 20px;
  left: 4px;
  width: 70px;
  height: 70px;
  background: none;
  border-radius: 10%;
  color: white;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: pulse 2s infinite, rotate 5s linear infinite, ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  padding-bottom: 5px;
  padding-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  margin-bottom: 65px;
}

.offer-button:hover {
  color: red; /* افزایش اندازه دکمه هنگام hover */
  bottom: 25px;
  transition: 0.5s, ease-in-out;
}

.offer-button span {
  transform: rotate(0deg); /* چرخش متن برای جایگیری صحیح در داخل مثلث */
  display: block;
  font-family: "Iranian Sans";
  font-size: 20px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* @keyframes rotate {

  70% {
    transform: rotate(0deg);
}
  80% {
    transform: rotate(15deg);
}
90% {
  transform: rotate(-15deg);
}
  100% {
      transform: rotate(0deg);
  }
} */

/* @keyframes colorChange {
  0% {
      background-color: #490a3d;
  }
  50% {
      background-color: #e97f02;
  }
  100% {
      background-color: #490a3d;
  }
} */

/*=============== colorChange ===============*/
@keyframes colorChange {
  0% {
    border-color: red;
  }
  25% {
    border-color: blue;
  }
  50% {
    border-color: green;
  }
  75% {
    border-color: orange;
  }
  100% {
    border-color: red;
  }
}

/*=============== login ===============*/
.page-container {
  display: flex;
  justify-content: space-around;
  margin-top: 5vh;
  font-family: "Iranian Sans";
}

.animation-container {
  display: flex;
}

.r-page-container {
  width: 40%;
  display: flex;
}

.l-page-form {
  padding: 20px;
  border-radius: 12px;
  width: 550px;
  text-align: center;
  transition: transform 5s ease-in-out;
  margin-right: 10%;
}

.l-title {
  margin-bottom: 20px;
  animation: colorCycle 10s infinite;
  padding: 10px 30px;
  font-size: 45px;
  text-align: right;
  float: right;
}

@keyframes colorCycle {
  0%,
  100% {
    box-shadow: #12121a 0px 25px 20px -20px;
  }
  25% {
    box-shadow: none;
  }
  50% {
    box-shadow: #12121a 0px 25px 20px -20px;
  }
  75% {
    box-shadow: none;
  }
}

.l-page-form:hover {
  transform: translateY(-2px); /* افزایش برجستگی فرم هنگام hover */
}

.l-page-input-group {
  margin-bottom: 20px;
}

.l-page-input-group input {
  width: 100%;
  padding: 12px; /* افزایش padding برای راحتی بیشتر */
  border: 1px solid #ddd; /* تغییر رنگ حاشیه به رنگ ملایم‌تر */
  border-radius: 6px; /* نرم کردن گوشه‌ها */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* افزودن سایه داخلی برای عمق بیشتر */
}

.l-page-error {
  color: red;
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: "Iranian Sans";
  border-right: 1px solid rgb(240, 241, 248);
  margin-right: 10%;
  padding-right: 10px;
  font-size: 12px;
  text-align: justify;
  direction: rtl;
}

.l-page-error:hover {
  margin-right: 12%;
  transition: 0.5s;
}

.l-page-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 15px;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, box-shadow 0.3s;
  font-size: 20px;
  box-shadow: 0 4px 8px #1c1c1c;
  font-family: "Iranian Sans";
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-page-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.l-page-btn .spinner {
  display: none;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px rgba(255, 4, 4, 0.3);
  border-top: 3px solid #1e1e2a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.l-page-btn.loading .spinner {
  display: inline-block;
}

.l-page-btn.loading span {
  visibility: hidden;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.l-page-btn.loading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
}

.l-page-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.l-page-btn.l-page-secondary {
  background: #ff4742;
  border: 1px solid #ff4742;
  margin-top: 8px; /* کم کردن فاصله بالای دکمه ثانویه */
}

.l-page-btn.l-page-secondary:hover {
  background-color: initial;
  background-position: 0 0;
  color: #ff4742;
}

.l-page-forgot-password {
  text-align: center;
  font-family: "Iranian Sans";
  font-size: 15px;
  display: flex;
  justify-content: center;

  cursor: pointer;
  border-top: 3px solid var(--body-color);
  border-bottom: 3px solid var(--body-color);
  transition: 0.5s;
  color: #999;
  justify-content: flex-end;
}

.l-page-forgot-password:hover {
  color: white;
  margin-right: 3px;
}

/* .l-page-error {
  color: #dc3545; 
  text-align: center;
  margin-top: 10px;
  font-size: 0.9em; 
} */

.custom-inputBox-content {
  position: relative;
}

.toggle-password-btn {
  position: absolute;
  top: 100%;
  left: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  font-family: "Iranian Sans";
}

.toggle-password-btn:focus {
  outline: none;
}

.custom-menu-user .custom-inputBox-content {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-left: 10%;
  padding-bottom: 10px;
  justify-content: center;
  display: flex;
}

.custom-menu-user .custom-inputBox-content input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: var(--body-color);
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  direction: ltr;
  width: 90%;
}

.custom-menu-user .custom-inputBox-content span {
  position: absolute;
  padding: 10px;
  pointer-events: none;
  font-size: 0.8rem;
  color: rgb(253, 253, 253);
  text-transform: uppercase;
  transition: 0.5s;
  font-family: "Iranian Sans";
  right: 31px;
}

.custom-menu-user .custom-inputBox-content input:valid ~ span,
.custom-menu-user .custom-inputBox-content input:focus ~ span {
  color: rgb(255, 255, 255);
  transform: translateX(10px) translateY(-7px);
  font-size: 0.8rem;
  padding: 0 10px;
  background-color: var(--body-color);
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}

.custom-menu-user .custom-inputBox-content input:valid,
.custom-menu-user .custom-inputBox-content input:focus {
  border: 1px solid rgb(255, 255, 255);
}

.custom-menu-user .active-input-custom {
  background-color: rgb(255, 0, 0);
  color: #fff;
}

.l-social-sign-in {
  display: flex;
  margin-bottom: 30px;
}

.l-social-sign-in button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  border-top: 1px solid var(--container-color);
}
.l-input-google {
  width: 100%;
  height: 50px;
  padding: 0 30px;
  background: #1e1e2a;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.l-input-google img {
  width: 25px;
}
.l-social-sign-in button:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.5s;
}
.l-input-google p {
  font-family: "Iranian Sans";
  font-size: 15px;
  width: 90%;
  font-weight: 600;
}

.l-middle-text {
  position: relative;
  width: 100%;
  margin: 30px 0;
  margin-top: 45px;
  margin-bottom: 45px;
}
.l-or-text {
  font-family: "Iranian Sans";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--body-color);

  padding: 10px;
}
.l-middle-text hr {
  border: 1px solid var(--container-color);
}

.checkbox-wrapper-61 input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.checkbox-wrapper-61 *,
.checkbox-wrapper-61 ::after,
.checkbox-wrapper-61 ::before {
  box-sizing: border-box;
}

.checkbox-wrapper-61 {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: right;
}
.checkbox-wrapper-61 .check {
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
}
.checkbox-wrapper-61 .label svg {
  vertical-align: middle;
}
.checkbox-wrapper-61 .path1 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: 0.5s stroke-dashoffset;
  opacity: 0;
}
.checkbox-wrapper-61 .check:checked + label svg g path {
  stroke-dashoffset: 0;
  opacity: 1;
}

.rules-box {
  background-color: #ffffff; /* رنگ زمینه سفید برای خوانایی بهتر */
  border-radius: 10px; /* گوشه‌های گرد برای ظاهری نرم‌تر */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* سایه برای ایجاد عمق و برجستگی */
  padding: 20px; /* فضای داخلی کافی برای خوانایی متن */
  margin: 20px auto; /* مرکز قرار دادن باکس */
  width: 90%; /* عرض باکس */
  max-width: 600px; /* حداکثر عرض برای جلوگیری از خیلی بزرگ شدن در صفحات عریض */
  color: #333; /* رنگ متن تیره برای خوانایی آسان */
  font-family: "Helvetica", sans-serif; /* فونت خوانا و مدرن */
  line-height: 1.6; /* فاصله خطوط برای خوانایی آسان‌تر */
  text-align: justify; /* تراز کردن متن برای ظاهری منظم */
}

.rules-box h2 {
  text-align: center; /* مرکزیت عنوان */
  color: #007bff; /* رنگ عنوان آبی روشن برای جذابیت بیشتر */
  margin-bottom: 20px; /* فاصله بین عنوان و متن */
}

.rules-box p {
  margin-bottom: 10px; /* فاصله بین پاراگراف‌ها */
}

/* Swiper class */
/*=============== TESTIMONIAL ===============*/
/* Swiper class */
/*=============== CONTACT ===============*/
/* Status color */

/*=============== FOOTER ===============*/

.footer {
  width: 100%;
  position: relative; /* تغییر از absolute به relative برای جلوگیری از مشکلات موقعیت‌دهی */
  color: white; /* رنگ متن سفید برای خوانایی بهتر */
  padding: 20px 0; /* اضافه کردن فاصله بالا و پایین */
  display: flex;
  flex-direction: column;
  align-items: center; /* تراز کردن المان‌ها در مرکز */

  justify-content: center;
  font-family: "Iranian Sans";
  margin-top: 100px;
}

.footer .background-footer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.footer-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 80%;
  justify-content: space-between;
}

.footer-logo img {
  width: 150px; /* تنظیم اندازه لوگو */
  margin-bottom: 20px; /* فاصله لوگو تا بخش بعدی */
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  direction: rtl;
  flex-direction: column;
}

.footer-link-items {
  margin: 4px 10px; /* فاصله بین آیتم‌ها */
  display: flex;
  align-items: center;
  font-size: 15px;
}
.footer-link-items a {
  color: #999;
  margin-right: 15px;
  align-items: center;
  display: flex;
}

.footer-link-items img {
  width: 24px; /* اندازه آیکون‌ها */
  margin-right: 8px; /* فاصله آیکون تا متن */
  margin-left: 10px;
}

.r-footer p {
  text-align: center;
  font-size: 16px; /* تنظیم اندازه متن */
  direction: rtl;
  margin-right: 30px;
}
.footer-link-items:hover {
  margin-right: 15px;
  transition: 0.5s;
}
.footer-link-items:hover a {
  color: #fff;
  transition: 0.5s;
}

.lottie-update {
  width: 450px;
  margin: auto;
  margin-top: 25px;
}

.lottie-500 {
  width: 350px;
  margin: auto;
  margin-top: 25px;
}

.lottie-animation-404 {
  width: 450px;
  margin: auto;
  margin-top: 25px;
}

.text-error p {
  text-align: center;
  font-family: "Iranian Sans";
  padding: 15px;
  direction: rtl;
}

.btn-error {
  color: white;
  font-family: "Iranian Sans";
  font-size: 20px;
  padding: 10px 20px;
  font-family: "Iranian Sans";
  font-size: 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  margin: auto;
  margin-top: 20px;
  /* انیمیشن تغییر رنگ */
  background-image: linear-gradient(100deg, #1e1e2a, #007bff, #1e1e2a);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.btn-error:hover {
  background-image: linear-gradient(100deg, #043366, #007bff, #024d9c);
  /* تغییر رنگ زمینه هنگام موس اور */
  color: #ffffff;
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* loader */

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
  margin-top: 30vh;
}

.loader:before,
.loader:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.loader:after {
  box-shadow: 0 2px 0 #ff3d00 inset;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.linear-background {
  background-image: linear-gradient(100deg, #272736, #1e1e2a, #272736);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  height: 10vh;
  position: relative;
  overflow: hidden;
  width: 246px;
  height: 393px;
  border-radius: 20px;
}

.linear-dr-background {
  background-image: linear-gradient(100deg, #272736, #1e1e2a, #272736);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  height: 10vh;
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 166px;
  border-radius: 20px;
}

.loader-container-hbd-index {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 55px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin: 15px auto;
  margin-top: 30px;
}

.linear-hbd-background {
  background-image: linear-gradient(100deg, #272736, #1e1e2a, #272736);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  height: 10vh;
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 270px;
  border-radius: 20px;
}

.linear-dl-background {
  background-image: linear-gradient(100deg, #272736, #1e1e2a, #272736);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  position: relative;
  overflow: hidden;
  width: 90%;
  height: 166px;
  border-radius: 20px;
  margin-bottom: 30px;
  margin-top: 15px;
}

.loader-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin: 15px auto;
}

.loader-container-index {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin: 15px auto;
  margin-top: 30px;
}

.loader-dr-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin: 15px auto;
}
.loader-dr-index-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin: 15px auto;
}

#awardsall {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  width: 100%;
  text-align: center;
  /* background-image: linear-gradient(100deg,#E0B416 , #E0B416, #fff, #E0B416, #E0B416); */
  background-image: linear-gradient(
    100deg,
    #1e1e2a,
    #1e1e2a,
    #e0b416,
    #1e1e2a,
    #1e1e2a
  );
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
  font-family: "Iranian Sans";
  color: white;
  font-weight: 1000;
}

.imdb-actor {
  text-align: center;
  margin-right: auto;
  color: white;
  width: 150px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-family: "Iranian Sans";
  padding: 12px;
  font-size: 15px;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.imdb-actor:hover {
  background-color: #2d5395;
  transition: all 1s ease-out;
  box-shadow: none;
}

.error-password-db {
  color: red;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Iranian Sans";
  border-right: 1px solid rgb(240, 241, 248);
  margin-right: 10%;
  padding-right: 10px;
  font-size: 12px;
}

.error-password-db:hover {
  margin-right: 12%;
  transition: 0.5s;
}

.token {
  direction: rtl;
  width: 100%;
}

.token a {
  color: #5788d6;
  font-family: "Century Gothic";
}

.Rectangle {
  grid-template-rows: 10rem 10rem;
  grid-template-columns: 33.5rem 40rem;
  border-radius: 0% 0% 0% 5%;
  font-family: "Iranian Sans";
  display: grid;
  justify-content: center;
  margin-top: 16vh;
}

/*=============== user ===============*/

.price_user {
  width: 19.875rem;
  height: 17.25rem;
  margin-top: 1.25rem;
  margin-left: 3.125rem;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.emoji {
  color: #fff;
  font-size: 5rem;
  display: flex;
  justify-content: center;
}

.status {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  color: #b8b3b3;
  font-size: 19px;
}

.statusON {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  color: #1fa767;
  font-size: 16px;
  font-weight: bold;
}

.statusOFF {
  color: #ff0000;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  font-size: 16px;
  font-weight: bold;
}

.end_date {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
  color: #b8b3b3;
  font-size: 0.875rem;
}

.date {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  color: #558df7;
  font-size: 17px;
}

.factor hr {
  color: #eeeeee;
  margin-top: -3rem;
  margin-bottom: 1.5rem;
}

/*=============== factor ===============*/

.factor {
  width: 19.875rem;
  height: 17.25rem;
  margin-top: 0.625rem;
  margin-left: 3.125rem;
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}

.factor h3 {
  display: flex;
  justify-content: center;
  font-family: "Iranian Sans";
}

.factor ul {
  direction: rtl;
  font-family: "Iranian Sans";
  display: grid;
  grid-template-columns: auto auto;
}

.factor li {
  margin-top: 1.75rem;
  font-size: 0.975rem;
  margin-right: 0.625rem;
  color: #377dff;
}

.factor .li2 {
  font-size: 0.85rem;
  color: #f7f4f4;
  font-size: 0.938rem;
  display: flex;
  justify-content: right;
}

/*=============== button pay ===============*/

.bn632-hover {
  width: 100%;
  height: 2.813rem;
  font-size: 1.25rem;
  margin-left: 3.125rem;
  font-family: "Iranian Sans";
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 0.938rem;
  --moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.bn632-hover:hover {
  background-position: 100% 0;
  --moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.bn632-hover:focus {
  outline: none;
}

.bn632-hover.bn26 {
  background-image: linear-gradient(
    to right,
    #006995,
    #4481eb,
    #2000ff,
    #0068ff
  );
  margin-top: 2.25rem;
  margin-left: 0rem;
  grid-row: 4 / 5;
  grid-column: 1 / 2;
}

/*=============== prics ===============*/
.price {
  width: 45rem;
  height: 33rem;
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-family: "Iranian Sans";
  direction: rtl;
  font-size: 1.563rem;
  color: #fff;
  cursor: pointer;
}

.req_price {
  width: 43rem;
  height: 6.625rem;
  margin: auto;
  border-radius: 1.25rem;
  border-top: 1px solid #2b2b3e;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  padding-block: 2.188rem;
  padding-inline: 2.813rem;
  border-left: none;
  border-right: none;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.req_price:hover {
  transition: 0.8s;
  background-image: linear-gradient(270deg, #377dff, red, #377dff);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

.activereq {
  background-color: #377dff;
  color: #fff;
  transition: 0.5s;
}

.Discount {
  width: 5.688rem;
  height: 1.625rem;
  background-color: red;
  margin-right: 4.563rem;
  margin-top: 0.625rem;
  border-radius: 0.313rem;
  color: #fff;
  font-family: "Iranian Sans";
  font-size: 0.813rem;
  display: flex;
  justify-content: center;
  padding-top: 0.313rem;
  background-image: linear-gradient(270deg, #377dff, red, #377dff);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*=============== Pins ===============*/
.pins {
  width: 34.2rem;
  height: 26rem;
  margin-top: -3.125rem;
  margin-left: 78.75rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  z-index: 3;
}

.pin_circle {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 100%;
  display: grid;
  border: solid #000064 0.188rem;
  background-color: #ffffff;
  z-index: 1;
}

.pin_circle i {
  font-size: 3.75rem;
  margin: auto;
  color: #000064;
  z-index: 5;
}

.pin_circle .fa-regular {
  font-size: 3.61rem;
  margin: auto;
  text-align: center;
  font-family: "Font Awesome 6 Free";
}

.pin_circle .fa-ban {
  font-size: 3.6rem;
  margin: auto;
  color: #000064;
  z-index: 1;
}

.pin_circle .fa-phone {
  font-size: 2.813rem;
  margin: auto;
  color: #000064;
  z-index: 1;
}

.pin_circle .fa-code-pull-request {
  font-size: 2.813rem;
  margin: auto;
  color: #000064;
  z-index: 1;
}

.req_pin {
  width: 31.75rem;
  height: 4.375rem;
  border-radius: 50px 1px 1px 50px;
  background: linear-gradient(90deg, rgb(255, 255, 255, 0.2) 10%, #000064 100%);
  color: #fff;
}

.req_pin p {
  font-family: "Iranian Sans";
  direction: rtl;
  margin-top: -2.813rem;
  font-size: 1.188rem;
  text-align: center;
}

.btntop250 {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  padding: 25px;
  width: 100%;
  border-radius: 25px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  font-size: 17px;
  border: 1px solid #2b2b3e;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(43, 43, 62);
  border-top: none;
  color: #fff;
  font-family: "Iranian Sans";
  align-items: center;
  height: 15px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.btntop250:hover {
  border: 1px solid black;
  border-top: none;
  transition: 0.5s;
  color: red;
}

.box-office-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.no-scroll {
  overflow: hidden;
}

.urlsub {
  text-align: center;
  font-family: "Iranian Sans";
  color: #ffffff;
  font-size: 20px;
  margin: 60px;
  display: flex;
  justify-content: center;
  border: 1px solid;
  padding: 15px;
}

/*=============== SCROLL BAR ===============*/
/*=============== SCROLL UP ===============*/
/* Show Scroll Up*/
/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media (max-width: 1800px) {
  .navbar {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: translateY(0);
    flex-direction: row;
    justify-content: space-evenly;
    row-gap: 1px;
    padding: 10px;
    border-top: 1px solid hsl(200 100% 99% / 5%);
    background: linear-gradient(
      8deg,
      hsl(240 17% 14% / 100%) 5%,
      hsl(240 17% 14% / 90%) 100%
    );
  }
  .nav-link i {
    font-size: 1.5rem;
  }

  /* .swiper-slide{
        margin-right: 45px; 
        margin-left: 2px;
    } */
}

@media (max-width: 1700px) {
  /*=============== list-movie ===============*/
  /* list-movie */

  .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 5px; /* فاصله بین عناصر درون grid */
    /* margin-left: 1%; */
  }

  .loader-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1615px) {
  .box-download-link-ep-one {
    font-size: 13px;
  }
}

@media (max-width: 1599px) {
  .loader-container-index {
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
  }
  .loader-container-hbd-index {
    grid-template-columns: repeat(5, 1fr);
    gap: 85px;
  }
}
@media (max-width: 1550px) {
  .row-genres {
    margin-top: 45px;
  }
  .row-other {
    font-size: 15px;
  }
  .box-office-index {
    gap: 10px;
  }
  .box-office-info {
    padding: 10px;
    width: 100%;
  }
  .box-office-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    place-items: center;
  }
}
@media (max-width: 1500px) {
  .box-download-link-ep {
    width: 80%;
    font-weight: 600;
    font-size: 16px;
  }

  .row-story p {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
  }

  ul.box-download-menu .list {
    font-size: 12px;
  }

  ul.box-download-menu .list a {
    font-size: 17px;
  }

  .title-box-col-cast {
    font-size: 15px;
  }

  .title-similar-movie {
    font-size: 15px;
  }

  .title-similar-movie::after {
    content: "";
    display: flex;
    position: relative;
    width: 75%;
    border: 1px solid #2b2b3e;
    margin-top: -10px;
  }

  .req h2 {
    color: white;
    margin-bottom: 25px;
    font-family: "Iranian Sans";
    text-align: center;
    border: 1px dashed rgb(92, 91, 91);
    padding: 15px;
    font-size: 16px;
  }

  .req h3 {
    font-size: 14px;
    text-align: center;
  }

  .not-sub {
    font-size: 14px;
    line-height: 30px;
  }

  .biography {
    width: 100%;
    padding-right: 0px;
  }

  .biography p {
    font-size: 15px;
    line-height: 36px;
    margin-left: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-container-index {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 10px; /* فاصله بین عناصر درون grid */
    /* margin-left: 1%; */
    justify-content: center; /* وسط‌چین کردن در محور افقی */
    align-items: center; /* وسط‌چین کردن در محور عمودی */
    margin-top: 16px;
  }
  .box-download-link-ep-one {
    font-size: 13px;
  }
  .grid-container-dr {
    grid-template-columns: repeat(3, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 20px;
  }

  .loader-dr-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .loader-dr-index-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .event-history-widget a h4 {
    font-size: 12px;
  }
}

@media (max-width: 1400px) {
  /*=============== list-movie ===============*/
  /* list-movie */

  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 5px; /* فاصله بین عناصر درون grid */
    /* margin-left: 1%; */
  }
  .loader-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .l-title {
    font-size: 30px;
  }
  .price {
    width: 37rem;
  }
  .loader-container-index {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }
  .loader-container-hbd-index {
    grid-template-columns: repeat(5, 1fr);
    gap: 65px;
  }
}

@media (max-width: 1340px) {
  .basic-info h5 {
    font-size: 11px;
  }
  .basic-info h6 {
    font-size: 12px;
  }
  .modal-content {
    height: 600px;
  }

  ul.awards-movie .winer-actor-movie {
    font-size: 13px;
    margin-top: 15px;
  }

  ul.Filmography-movie .row-story-cast-movie {
    margin-top: 15px;
  }

  .row-genres-cast {
    margin-top: 15px;
  }
  .box-download-link-ep {
    width: 83%;
    font-weight: 600;
    font-size: 15px;
  }

  ul.box-download-menu .list a {
    font-size: 16px;
  }

  /* .img-banner{
        height: 92%;
    } */

  .row-title-name {
    font-size: 40px;
    padding-top: 15px;
  }

  .row-original-title {
    font-size: 14px;
  }

  .row-Persians-title {
    font-size: 13px;
    margin-top: 3px;
  }

  .row-year {
    font-size: 15px;
  }

  .row-genres {
    font-size: 12px;
  }

  .row-imdb {
    font-size: 14px;
    margin-top: 20px;
    padding: 2px;
  }
  .row-imdb img {
    height: 21px;
  }

  .row-rottentomatoes {
    font-size: 14px;
    margin-top: 5px;
    padding: 2px;
  }

  .row-rottentomatoes img {
    height: 21px;
  }

  .row-rottentomatoes p {
    margin-left: 25px;
    font-weight: 500;
    color: #fff;
  }

  .row-Metacritic {
    font-size: 14px;
    margin-top: 5px;
    margin-left: 10px;
    padding: 2px;
  }

  .row-Metacritic img {
    height: 21px;
    margin-left: 20px;
  }

  .row-Metacritic p {
    margin-left: 58px;
    font-weight: 500;
    color: #fff;
  }

  .basic-info {
    margin-top: 18px;
  }

  .row-story {
    margin-top: 10px;
  }

  .basic-info .row-story h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .row-story p {
    font-size: 14px;
    line-height: 28px;
  }
  .row-btn-mylists {
    margin-left: 6%;
  }

  .title-box-col-cast::after {
    width: 70%;
  }

  .title-similar-movie::after {
    width: 70%;
  }

  ul.similar-movie .row-story-similar-movie {
    font-size: 13px;
    line-height: 28px;
  }
  .title-comment-movie {
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .title-comment-movie::after {
    width: 85%;
  }

  .trailer {
    width: 90%;
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .title-trailer-movie {
    font-size: 18px;
  }

  .title-trailer-movie::after {
    width: 75%;
  }

  .biography {
    width: 100%;
    padding-right: 0px;
  }

  .biography p {
    font-size: 15px;
    line-height: 36px;
    margin-left: 30px;
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
  }

  .title-box-col-Filmography {
    font-size: 18px;
  }

  /* .title-box-col-Filmography::after {
    width: 70%;
  } */

  .row-genres-cast {
    font-size: 12px;
  }

  ul.similar-movie .row-story-cast-movie {
    font-size: 13px;
  }

  .row-btn-mylists {
    margin-left: 15%;
  }

  .grid-container-academic {
    grid-template-columns: repeat(2, 1fr);
  }
  .r-page-container {
    width: 50%;
  }
}

@media (max-width: 1250px) {
  .box-download-link-ep-one {
    font-size: 13px;
  }
  .box-download-link-ep-one .Qualitynum-box-dl {
    width: 50%;
  }
  .box-download-link-ep-one .size-box-dl {
    width: 40%;
  }
  .l-page-form {
    margin-right: 0%;
  }
  .l-middle-text {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}

@media (max-width: 1249px) {
  .loader-container-hbd-index {
    grid-template-columns: repeat(4, 1fr);
    gap: 65px;
  }
}

@media (max-width: 1205px) {
  .box-download-link-ep-one .size-box-dl {
    font-size: 10px;
  }

  .event-history-widget a h4 {
    font-size: 9px;
    width: 80%;
  }
}
@media (max-width: 1110px) {
  .basic-info h6 {
    font-size: 10px;
  }
  .basic-actor-info h6 {
    font-size: 12px;
  }
}
@media (max-width: 1170px) {
  .box-download-link-ep {
    font-weight: n;
    font-size: 11px;
  }

  .box-download-link .Quality-box-dl {
    font-size: 15px;
  }
  .box-download-link .Qualitynum-box-dl {
    font-size: 13px;
    color: #fff;
  }
  .box-download-link .encode-box-dl {
    font-size: 14px;
  }
  .box-download-link .size-box-dl {
    font-size: 14px;
    color: #fff;
  }

  .box-download-link-ep {
    width: 95%;
    font-weight: 600;
    font-size: 13px;
  }

  ul.box-download-menu .list a {
    font-size: 14px;
  }

  .row-title-name {
    font-size: 38px;
    padding-top: 15px;
  }

  .row-original-title {
    font-size: 13px;
  }

  .row-Persians-title {
    font-size: 12px;
  }

  .row-year {
    font-size: 14px;
  }

  .row-genres {
    font-size: 11px;
  }

  .row-imdb {
    font-size: 14px;
    margin-top: 18px;
    padding: 2px;
  }
  .row-imdb img {
    height: 18px;
  }

  .row-rottentomatoes {
    font-size: 14px;
    margin-top: 5px;
    padding: 2px;
  }

  .row-rottentomatoes img {
    height: 18px;
  }

  .row-rottentomatoes p {
    margin-left: 31px;
    color: #fff;
  }

  .row-Metacritic {
    font-size: 14px;
    margin-top: 5px;
    padding: 2px;
  }

  .row-Metacritic img {
    height: 18px;
    margin-left: 20px;
  }

  .row-Metacritic p {
    margin-left: 58px;
    font-weight: 500;
    color: #fff;
  }

  .basic-info {
    margin-top: 14px;
  }

  .row-story {
    margin-top: 10px;
  }

  .basic-info h3 {
    font-size: 15px;
    padding-top: 4px;
  }

  .basic-info .row-story h3 {
    font-size: 15px;
    margin-bottom: 12px;
    padding-top: 2px;
    padding-bottom: 4px;
  }

  .row-story p {
    font-size: 13px;
    line-height: 24px;
  }

  .basic-info h5 {
    font-size: 9px;
    margin-bottom: 5px;
    padding-top: 10px;
  }
  #gross_world,
  #budget {
    font-size: 10px;
  }

  .basic-info h6 {
    font-size: 10px;
    padding: 4px;
    border-radius: 2px;
    padding-top: 10px;
  }

  ul.similar-movie .name-en-movie {
    font-size: 15px;
    font-weight: 500;
  }

  ul.similar-movie .name-sub-movie {
    font-size: 11px;
  }

  .imdb-similar-movie {
    font-size: 13px;
  }

  ul.box-col-cast img {
    width: 90px;
    height: 130px;
  }

  ul.similar-movie img {
    width: 90px;
  }

  ul.box-col-cast .name-en {
    font-size: 17px;
    font-weight: 500;
  }

  .comment-section {
    max-width: 95%;
  }

  .c-body {
    font-family: "Iranian Sans";
    line-height: 20px;
    font-size: 90%;
  }

  .biography {
    width: 100%;
    margin: auto;
  }

  .biography p {
    font-size: 14px;
    line-height: 33px;
    margin-right: 0px;
    margin-left: 0px;
    padding-left: 25px;
    padding-right: 25px;
  }

  ul.similar-movie .name-en-movie-cast {
    font-size: 18px;
  }

  /*=============== list-movie ===============*/
  /* list-movie */

  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 5px; /* فاصله بین عناصر درون grid */
    /* margin-left: 7%; */
  }
  .loader-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-container-dr {
    grid-template-columns: repeat(2, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 20px;
  }

  .loader-dr-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .loader-dr-index-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  ul.awards-movie .movie-tvshow {
    font-size: 14px;
  }
  ul.Filmography-movie .movie-tvshow {
    font-size: 14px;
  }
  .title-awards-movie {
    font-size: 16px;
  }
  .title-box-col-Filmography {
    font-size: 16px;
  }
  ul.Filmography-movie .name-en-movie-cast {
    font-size: 17px;
  }
  ul.awards-movie .name-en-movie-cast {
    font-size: 17px;
  }
  ul.awards-movie img {
    width: 95px;
  }
  ul.Filmography-movie img {
    width: 95px;
  }
  ul.awards-movie .winer-actor-movie {
    line-height: 22px;
  }
  ul.awards-movie .winer-actor-movie {
    font-size: 12px;
  }

  ul.Filmography-movie .row-story-cast-movie {
    margin-bottom: 17px;
    font-size: 13px;
  }

  .not-released h2 {
    font-size: 15px;
  }
  .btn-error {
    font-size: 17px;
  }
  ul.box-col-cast .title-cast {
    font-size: 10px;
  }
  ul.similar-movie .row-story-similar-movie {
    font-size: 12px;
    line-height: 27px;
  }
  .ul.box-col-cast .episodes {
    font-size: 10px;
  }
  ul.box-col-cast .name-role {
    padding-top: 30px;
  }

  .req_price {
    width: 36rem;
    font-size: 1.2rem;
  }

  .price {
    width: 33rem;
    font-size: 1.2rem;
  }

  .Discount {
    margin-right: 1.563rem;
    font-size: 0.713rem;
  }

  .price_user {
    margin-left: 7.125rem;
  }

  .factor {
    margin-left: 7.125rem;
  }

  .img-banner {
    height: 80%;
  }
}

@media (max-width: 1050px) {
  .box-download-link-ep-one {
    font-size: 11px;
  }
  .box-download-link-ep-one .encode-box-dl {
    width: 50%;
  }

  .box-download-link-ep-one .size-box-dl {
    width: 48%;
    font-size: 9px;
  }

  .img-banner-actor {
    width: 255px;
  }
  .actor-title-name {
    font-size: 17px;
  }
  .basic-actor-info {
    padding: 5px;
  }
  .basic-actor-info .row-info {
    margin-bottom: 5px;
  }
  .basic-actor-info h5 {
    font-size: 12px;
  }
  .basic-actor-info h6 {
    font-size: 12px;
  }
  .biography {
    width: 100%;
  }
  .biography h3 {
    font-size: 20px;
  }

  .biography p {
    font-size: 13px;
    line-height: 31px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .card {
    height: 225px;
    width: 150px;
  }

  .card .poster img {
    width: 135px;
    height: 192px;
    transition: 0.5s;
  }
  .card .details {
    position: absolute;
    width: 77%;
    z-index: 2;
    font-size: 75%;
    bottom: 0px;
    display: block;
  }
  .card:hover {
    height: 225px;
  }

  .card:hover .poster img {
    transform: none;
    filter: none;
  }

  .card .movie-title {
    font-family: "Century Gothic";
    color: white;
    text-decoration: none;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .ratte .imdb {
    position: relative;
    bottom: -18px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Century Gothic";
    font-size: 10px;
    width: 120%;
  }

  .ratte .imdb img {
    width: 20px;
  }

  .card .info {
    display: none;
  }

  .genres {
    display: none;
  }

  .details-director {
    display: none;
  }

  .cast {
    display: none;
  }

  .genres a:hover {
    display: none;
  }

  .details-director span:hover {
    display: none;
  }

  .heading-title {
    font-size: 1rem;
    font-weight: 400;
  }
  .btn {
    font-size: 10px;
    font-weight: 400;
    padding: 5px 10px;
    margin-top: 15px;
    margin-bottom: 4px;
    padding: 9px 24px;
  }
  .loader-container-index {
    grid-template-columns: repeat(5, 1fr);
    gap: 45px;
  }

  .loader-container-hbd-index {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }

  /*=============== list-movie ===============*/
  /* list-movie */

  .grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 10px; /* فاصله بین عناصر درون grid */
    /* margin-left: 4%; */
  }

  .loader-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 45px;
  }

  .linear-background {
    width: 135px;
    height: 250px;
  }

  .show-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .box-office-filmCard {
    width: 480px;
  }
  .box-office-index {
    grid-template-columns: repeat(2, 1fr);
  }
  .card .poster::before {
    content: none;
    position: static;
    background: none;
    transition: none;
    z-index: auto;
    bottom: 0px;
  }
  .card:hover .details {
    bottom: 0px;
    transition: 0;
    font-size: none;
  }

  .card:hover .ratte .imdb {
    bottom: -18px;
  }
  .card:hover .ratte .rotten {
    bottom: 0px;
  }
}

@media (max-width: 991px) {
  .imdb-actor {
    margin: auto;
    margin-bottom: 15px;
    padding: 8px;
    font-size: 13px;
  }

  .box-download-link-ep-one .Qualitynum-box-dl {
    width: 50%;
  }

  .box-download-link-ep-one .encode-box-dl {
    font-size: 15px;
  }

  ul.Filmography-movie img {
    width: 95px;
  }

  ul.awards-movie img {
    width: 95px;
  }

  ul.Filmography-movie .movie-tvshow {
    font-size: 12px;
  }

  ul.awards-movie .movie-tvshow {
    font-size: 12px;
  }

  ul.Filmography-movie .row-story-cast-movie {
    font-size: 12px;
  }

  .box-download {
    margin-top: 70px;
  }
  .box-download-link-ep {
    width: 83%;
    font-weight: 600;
    font-size: 14px;
  }

  ul.box-download-menu .list a {
    font-size: 17px;
  }

  .title-similar-movie::after {
    width: 70%;
  }

  .title-box-col-cast::after {
    width: 70%;
  }

  ul.similar-movie .row-story-similar-movie {
    font-size: 12px;
    line-height: 22px;
  }

  .title-comment-movie {
    font-size: 18px;
  }

  .title-comment-movie::after {
    width: 80%;
  }

  .biography {
    width: 100%;
    margin: auto;
  }

  .biography p {
    font-size: 14px;
    line-height: 33px;
    margin-right: 0px;
    margin-left: 0px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 10px; /* فاصله بین عناصر درون grid */
    /* margin-left: 4%; */
  }
  .loader-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }
  .grid-container-index {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 20px; /* فاصله بین عناصر درون grid */
    /* margin-left: 1%; */
    justify-content: center; /* وسط‌چین کردن در محور افقی */
    align-items: center; /* وسط‌چین کردن در محور عمودی */
    margin-top: 16px;
  }

  .box-download-link-ep-one {
    font-size: 14px;
  }
  .box-download-link-ep-one .size-box-dl {
    font-size: 14px;
  }
  ul.collection-movie .row-story-collection-movie {
    font-size: 12px;
  }
  ul.collection-movie .movie-tvshow {
    font-size: 12px;
  }
  ul.collection-movie .name-en-movie,
  ul.collection-movie .name-sub-movie,
  ul.collection-movie .imdb-collection-movie,
  ul.collection-movie .row-story-collection-movie {
    font-size: 13px;
  }

  .box-download-link:hover {
    box-shadow: none;
  }

  #Filmography {
    margin-top: 20px;
  }

  .footer {
    margin-bottom: 60px;
  }

  .heading-ltitle {
    font-size: 1.5rem;
  }
  .feed-filter-container {
    width: 90%;
  }
  .feed-filter-btn {
    padding: 7px 13px;
    font-size: 14px;
  }
  .card-account-header {
    font-size: 16px;
  }
  .custom-table th:nth-child(2),
  .custom-table th:nth-child(3),
  .custom-table th:nth-child(4),
  .custom-table th:nth-child(5) {
    font-size: 13px;
  }
  .custom-table td:nth-child(5) {
    width: 80px;
  }
  .r-page-container {
    display: none;
  }
  .l-page-btn {
    font-size: 17px;
  }

  .l-title {
    text-align: center;
    float: none;
  }

  .price {
    width: 31rem;
  }

  .req_price {
    width: 28rem;
    font-size: 1.1rem;
    padding-inline: 1.813rem;
  }

  .price_user {
    margin-left: 10.125rem;
  }

  .factor {
    margin-left: 10.125rem;
  }

  .emoji {
    font-size: 4rem;
  }

  .status {
    font-size: 15px;
  }

  .statusON {
    font-size: 13px;
  }

  .statusOFF {
    font-size: 13px;
  }

  .end_date {
    font-size: 0.675rem;
  }

  .date {
    font-size: 13px;
  }

  .factor li {
    font-size: 0.775rem;
  }

  .factor .li2 {
    font-size: 0.875rem;
  }
  .grid-container-index a {
    display: block;
  }
  .oscar-card-index h1 {
    font-size: 20px;
  }
  .oscar-card-index img {
    width: 14%;
  }
  .grid-container-index-top250 {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    margin-left: 5%;
  }
  .box-office-index {
    grid-template-columns: repeat(1, 1fr);
  }
  .img-banner {
    height: 100%;
  }
  .no-scroll {
    overflow: hidden;
  }

  .no-scrolluser {
    overflow: hidden;
  }
}

@media (max-width: 888px) {
  .row-genres-cast {
    margin-top: 15px;
  }

  ul.awards-movie .winer-actor-movie {
    margin-top: 18px;
  }
  .nav {
    padding: 14px 0;
  }
  .biography {
    width: 100%;
  }

  .help-Collaborations h3 {
    font-weight: 600;
    margin-bottom: -15px;
    text-align: center;
  }
  .help-Collaborations p {
    font-size: 0.9rem;
    line-height: 22px;
    direction: rtl;
    text-align: center;
  }
  .modal-content {
    width: 100%;
    height: 106%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .input-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .select,
  .menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .button-row {
    flex-direction: column;
    align-items: center;
  }
  .button-row button {
    margin-top: 10px;
  }
  /* Mobile-specific styles here */
  .tab-wrapper {
    width: 100%;
    /* Adjust the width as needed */
    height: 102%;
  }
  .buttonWrapper {
    grid-template-columns: 1fr;
    /* Make buttons stack vertically */
  }
  .tab-button {
    width: 100%;
    /* Make buttons take full width */
    border-radius: 0;
    /* Remove rounded corners */
  }
  .contentWrapper {
    padding: 10px;
    /* Add some space around content */
    overflow-y: auto;
  }
  .content {
    padding: 10px 0;
    /* Adjust padding as needed */
  }

  .title-similar-movie::after {
    width: 65%;
  }

  .title-box-col-cast::after {
    width: 65%;
  }

  .show-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: 100%;
  }

  .custom-table th:nth-child(2),
  .custom-table th:nth-child(3),
  .custom-table th:nth-child(4),
  .custom-table th:nth-child(5) {
    font-size: 10px;
  }

  .custom-table td img {
    max-width: 40px;
  }

  .custom-table td:nth-child(3) {
    font-size: 13px;
  }

  .custom-table td:nth-child(5) {
    font-size: 12px;
  }

  .event-year-header__year {
    font-size: 13px;
  }

  .event-widgets__award-category-name {
    font-size: 13px;
  }
  ul.academic-movie img {
    width: 100px;
  }

  .req_price {
    width: 27rem;
  }

  .price {
    width: 27rem;
  }

  .price_user {
    margin-left: 12rem;
  }

  .factor {
    margin-left: 12rem;
  }

  .actor-card {
    width: 160px;
  }

  .actor-card-details h2 {
    font-size: 15px;
  }
  .actor-card-details h5 {
    font-size: 14px;
  }
  .linear-hbd-background {
    width: 160px;
  }
  .title-top250 {
    font-size: 16px;
  }
  #fullscreen-button {
    display: none;
  }
  .search-box {
    margin-right: 3.5rem;
  }
  /* tab-index */
}

@media (max-width: 850px) {
  .loader-container-index {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }
  .loader-container-hbd-index {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }
}

/* Add more mobile-specific styles as needed */

/* For medium devices / tablet */
@media (max-width: 767px) {
  .box-download-link-ep-one .encode-box-dl {
    font-size: 13px;
  }

  .actor-official-sites {
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  }
  .nav {
    padding: 11px 0;
  }
  .logo {
    font-size: 0.9rem;
  }
  .logo img {
    width: 1.8rem;
    margin-right: 5px;
  }

  .title-awards-movie {
    font-size: 16px;
  }
  .title-box-col-Filmography {
    font-size: 16px;
  }
  .box-download-link-ep-one .encode-box-dl {
    width: 50%;
  }

  .dropdown-content {
    top: 100%;
    right: -100px;
  }
  .modal-content {
    width: 100%;
    height: 102%;
    overflow-y: auto;
  }
  .input-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .select,
  .menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .button-row {
    flex-direction: column;
    align-items: center;
  }
  .button-row button {
    margin-top: 10px;
  }
  /* Mobile-specific styles here */
  .tab-wrapper {
    width: 100%;
    /* Adjust the width as needed */
    height: 105%;
  }
  .buttonWrapper {
    grid-template-columns: 1fr;
    /* Make buttons stack vertically */
  }
  .tab-button {
    width: 100%;
    /* Make buttons take full width */
    border-radius: 0;
    /* Remove rounded corners */
  }
  .contentWrapper {
    padding: 10px;
    /* Add some space around content */
    overflow-y: auto;
  }
  .content {
    padding: 10px 0;
    /* Adjust padding as needed */
  }

  ul.box-col-cast {
    width: 80%;
  }

  ul.similar-movie {
    width: 80%;
  }

  .title-similar-movie {
    margin-top: 20px;
  }

  .title-similar-movie::after {
    width: 75%;
  }

  .title-box-col-cast::after {
    width: 75%;
  }

  .title-collection-movie {
    font-size: 19px;
  }

  .title-collection-movie::after {
    width: 80%;
  }

  ul.similar-movie {
    margin-top: 20px;
  }

  .biography {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .biography p {
    font-size: 15px;
    line-height: 36px;
    padding-left: 35px;
    padding-right: 35px;
    box-shadow: none;
  }

  .custom-table {
    width: 100%;
    margin-left: 0%;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 10px; /* فاصله بین عناصر درون grid */
    /* margin-left: 8%; */
  }

  .loader-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }

  ul.maxdl-movie {
    width: 100%;
  }

  .custom-tab-wrapper {
    width: 90%;
  }

  ul.maxdl-movie img {
    width: 90px;
  }
  ul.maxdl-movie .name-en-movie {
    font-size: 16px;
    padding-left: 5px;
    max-width: 100%;
    font-weight: 500;
  }

  ul.maxdl-movie li {
    margin-top: 2px;
  }

  ul.maxdl-movie .imdb-maxdl-movie {
    font-size: 13px;
  }

  .img-banner {
    max-height: 630px;
    width: 90%;
    margin: auto;
    align-items: center;
    display: flex;
  }
  .row-btn-mylists {
    margin-left: 20%;
  }
  .footer {
    margin-bottom: 70px;
  }

  .footer-logo img {
    width: 95px;
  }
  .footer-link-items {
    font-size: 12px;
  }
  .r-footer p {
    font-size: 13px;
  }
  .footer-link-items img {
    width: 20px;
  }

  .grid-container-dr {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .loader-dr-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .loader-dr-index-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .linear-dr-background {
    width: 320px;
    height: 166px;
  }

  .top-actor-card {
    width: 320px;
    height: 166px;
  }
  .top-actor-card-image {
    width: 100px;
  }
  .top-actor-card-details {
    left: 90px;
    width: 75%;
  }
  .row-movie-top-cards {
    left: 100px;
  }
  .row-movie-top-cards p {
    font-size: 11px;
  }
  .custom-table td:nth-child(4) {
    width: 55px;
    font-size: 11px;
  }

  .confirmation-modal {
    padding: 10px;
  }

  .confirmation-modal button {
    padding: 10px 20px;
    font-size: 68%;
    margin-top: 13px;
  }

  .confirmation-modal-content p {
    font-size: 10px;
  }

  .confirmation-modal-content {
    padding: 5px;
  }

  .confirmation-modal-content h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }
  ul.academic-movie .row-story-academic-movie {
    font-size: 13px;
    /* Add more mobile-specific styles as needed */
  }

  .Rectangle {
    display: flex;
    flex-direction: column;
    margin-top: 13vh;
  }

  .price_user {
    margin: auto;
    order: 1;
    height: 14.25rem;
  }

  .factor {
    margin: auto;
    order: 3;
    width: 100%;
    margin-top: 70px;
  }

  .price {
    margin: auto;
    order: 2;
    width: 100%;
  }
  .bn632-hover {
    border-radius: 5px;
  }
  .req_price {
    width: 90%;
  }
  ul.maxdl-movie .row-story-maxdl-movie {
    --max-lines: 2;
    font-size: 13px;
  }
  .oscar-card-index {
    height: 160px;
  }

  .oscar-card-index h1 {
    font-size: 20px;
  }
  .oscar-card-index img {
    width: 14%;
  }

  .btntop250 {
    font-size: 15px;
  }
  .grid-container-top250 a {
    margin-top: 10px;
  }
  /* actor-card */
}
@media (max-width: 670px) {
  * {
    scroll-padding-top: 5rem;
  }
  .navbar {
    justify-content: space-around;
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 5px;
  }
  .search-box {
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
    order: 3;
    grid-column-start: 1;
    grid-column-end: 3;
    margin-bottom: 10px;
  }
  .search-box .search {
    width: 100%;
  }
  .popularone {
    margin-top: 3rem;
  }

  .heading {
    margin-bottom: -10px;
  }

  .box-download-link-ep {
    width: 85%;
    font-weight: 600;
    font-size: 15px;
  }

  ul.box-download-menu .list a {
    font-size: 13px;
  }

  .title-comment-movie::after {
    width: 75%;
  }

  .usr-name {
    font-weight: 400;
    font-size: 90%;
  }

  .cmnt-at {
    font-size: 50%;
  }

  .c-text {
    grid-area: comment;
    width: 100%;
    font-size: 90%;
  }
  .biography p {
    font-size: 14px;
    line-height: 32px;
  }

  .title-dashbord {
    padding-top: 25px;
    font-size: large;
  }
  .custom-tab-wrapper {
    width: 90%;
    margin: 40px auto;
  }
  .row-other {
    font-size: 13px;
  }
  .heading-lmovie {
    margin-top: 110px;
    font-size: 1.4rem;
  }

  .top-actor-card {
    width: 300px;
    height: 150px;
  }
  .top-actor-card-image {
    width: 100px;
  }
  .top-actor-card-details {
    left: 90px;
    width: 75%;
  }
  .row-movie-top-cards {
    width: 60%;
  }
  .row-movie-top-cards p {
    font-size: 11px;
  }
  .lottie-animation-404 {
    width: 250px;
    margin-top: 95px;
  }
  .lottie-update {
    width: 300px;
    margin-top: 95px;
  }
  .lottie-500 {
    width: 250px;
    margin-top: 95px;
  }
  .text-error p {
    font-size: 12px;
    line-height: 25px;
    padding: 8px;
  }

  /* dashbord */

  .card-account-header {
    font-size: 14px;
  }

  .card-account {
    font-size: 14px;
  }
  .card-account-time {
    font-size: 14px;
  }
  .menu-user.show {
    top: 55px;
  }
}

@media screen and (max-width: 669px) {
  .loader-container-hbd-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 640px) {
  .popularone {
    margin-top: 5rem;
  }
  .headingone {
    margin-top: 0px !important;
    margin-bottom: -10px !important;
  }
  .heading {
    margin-top: 37px;
    margin-bottom: -15px;
  }

  .box-download-link-ep-one {
    font-size: 12px;
  }

  .row-genres-cast {
    font-size: 11px;
    margin-top: 12px;
  }
  .imdb-awards-movie {
    font-size: 14px;
  }
  ul.awards-movie .winer-actor-movie {
    margin-top: 10px;
    line-height: 20px;
    font-size: 10px;
  }

  .row-genres-cast span {
    margin: 3px;
  }
  .container {
    padding: 0;
  }
  .replies {
    padding-left: 1rem;
    margin-left: 0.5rem;
  }
  .comment {
    grid-template-areas:
      "user user user"
      "comment comment comment"
      "score ... controls";

    gap: 0.5rem;
  }
  .c-score {
    flex-direction: row;
    width: auto;
  }
  .reply-input {
    grid-template-areas:
      "input input input"
      "avatar ... button";
    grid-template-rows: auto min-content;
    align-items: center;
    gap: 0.5rem;
  }
  .reply-input img {
    height: 2rem;
    width: 2rem;
  }
  .reply-input textarea {
    height: 6rem;
    padding: 0.5rem;
    align-self: stretch;
  }

  .box-download-link-ep-one {
    margin-top: 0px;
  }

  .title-dashbord {
    padding-top: 5px;
  }
  .card-not-active-btn {
    padding: 10px;
    font-size: 14px;
  }
  .btn-control-pass {
    font-size: 15px;
    padding: 13px;
  }
  .btn-control-token {
    font-size: 15px;
    padding: 13px;
    margin-top: 0px;
  }
  .card-account main {
    padding: 15px 12px;
  }

  .heading-lmovie {
    margin-top: 110px;
    font-size: 1.4rem;
  }
  .grid-container-academic {
    grid-template-columns: repeat(1, 1fr);
  }
  .event-widgets__award-name {
    display: none;
  }
  .event-year-header__year {
    margin-right: 0px;
    border: 1px solid goldenrod;
    border-radius: 15px;
  }
}

@media (max-width: 570px) {
  .heading-title {
    font-size: 12px;
  }
  ul.awards-movie .name-en-movie-cast {
    font-size: 14px;
  }

  ul.Filmography-movie .name-en-movie-cast {
    font-size: 14px;
  }
  ul.Filmography-movie .imdb-Filmography-movie {
    font-size: 14px;
  }

  ul.Filmography-movie .movie-tvshow {
    font-size: 9px;
  }

  ul.awards-movie .movie-tvshow {
    font-size: 10px;
  }

  .title-box-col-Filmography {
    font-size: 13px;
  }

  ul.Filmography-movie .row-story-cast-movie {
    font-size: 9px;
  }

  .box-download-link-ep-one .Qualitynum-box-dl {
    width: 50%;
  }

  .row-story-collection-movie {
    font-size: 9px;
  }

  .img-banner {
    max-height: 575px;
    width: 90%;
    margin: auto;
    align-items: center;
    display: flex;
  }
  .row-btn-mylists {
    margin-left: 15%;
  }

  .row-title-name {
    padding-top: 10px;
  }

  ul.box-col-cast li {
    margin-top: 10px;
  }

  ul.box-col-cast img {
    width: 85px;
    height: 120px;
  }

  ul.box-col-cast .name-en {
    font-size: 15px;
    font-weight: 400;
  }

  ul.box-col-cast .name-fa {
    font-size: 13px;
  }

  ul.box-col-cast .episodes {
    font-size: 9px;
  }

  ul.box-col-cast .title-cast {
    font-size: 10px;
  }

  ul.box-col-cast .name-role {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .title-box-col-cast {
    font-size: 15px;
  }

  .title-box-col-cast::after {
    width: 68%;
  }

  .title-similar-movie {
    font-size: 15px;
  }

  .title-similar-movie::after {
    width: 70%;
  }

  ul.similar-movie .name-en-movie {
    font-size: 14px;
  }

  .imdb-similar-movie {
    font-size: 12px;
  }

  ul.similar-movie .name-sub-movie {
    font-size: 10px;
  }

  ul.similar-movie .row-story-similar-movie {
    font-size: 10px;
    line-height: 20px;
  }

  .swiper-slide {
    left: 1%;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 1px; /* فاصله بین عناصر درون grid */
    margin-left: 5%;
  }

  ul.maxdl-movie .name-en-movie {
    padding-left: 7px;
    max-width: 240px;
  }

  ul.maxdl-movie img {
    width: 80px;
  }

  .row-title-name {
    padding-top: 25px;
  }
  .box-download-link-ep-one {
    font-size: 13px;
  }
  .box-download-link-ep-one .size-box-dl {
    font-size: 12px;
  }
  .title-awards-movie {
    font-size: 12px;
  }
  ul.awards-movie .winer-actor-movie {
    font-size: 8px;
    line-height: 16px;
  }

  .row-genres-cast span {
    margin: 1px;
    padding: 4px 5px;
  }
  .box-download-link-ep-one {
    font-size: 11px;
  }
  .box-download-link-ep-one .encode-box-dl {
    font-size: 11px;
  }
  .custom-table th:nth-child(2),
  .custom-table td:nth-child(2) {
    width: 70px; /* عرض جدول برای ستون "شماره" */
  }
  .custom-table td:nth-child(4) {
    width: 40px;
  }
  .confirmation-modal-content p {
    line-height: 15px;
  }
  .loader-container-index {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }
  .title-top250 {
    font-size: 16px;
  }
}

@media (max-width: 467px) {
  .loader-container-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-left: 0px;
  }
}
@media (max-width: 467px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }
  .toastify {
    max-width: 90%;
  }
  .box-download-link .Quality-box-dl {
    font-size: 12px;
  }

  .row-btn-mylists {
    position: inherit;
    z-index: 3;
  }

  ul.awards-movie .winer-actor-movie {
    line-height: 20px;
  }
  ul.awards-movie li {
    font-size: 12px;
  }
  ul.awards-movie .imdb-awards-movie {
    font-size: 11px;
  }
  .row-genres-cast {
    font-size: 10px;
    margin-top: 7px;
  }
  .row-genres-cast span {
    margin: 1px;
    padding: 3px 6px;
  }

  ul.collection-movie .row-story-collection-movie {
    display: none;
  }

  ul.collection-movie ul {
    padding-bottom: 10px;
  }

  ul.collection-movie img {
    width: 85px;
    height: 120px;
  }
  ul.collection-movie .movie-tvshow {
    font-size: 9px;
  }
  .box-download-link-ep-one {
    padding: 25px;
    font-size: 10px;
    font-weight: normal;
  }
  .box-download-link-ep-one .size-box-dl {
    font-size: 10px;
  }

  ul.box-download-menu .list span {
    font-size: 15px;
  }

  .row-title-name {
    padding-top: 55px;
    font-size: 30px;
    font-weight: 600;
  }

  .box-download {
    margin-top: 45px;
  }

  .basic-info i {
    display: none;
  }

  .btn {
    margin-left: -20px;
  }

  .box-download-link-ep {
    width: 75%;
    font-weight: 600;
    font-size: 11px;
  }

  ul.box-download-menu .list a {
    font-size: 12px;
  }

  .title-comment-movie {
    font-size: 16px;
  }

  .title-comment-movie::after {
    width: 65%;
  }

  .usr-img {
    height: 1.8rem;
    width: 1.8rem;
  }

  .usr-name {
    font-weight: 400;
    font-size: 65%;
  }

  .cmnt-at {
    font-size: 30%;
  }

  .c-user {
    gap: 0.5rem;
  }
  .title-similar-movie {
    font-size: 16px;
  }

  .title-similar-movie::after {
    width: 66%;
  }

  .title-box-col-cast {
    font-size: 13px;
  }

  .title-box-col-cast::after {
    width: 68%;
  }

  ul.similar-movie .row-story-similar-movie {
    font-size: 12px;
    line-height: 22px;
  }

  .title-comment-movie {
    font-size: 15px;
  }

  .title-comment-movie::after {
    width: 70%;
  }

  ul.box-col-cast .name-en {
    font-size: 14px;
    font-weight: 400;
  }

  ul.box-col-cast .name-fa {
    font-size: 11px;
  }

  ul.box-col-cast .title-cast {
    font-size: 8px;
    padding-top: 0px;
  }

  .title-similar-movie {
    font-size: 13px;
  }

  .title-similar-movie::after {
    width: 50%;
  }

  ul.similar-movie img {
    width: 85px;
    height: 120px;
  }

  .title-trailer-movie {
    font-size: 15px;
  }

  .imdb-similar-movie {
    font-size: 11px;
  }

  ul.similar-movie .name-sub-movie {
    font-size: 7px;
  }

  ul.similar-movie .row-story-similar-movie {
    font-size: 8px;
    line-height: 17px;
  }

  .title-collection-movie {
    font-size: 13px;
  }

  .title-collection-movie::after {
    width: 70%;
  }

  ul.box-download-menu .list {
    height: 58px;
  }

  .reply-to {
    font-size: 11px;
  }

  .c-body {
    line-height: 19px;
    font-size: 81%;
  }

  .c-controls {
    font-size: 80%;
  }

  .control-icon {
    width: 20%;
  }

  .reply-input textarea {
    font-size: 80%;
  }

  .reply-input button {
    font-size: 10px;
  }

  .bu-primary {
    padding: 0.55rem 1rem;
  }

  .biography p {
    font-size: 14px;
    line-height: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  ul.maxdl-movie img {
    width: 70px;
  }

  ul.maxdl-movie .name-en-movie {
    font-size: 15px;
  }

  .custom-tab-button {
    font-size: 14px;
  }

  .custom-tab-button-v2 {
    font-size: 14px;
  }

  .Visit-tab-button {
    font-size: 14px;
  }

  .schedule-table {
    height: 45vh;
  }

  .days-of-week {
    display: flex;
    width: 147px;
    font-size: 12px;
  }

  .day {
    padding: 8px;
  }

  .show-card {
    padding: 2px;
  }
  .show-card img {
    width: 45px;
  }
  .details {
    padding-right: 10px;
    font-size: 4px;
  }

  .serial-title {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ffffff;
  }

  .episode-name,
  .episode-number {
    font-size: 9px;
    margin: 6px;
  }

  .dropdown-content {
    width: 100%;
  }
  .message {
    font-size: 0.7rem;
  }
  .box-download-tab-button {
    font-size: 11px;
  }
  ul.similar-movie .row-story-similar-movie {
    display: none;
  }

  ul.similar-movie ul {
    padding-bottom: 14px;
  }

  .btn-error {
    font-size: 15px;
  }
  .footer-logo img {
    position: absolute;
    bottom: 0px;
    width: 65px;
  }
  .footer-link-items {
    font-size: 10px;
  }
  .r-footer p {
    font-size: 11px;
  }
  .heading-ltitle {
    font-size: 1.1rem;
  }
  .feed-filter-btn {
    margin-left: 0px;
  }
  .swiper-slide {
    left: 0%;
  }
  .feed-filter-btn {
    font-size: 10px;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 1px; /* فاصله بین عناصر درون grid */
    margin-left: 6%;
  }
  .loader-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
  .card-account {
    font-size: 12px;
    line-height: 20px;
  }
  .custom-table td:nth-child(3) {
    font-size: 12px;
  }
  .confirmation-modal button {
    padding: 8px 16px;
    font-size: 55%;
    margin-right: 2px;
  }
  .event-widgets__award-category-name {
    font-size: 10px;
  }
  .l-page-error {
    margin-top: 20px;
  }
  .toggle-password-btn .l-page-forgot-password {
    font-size: 12px;
  }
  .checkbox-wrapper-61 {
    font-size: 13px;
    margin-top: 20px;
  }
  ul.maxdl-movie .row-story-maxdl-movie {
    --max-lines: 1;
  }

  .slide-dr {
    margin-left: 0px !important;
  }

  .actor-card-details h6 {
    font-size: 13px;
  }
  .oscar-card-index {
    width: 80%;
    margin-left: 10%;
  }
  .oscar-card-index h1 {
    font-size: 17px;
  }
  .oscar-card-index span {
    font-size: 16px;
  }
  .box-office-filmCard {
    width: 360px;
    height: 150px;
  }
  .box-office-h2 {
    font-size: 0.85rem;
    margin-top: 15px;
  }
  .box-office-p {
    margin: 8px 0;
    font-size: 0.8rem;
  }
  .menu-user {
    width: 100%;
  }
  .menu-user .login {
    margin-top: 35px;
  }
  .middle-text {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/* For small devices */
@media (max-width: 370px) {
  .biography h3 {
    border-right: 1px solid red;
  }
  .title-awards-movie {
    font-size: 10px;
  }
  ul.awards-movie .name-en-movie-cast {
    font-size: 12px;
  }

  ul.Filmography-movie img {
    width: 85px;
    height: 120px;
  }

  ul.awards-movie img {
    width: 85px;
    height: 120px;
  }

  ul.Filmography-movie .name-en-movie-cast {
    font-size: 12px;
  }
  .title-awards-movie::after {
    margin-right: 120px;
    margin-top: -8px;
  }

  .title-box-col-Filmography::after {
    margin-right: 100px;
    margin-top: -8px;
  }

  ul.Filmography-movie .row-story-cast-movie {
    font-size: 10px;
  }

  ul.Filmography-movie .row-story-cast-movie {
    margin-bottom: 2px;
  }

  .row-genres-cast {
    display: none;
  }

  ul.awards-movie li {
    font-size: 10px;
    margin-top: 8px;
  }

  ul.awards-movie .winer-actor-movie {
    line-height: 15px;
  }

  ul.awards-movie .movie-tvshow {
    font-size: 9px;
  }

  .user-img {
    width: 35px;
    height: 35px;
  }
  .navbar {
    justify-content: space-around;
    padding: 8px 0;
  }
  .nav-link i {
    font-size: 1.4rem;
  }

  .box-download-link-ep {
    width: 78%;
    font-weight: 600;
    font-size: 10px;
  }

  .box-download-link-ep-one {
    font-size: 8px;
  }
  .box-download-link-ep-one .encode-box-dl {
    font-size: 9px;
  }

  ul.box-download-menu .list a {
    font-size: 11px;
  }

  .title-box-col-cast {
    font-size: 10px;
  }

  .title-box-col-cast::after {
    width: 60%;
  }

  .title-comment-movie {
    font-size: 13px;
  }

  .title-comment-movie::after {
    width: 65%;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* تعداد ستون‌ها و اندازه آنها */
    gap: 1px; /* فاصله بین عناصر درون grid */
    margin-left: 10%;
  }
  .loader-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 45px;
  }
  .heading-ltitle {
    font-size: 0.9rem;
  }
  .card-not-active-btn {
    padding: 8px;
    font-size: 13px;
  }
  .card-account {
    font-size: 11px;
  }
  .card-account-header {
    font-size: 12px;
  }
  .confirmation-modal-content p {
    font-size: 8px;
  }
  .confirmation-modal-content h3 {
    margin-bottom: 6px;
    font-size: 13px;
  }
  .confirmation-modal button {
    padding: 7px 9px;
    font-size: 48%;
    margin-right: 0px;
  }

  .actor-card {
    width: 140px;
  }

  .actor-card-details h2 {
    font-size: 13px;
  }
  .actor-card-details h5 {
    font-size: 13px;
  }
}

@media (max-width: 300px) {
  .swiper-slide {
    left: 0%;
  }
  .heading-ltitle {
    font-size: 0.8rem;
    font-weight: 400;
  }
  .card-account-header {
    font-size: 10px;
  }
  .checkbox-wrapper-61 {
    font-size: 11px;
  }
  .loader-container-index {
    grid-template-columns: repeat(1, 1fr);
  }
  .loader-container-hbd-index {
    grid-template-columns: repeat(1, 1fr);
  }
}
