
.header2 {
    padding-left: 18px;
}
body {
    margin-top: 70px; }
body {
    font-family: 'main-font', sans-serif;
    font-weight: 400;
    color: #fff;
    padding: 0;
    margin: 0;
    direction: rtl !important;
    font-size: 14px;
    background: rgb(19, 4, 56);
        font-variant-numeric: lining-nums;
}
@font-face {
    font-family: 'main-font';
    src: url(Interface/fonts/hq.otf) format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'logo-font';
    src: url(Interface/fonts/ArchivoBlack-Regular.ttf) format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'cairo-font';
    src: url(Interface/fonts/Cairo-Regular.ttf);
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 60px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99999;
    background-image: linear-gradient(to right bottom, #CF152D9E, #2F4FAF96);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px 1px rgb(0 0 0 / 31%);
}
.logo {
    flex: 0 0 auto;
}
/* العناصر العامة */
.headLogo {
    position: relative;
    margin: 0 auto;
    direction: ltr;
    text-align: center;
    overflow: hidden;
    transition: .35s;
    background-image: url('/wp-content/themes/HQ/image/logo.png'); /* إضافة الصورة الخلفية */
    background-size: 160px; /* الحفاظ على حجم الخلفية كما هو */
    background-position: center;
    background-repeat: no-repeat;
    width: auto; /* ضبط العرض ليكون متكيفًا */
    height: auto; /* ضمان بقاء الارتفاع مناسبًا */
}

/* الشعار الرئيسي */
.headLogo .logoFrst {
    font-family: 'Anton', sans-serif;
    font-weight: 900; /* جعل الخط سميكًا جدًا */
    font-size: 45px; /* الحفاظ على الحجم الأصلي */
    display: inline-block;
    text-transform: capitalize;
    line-height: 27px;
    color: #fff;
    transition: .3s;
    vertical-align: middle;
}

.headLogo .logoFrst span {
    display: inline-block;
    text-transform: capitalize;
    line-height: 27px;
    font-family: 'Anton', sans-serif;
    vertical-align: middle;
    color: #fff;
    transition: .3s;
    font-size: 35px; /* الحفاظ على الحجم الأصلي */
    margin: 0;
    position: relative;
    z-index: 1;
}

/* الحروف المتداخلة */
.headLogo .logoFrst span:nth-child(2) {
    color: #aceff7;
    margin: 0;
    position: relative;
    z-index: 1;
    left: -5px; /* الحفاظ على التداخل بين الحروف */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* تأثير الظل */
}

.headLogo .logoFrst span:nth-child(1) {
    z-index: 2;
    position: relative;
    right: -10px; /* الحفاظ على التداخل بين النصين */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6); /* إضافة الظل */
}

/* النص العربي */
.headLogo .logoFrst em {
    font-style: normal;
    display: block;
    font-size: 16px; /* الحفاظ على الحجم الأصلي */
    color: #fff;
    font-weight: 900;
    text-align: center;
    margin-top: -2px; /* تقليل المسافة بين الكلمة الإنجليزية والكلمة العربية */
}

/* تحسين العرض على الشاشات الصغيرة */
@media (max-width: 768px) {
    .headLogo {
        background-size: 120px; /* تصغير الخلفية للجوال */
        max-width: 240px; /* تقليل عرض العنصر */
        margin-top: 3px;
    }

    .headLogo .logoFrst {
        font-size: 36px; /* تصغير النص قليلاً */
    }

    .headLogo .logoFrst span {
        font-size: 28px; /* تقليل حجم النصوص الداخلية */
    }

    .headLogo .logoFrst em {
        font-size: 14px; /* تصغير النص العربي */
    }
}

.main-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0px 0 50px;
    justify-content: center;
    flex: 1;
}
.main-menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}
.main-menu li a:hover {
    color: #007bff;
}
.left-icons {
    display: flex;
    gap: 3px;
    align-items: center;
}
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(19, 4, 56, 0.96);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.side-menu.open {
    transform: translateX(0);
}
.side-menu ul {
    list-style: none;
    padding: 20px;
}
.side-menu ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 10px 0;
}
.side-menu ul li a:hover {
    background-color: #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.side-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}
.side-menu-overlay.show {
    display: block;
}
@media (max-width: 850px) {
    .main-menu {
        display: none;
    }
    .fa.fa-angle-left {
        display: none;     }
    .menu-icon {
        display: block;
    }
}
@media (max-width: 768px) {
    .main-menu {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}
.header .main-menu .sub-menu {
    position: absolute;
    top: 100%;     left: 50%;     transform: scale(0.7);     transform-origin: center top;     visibility: hidden;
    opacity: 0;
    transition: all 150ms ease;     z-index: 999999;
    background: rgba(19, 4, 56, 0.767);
    border-radius: 16px;
    width: 150px;
    text-align: center;
    margin-top: 4px;
    margin-left: -75px; }
.header .main-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -10px;     left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(19, 4, 56, 0.767); }
.header .main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) scale(1); }
.header .main-menu .sub-menu li {
    display: block;
    padding: 1px 0;
    border-bottom: 1px solid #000000a6;
}
.header .main-menu .sub-menu li:last-child {
    border-bottom: none;
}
.header .main-menu .sub-menu li a {
    color: rgb(0, 153, 255);
    text-decoration: none;
    display: block;
    padding: 7px 10px;
}
.header .main-menu .sub-menu li a:hover {
    color: #fff;
    background-color: #ca1e1e;
    border-radius: 16px;
}
.header ul li:hover a {
    color: rgb(244, 67, 54);
  }
  .header .main-menu .menu-item a .fa.fa-angle-left {
    margin-right: 5px;     font-size: 15px;
    transition: transform 0.3s ease;
}
.header .main-menu .menu-item:hover a .fa.fa-angle-left {
    transform: rotate(-90deg); }
    .search-icon {
    font-size: 20px;
    color: white;
    cursor: pointer;
  }
        .search-icon:hover {
        font-size: 20px;
        color: rgb(187, 0, 0);
        cursor: pointer;
      }
  .search-bar {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #04325bb2;
    padding: 6px;
    border-radius: 14px;
    width: 60%;
    z-index: 99999;
  }
  .search-bar input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    background: #ffffff;
    color: black;
  }
  .no-resultssearch {
    text-align: center;     top: 10px;     height: 40px;
}
  #search-results{
    top: 6px;
    overflow: auto;
    max-height: 60vh;
}
  #search-results ul {
    list-style-type: none;
    padding: 0;
}
#search-results li {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 5px;
    transition: background-color 0.3s ease;
    position: relative;
}
#search-results li img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    object-fit: cover;
}
#search-results li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}
#search-results li:hover {
    background-color: #439ff0; }
#search-results li:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;     background-color: #ffffff; }
.profile-dropdown {
    position: relative;
    display: inline-block;
        width: 2.5rem;
  height: 2.5rem;
}
.profile-pic {
    width: 40px;     height: 40px;     border-radius: 50%;     cursor: pointer; }
.profile-pic2 {
    width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, .3);
  color: var(--dark-reverse);
  line-height: 1.25rem;
  margin-right: 0px;
  border-radius: 50%;
  padding: 0.625rem;
}
.dropdown-menيu {
    position: absolute;
    top: 100%;     right: 50%;
    background: rgba(19, 4, 56, 0.767);
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: perspective(500px) rotateY(90deg);
    transition: .3s all ease;
    z-index: 999999;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 150px;
    text-align: center;
}
.dropdown-menu {
margin-top: 5px;
}
.dropdown-menu2 {
    margin-top: 23px;
}
.dropdown-menu {
    display: none;     position: absolute;
    left: 0;
    right: auto;
    background-color: white;     width: 166px;     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);     z-index: 1;     border-radius:5px;
    border-width: 1px;
}
.dropdown-menu a {
    color: black;     padding: 12px 16px;     text-decoration: none;     display: block;     border-radius:5px;
}
.dropdown-menu a:hover {
    background-color: #f1f1f1; }
.unique-slider-container {
    font-family: 'main-font', sans-serif;
    color: #fff;
    width: 100%;
    min-height: 400px;            display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: visible;        }
.unique-slider-container.loaded {
    opacity: 1;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #6200ea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.unique-slider-container:not(.loaded) .unique-slide,
.unique-slider-container:not(.loaded) .unique-thumbnails {
    display: none;
}
.unique-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;               opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
                }
.unique-slide.active {
    opacity: 1;
    visibility: visible;
}
.unique-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 50%,            rgba(0, 0, 0, 0.8) 70%,          rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0.3) 100%
    );
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0.12) 85%, rgba(0, 0, 0, 0) 100% );
}
.unique-overlay {
    position: absolute;
    bottom: 59%;                right: 10%;
    z-index: 2;
    text-align: right;
}
.unique-overlay h2 {
    font-size: 1.5em;
    color: #fff;
    margin: 0;
    font-weight: bold;
    text-shadow: 
        0 0 5px rgba(0, 0, 0, 0.2),            0 0 10px rgba(0, 0, 0, 0.3),           0 0 15px rgba(0, 0, 0),           0 0 20px rgba(0, 0, 0, 0.1);   }
.unique-overlay p {
    margin: 3px 0;
    font-size: 1em;
    text-align: 'justify', sans-serif;
    color: #ff9d3c;
    padding: 1.5vw 0;
    text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.1);
    font-weight: bold;
}
.active-thumbnail {
    border: 2px solid #ff0000;     opacity: 0.7; }
.shahednow {
    padding: 0.625vw 2vw;     background-color: #6200eab0;     border: none;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    border-radius: 1em;     transition: background-color 0.3s ease, transform 0.2s ease;     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.shahednow i {
    font-size: 1.2em;     padding: 0 0 0 0.5vw;     vertical-align: middle; }
.shahednow:hover {
    background-color: #ea0000b0;     transform: scale(1.05); }
.shahednow:active {
    background-color: #6200ea;     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }
.unique-thumbnails {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 20px;               z-index: 3;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
    padding: 20px 0;
}
.unique-thumbnails img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 13px;
}
.unique-thumbnails img.active,
.unique-thumbnails img:hover {
    opacity: 1;
    border: 2px solid #6200ea;
}
.unique-bullets {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.unique-bullets span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #6200ea;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.unique-bullets span.active,
.unique-bullets span:hover {
    opacity: 1;
}
@media (max-width: 600px) {
    .unique-slider-container {
        height: 300px;
    }
    .unique-overlay h1 {
        font-size: 1.5em;
    }
    .unique-thumbnails img {
        width: 80px;
        height: 50px;
    }
}
.button {
    display: inline-flex;     align-items: center;     padding: 10px 20px;     color: #fff;     border: none;     border-radius: 5px;     font-size: 1rem;     cursor: pointer;     transition: background-color 0.3s ease, transform 0.3s ease;     position: relative;     overflow: hidden;     margin: 5px; }
.button.play-now {
    background: linear-gradient(135deg, #ff5733, #c70039); }
.button.down-now {
    background: linear-gradient(135deg, #28a745, #218838); }
.button.info, .button.comments {
    background: linear-gradient(135deg, #6200ea, #3700b3); }
.button:hover {
    transform: scale(1.05); }
.button:active {
    transform: scale(0.95); }
.button::after {
    content: '';     position: absolute;     top: 0;     left: 0;     right: 0;     bottom: 0;     background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));     opacity: 0;     transition: opacity 0.3s ease; }
.button:hover::after {
    opacity: 1; }
.button.play-now:active, .button.play-now:focus {
    background: linear-gradient(135deg, #c70039, #900c3f); }
.button.down-now:active, .button.down-now:focus {
    background: linear-gradient(135deg, #218838, #1e7e34); }
.single-title span .fa-edit {
    font-size: 21px;
    color: #d90707;
    margin-right: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);   }
  .single-title span .fa-edit:hover {
    color: #fff;
    transform: translateY(-1px);     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);   }
ul.LinksList {
    display: table;
    margin: 0 auto;
    list-style: none;   }
  ul.LinksList li {
    float: right;
    margin: 15px 5px 10px;
    text-align: center;
    position: relative;
    font-size: 15px;
    padding: 0 0 0 25px;
    color: #fff;
    transition: .4s all ease;
    height: 44px;
    background: linear-gradient(to right bottom, #CF152D9E, #2F4FAF96);
    border-radius: 45px;
    line-height: 44px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);     user-select: none;
  }
  ul.LinksList li:hover {
    background: #790101;
    color: #fff;
    transform: translateY(-5px);     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);   }
  ul.LinksList li i {
    float: right;
    font-size: 27px;
    line-height: 44px;
    margin-left: 10px;
    width: 60px;
    text-align: center;
    background: rgba(65, 67, 193, 0.58);
    border-radius: 15px 0 0 26px;
    transition: .2s all ease;
  }
  ul.LinksList li:hover i, ul.LinksList li.active i {
    background: rgb(166, 0, 0);       }
  ul.LinksList li span {
    vertical-align: middle;
    color: #fff;
    font-size: 18px;
    margin-right: 8px;
    transition: .4s all ease;
  }
  ul.LinksList li:hover span, ul.LinksList li.active span {
    color: #222;
    transform: scale(1.1);   }
  ul.LinksList li.active {
    background: #790101;
    color: #fff;
  }
  ul.LinksList li.active span {
    color: #222;
  }
  ul.LinksList li span, ul.LinksList li i {
    transition: transform 0.2s ease-in-out;   }
  ul.LinksList li span {
    transform: translateX(0);   }
  ul.LinksList li:hover span {
    transform: translateX(10px);   }
      @media (max-width: 1200px) {
    ul.LinksList li {
      font-size: 14px;
      padding: 0 0 0 20px;
      height: 45px;
    }
    ul.LinksList li i {
      font-size: 22px;
      width: 50px;
    }
    ul.LinksList li span {
      font-size: 16px;
    }
  }
    @media (max-width: 992px) {
    ul.LinksList {
            justify-content: center;       flex-wrap: wrap;       padding: 0;
    }
    ul.LinksList li {
      font-size: 14px;       padding: 0 0 0 20px;
      height: 45px;
      margin: 10px 10px;       flex-basis: 200px;       text-align: center;     }
    ul.LinksList li i {
      font-size: 22px;
      width: 50px;
    }
    ul.LinksList li span {
      font-size: 16px;
    }
  }
  @media (max-width: 768px) {
    ul.LinksList {
      display: block;       text-align: center;
    }
    ul.LinksList li {
      float: none;
      width: 100%;
      margin: 10px 0;
      font-size: 16px;
      padding: 0 0 0 20px;
      height: 45px;
    }
    ul.LinksList li i {
      font-size: 22px;
      width: 50px;
      margin-left: 0;
    }
    ul.LinksList li span {
      font-size: 15px;
    }
  }
  @media (max-width: 480px) {
    ul.LinksList li {
      font-size: 12px;
      padding: 0 0 0 10px;
      height: 40px;
    }
    ul.LinksList li i {
      font-size: 18px;
      width: 40px;
    }
    ul.LinksList li span {
      font-size: 13px;
    }
  }
  
  .shortlink {
  background: #ffffff0d;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  padding: 3px 12px;
  border-radius: 7px;
  height: 34px;
  margin: 9px auto; 
  text-align: center;
  width: fit-content; 
}

.shortlink input[type=url],
.shortlink span:nth-child(2) {
  padding: 0 10px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .3);
}

.shortlink button,
.shortlink button i {
  line-height: 26px;
  width: 26px;
  height: 26px;
}

.shortlink span {
  display: inline-block;
  font-size: 12px;
}

.shortlink span:nth-child(2) {
  font-size: 12px;
  margin-right: 8px;
}

.shortlink button {
  padding: 0;
  border: none;
  color: #fff;
  background: rgba(0, 0, 0, .3);
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  margin-right: 8px;
}

.shortlink button i {
  display: block;
}
  
  
.seasons-list {
    display: flex;
    flex-wrap: wrap;     justify-content: center;     gap: 15px;     margin-top: 20px;
    margin-bottom: 11px;
}
.seasons-list .season-item {
    background-color: #34495e;
    padding: 3px;
    border-radius: 5px;
    color: #ecf0f1;
    cursor: pointer;
    width: 133px;     transition: background-color 0.3s ease;
    text-align: center;
}
.seasons-list .season-item:hover {
    background-color: #2980b9; }
.seasons-list .season-item.active-season {
    background-color: #3498db; }
.season-item h3 em {
color: #fff;
  font-size: 23px;
padding: 5px 15px;
line-height: 1.5;
background: #04217b00;
box-shadow: inset 0 0px 9px rgb(35, 33, 33);
}
.episodeserieid {
    min-height: auto;
    background: #3333337a;
    margin-bottom:  20px;
    box-shadow: 0 1px 5px #0000004a;
    -webkit-box-shadow: 0 1px 5px #0000004a;
    -moz-box-shadow: 0 1px 5px #0000004a;
    -o-box-shadow: 0 1px 5px #0000004a;
    display:  none;
    margin-top: -10px;
    height:  auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
    justify-content: center;
}
.row>a {
    display: block;
    padding: 5px;
    transition: .3s;
    position: relative;
    width: 130px;
    overflow: hidden;
}
.row a .image {
    width: 120px;
    height: 100px;
    background: #11111b;
    overflow: hidden;
    border-radius: 20px;
}
.image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.row a .image img {
    transition: .5s ease-in-out;
    border-radius: 20px;
}
.ep-info {
    padding: 10px;
    position: absolute;
    bottom: 0;
    transition: .3s ease;
    right: 0;
    width: 100%;
    transform: translateY(100%);
    text-align: center;
}
.ep-info h2 {
    font-size: 12px;
    font-weight: 500;
    transition: .35s ease;
    line-height: 22px;
    text-align: center;
}
.epnum {
    position: absolute;
    top: 10px;
    right: 30px;
    background: #5d81f7;
    line-height: 30px;
    padding: 0 5px;
    border-radius: 5px;
    font-size: 30px;
    text-align: center;
}
.epnum span {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    text-align: center;
}
.row a:hover .ep-info {
    transform: translateY(0);
}
.row a:hover img {
    object-position: bottom;
    opacity: .3;
}
.episodeknumber {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: #090d31c5;     color: rgb(255, 255, 255);
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 15px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.episodeknumber:hover {
    opacity: 0; }
.episodeknumber.active {
    background-color: #a80c21c5; }
    .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
    .side-menuhome {
  color: #e2be3a;
  text-align: center;
  font-size: 20px;
  border: 2px solid;
  margin-bottom: 10px;
  border-radius: 55px;
}
.side-menu {
    position: fixed;
    right: -300px;     top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);     padding: 20px;
    z-index: 9999999;
    transition: right 0.3s ease-in-out;
    overflow: auto;
}
.menu-icon {
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
    color: #fff;
}
.side-menu ul {
    list-style: none;
    padding: 0;
}
.side-menu ul li a {
    color: white;
    display: block;
    padding: 15px 0;
    text-decoration: none;
    font-size: 18px;
    background: rgb(255 255 255 / .05);
  padding: 9px 14px;
  border-radius: 5px;
  margin-top: 10px;
}
.side-menu ul li a:hover {
    color: #f44336; }
.side-menu.open {
    right: 0;
}
.side-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
}
.side-menu-overlay.show {
    display: block;
}
   figure {
    position: fixed;     top: 0;
    left: 0;
    width: 100%;
    height: 100%;     z-index: -2;     overflow: hidden; }
figure img {
    position: absolute;     top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     filter: blur(8px);     z-index: -2;
    -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgb(0 0 0 / 0%)), color-stop(20%, #130438));
    -webkit-mask-image: linear-gradient(to top, #00000000 0%, #130438 20%);
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
}
figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;     background-image: 
        linear-gradient(180deg, #0f0a05c9, #0f0a0500 10%, #0f0a0500 70%, rgb(19, 4, 56)),
        linear-gradient(90deg, #0f0a0500, #18113a00 50%, #0f0a05e8);
    pointer-events: none; }
@media (min-width: 768px) {
    figure {
        height: 55.781vw;     }
}
@media (max-width: 767px) {
    figure {
        height: 90%;     }
}
* {
    padding: 0;
    margin: 0;
    position: relative;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #ffffffda;
    font-size: 14px;
}
input , textarea , button , select {
    font-family: inherit;
}
ul , ol , li {
    list-style: none;
}
h1, h2 ,h3 ,h4, h5 ,h6 {
    font-weight: 400
}
*::-webkit-scrollbar {
    width: 4px;
}
*::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}
*::-webkit-scrollbar-thumb {
    background-color: #C90E1F;
}
.clr {
    clear: both;
}
.container {
    width: 1200px;
    margin: 0 auto;
    height: auto;
}
.intro {
    height: 320px;
    background: url(Interface/images/header.png);
    background-position:  center;
    background-size: cover;
    background-repeat:  no-repeat;
    position:  relative;
    overflow:  hidden;
    z-index: 5;
    transition:  none;
    box-shadow: 0 3px 6px #000;
    -webkit-box-shadow: 0 3px 6px #000;
    -moz-box-shadow: 0 3px 6px #000;
    -o-box-shadow: 0 3px 6px #000;
}
.intro::after {
    content: '';
    position:  absolute;
    top: 0;
    left:  0;
    right:  0;
    bottom:  0;
    width:  100%;
    height:  100%;
    background: #000000ad;
}
.intro a.logo {
    display:  inline-block;
    z-index:  5;
    position:  absolute;
    top: 140px;
    left:  50%;
    transform: translate(-50%,-230%);
    -webkit-transform: translate(-50%,-230%);
    -moz-transform: translate(-50%,-230%);
    -o-transform: translate(-50%,-230%);
    width: 620px;
    transition: .8s all ease-out;
    -webkit-transition: .8s all ease-out;
    -moz-transition: .8s all ease-out;
    -o-transition: .8s all ease-out;
    opacity:  0;
}
.intro a.logo.load {
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    opacity:  1;
}
.intro a.logo img {
    display:  block;
    width:  100%;
    height:  100%;
}
.intro p.description {
    position: absolute;
    color:  #fff;
    z-index:  66;
    top: 120%;
    left: 0;
    right: 0;
    text-align:  center;
    transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -o-transform: translate(0%,-50%);
    font-size: 25px;
    transition: .8s all ease;
    -webkit-transition: .8s all ease;
    -moz-transition: .8s all ease;
    -o-transition: .8s all ease;
    opacity:  0;
}
.intro p.description.load {
    top: 200px;
    opacity:  1;
}
section.recent-posts {
    margin-top: 10px;
}
.shadow {
    height: 25px;
    background: url(Interface/images/shadow-1.png);
    background-position: center;
    background-size: 300% 100%;
    background-repeat: no-repeat;
    margin-bottom: -25px;
    z-index:  5;
}
.singlePostMaster {
    padding: 25px 10px 15px;
    border-bottom: 4px solid #fff;
    min-height: 400px;
    position: relative;
    z-index: 999;
    overflow: hidden;
    box-shadow: 0 0px 5px #0000007a;
    -webkit-box-shadow: 0 0px 5px #0000007a;
    -moz-box-shadow: 0 0px 5px #0000007a;
    -o-box-shadow: 0 0px 5px #0000007a;
}
.single-post-title {
    overflow:  hidden;
}
.single-post-title h2 {
    text-align:  center;
    overflow:  hidden;
}
.single-post-title h2::after {
    content: "";
    position:  absolute;
    top: 27px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e0e0e0;
    overflow:  hidden;
    border: 1px solid #DDD;
    box-shadow: 0 0px 1px #000;
    -webkit-box-shadow: 0 0px 1px #000;
    -moz-box-shadow: 0 0px 1px #000;
    -o-box-shadow: 0 0px 1px #000;
    border-radius:  3px;
}
li.singleBB:nth-child(5n+0) {
    margin-left:  0;
}
.post-thumbnail {
    float: right;
    width: 260px;
    overflow:  hidden;
    height: 380px;
    border-radius: 3px;
    border: 3px solid #fff;
    box-shadow: 0 2px 2px #0000008a;
    margin-left: 20px;
}
.post-thumbnail img {
    display:  block;
    width:  100%;
    height:  100%;
}
.post-thumbnail .views {
    position: absolute;
    top: 10px;
    left:  10px;
    font-family:  serif;
    color:  #111;
    background:  #ffc809;
    padding:  6px 15px;
    z-index: 356;
    font-weight:  bold;
    border-radius:  5px;
    box-shadow:  0 1px 2px #000;
    -webkit-
    -moz-
    -o-
}
.post-thumbnail .views i { 
    padding-left: 5px
}
.watch-ad {
    position:  absolute;
    top: 0;
    left:  0;
    right:  0;
    bottom:  0;
    background: rgba(0, 0, 0, 0.65);
}
.watch-ad .fa-play {
    position:  absolute;
    top: 50%;
    left:  50%;
    color:  #fff;
    font-size: 35px;
    width: 60px;
    height: 60px;
    background:  #b90010;
    border-radius:  100%;
    padding: 9px 10px;
    border: 3px solid #fff;
    box-shadow:  0 2px 25px #000;
    -webkit-box-shadow:  0 2px 25px #000;
    -moz-box-shadow:  0 2px 25px #000;
    -o-box-shadow:  0 2px 25px #000;
    cursor:  pointer;
    transition: .5s all cubic-bezier(0.52, 0.1, 1, 1);
    -webkit-transition: .5s all cubic-bezier(0.52, 0.1, 1, 1);
    -moz-transition: .5s all cubic-bezier(0.52, 0.1, 1, 1);
    -o-transition: .5s all cubic-bezier(0.52, 0.1, 1, 1);
    animation: Music 1s linear infinite;
    -webkit-animation: Music 1s linear infinite;
    -moz-animation: Music 1s linear infinite;
    -o-animation: Music 1s linear infinite;
}
.watch-ad .fa-play:hover {
    animation: none;
    transform: translate(-50%,-50%) scale(1.2) rotateY(360deg);
    -webkit-transform: translate(-50%,-50%) scale(1.2) rotateY(360deg);
    -moz-transform: translate(-50%,-50%) scale(1.2) rotateY(360deg);
    -o-transform: translate(-50%,-50%) scale(1.2) rotateY(360deg);
}
@keyframes Music {
    0% { 
        transform: translate(-50%,-50%) scale(1); 
    }
    8% { 
        transform: translate(-50%,-50%) scale(0.9);  
    }
    25% { 
        transform: translate(-50%,-50%) scale(1.15); 
    }
    87.5% { 
        transform: translate(-50%,-50%) scale(0.9); 
    }
    100%  { 
        transform: translate(-50%,-50%) scale(1.3); 
    }
}
.single-buttons {
    position: absolute;
    bottom: 0px;
    left: 10px;
}
.single-buttons button {
    outline:  0;
    border:  0;
    width: 130px;
    text-align:  center;
    height: 35px;
    font-family: main-font;
    margin-right:  3px;
    border-radius: 4px;
    cursor:  pointer;
    color: #fff;
    box-shadow: 0 1px 2px #00000059;
    -webkit-box-shadow: 0 1px 2px #00000059;
    -moz-box-shadow: 0 1px 2px #00000059;
    -o-box-shadow: 0 1px 2px #00000059;
    overflow:  hidden;
}
.single-buttons button i {
    padding-left: 5px;
}
select.footer-select {
    display: block;
    font-family:  main-font;
    border:  0;
    outline:  0;
    padding: 12px 5px;
    margin:  0 auto;
    width: calc(100% - 50px);
    background-color:  transparent;
    color: #fff;
}
select.footer-select option {
    color: #222
}

.BlocksHolder .block:nth-child(3n+0) {
    margin-left:  0;
}

.footer-menu {
    padding: 3px 0 10px;
    background: #1b1e27;
    text-align:  center;
    overflow:  hidden;
    box-shadow:  0 -2px 5px #000;
    margin-top: 20px;
}
.footer-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left:  0;
    width:  100%;
    height:  100%;
    background: rgba(0, 0, 0, .15);
    transform:  skew(-45deg);
    -webkit-transform:  skew(-45deg);
    -moz-transform:  skew(-45deg);
    -o-transform:  skew(-45deg);
    transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
}
.footer-menu span {
    color:  #fff;
    height:  35px;
    display:  inline-block;
    width: 143px;
    text-align:  center;
    background: rgba(255, 255, 255, .05);
    margin: 7px 2px 0;
    border-radius: 15px;
    z-index: 22;
}
.footer-menu span:after {
    background: linear-gradient(#D40F0F, #880b0b);
    content: '';
    position: absolute;
    top: 0;
    left:  0;
    width:  100%;
    height:  100%;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    transform: scale(3);
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -o-transform: scale(3);
    border-radius: 15px;
    opacity: 0;
    visibility: hidden
}
.footer-menu span:hover:after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}
.footer-menu span a {
    color: #fff;
    z-index:  33;
    display:  block;
    width:  100%;
    height:  100%;
    padding: 7px 3px;
}
.pagination {
	position: relative;
	line-height: 13px;
	text-align: center;
	z-index: 1;
	float: none;
	direction: rtl;
	display: block !important;
	padding: 10px !important;
	font-weight:  bold;
}
.pagination span, .pagination li span, .pagination a, .pagination li a {
	padding: 13px !important;
	margin: 2px 4px 2px 0 !important;
	height: auto !important;
	text-decoration: none;
	line-height: 14px !important;
	width: auto;
	color: #000 !important;
	background: #ffffff !important;
	box-shadow: 0 0 5px #00000038;
    -webkit-box-shadow: 0 0 5px #00000038;
    -moz-box-shadow: 0 0 5px #00000038;
    -o-box-shadow: 0 0 5px #00000038;
	border: none!important;
	direction: ltr;
	border-radius:  3px !important;
	display: inline-block !important;
	overflow: hidden !important;
	transition:  .3s all ease;
	margin: 0 3px !important;
	font-family: sans-serif !important;
	border-bottom: 2px solid #00000036 !important;
}
.pagination span {
	color: #fff;
	background: #c91c55;
}
.pagination li span {
	color: #fff !important;
	background: #bf0000 !important;
}
.pagination a:hover {
	background-color: #bf0000!important;
	color: #ffffff!important;
	font-weight: bold;
}
.pagination li {
	display: inline-block !important;
	background: transparent;
	padding: 0;
	margin: 0;
}
.pagination .current {
	background: #bf0000;
	color: #FFFFFF;
	font-weight: bold;
}
.pagination i {
	font-weight: bold
}
h2.section-title {
    position:  relative;
    overflow:  hidden;
    margin: 0 0 3px;
    text-align: right;
    font-size: 20px;
    border-bottom: 1px solid #0000002b;
    margin-bottom: 7px;
    height:  40px;
}
.series {
    position:relative;
}
span.next {
    position:absolute;
    opacity: 0;
    visibility: hidden;
    width: 25px;
    height: 40px;
    top: 135px;
    right:-100px;
    background: #ffffff4f;
    padding-top: 12px;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
}
span.prev {
    position:absolute;
    opacity: 0;
    visibility: hidden;
    width: 25px;
    height: 40px;
    color: #fff;
    top: 135px;
    left:-100px;
    background: #ffffff4f;
    padding-top: 12px;
    cursor:  pointer;
    z-index: 9999;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
}
.newsSlider:hover span.next,
.movie:hover span.next,
.series:hover span.next {
    right: 0px;
    opacity: 1;
    visibility: visible;
}
.newsSlider:hover span.prev,
.movie:hover span.prev,
.series:hover span.prev {
    left: 0px;
    opacity: 1;
    visibility: visible
}
h2.section-title span {
    padding: 6px 11px;
    color: #ffffff;
    border-radius: 5px 16px;
    width: auto;
    float: right;
}
h2.section-title span i {
    padding-left: 10px;
    font-size: 26px;
}
section.pin-posts {
    padding: 0 0 20px;
}
.scroll-load {
    transform: translate(0,600px);
    -webkit-transform: translate(0,600px);
    -moz-transform: translate(0,600px);
    -o-transform: translate(0,600px);
    transition: 2s all cubic-bezier(0.5, -0.02, 0.21, 0.89);
    -webkit-transition: 2s all cubic-bezier(0.5, -0.02, 0.21, 0.89);
    -moz-transition: 2s all cubic-bezier(0.5, -0.02, 0.21, 0.89);
    -o-transition: 2s all cubic-bezier(0.5, -0.02, 0.21, 0.89);
    opacity:  0;
    visibility:  hidden;
}
.scroll-load.load {
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -moz-transform: translate(0px,0px);
    -o-transform: translate(0px,0px);
    opacity:  1;
    visibility:  visible;
}
li.singleBB.pin-block {
    display: inline-block;
    width: 19%;
    overflow: hidden;
    height: 330px;
    border-radius: 10px 20px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    box-shadow: 0 2px 5px #000;
    -webkit-box-shadow: 0 2px 5px #000;
    -moz-box-shadow: 0 2px 5px #000;
    -o-box-shadow: 0 2px 5px #000;
    margin: 3px .3%;
}
li.singleBB.pin-block a,
li.singleBB.pin-block a img {
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    display:  block;
    width:  100%;
    height:  100%;
}
li.singleBB.pin-block a h3 {
    position:  absolute;
    bottom:  0;
    z-index:  5;
    color:  #fff;
    right:  0;
    left:  0;
    text-align:  center;
    padding:  10px;
    font-size:  16px;
    line-height: 24px;
}
li.singleBB:hover {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    z-index: 6666
}
li.singleBB a::after {
    content: "";
    position:  absolute;
    top: 0;
    left:  0;
    right:  0;
    bottom: 0;
    background: #0000004d;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    transform: scale(.1);
    -webkit-transform: scale(.1);
    -moz-transform: scale(.1);
    -o-transform: scale(.1);
    opacity: 0;
}
li.singleBB a:hover::after {
    opacity: 0.8;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}
li.singleBB .fa-play {
    z-index: 5;
    background: #061550bd;
    padding: 5px 8px;
}
li.singleBB:hover .fa-play {
    transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
    -moz-transform: translate(-50%,-50%) scale(1);
    -o-transform: translate(-50%,-50%) scale(1);
    opacity: 1
}
li.singleBB a p {
    position:  absolute;
    top: 150px;
    left:  0;
    right:  0;
    text-align:  center;
    z-index:  99;
    color:  #fff;
    padding: 5px 10px;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    transform: scale(4);
    -webkit-transform: scale(4);
    -moz-transform: scale(4);
    -o-transform: scale(4);
    opacity: 0;
    line-height: 22px;
}
li.singleBB a:hover p {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}
section.recent-posts .section-title span {
    padding: 2px 25px;
}
li.singleBB {
    float: right;
    width: 19.2%;
    overflow: hidden;
    height: 330px;
    border-radius: 15px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    box-shadow: 0 1px 3px #000;
    -webkit-box-shadow: 0 1px 3px #000;
    -moz-box-shadow: 0 1px 3px #000;
    -o-box-shadow: 0 1px 3px #000;
    margin-bottom: 1%;
    margin-left: 1%;
}
li.singleBB:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    z-index: 666;
}
li.singleBB a,
li.singleBB a img {
    display: block;
    width: 100%;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    height: 100%;
}
li.singleBB .fa-play {
    position: absolute;
    top: 50%;
    left:  50%;
    transform: translate(-50%,-50%) scale(5);
    -webkit-transform: translate(-50%,-50%) scale(5);
    -moz-transform: translate(-50%,-50%) scale(5);
    -o-transform: translate(-50%,-50%) scale(5);
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid #FFF;
    border-radius:  50%;
    overflow:  hidden;
    padding-top: 8px;
    padding-left: 14px;
    opacity:  0;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    box-shadow: 0 0px 15px #000;
    -webkit-box-shadow: 0 0px 15px #000;
    -moz-box-shadow: 0 0px 15px #000;
    -o-box-shadow: 0 0px 15px #000;
}
li.singleBB:hover .fa-play {
    transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
    -moz-transform: translate(-50%,-50%) scale(1);
    -o-transform: translate(-50%,-50%) scale(1);
    opacity: 1;
    top: 50%;
}
li.singleBB a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    bottom: 0;
    background: #000;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    opacity: 0;
}
li.singleBB a:hover::before {
    opacity: .7
}
.MainSLider .item a img {
    border-radius:  3px;
    display:  block;
    width:  100%;
    height:  100%;
}
li.singleBB a h3 {
    position:  absolute;
    bottom: 0;
    z-index: 665;
    z-index: 6886;
    color: #fff;
    right: 0;
    left: 0;
    text-align: center;
    padding: 20px 10px 9px;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -o-transition: .3s all ease;
    font-size: 16px;
    transform: scale(5);
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -o-transform: scale(5);
    opacity: 0;
}
li.singleBB a:hover h3 {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}
section.recent-posts a:hover h3 {
    bottom: 0;
    z-index: 9999;
}
li.singleBB a span {
    position:  absolute;
    top: 15px;
    left:  0px;
    color:  #fff;
    background: #97000093;
    z-index:  22;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 13px;
    padding:  6px 15px;
    font-family: cairo-font;
    font-weight: bold;
    transform: scale(4);
    -webkit-transform: scale(4);
    -moz-transform: scale(4);
    -o-transform: scale(4);
    opacity: 0;
    box-shadow: 0 2px 5px #00000073;
    -webkit-box-shadow: 0 2px 5px #00000073;
    -moz-box-shadow: 0 2px 5px #00000073;
    -o-box-shadow: 0 2px 5px #00000073;
    transition: .3s .1s all ease;
    -webkit-transition: .3s .1s all ease;
    -moz-transition: .3s .1s all ease;
    -o-transition: .3s .1s all ease;
    line-height: 17px;
    transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -o-transform-origin: 100% 0;
}
li.singleBB a:hover span {
    transform: scale(1);
    opacity: 1
}
li.singleBB em {
    position: absolute;
    top: 15px;
    right:  0px;
    font-family: cairo-font;
    font-style: normal;
    background: #ffae009f;
    padding: 6px 10px;
    color: #000;
    font-weight: bold;
    z-index:  99;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 2px 5px #00000085;
    -webkit-box-shadow: 0 2px 5px #00000085;
    -moz-box-shadow: 0 2px 5px #00000085;
    -o-box-shadow: 0 2px 5px #00000085;
    min-width:  50px;
    text-align:  center;
    transform: scale(4);
    -webkit-transform: scale(4);
    -moz-transform: scale(4);
    -o-transform: scale(4);
    opacity: 0;
    transition: .3s .1s all ease;
    -webkit-transition: .3s .1s all ease;
    -moz-transition: .3s .1s all ease;
    -o-transition: .3s .1s all ease;
    line-height:  17px;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
}
li.singleBB em  i {
    padding-left: 3px;
}
.singleBB .quality-label {
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #7e44e4;     color: white;
    padding: 5px 20px 5px 10px;     font-size: 15px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    clip-path: polygon(0 0, 75% 0, 90% 50%, 75% 100%, 0 100%);     box-shadow: 0px 4px 6px rgba(0,0,0,0.3);     white-space: nowrap;     display: inline-block;     text-align: right;     text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.singleBB .categoryblock {
    position: absolute;
    left: 0px;          
    top: 10px;         
    background-color: #b40d0d; 
    color: rgb(255, 255, 255);
    padding: 5px 20px 5px 10px;
    font-size: 15px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), -3px -3px 5px rgba(0, 0, 0, 0.2);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 75% 0, 90% 50%, 75% 100%, 0 100%);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.singleBB:hover .categoryblock {
    opacity: 0; }
.TrilerOverlay {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    height: 100%;
    transform: scale(0);
    transition: 0.35s all ease;
    visibility: hidden;
    opacity: 0;
}
.TrilerOverlay.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}
.overlayClosse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000d4;
}
.closseTriller {
    position: absolute;
    color: #fff;
    transform: translateX(-50%);
    top: 70px;
    font-size: 30px;
    right: 10px;
}
.MasterTriller {
    position: absolute;
    width: 75%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 75%;
    top: 50%;
    box-shadow: 0 0 50px #000000cc;
    border: 3px dotted #000;
    background: #202121;
}
.MasterTriller > * {
    width: 100%;
    height: 100%;
}
.TrillerOpenBtn {
    width: 50px;
    font-size: 15px;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    padding: 0 0;
    text-align: center;
    border-radius: 25px;
    border: 2px solid #ffffff1c;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 1px 5px #00000026;
    background: #000000a3;
    position: absolute;
    z-index: 99;
    top: calc(50% - 25px);
    left: 50%;
    height: 50px;
    transform: translate(-50%);
    transition: 0.35s all ease;
    line-height: 53px;
}
.TrillerOpenBtn > span {
    position: absolute;
    visibility: hidden;
    width: 110px;
    background: #d12c33;
    padding: 5px;
    border-radius: 15px;
    top: -45px;
    transform: translate(-50%, 30px);
    left: 50%;
    transition: 0.45s all ease;
    opacity: 0;
    box-shadow: 0 0 10px #000;
    line-height: 20px;
    font-size: 12px;
    font-weight: 400;
}
.TrillerOpenBtn > i {
    font-size: 21px;
    right: -2px;
    top: 0px;
}
.TrillerOpenBtn > span:before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 10px 8px 0 9px;
    border-color: #d12c33 transparent transparent #fff0;
    bottom: -10px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}
.TrillerOpenBtn:hover > span {
    opacity: 1;
    visibility: visible;
    top: -70px;
}
.favorite-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;     z-index: 10;
    border-radius: 50%;     box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
.favorite-btn:hover {
    color: #ff4d4d;     transform: scale(1.2);     box-shadow: 0 0 15px rgba(255, 77, 77, 0.6); }
.favorite-btn:hover i.fa-heart {
    transform: scale(1.3);     color: #ff4d4d; }
.favorite-btn.added i.fa-heart {
    color: #ff4d4d;     transform: rotate(360deg);     transition: transform 0.5s ease; }
.favorite-btn i.fa-heart {
    color: #6c62b5;     transition: color 0.3s ease; }
.favorite-btn:active {
    transform: scale(0.9);     box-shadow: 0 0 10px rgba(255, 77, 77, 0.8); }
.watch-later-btn {
	position: absolute;
	padding: 6px 9px;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
	bottom: 0px;
	left: 0px;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
}
.watch-later-btn i {
  font-size: 15px;
}
.watch-later-btn:hover {
    background-color: #ff2a2a;     transform: translateY(-3px);     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); }
.watch-later-btn:active {
    transform: scale(0.98);     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
.watch-later-btn.added {
    background-color: #4CAF50; }
.watch-later-btn.added:hover {
    background-color: #45a049; }
.login-message {
    display: none;     position: fixed;     top: 20%;     left: 50%;     transform: translateX(-50%);     background-color: rgba(255, 0, 0, 0.8);     color: white;     font-size: 16px;     padding: 10px 20px;
    border-radius: 5px;     z-index: 1000;     text-align: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);     width: auto;
}
.imdbRatingp {
    position: absolute;
    top: 13px;
    right: 10px;
    background-color: #7b00ac;     color: black;
    padding: 3px 8px;
    font-size: 15px;
    border-radius: 15px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.imdbRatingp i {
    color: rgb(255, 232, 29);
    font-weight: bold;
}
.singleBB .imdbRating {
    position: absolute;
    bottom: 15px;
    left: 10px;
    background-color: #9519dd81;     color: black;
    padding: 3px 8px;
    font-size: 15px;
    border-radius: 15px;
    z-index: 2;
    transition: opacity 0.3s ease; }
.singleBB .imdbRating i {
    color: rgb(255, 232, 29);
    font-weight: bold;
}
.singleBB:hover .imdbRating {
    opacity: 0; }
.singleBB .year-label {
    position: absolute;
    top: 13px;
    right: 10px;
    background-color: #ffcc00;     color: black;
    padding: 3px 8px;
    font-size: 15px;
    border-radius: 15px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.singleBB:hover .year-label {
    opacity: 0; }
.singleBB:hover .quality-label {
    opacity: 0; }
.post-thumb .episode-number22 {
    position: absolute;
    bottom: 43px;
    right: 0px;
    background-color: #ffcc00;     color: black;
    padding: 3px 8px;
    font-size: 17px;
    padding: 5px 10px 5px 20px;     font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease;     clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}
.post-thumb .episode-number222 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.singleBB .episode-number {
    position: absolute;
    bottom: 43px;
    right: 0px;
    background-color: #ffcc00;     color: black;
    padding: 3px 8px;
    font-size: 17px;
    padding: 5px 10px 5px 20px;     font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease;     clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}
.singleBB:hover .episode-number {
    opacity: 0; }
.singleBB .episode-number2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.singleBB:hover .episode-number2 {
    opacity: 0; }
.singleBB .season-number {
    position: absolute;
    bottom: 43px;
    right: 0px;
    background-color: #9b0f0f;     color: rgb(255, 255, 255);
    padding: 3px 8px;
    font-size: 17px;
    padding: 5px 10px 5px 20px;     font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease;     clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}
.singleBB:hover .season-number {
    opacity: 0; }
.singleBB .season-number2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    transition: opacity 0.3s ease; }
.singleBB:hover .season-number2 {
    opacity: 0; }
.scrollTop {
    position:  fixed;
    bottom: 50px;
    right: 20px;
    width:  40px;
    height:  40px;
    background: #9a070d;
    border-radius:  5px;
    text-align:  center;
    font-family: serif;
    font-size:  25px;
    color: #fff;
    cursor:  pointer;
    padding-top: 6px;
    box-shadow: 0 1px 3px #0000009c;
    -webkit-box-shadow: 0 1px 3px #0000009c;
    -moz-box-shadow: 0 1px 3px #0000009c;
    -o-box-shadow: 0 1px 3px #0000009c;
    z-index: 9999;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    display: none;
}
.scrollTop i {
    font-weight: 500;
}
a.Report-Btn {
    border-radius: 3px;
    box-shadow: 0 1px 3px #000000a8;
    -webkit-box-shadow: 0 1px 3px #000000a8;
    -moz-box-shadow: 0 1px 3px #000000a8;
    -o-box-shadow: 0 1px 3px #000000a8;
    background: #bb0202;
    width: auto;
    float:  left;
}
a.Report-Btn i {
    padding-left: 5px;
    float:  right;
    width: 33px;
    height:  30px;
    font-size:  18px;
    padding-top:  5px;
    background: rgba(0, 0, 0, 0.25);
    text-align:  center;
    overflow:  hidden;
    padding: 7px 7px;
}
a.Report-Btn span {
    display:  inline-block;
    padding-top: 5px;
}
.report-header {
    text-align: center;
    padding: 10px 20px;
    color: #222;
}
.report-header .fa-flag {
    display:  block;
    font-size:  65px;
    padding:  10px 0;
}
.report-header span {
    font-size:  20px;
    line-height:  30px;
    padding-bottom:  10px;
    display:  block;
}
#report-div form {
    display:  block;
    text-align:  center;
}
#report-div form input {
    border:  0;
    outline:  0;
    font-family:  main-font;
    height: 35px;
}
#report-div form input[type="submit"] {
    border-radius: 5px;
    background: #ca0600;
    color:  #fff;
    width:  100px;
    cursor:  pointer;
}
div#report-div {
    padding: 30px 0;
    text-align:  center;
}
.thanks {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 5px;
    margin:  0 auto;
    background: #0e7109;
}

 .TitleStoryArea {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 11px 10px 3px 0px;
            border-radius: 8px;
      }
        .TitleStoryArea i {
            font-size: 1.5rem;
            color: #007BFF;
            margin-left: 10px;
        }
        .TitleStoryArea h2 {
            font-size: 1rem;
            color: #fff;
            margin: 0;
        }


        .TitleStoryArea::after {
  content: "";
  position: absolute;
  right: 158px;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #3b8bee5e;
  box-shadow: 9px 0 0 0 #3b8bee5e, 18px 0 0 0 #3b8bee5e, 27px 0 0 0 #3b8bee5e, 36px 0 0 0 #3b8bee5e, 45px 0 0 0 #3b8bee5e, 54px 0 0 0 #3b8bee5e, 63px 0 0 0 #3b8bee5e;
  top: 100%;
}
.TitleStoryArea::before {
    content: "";
    height: 4px;
    width: 81px;
    background: #3b8bee5e;
    border-radius: 2px;
    display: block;
    top: 100%;
    position: absolute;
  }

.menu-toggler {
    display: none;
    padding: 10px 0;
    text-align:  center;
    color: #292929;
    cursor:  pointer;
    z-index: 444;
    font-weight:  bold;
}
.menu-toggler i {
    padding-left: 5px
}
.share-container {
    position: relative;
}

.custom-share-icon {
    font-size: 25px;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.custom-share-icon:hover {
    color: #0056b3;
}

.custom-social-buttons {
    display: none;
    position: absolute;
    top: -280px;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
    z-index: 1999990;
}

.social-btn {
    background-color: rgba(16, 16, 16, 0.73);
    border: 2px solid #007bff;
    border-radius: 50%;
    padding: 10px;
    color: #007bff;
    font-size: 24px;
    text-align: center;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    position: relative; /* Positioning for the tooltip */
}

.social-btn:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 123, 255, 0.3);
}

.social-btn:active {
    transform: translateY(2px);
}

.social-btn .tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -40px; /* Adjust based on your design */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    white-space: nowrap;
    z-index: 10;
}

.social-btn:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.facebook {
    border-color: #fff;
    color: #fff;
}

.twitter {
    border-color: #00acee;
    color: #00acee;
}

.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.telegram {
    border-color: #0077b5;
    color: #26b5ff;
}

li.random-block {
    width: 19.2%;
    overflow:  hidden;
    height: 300px;
    box-shadow: 0 3px 5px #000;
    -webkit-box-shadow: 0 3px 5px #000;
    -moz-box-shadow: 0 3px 5px #000;
    -o-box-shadow: 0 3px 5px #000;
    border-radius: 2px;
    z-index: 1;
    float:  right;
    margin-left: 1%;
    margin-bottom: 1%;
}
li.random-block a {
    display:  block;
    width:  100%;
    height: 100%;
    overflow:  hidden;
}
li.random-block a img {
    display:  block;
    width:  100%;
    height: 100%;
}
li.random-block a h4 {
    position: absolute;
    bottom: 0%;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -o-transition: .5s all ease;
    left: 0;
    right: 0;
    text-align: center;
    padding: 290px 10px 10px 10px;
    font-size: 15px;
    color: #fff;
    z-index: 999;
    background: linear-gradient(#00000000, #191919c9 100%);
    line-height: 23px;
}
.random-posts {
    text-align:  center;
    margin-top: 25px;
}
.pa-category {
    min-height: 500px;
    overflow:  hidden;
    text-align:  center;
}
.cat-block {
    width: 230px;
    overflow:  hidden;
    height: 320px;
    display:  inline-block;
    margin: 3px 3px;
    border-radius:  10px 20px;
    box-shadow:  0 2px 5px #000;
    -webkit-box-shadow:  0 2px 5px #000;
    -moz-box-shadow:  0 2px 5px #000;
    -o-box-shadow:  0 2px 5px #000;
}
.cat-block a,
.cat-block a img {
    display:  block;
    width:  100%;
    height:  100%;
}
.cat-block:hover img {
    filter: contrast(2);
}
.pa-category .single-post-title {
    margin-bottom: 10px
}
.pa-category .single-post-title span {
    padding: 7px;
    width: 260px;
}
.cat-block a h2 {
    position: absolute;
    top: 60px;
    left:  0;
    right:  0;
    resize:  vertical;
    font-size: 16px;
    padding:  10px;
    z-index: 55;
    transform: scale(7);
    -webkit-transform: scale(7);
    -moz-transform: scale(7);
    -o-transform: scale(7);
    color:  #fff;
    opacity: 0;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    font-weight: bold;
    line-height: 30px;
}
.cat-block a:hover h2 {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1
}
.cat-block a:after {
    content: "";
    position:  absolute;
    top: 0%;
    left:  0;
    right:  0;
    background: #171717;
    opacity:  0;
    width:  100%;
    height:  100%;
    transition: .3s all cubic-bezier(0.4, 0, 1, 1);
    -webkit-transition: .3s all cubic-bezier(0.4, 0, 1, 1);
    -moz-transition: .3s all cubic-bezier(0.4, 0, 1, 1);
    -o-transition: .3s all cubic-bezier(0.4, 0, 1, 1);
}
.cat-block a:hover:after {
    top: 0;
    opacity: .9
}
.cat-block .cat-post-quality {
    position:  absolute;
    bottom: 11px;
    left: 12px;
    padding: 4px 13px;
    z-index:  999;
    color: #222;
    background: #ffb418;
    font-weight:  bold;
    border-radius: 5px 10px;
    transform: scale(5);
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -o-transform: scale(5);
    opacity: 0;
    transform-origin: right bottom;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    box-shadow:  0 0px 5px #000000;
    -webkit-box-shadow:  0 0px 5px #000000;
    -moz-box-shadow:  0 0px 5px #000000;
    -o-box-shadow:  0 0px 5px #000000;
}
.cat-block:hover .cat-post-quality {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}
.cat-post-title {
    position:  absolute;
    top: 10px;
    right: 10px;
    z-index:  33;
    color:  #fff;
    font-weight:  bold;
    background:  #b10000;
    padding:  5px 10px;
    border-radius: 5px 10px;
    box-shadow: 0 0px 5px #000000;
    -webkit-box-shadow: 0 0px 5px #000000;
    -moz-box-shadow: 0 0px 5px #000000;
    -o-box-shadow: 0 0px 5px #000000;
    transform: scale(5);
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -o-transform: scale(5);
    opacity: 0;
    transform-origin: left top;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -o-transform-origin: left top;
}
.cat-block:hover .cat-post-title {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}
.cat-block p {
    position:  absolute;
    bottom: 62px;
    left: 3%;
    color:  #fff;
    text-align:  center;
    padding: 7px 10px;
    z-index:  66;
    line-height: 23px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    opacity: 0;
    border-top: 1px solid #fff;
    width: 94%;
}
.cat-block:hover p {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    opacity: 1;
}
section.pin-posts ul {
    padding: 6px 0 0;
    text-align:  center;
}
div.post_tags {
    padding: 15px 0;
    background:  #DDD;
    font-weight:  bold;
}
div.post_tags a + a::before {
    content: ',';
    position: relative;
    display: inline-block;
    padding: 0 2px;
    font-weight: bold;
}
.innerFilter {
    float: left;
}
select.filter-select {
    border:  0;
    outline:  0;
    font-family:  main-font;
    background: #fff;
    color: #2a2e38;
    width: 130px;
    padding: 0 5px;
    font-size:  13px;
    border-radius:  3px;
    margin-right:  2px;
    height: 30px;
    margin-top: 9px;
    font-weight:  bold;
}
select.filter-select option {
    color: #000;
    border:  0;
    outline:  0;
}
.filterbtn {
    height:  30px;
    font-family:  'main-font';
    border:  0;
    border-radius:  3px;
    padding:  0 20px;
    outline: 0;
    cursor:  pointer;
    background:  radial-gradient(ellipse at top,#fbc34d,#F19929 75%,#cc7427);
    margin-right: 4px;
    width: 100px !important;
    font-family:  main-font !important;
    font-size: 15px !important;
}
.filterbtn i { 
    padding-left: 3px; 
}
.sliderMaster {
    height: auto;
    overflow:  hidden;
    background: #ca1515;
    direction: ltr !important;
    padding: 10px 0;
}
.newset-master {
    padding: 0 0 20px;
}
.newset-master .right {
    float: right;
    width: 49.5%;
    height: auto;
    padding:  10px;
    background:  #0000004d;;
    box-shadow:  0 0px 4px #00000059;
    -webkit-box-shadow:  0 0px 4px #00000059;
    -moz-box-shadow:  0 0px 4px #00000059;
    -o-box-shadow:  0 0px 4px #00000059;
    border-radius: 3px;
    text-align:  center;
    overflow:  hidden;
    margin-left: 1%;
    padding-bottom:  5px;
}
.newset-master .right .movie {
    display: block;
    width: 100%;
    height: auto;
}
.newset-master .block {
    width: 32.3%;
    height: 250px;
    border-radius: 15px;
    overflow:  hidden;
    box-shadow: 0 1px 4px #000;
    -webkit-box-shadow: 0 1px 4px #000;
    -moz-box-shadow: 0 1px 4px #000;
    -o-box-shadow: 0 1px 4px #000;
    float:  right;
    margin-bottom: 8px;
    margin-left: 1.5%;
}
.newset-master .block a,
.newset-master .block img {
    display: block;
    width: 100%;
    height: 100%;
}
.newset-master .block h3 {
    padding: 60px 8px 10px 8px;
    font-size: 16px;
    position:  absolute;
    bottom:  0;
    left:  0;
    z-index: 5;
    right:  0;
    color:  #fff;
    background: linear-gradient(to top ,#000000, #00000000);
    text-align: center;
}
.newset-master .block a p {
    position:  absolute;
    top: -100%;
    left:  0;
    right:  0;
    z-index: 55;
    text-align: center;
    color: #fff;
    transition: .3s  all ease;
    -webkit-transition: .3s  all ease;
    -moz-transition: .3s  all ease;
    -o-transition: .3s  all ease;
    padding:  10px;
}
.newset-master .block a:hover p {
    top: 50px;
}
.newset-master .block a::after {
    position: absolute;
    content: '';
    top:  0;
    left:  0;
    right:  0;
    bottom:  0;
    background:  #000;
    opacity:  0;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
}
.newset-master .block a:hover::after {
    opacity: 0.7
}
.newset-master .left {
    position:  relative;
    display:  inline-block;
    width: 49.5%;
    background:  #0000004d;
    padding:  10px;
    border-radius: 3px;
    box-shadow: 0 0px 4px #00000059;
    -webkit-box-shadow: 0 0px 4px #00000059;
    -moz-box-shadow: 0 0px 4px #00000059;
    -o-box-shadow: 0 0px 4px #00000059;
    text-align:  center;
    overflow:  hidden;
    padding-bottom: 5px;
}
.filterItems {
	position:  relative;
	padding: 5px;
	border-radius:  3px;
    margin-bottom: 35px;
	height:  50px;
}
.filterItems li {
    font-weight: 500;
    padding: 0 30px;
    border-radius: 29px;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    background: #130438;
    margin: 4px;
}
.filterItems li i {
    padding-left: 5px;
}
.filterItems li.active {
    background: rgb(136, 0, 0);
}
.series-slider,
.movie-slider {
    overflow:  hidden;
    direction:  ltr;
    height:  300px;
}
.series-slider .item,
.movie-slider .item {
	height: 300px;
	border-radius: 3px;
	overflow:  hidden;
	background-position: center top !important;
	background-size:  cover !important;
}
.movie-slider .item a, .series-slider .item a {
    display:  block;
    width:  100%;
    height: 100%;
}
.series-slider .item a
.movie-slider .item a {
    padding: 0 px;
}
.series-slider .item a img,
.movie-slider .item a img {
    height: auto;
}
.movie-slider .item .bg {
    position:  absolute;
    top: 0;
    left:  0;
    right:  0;
    bottom:  0;
    filter: blur(10px);
}
.movie-slider .item .bg:after {
    content: '';
    position:  absolute;
    top: 0;
    left:  0;
    right:  0;
    bottom:  0;
    background:  #000;
    opacity: 0.7;
}
.series-slider .item h3,
.movie-slider .item  h3 {
    position:  absolute;
    bottom:  0;
    left:  0;
    right:  0;
    text-align:  center;
    color: #fff;
    background:  linear-gradient(to top ,#000000, #00000000);
    padding: 40px 10px 10px;
    direction: rtl;
    font-size: 20px;
}
.filter-slider {
	padding: 10px 0;
	text-align:  center;
}
.filter-slider li {
	display:  inline-block;
	height:  35px;
	padding: 8px 10px;
	cursor:  pointer;
	transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
}
.filter-slider li.active {
    background:  #ca1515;
    color:  #fff;
    border-radius: 5px;
    text-align: center;
}
.MainSLider {
    overflow:  hidden;
    direction:  ltr;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.41918765797334556) 100%);
    box-shadow: 0 4px 9px #00000073;
    -webkit-box-shadow: 0 4px 9px #00000073;
    -moz-box-shadow: 0 4px 9px #00000073;
    -o-box-shadow: 0 4px 9px #00000073;
}
.MainSLider .item {
    height: 350px;
    overflow:  hidden;
    border-radius:  15px;
    box-shadow: 0 2px 4px #000000d9;
    -webkit-box-shadow: 0 2px 4px #000000d9;
    -moz-box-shadow: 0 2px 4px #000000d9;
    -o-box-shadow: 0 2px 4px #000000d9;
    margin: 15px 0;
}
.MainSLider .item a {
    display: block;
    width:  100%;
    height: 100%;
}
.MainSLider .item h2 {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(to top ,#000000, #00000000);
    padding: 90px 10px 14px;
    font-size: 16px;
    direction:  rtl;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
}
span.slider-home-next {
    position:  absolute;
    right:  0;
    top: 50%;
    background: #ca1515;
    z-index:  999;
    width:  40px;
    height:  40px;
    text-align:  center;
    font-size: 20px;
    margin-top: -20px;
    padding-top:  11px;
    border-radius: 3px 0 0 3px;
    color:  #fff;
    cursor:  pointer;
    box-shadow: 0 1px 7px #000;
    -webkit-box-shadow: 0 1px 7px #000;
    -moz-box-shadow: 0 1px 7px #000;
    -o-box-shadow: 0 1px 7px #000;
}
span.slider-home-prev {
    position:  absolute;
    left:  0;
    top: 50%;
    background: #ca1515;
    z-index:  999;
    width:  40px;
    height:  40px;
    text-align:  center;
    font-size: 20px;
    margin-top: -20px;
    padding-top:  11px;
    border-radius: 3px 0 0 3px;
    color:  #fff;
    cursor:  pointer;
    box-shadow:  0 1px 7px #000;
    -webkit-box-shadow:  0 1px 7px #000;
    -moz-box-shadow:  0 1px 7px #000;
    -o-box-shadow:  0 1px 7px #000;
}
.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius:  50%;
    background:  #fff !important;
    outline:  0;
    margin: 2px 4px;
}
.single-header {
    height: 346px;
    background-size:  cover;
    background-position: center center;
    overflow:  visible;
    z-index:  555;
}
.single-header::after {
    content: '';
    position:  absolute;
    top: 0;
    left:  0;
    right:  0;
    bottom:  0;
    background: linear-gradient(to right top, #000000c9, #0c0c0cd1, #000000, #000000);
}
.post-thumb {
    z-index: 999;
    position:  relative;
    width: 230px;
    overflow:  hidden;
    height:  300px;
    top: 25px;
    border-radius: 16px;
    float:  right;
    box-shadow: 0 1px 3px #0000009e;
    -webkit-box-shadow: 0 1px 3px #0000009e;
    -moz-box-shadow: 0 1px 3px #0000009e;
    -o-box-shadow: 0 1px 3px #0000009e;
}
.post-thumb img {
    display:  block;
    width:  100%;
    height:  100%;
}
.post-thumb a.adbtn {
    position:  absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    color:  #fff;
    text-align:  center;
    height: 40px;
    transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -o-transform: translate(0%,-50%);
    background: #ffffff4f;
    padding-top: 10px;
}
.post-thumb a.adbtn i {
    padding-left:  5px;
}
.single-header .container {
    height:  100%;
}
.single-tabs {
    z-index: 111;
    padding-top: 15px;
    text-align: center;
}
.single-tabs a {
    color: #fff;
}
.single-tabs button {
    border: 0;
    outline: 0;
    background: linear-gradient(45deg, #08002b, #2055c9);     font-family: inherit;
    width: 140px;
    text-align: center;
    border-radius: 16px;     margin-left: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);     color: #fff;
    transition: all 0.3s ease;
}
.single-tabs button.play-now {
    background: linear-gradient(45deg, #a70006, #c70006); }
.single-tabs button.play-now.active {
    background: #680003; }
.single-tabs button.movie-series {
    background: linear-gradient(45deg, #470050, #7904bd); }
.single-tabs button.movie-series.active {
    background: #25041e; }
.single-tabs button.down-now {
    background: linear-gradient(45deg, #4caf50, #66bb6a); }
.single-tabs button.down-now.active {
    background: #144d16; }
.single-tabs button.info,
.single-tabs button.comments {
    background: linear-gradient(45deg, #08002b, #2055c9); }
.single-tabs button.info.active,
.single-tabs button.comments.active {
    background: #15004e; 
}
.single-tabs button span {
    display: inline-block;
    padding: 11px 0;
}
.single-tabs button i {
    padding-left: 5px;
    float: right;
    height: 40px;
    width: 40px;
    font-size: 23px;
    background: rgba(255, 255, 255, 0.1);     padding-top: 7px;
    text-align: center;
    transition: background 0.3s ease;     border-radius: 16px;
}
.single-tabs button:hover {
    transform: scale(1.05);     background: linear-gradient(45deg, #0a255e96, #070029); }
.single-tabs button:active {
    transform: scale(0.95); }
.single-tabs button.active i {
    background: rgba(0, 0, 0, 0.678); }
.single-tabs button:hover i {
    background: rgba(255, 255, 255, 0.582); }
h1.single-title {
    color: #ff9d3c;
    z-index:  15;
    font-size: 25px;
    padding-top: 80px;
}
h1.single-title span {
    background: rgba(0, 0, 0, 0.44);
    padding: 6px 35px;
    border-radius:  20px;
    display:  inline-block;
    max-width: 596px;
}
h1.single-title span a {
     color: #ff9d3c;
    z-index:  15;
    font-size: 25px;
    padding-top: 100px;
}
@media (min-width: 1024px) {
    .single-description {
        margin: 20px 0; 
        padding: 6px 35px;
        z-index:  15;
        height: 100px;
        max-height: 100px;
        border-radius: 5px;
        font-size: 16px;
        line-height: 1.6;
        color: #ddd;
        text-align: justify;
        overflow: auto;
        max-width: 600px;
        background-color: rgba(0, 0, 0, 0.44);     }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .single-description {
        margin: 20px 0; 
        padding: 6px 35px;
        z-index:  15;
        height: 100px;
        max-height: 100px;
        border-radius: 5px;
        font-size: 16px;
        line-height: 1.6;
        color: #ddd;
        text-align: justify;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.44);     }
}
@media (max-width: 767px) {
    .single-description {
        margin: 20px 0; 
        padding: 6px 35px;
        z-index:  15;
        height: 100px;
        max-height: 100px;
        border-radius: 5px;
        font-size: 16px;
        line-height: 1.6;
        color: #ddd;
        text-align: justify;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.44);     }
}
.tabs > div > div {
    display: none;
    transition:  0a;
}
.post-thumb {
    margin-left: 15px;
}
.tabs {
    background:  #fff;
}
.title-box {
    padding-bottom:  10px;
}
.title-box span {
    padding-top: 3px;
    display:  inline-block;
    padding-right:  10px;
    font-size: 16px;
}
.title-box i {
    float:  right;
    font-size:  25px;
}
.serv-download li a i {
    padding-left:  5px;
    float:  right;
    width:  40px;
    height:  40px;
    font-size:  20px;
    background: #00000024;
    padding: 9px 9px;
}
.serv-download li a span {
    display: inline-block;
    width: auto;
    height:  100%;
    padding: 10px 20px;
}
.headTitleinfo {
    position: absolute;
    top: 25px;
    left: 0;
    color: #fff;
    z-index: 88;
    width: 310px;
    text-align: right;
    direction: rtl;
}
.headTitleinfo > h3 {
    padding: 8px 22px;
    background: rgba(0, 0, 0, 0.219);
    font-size: 16px;
    border-radius: 11px 11px 0 0;
    text-align: center;
}
.headTitleinfo > h3 > i {
    width: 25px;
    height: 25px;
    margin-left: 4px;
    padding: 3px 3px 3px 3px;
    border-radius: 10px;
    text-align: center;
    font-size: 17px;
    box-shadow: 0 0 15px #00000040;
    border: 1px solid #ffffff21;
    color: #fff;
    background: #283a58;
} 
.headTitleinfo ul {
    background: rgba(0, 0, 0, 0.219);
    padding: 10px;
    border-radius: 0 0 3px 3px;
    list-style-type: none;
    margin: 0;
    text-align: right;
    overflow: auto;
 max-height: 245px;
}
.headTitleinfo ul span em {
  margin-left: 5px;
}
.headTitleinfo ul span {
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;     background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    padding: 8px;
    margin-bottom: 4px;
    box-sizing: border-box;
    height: 100%;
}
.headTitleinfo li {
    padding: 10px 0;
    border-bottom: 1px solid #DDD;     display: flex;
    align-items: center;
}
.headTitleinfo span i {
    width: 25px;
    height: 25px;
    margin-left: 9px;
    background: #283a58;
    padding: 3px 3px 3px 3px;
    border-radius: 15px;
    text-align: center;
    font-size: 17px;
    box-shadow: 0 0 15px #00000040;
    border: 1px solid #ffffff21;
    float: right;
    color: #fff;
}
.headTitleinfo li:last-child {
    border-bottom: none; }
.headTitleinfo li i {
    margin-left: 8px; }
.headTitleinfo li span {
    font-weight: bold;
    color: #fff;
    padding-left: 8px;
}
.headTitleinfo li span a {
    color: #fff;     font-weight: bold;
    padding: 0 5px;     display: inline-block;     margin: 0 3px;     text-decoration: none; }
.headTitleinfo a::after {
    content: ' - ';     margin: 0 2px;
    color: #fff; }
.headTitleinfo a:last-child::after {
    content: ''; }
.headTitleinfo i {
    padding: 1px 3px;     text-decoration: none;     color: #eeeeee;
}
#tab2-content .right ul {
    padding:  5px 10px;
}
#tab2-content .left iframe {
    width:  100%;
    height:  100%;
    display:  block;
}
.loader {
    position: relative;
    width: 2.5em;
    height: 2.5em;
}
.loader:before, .loader:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-radius: 0.25em;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.loader:before {
    animation: before 2s infinite;
    -webkit-animation: before 2s infinite;
    -moz-animation: before 2s infinite;
    -o-animation: before 2s infinite;
}
.loader:after {
    animation: after 2s infinite;
    -webkit-animation: after 2s infinite;
    -moz-animation: after 2s infinite;
    -o-animation: after 2s infinite;
}
@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
        -webkit-box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
        -moz-box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
        -o-box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
        -webkit-box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
        -moz-box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
        -o-box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }
    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
        -webkit-box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
        -moz-box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
        -o-box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }
    100% {
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
        -webkit-box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
        -moz-box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
        -o-box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
}
@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
        -webkit-box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
        -moz-box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
        -o-box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
        -webkit-box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
        -moz-box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
        -o-box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }
    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
        -webkit-box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
        -moz-box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
        -o-box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }
    100% {
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
        -webkit-box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
        -moz-box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
        -o-box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
}
.BlocksHolder .loader {
    margin:  0 auto;
    height: 260px;
}
.filter-slider li i {
	float:  right;
	padding-left:  5px;
	font-size: 16px;
}
.filterItems ul {
    float:  left;
}
.breadCrumbs {
    height:  45px;
    background: #13151b26;
    margin-bottom: 10px;
    z-index:  9999;
    padding: 13px 0;
}
.random-posts li.random-block:nth-child(5n+0) {
    margin-left:  0;
}
.singleBigBox {
    min-height: auto;
    background: #3333337a;
    margin-bottom:  20px;
    box-shadow: 0 1px 5px #0000004a;
    -webkit-box-shadow: 0 1px 5px #0000004a;
    -moz-box-shadow: 0 1px 5px #0000004a;
    -o-box-shadow: 0 1px 5px #0000004a;
    display:  none;
    margin-top: -10px;
    height:  auto;
}
.single-info {
    position:  relative;
    padding: 25px 20px 20px;
}
.single-info .right {
    float:  right;
    width: 20%;
    overflow:  hidden;
    padding: 0 5px;
}
.single-info .right .post-thumbnail {
    position:  relative;
    display:  block;
    width:  100%;
    height: 310px;
    border:  2px solid #fff;
    box-shadow: 0 1px 4px #000000a6;
    -webkit-box-shadow: 0 1px 4px #000000a6;
    -moz-box-shadow: 0 1px 4px #000000a6;
    -o-box-shadow: 0 1px 4px #000000a6;
    margin-bottom: 5px;
}
.single-info .right .post-thumbnail img {
    display:  block;
    width:  100%;
    height:  100%;
}
.ratingdMaster {
    background: #13151b;
    border-radius:  3px;
    margin-top:  6px;
    color:  #fff;
    text-align:  center;
    height:  36px;
    display:  inline-flex;
    width:  100%;
    box-shadow:  0 1px 3px #0000007a;
    -webkit-box-shadow:  0 1px 3px #0000007a;
    -moz-box-shadow:  0 1px 3px #0000007a;
    -o-box-shadow:  0 1px 3px #0000007a;
    margin-bottom: 5px;
}
.ratingdMaster span {
    display:  inline-block;
    font-size: 16px;
    padding-top: 7px;
    float:  right;
}
.ratingdMaster .post-ratings {
    display: inline-block;
    padding-top: 5px;
    height: 23px;
    padding-right: 10px;
    margin-top: 3px;
    width:  100%;
    margin: 3px auto 0;
}
.single-info .center {
    margin-bottom: 20px;
}
.single-info .left {
    display: flex;     flex-wrap: wrap;     gap: 10px; }
.single-info .left > h1 {
    text-align:  center;
    font-size:  20px;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom:  3px;
    color: #13151b;
}
.single-info .left > h1 i {
    float:  right;
    font-size:  40px;
}
.single-info .left > h1 span {
    float: right;
    padding-right: 8px;
    padding-top: 7px;
}
h2.TitleAreaTwo {
    height: 40px;
    position: relative;
    margin-bottom: 25px;
}
h2.TitleAreaTwo i {
    float:  right;
    font-size:  32px;
    padding: 4px 0px;
    margin-left:  10px;
}
h2.TitleAreaTwo span {
    float:  right;
    padding: 6px 0;
}
.single-info .center .Title {
    height: 45px;
    overflow:  hidden;
    background: #fcfcfc;
    border-radius:  3px;
    box-shadow: 0 1px 3px #00000038;
    -webkit-box-shadow: 0 1px 3px #00000038;
    -moz-box-shadow: 0 1px 3px #00000038;
    -o-box-shadow: 0 1px 3px #00000038;
    margin-bottom:  10px;
}
.single-info .center .Title h1 {
    float:  right;
}
.single-info .center .Title h1 span {
    float:  right;
    font-size:  20px;
    padding: 10px 0;
    color: #13151b;
}
.single-info .center .Title h1 i {
    float:  right;
    margin-top:  5px;
    overflow:  hidden;
    margin-right:  5px;
    font-size: 32px;
    padding-right: 3px;
    margin-left: 10px;
    color: #13151b;
}
.container .TitleAreaTwo::before, .container .filterItems::before {
    content: "";
    height: 4px;
    width: 123px;
    background: #5367ff;
    border-radius: 2px;
    display: block;
    top: 100%;
    position: absolute;
  }
  .container .TitleAreaTwo::after, .container .filterItems::after {
    content: "";
    position: absolute;
    right: 190px;
    display: inline-block;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #3b8bee;
    box-shadow: 9px 0 0 0 #3b8bee, 18px 0 0 0 #3b8bee, 27px 0 0 0 #3b8bee, 36px 0 0 0 #3b8bee, 45px 0 0 0 #3b8bee, 54px 0 0 0 #3b8bee, 63px 0 0 0 #3b8bee;
    top: 100%;
  }
.single-info .center .Box {
    min-height:  100px;
    background: #0000008f;
    color: #ffffff;
    border-radius:  3px;
    border-bottom: 2px solid #fff;
    overflow:  hidden;
    padding:  10px;
    box-shadow: 0 1px 3px #00000038;
    -webkit-box-shadow: 0 1px 3px #00000038;
    -moz-box-shadow: 0 1px 3px #00000038;
    -o-box-shadow: 0 1px 3px #00000038;
}
.single-info .center .Box h1 {
    display:  block;
    font-size:  20px;
    border-bottom:  1px solid #DDD;
    height: 30px;
    margin-bottom: 4px;
}
.single-info .center .Box h1 i {
    float:  right;
    padding-left:  6px;
    padding-top:  4px;
    font-size: 21px;
}
.single-info .center .Box h1 span {
    float:  right;
    padding: 2px 0;
}
.single-info .center .Box li {
    float:  right;
    width: 49%;
    border-bottom:  1px solid #DDD;
    height: 30px;
    overflow:  hidden;
}
.single-info .center .Box ul li i {
    float:  right;
    font-size:  17px;
    padding-top:  6px;
    padding-left: 6px;
}
.single-info .center .Box li:nth-child(odd) {
    margin-left: 2%;
}
.single-info .center .Box li a {
    float:  right;
    padding: 5px 0;
    margin-left: 5px;
}
.single-info .center .Box li.quality-cat a {
    font-family:  cairo-font;
    font-weight:  bold;
    line-height: 19px;
}
.single-info .center .Box li em {
    float:  right;
    font-style:  normal;
    padding:  5px 0;
    margin-left: 5px;
}
.single-info .center p.description {
    background: #0000002e;
    border-radius: 3px;
    border-bottom: 2px solid #fff;
    overflow: hidden;
    padding: 10px 15px;
    box-shadow: 0 1px 3px #00000038;
    margin-bottom: 10px;
}
.single-info .loader {
    margin:  0 auto;
    padding-top: 260px;
}
.single-info .left li.TeamWork {
    height: 50px;
    display: flex;     width: calc(17.33% - 10px);
    overflow: hidden;
    background: linear-gradient(#ffffff, #e4e4e4);
    margin-top: 7px;
    box-shadow: 0 1px 2px #00000040;
    -webkit-box-shadow: 0 1px 2px #00000040;
    -moz-box-shadow: 0 1px 2px #00000040;
    -o-box-shadow: 0 1px 2px #00000040;
    border-radius: 3px;
    border-bottom: 1px solid #0000002e;
}
.single-info .left li.TeamWork a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #13151b;
    justify-content: space-between;     text-align: right;
}
.single-info .left li.TeamWork a i {
    font-size: 40px;
    padding-top: 6px;
    text-align: center;
    width: 40px;
    height: 50px;
}
.single-info .left li.TeamWork a .TMleft {
    text-align: right;
    flex-grow: 1; }
.single-info .left li.TeamWork a .TMleft h1 {
    font-size: 16px;
    padding: 5px 0;
}
.single-info .left li.TeamWork a .TMleft p {
    font-size: 10px;
}
.single-info .center .Box li a + a:before {
    content:  ',';
    font-weight:  bold;
    margin: 0 5px;
}
.single-info .left hr {
    margin-top: 7px;
    border:  0;
    border-top: 1px solid #DDD;
}
.breadCrumbs li {
    float:  right;
    color: #ff9d3c;
}
.breadCrumbs li a {
    color:  #fff;
}
.breadCrumbs i {
    float:  right;
    color:  #fff;
    padding: 0 7px;
}
.single-info .ServersRight {
    min-height: 508px;
    float:  right;
    width: 20%;
    background: #0000003b;
    border-radius:  3px;
    box-shadow: 0 1px 2px #00000045;
    -webkit-box-shadow: 0 1px 2px #00000045;
    -moz-box-shadow: 0 1px 2px #00000045;
    -o-box-shadow: 0 1px 2px #00000045;
    padding: 10px;
    overflow: auto;
    border:  4px solid #3333337a;
    height: auto;
}
.single-info .ServersRight > h1 {
    height: 34px;
    overflow:  hidden;
    border-bottom: 1px solid #00000036;
}
.single-info .ServersRight > h1 i {
    float:  right;
    width:  40px;
    height:  40px;
    font-size: 30px;
}
.single-info .ServersRight > h1 span {
    float:  right;
    font-size:  18px;
    padding: 4px 0;
}
.single-info .ServersRight ul li {
    height: 35px;
    margin-top: 10px;     background: #08020e;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 1px 2px #00000026;
    transition: .3s all ease;
}
.single-info .ServersRight ul {
overflow: auto;
    max-height: 470px;
}
@media (min-width: 1024px) {
    .single-info .ServersRight ul li {
        display: block;         margin-top: 10px;     }
}
@media (max-width: 1023px) {
    .single-info .ServersRight ul {
        display: flex;         flex-wrap: wrap;         gap: 10px;     }
    .single-info .ServersRight ul li {
        flex: 1 1 calc(33.33% - 10px);         margin-top: 0;     }
}
.single-info .ServersRight ul li i {
    float:  right;
    width:  35px;
    text-align:  center;
    font-size:  20px;
    padding: 8px 0;
}
.single-info .ServersRight ul li span {
    float:  right;
    font-size: 15px;
    padding: 8px 0;
}
.single-info .watch-Area {
    float:  right;
    width: calc(80% - 15px);
    border-radius:  3px;
    border: 4px solid #00000052;
    box-shadow: 0 1px 5px #00000073;
    -webkit-box-shadow: 0 1px 5px #00000073;
    -moz-box-shadow: 0 1px 5px #00000073;
    -o-box-shadow: 0 1px 5px #00000073;
    margin-right:  15px;
    overflow:  hidden;
}
.single-info .watch-Area iframe {
    display:  block;
    width:  100%;
    height: 500px;
    border:  0;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    outline:  0;
}
.single-info .ServersRight ul li.active {
    background: #570000;;
    color:  #fff;
}
.download-servers li {
    float:  right;
    width: 167px;
    height: 40px;
    background: #21bd05;
    margin-left: 5px;
    border-radius:  3px;
    overflow:  hidden;
    box-shadow: 0 1px 2px #0000002e;
    -webkit-box-shadow: 0 1px 2px #0000002e;
    -moz-box-shadow: 0 1px 2px #0000002e;
    -o-box-shadow: 0 1px 2px #0000002e;
    margin-top: 7px;
}
.download-servers li a {
    display:  block;
    width:  100%;
    height:  100%;
    color:  #fff;
    text-align:  center;
    font-size:  16px;
}
.download-servers li a i {
    float:  right;
    width: 40px;
    height:  40px;
    font-size: 24px;
    text-align:  center;
    background: #00000024;
    padding-top: 7px;
}
.download-servers li a span {
    font-size: 16px;
    display:  inline-block;
    padding-top: 8px;
}
.download-servers li:nth-child(7n+0) {
    margin-left:  0;
}
.download-servers h2.TitleAreaTwo {
    margin-bottom: 3px;
}
.ActorPage {
    padding: 20px 0;
}
.ActorPage > div > .right {
    float:  right;
    width: 70%;
    min-height:  500px;
}
.ActorPage > div > .left {
    float:  left;
    width: calc(30% - 10px);
    min-height:  500px;
    overflow: hidden;
    margin-right: 5px;
}
.ActorPage > div > .left .MostViews {
    background: #00000077;;
    box-shadow: 0 1px 2px #0000004a;
    -webkit-box-shadow: 0 1px 2px #0000004a;
    -moz-box-shadow: 0 1px 2px #0000004a;
    -o-box-shadow: 0 1px 2px #0000004a;
    padding:  10px;
    border-radius:  3px;
    overflow:  hidden;
    margin-bottom: 10px;
    margin-right: 5px;
}
.ActorPage > div > .left .MostViews > h2 {
    height: 45px;
    overflow:  hidden;
    border-bottom: 1px solid #0000001c;
}
.ActorPage > div > .left .MostViews > h2 i {
    float:  right;
    width:  auto;
    height:  40px;
    padding:  7px;
    font-size: 27px;
}
.ActorPage > div > .left .MostViews > h2 p {
    float:  right;
    font-size:  16px;
}
.ActorPage > div > .left .MostViews > h2 span {
    float:  right;
    font-size: 16px;
    width: 70%;
    padding: 0 6px;
}
.ActorPage > div > .left .MostViews > h2 em {
    font-size:  12px;
    font-style:  normal;
    float:  right;
    padding-right: 6px;
}
.ActorPage > div > .left .MostViews li {
    overflow:  hidden;
    height: 70px;
    margin-top: 7px;
    border-radius: 3px;
    background: linear-gradient(#000000af, #000000e0 100%);
    box-shadow: 0 1px 2px #00000029;
    -webkit-box-shadow: 0 1px 2px #00000029;
    -moz-box-shadow: 0 1px 2px #00000029;
    -o-box-shadow: 0 1px 2px #00000029;
    border-bottom: 1px solid #00000029;
}
.ActorPage > div > .left .MostViews li a {
    display:  block;
    color: #ffffff;
    width:  100%;
    height:  100%;
}
.ActorPage > div > .left .MostViews li a img {
    float:  right;
    width: 50px;
    height: 58px;
    margin-top:  6px;
    margin-right:  6px;
    border-radius:  3px;
    margin-left: 8px;
}
.ActorPage > div > .left .MostViews li a h2 {
    float:  right;
    width: calc(100% - 64px);
    font-size: 16px;
    padding: 5px 0 5px 7px;
}
.ActorPage > div > .left .MostViews li a p {
    font-size:  10px;
    padding-left:  7px;
    float: right;
    width:  calc(100% - 64px);
    line-height: 15px;
}
.ActorBlocksHolder {
    background: #00000077;
    box-shadow: 0 1px 2px #0000004a;
    -webkit-box-shadow: 0 1px 2px #0000004a;
    -moz-box-shadow: 0 1px 2px #0000004a;
    -o-box-shadow: 0 1px 2px #0000004a;
    padding: 10px;
}
.ActorBlocksHolder li.random-block {
    width: 24.2%;
    margin-bottom:  0;
    margin-top: 10px;
    height: 270px;
}
.ActorBlocksHolder li.random-block:nth-child(4n+1) {
    margin-left:  0;
}
.OtherActors {
    margin-top: 10px;
}
.OtherActors .Holder {}
.OtherActors .Holder li {
    float:  right;
    width: 13.4%;
    height: 122px;
    background:  #fff;
    overflow:  hidden;
    margin-left: 1%;
    border-radius:  3px;
    color:  #fff;
    box-shadow: 0 1px 2px #000;
    -webkit-box-shadow: 0 1px 2px #000;
    -moz-box-shadow: 0 1px 2px #000;
    -o-box-shadow: 0 1px 2px #000;
    margin-bottom: 2px;
}
.OtherActors .Holder li:nth-child(7n+0) {
    margin-left:  0;
}
.OtherActors .Holder li h1 {
    position:  absolute;
    bottom: 0;
    left:  0;
    right:  0;
    text-align:  center;
    font-size:  14px;
    background: linear-gradient(to bottom ,#00000000, #191919 100%);
    padding: 145px 5px 5px 5px;
    z-index:  999;
    color:  #fff;
}
.ActorPage > div > .right .header {
	background: #55555542;
	border: 2px solid #55555542;
	box-shadow: 0 1px 2px #0000004a;
	border-radius: 3px;
	margin-bottom: 15px;
	height:  50px;
	overflow:  hidden;
}
.OtherActors .Holder li a img {
    display:  block;
    width:  100%;
    height:  100%;
}
.OtherActors .Holder li a {
    display:  block;
    width:  100%;
    height:  100%;
}
.ActorPage > div > .right .header h1 {
    float:  right;
}
.ActorPage > div > .right .header h1 > i {
    float:  right;
    width: 35px;
    margin-top: 10px;
    margin-right: 10px;
}
.ActorPage > div > .right .header h1 span {
    float:  right;
    padding: 10px 2px;
    font-size: 20px;
}
.ActorPage > div > .right .header .share {
    float:  left;
}
.ActorPage > div > .right .header .share li {
    float:  right;
    height:  35px;
    width:  auto;
    border-radius:  3px;
    margin-top:  5px;
    overflow:  hidden;
    box-shadow: 0 1px 2px #00000036;
    -webkit-box-shadow: 0 1px 2px #00000036;
    -moz-box-shadow: 0 1px 2px #00000036;
    -o-box-shadow: 0 1px 2px #00000036;
    margin-left: 5px;
}
.ActorPage > div > .right .header .share li.share-twitter a {
    background: #55acee;
    color:  #55acee;
}
li.share-tiktok {
    background: #d0301d;
}
.ActorPage > div > .right .header .share li a {
    color: #fff;
    display:  block;
    width:  100%;
    height:  100%;
    padding: 0 5px;
}
.ActorPage > div > .right .header .share li a i {
    float:  right;
    width: 25px;
    height: 25px;
    background:  #fff;
    margin-top:  5px;
    border-radius:  3px;
    overflow:  hidden;
    font-size:  20px;
    padding-top:  3px;
    text-align:  center;
}
.ActorPage > div > .right .header .share li a span {
    float:  right;
    padding: 7px 8px;
}
.ActorPage > div > .right .header .share li.share-tiktok a {
    color:  #d0301d;
    background: #d0301d
}
.ActorPage > div > .right .header .share li.share-facebook a {
    background: #325090;
    color: #325090
}
.ActorPage > div > .right . header .share li.share-twitter a {
    background: #55acee;
    color: #55acee
}
.ActorPage > div > .right .header .share li.share-linkedin a {
    background: #2490e2;
    color: #2490e2
}
.ActorPage > div > .right .header .share > ul >span {
    float:  right;
    padding: 12px 0px;
    font-size: 16px;
    margin-left: 10px;
}
.ActorBlocksHolder h2.TitleAreaTwo {
    margin-bottom:  0;
}
.ActorBlocksHolder .pagination {
    margin-top: 10px;
}
.TemplatePage {
    padding: 20px 0;
}
.ActorsListBlock {
    float:  right;
    width: 11.77%;
    overflow:  hidden;
    height: 140px;
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius:  3px;
    box-shadow: 0 1px 2px #0000002e;
    -webkit-box-shadow: 0 1px 2px #0000002e;
    -moz-box-shadow: 0 1px 2px #0000002e;
    -o-box-shadow: 0 1px 2px #0000002e;
    border:  2px solid #fff;
}
.ActorsListBlock a {
    display:  block;
    width:  100%;
    height:  100%;
}
.ActorsListBlock:nth-child(8n+0) {
    margin-left:  0;
}
.ActorsListBlock a img {
    display:  block;
    width: 100%;
    height:  100%;
}
.ActorsListBlock a h1 {
    position:  absolute;
    bottom:  0;
    left:  0;
    right:  0;
    text-align:  center;
    font-size:  16px;
    padding-bottom: 5px;
}
.ActorsListBlock a span {
    position:  absolute;
    top: -100px;
    left: 50%;
    padding:  5px 10px;
    background: #e6e6e6;
    border-radius:  3px;
    overflow:  hidden;
    box-shadow: 0 1px 2px #00000040;
    -webkit-box-shadow: 0 1px 2px #00000040;
    -moz-box-shadow: 0 1px 2px #00000040;
    -o-box-shadow: 0 1px 2px #00000040;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
}
.ActorsListBlock a span em {
    font-family:  cairo-font;
    font-style:  normal;
    font-weight:  bold;
    line-height:  4px;
    padding-left: 4px;
}
.ActorsListBlock:hover a span {
    top: 10px;
}
.error_404 {
    padding: 140px 0;
}
.error_404 h3 {
    font-size:  26px;
    text-align:  center;
    padding-bottom:  10px;
}
.error_404 form#s {
    display:  inline-flex;
    width:  100%;
    padding: 0 90px;
}
.error_404 form#s input {
    height:  35px;
    border:  0;
    outline:  0;
}
.error_404 form#s input#searchsubmit {
    width: calc(10% - 5px);
    cursor:  pointer;
    margin-right: 5px;
    background: #ca1515;
    border-radius:  3px;
    color:  #fff;
    border: 1px solid #FFF;
}
.error_404 form#s input#s {
    width: 90%;
    padding:  7px 10px;
    border-radius:  3px;
    border: 1px solid #00000038;
}
.ActorPage > div > .left .MostViews > h1.QualityT span {
    font-family:  cairo-font;
    font-weight:  bold;
    line-height: 22px;
}
.ActorPage > div > .right .header h1.QualityT span {
    font-family:  cairo-font;
    font-weight:  bold;
    line-height:  24px;
}
h2.TitleAreaTwo.QualityT span {
    font-family: cairo-font;
    font-weight: bold;
    line-height: 24px;
}
.pageContent {
    background: #f1f1f1;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 2px #0000004a;
    -webkit-box-shadow: 0 1px 2px #0000004a;
    -moz-box-shadow: 0 1px 2px #0000004a;
    -o-box-shadow: 0 1px 2px #0000004a;
    padding: 15px;
    border-radius: 3px;
    overflow: hidden;
    min-height:  400px;
    text-align: right;
    font-size:  18px;
}
.search-mobile {
    display: block;
    width: 100%;
    padding:  0px 10px 10px 10px;
}
.search-mobile form {
    display:  inline-flex;
    width:  100%;
}
.search-mobile form input {
    border:  0;
    outline:  0;
    height:  30px;
    border-radius:  3px;
}
.search-mobile form input#s {
    width: 80%;
    padding:  7px;
}
.search-mobile form input#searchsubmit {
    width: calc(20% - 5px);
    margin-right:  5px;
    background: #ffb418;
}
.AdvancedSearch {
    height:  50px;
    background: #1a1d25;
    position:  relative;
    overflow: hidden;
}
.AdvancedSearch span {
    float:  right;
    color: #ffb418;
    font-size:  20px;
    width: 200px;
}
.AdvancedSearch span i {
    float:  right;
    font-size:  30px;
    padding:  10px 0;
    margin-left: 10px;
}
.AdvancedSearch span em {
    font-style:  normal;
    font-size:  21px;
    padding: 11px 0;
    float:  right;
    margin-left:  10px;
}
.AdvancedSearch form {
    display:  inline-flex;
    width:  calc(100% - 200px);
    margin: 10px 0;
}
.AdvancedSearch form input {
    height:  30px;
    border:  0;
    outline:  0;
    width:  50%;
    margin-left:  5px;
    border-radius:  3px;
    padding:  7px;
}
.AdvancedSearch form select {
    border:  0;
    border-radius:  3px;
    overflow:  hidden;
    width: 130px;
    margin-left:  5px;
    outline:  0;
    padding-right:  4px;
}
.AdvancedSearch form button {
    width:  90px;
    border:  0;
    outline:  0;
    overflow:  hidden;
    border-radius:  3px;
    cursor:  pointer;
    background: #ca0000;
    color: #fff;
}
.AdvancedSearch form select.year option {
    font-family: cairo-font;
    line-height:  50px;
    font-weight:  bold;
}
.AdvancedSearch form button i {
    padding-left:  5px;
}
.filterItems h1 {
    float:  right;
    color:  #fff;
}
.filterItems h1 > i {
    float:  right;
    font-size:  35px;
    padding-top:  3px;
    padding-left:  8px;
    padding-right: 5px;
}
.filterItems h1 > span {
    font-size:  20px;
    float:  right;
    padding: 8px 0;
}
.filterItems2 h3 {
    float:  right;
    color:  #fff;
}
.filterItems2 h3 > i {
    float:  right;
    font-size:  35px;
    padding-top:  3px;
    padding-left:  8px;
    padding-right: 5px;
}
.filterItems2 h3 > span {
    font-size:  20px;
    float:  right;
    padding: 8px 0;
}
.filterItems2 {
	position:  relative;
	padding: 5px;
	border-radius:  3px;
    margin-bottom: 35px;
	height:  50px;
}
.filterItems2 li {
    font-weight: 500;
    padding: 0 30px;
    border-radius: 29px;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    background: #130438;
    margin: 4px;
}
.filterItems2 li i {
    padding-left: 5px;
}
.filterItems2 li.active {
    background: rgb(136, 0, 0);
}
.filter-slider2 li i {
	float:  right;
	padding-left:  5px;
	font-size: 16px;
}
.filterItems2 ul {
    float:  left;
}
.container .TitleAreaTwo::before, .container .filterItems2::before {
    content: "";
    height: 4px;
    width: 123px;
    background: #5367ff;
    border-radius: 2px;
    display: block;
    top: 100%;
    position: absolute;
  }
  .container .TitleAreaTwo::after, .container .filterItems2::after {
    content: "";
    position: absolute;
    right: 190px;
    display: inline-block;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: #3b8bee;
    box-shadow: 9px 0 0 0 #3b8bee, 18px 0 0 0 #3b8bee, 27px 0 0 0 #3b8bee, 36px 0 0 0 #3b8bee, 45px 0 0 0 #3b8bee, 54px 0 0 0 #3b8bee, 63px 0 0 0 #3b8bee;
    top: 100%;
  }


ul.tab-content .loader {
    padding:  200px 0;
    margin:  0 auto;
}
.MainSLider .item:hover h2 {}
.MainSLider .item i {
    position: absolute;
    top: 50%;
    left:  50%;
    transform: translate(-50%,-50%) scale(5);
    -webkit-transform: translate(-50%,-50%) scale(5);
    -moz-transform: translate(-50%,-50%) scale(5);
    -o-transform: translate(-50%,-50%) scale(5);
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid #FFF;
    border-radius:  50%;
    overflow:  hidden;
    padding-top: 8px;
    padding-left: 14px;
    opacity:  0;
    transition:  .3s all ease;
    -webkit-transition:  .3s all ease;
    -moz-transition:  .3s all ease;
    -o-transition:  .3s all ease;
    box-shadow: 0 0px 15px #000;
    -webkit-box-shadow: 0 0px 15px #000;
    -moz-box-shadow: 0 0px 15px #000;
    -o-box-shadow: 0 0px 15px #000;
}
.MainSLider .item i:after {
    position:  absolute;
    bottom: 0;
    left:  0;
    width: 100%;
    height: 100%;
    background: #061550bd;
    content:  '';
    z-index:  -1;
    transition: .3s .1s all ease;
    -webkit-transition: .3s .1s all ease;
    -moz-transition: .3s .1s all ease;
    -o-transition: .3s .1s all ease;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    border-radius:  50%;
    opacity:  0;
}
.MainSLider .item:hover i:after {
    transform:scale(1);
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -o-transform:scale(1);
    opacity: 1
}
.MainSLider .item:hover i {
    transform: translate(-50%,-50%) scale(1.2);
    -webkit-transform: translate(-50%,-50%) scale(1.2);
    -moz-transform: translate(-50%,-50%) scale(1.2);
    -o-transform: translate(-50%,-50%) scale(1.2);
    opacity:  1;
}
.intro p.description i {
    font-size: 23px;
    padding-left: 10px;
}
.adsHome {
    margin: 20px 0;
}
.adsHome .col {
    float:  right;
    width: 390px;
    height:  80px;
    overflow:  hidden;
    margin-left: 15px;
    border-radius:  3px;
    box-shadow: 0 1px 2px #000;
    -webkit-box-shadow: 0 1px 2px #000;
    -moz-box-shadow: 0 1px 2px #000;
    -o-box-shadow: 0 1px 2px #000;
}
.adsHome .col:nth-child(3n+0) {
    margin-left: 0 !important;
}
li.singleBB:hover em {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}
.adsHome .col img {
    display: block;
    width:  100%;
    height:  100%;
}
li.singleBB:hover img {}
.MainSLider .owl-item.center .item h2 {
    bottom:  0;
}
.adsHome .col a {
    display:  block;
    width:  100%;
    height:  100%;
}
.searchResList > h1 {
    padding: 100px 0;
    text-align:  center;
}
h2.TitleAreaTwo em.year {
    font-style: normal;
    text-transform:  uppercase;
    font-family:  cairo-font;
    font-weight:  bold;
    line-height: 8px;
}
li.random-block a.randcat {
    position:  absolute;
    top: -100%;
    left: 50%;
    width:  auto;
    height:  auto;
    padding: 6px 5px;
    color:  #333;
    background: #ffb418;
    z-index:  999;
    transition: .4s all ease;
    -webkit-transition: .4s all ease;
    -moz-transition: .4s all ease;
    -o-transition: .4s all ease;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    width:  120px;
    text-align:  center;
    border-radius:  3px;
    box-shadow: 0 1px 3px #000;
}
li.random-block:hover a.randcat {
    top: 10px;
}
h2.section-title i {
    float:  right;
    font-size: 35px;
    text-align:  center;
    padding: 3px 0;
    margin-left: 2px;
    color: #fff;
    padding-right: 5px;
}
.fixed-header {
    bottom: 0px;
    background: rgba(19, 4, 56, 0.91);
    z-index: 9999;
    justify-content: space-between;
    position: fixed;
    padding: 13px 20px 10px;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    width: 100%;
    font-size: 9px;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .fixed-header {
    font-size: 9px;
  }
  .fa-home-alt::before, .fa-home-lg-alt::before, .fa-home::before, .fa-house::before {
    content: "\f015";
  }
  .fixed-header-item i {
    display: block;
    font-size: 16px;
    padding-bottom: 6px;
  }
  .fa-thin, .fast {
    font-weight: 100;
  }
  .fixed-header-item {
    text-align: center;
  }
  .fixed-header {
    color: #fff;
    font-size: 9px;
  }
  .fa-play:before {
    content:"\f04b"
  }
  .fa-tv, .fa-film, .fa-play, .fa-clock, .fa-home {
    color: white;
}
.fa-home:before{content:"\f015"}
.custom-comments-container {
    border-radius: 8px;
    padding: 20px;
}
.custom-title-area {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}
.custom-comment {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgb(30, 30, 30);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.comment-content p {
    margin: 0;
    color: #ffffff;
}
.comment-form {
    margin-top: 20px;
    padding: 20px;
}
.comment-form label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgb(45, 45, 45);
    color: #ffffff;
}
.comment-form input[type="submit"] {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.comment-form input[type="submit"]:hover {
    background-color: rgb(10, 2, 30);
}
.divider {
    height: 3px;     background-color: #1a1a1a;     margin: 30px 0;     position: relative;     text-align: center; }
.divider-shape {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;     height: 30px;     background-color: #343a40;     border-radius: 8px;     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);     z-index: -1; }
.divider-text {
    position: relative;
    top: -14px;     background-color: #1a1a1a;     padding: 5px 15px;     font-weight: bold;
    color: #ffffff;     font-size: 16px;
    letter-spacing: 1px;     border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); }
.w-100SinglePost {
    width: 100%;
    overflow: hidden;
    padding: 30px 0
   }
   .w-100SinglePost .container {
   }
   .w-100SinglePost .container .TitleAreaTwo {
   }
.error-messages {
    color: red;
    margin-bottom: 20px;
}
.TeamWorkman {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #33333373;     border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); }
.TeamWorkman h1 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;     display: flex;
    align-items: center;
    border-bottom: 2px solid #fff;     padding-bottom: 10px;
    margin-bottom: 20px;
    justify-content: center; }
.TeamWorkman h1 i {
    font-size: 36px;
    margin-right: 10px;
    color: #ffcc00; }
.TeamWorkman h1 span {
    font-size: 24px;
    color: #ffffff; }
.team-list {
    display: flex;     justify-content: center;     gap: 20px;     flex-wrap: wrap;     padding: 0;     list-style-type: none;     margin: 0 auto; }
.TeamWork2 {
    width: 22%;
    background-color: rgba(153, 153, 153, 0.2);     border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px; }
.TeamWork2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.TeamWork2 i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffd75f; }
.TMleft2 h1 {
    font-size: 18px;
    color: #ffffff;     margin-bottom: 5px;
    font-weight: bold;
}
.TMleft2 p {
    font-size: 14px;
    color: #b3b3b3; }
@media (max-width: 768px) {
    .TeamWork2 {
        width: 48%;     }
}
@media (max-width: 480px) {
    .TeamWork2 {
        width: 100%;     }
}
.containerinfo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 20px;
        color: #fff;
    flex-wrap: wrap;     gap: 20px;   }
    .centerinfo {
    width: 100%;
    max-width: 1200px;
    text-align: center;   }
    .Boxinfo {
    background-color: #33333373;     padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  }
    .Boxinfo h1 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;     border-bottom: 2px solid #555;
    padding-bottom: 10px;
    color: #e5e5e5;
  }
  .Boxinfo h1 i {
    margin-right: 10px;
    color: #FF9D3C;   }
    .Boxinfo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;     gap: 10px;     justify-content: center;   }
    .Boxinfo ul li {
    display: flex;
    align-items: center;
    min-width: 32%;     background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    padding: 8px;
    margin-bottom: 4px;     box-sizing: border-box;   }
    .Boxinfo ul li em {
    font-weight: bold;
    color: #fff;
    margin-right: 8px;
  }
    .Boxinfo ul li a {
    color: #FF9D3C;
    font-weight: bold;
    text-decoration: none;   }
    .Boxinfo ul li a:hover {
    text-decoration: none;   }
    .Boxinfo ul li i {
    color: #f1f1f1;
    margin-right: 15px;
    font-size: 20px;
  }
    .Boxinfo ul li a:not(:last-child)::after {
    content: " - ";     margin-left: 8px;   }
    .clr {
    clear: both;
  }
    @media (max-width: 768px) {
    .Boxinfo ul {
      flex-direction: column;
      align-items: center;     }
    .Boxinfo ul li {
      width: 100%;        margin-right: 0;
      margin-bottom: 10px;     }
    .Boxinfo h1 {
      font-size: 20px;
    }
    .Boxinfo ul li em {
      margin-bottom: 5px;
    }
  }
.comments-wrapper {
    display: flex;
    flex-wrap: wrap;     justify-content: space-between;
    gap: 20px; }
.custom-comments_list {
    width: 48%;
    padding: 15px;
    background: #33333373;
    border-radius: 8px;
    color: white;
    overflow-y: auto;
    box-sizing: border-box;
    max-height: 666px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.custom-comments {
    width: 48%;
    padding: 20px;
    background: #33333373;
    border-radius: 8px;
    color: white;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}
.custom-commentsTitle {
    text-align: center;
    position: relative;
    color: white;
    height: 70px;
    margin-bottom: 15px;
    font-size: 24px;
}
.custom-commentsTitle span {
    position: relative;
    z-index: 10;
    display: block;
    height: 100%;
    margin: 0 auto;
    width: calc(100% + 40px);
    right: -20px;
    background: #101010;
    line-height: 47px;
    font-size: 23px;
    border: 6px solid #C12121;
    transform: skew(-13deg, -2deg);
}
.custom-commentsTitle span span {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 0px 11px;
    display: table;
    margin: 0 auto;
    line-height: 41px;
    font-size: 19px;
    border: 6px solid #C12121;
    transform: skew(13deg, 2deg);
    background: #101010;
}
.custom-commentsForm {
    width: 100%;
    padding: 20px;
}
.custom-commentsForm .form-group {
    margin-bottom: 10px;
}
.custom-commentsForm label {
    font-size: 16px;
    color: #C12121;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}
.custom-commentsForm .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: rgb(228, 228, 229);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.custom-commentsForm input[type="submit"] {
    background-color: #C12121;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.custom-comments_list .comment {
    background: rgba(255, 255, 255, 0.13);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: white;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
}
.custom-comments_list .comment img {
    margin-right: 15px;
    border-radius: 50%;
}
.custom-comments_list .comment .commentCont {
    flex: 1;
}
.custom-comments_list .comment .commentCont h2 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #41A7D6;
}
.custom-comments_list .comment .commentCont p {
    font-size: 14px;
    color: #eee;
}
.deleteBTN {
    color: red;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}
.deleteBTN:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .comments-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .custom-comments_list,
    .custom-comments {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .custom-commentsTitle {
        font-size: 22px;
    }
}
.SinglePageContent {
    background: #02001687;
    border-radius: 15px;
    padding: 25px;
    line-height: 30px;
}



.LoggedINUserBtn {
    text-align: center;
  line-height: initial;
  padding: 8px 0;
  display: block;
  color: #EDB603;
  text-align: center;
  border: 2px solid #ffffff2e;
  border-radius: 8px;
  overflow: hidden;
  font-size: 18px;
}

.LoggedINUserBtn:hover {
    background-color:rgba(69, 160, 73, 0.38);
}

ul.social-menu li a{
color: white;
  display: block;
  padding: 15px 0;
  text-decoration: none;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.24);
  padding: 10px 10px;
  border-radius: 26px;
  margin-top: 1px;
  height: 40px;
  width: 40px;
}
.social-menu-all {
    text-align: center;
    margin-bottom: 8px;

}

.social-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-menu li {
    display: inline-block;
    margin: 1px;
}

.social-menu a {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-menu a:hover {
    color: #4CAF50;
}

.social-menu i {
    font-size: 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}



.custom-profile-dropdown ul li a{
    line-height: initial;
  padding: 8px 0;
  display: block;
  color: #FDFAED;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 15px;
  overflow: hidden;
}
.custom-profile-dropdown ul li i{
  color:rgb(255, 223, 39);
}

.main-menu ul#main-menu > li > ul {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    right: 0;
    background: #ffffff08;
    width: 100%;
    color: #FFF;
}
@media (max-width: 850px) {
    .profile-dropdown {
        display: none;
    }
}
@media (max-width: 768px) {
    .custom-profile-dropdown {
        text-align: center;
    }
    .scrollTop {
  bottom: 70px;
}
}