@charset "UTF-8";

/* Base Animation Classes */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

/* Keyframes */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-30px); }
  60% { transform: translateY(-15px); }
}

@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

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

@keyframes rubberBand {
  0%, 100% { transform: scale(1); }
  30% { transform: scaleX(1.25) scaleY(0.75); }
  40% { transform: scaleX(0.75) scaleY(1.25); }
  60% { transform: scaleX(1.15) scaleY(0.85); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

@keyframes swing {
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes tada {
  0%, 100% { transform: scale(1) rotate(0); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
}

@keyframes wobble {
  0%, 100% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes bounceInDown {
  0% { opacity: 0; transform: translateY(-2000px); }
  60% { opacity: 1; transform: translateY(30px); }
  80% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes bounceInLeft {
  0% { opacity: 0; transform: translateX(-2000px); }
  60% { opacity: 1; transform: translateX(30px); }
  80% { transform: translateX(-10px); }
  100% { transform: translateX(0); }
}

@keyframes bounceInRight {
  0% { opacity: 0; transform: translateX(2000px); }
  60% { opacity: 1; transform: translateX(-30px); }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

@keyframes bounceInUp {
  0% { opacity: 0; transform: translateY(2000px); }
  60% { opacity: 1; transform: translateY(-30px); }
  80% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

@keyframes bounceOut {
  0% { transform: scale(1); }
  25% { transform: scale(.95); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(.3); }
}

@keyframes bounceOutDown {
  0% { transform: translateY(0); }
  20% { opacity: 1; transform: translateY(-20px); }
  100% { opacity: 0; transform: translateY(2000px); }
}

@keyframes bounceOutLeft {
  0% { transform: translateX(0); }
  20% { opacity: 1; transform: translateX(20px); }
  100% { opacity: 0; transform: translateX(-2000px); }
}

@keyframes bounceOutRight {
  0% { transform: translateX(0); }
  20% { opacity: 1; transform: translateX(-20px); }
  100% { opacity: 0; transform: translateX(2000px); }
}

@keyframes bounceOutUp {
  0% { transform: translateY(0); }
  20% { opacity: 1; transform: translateY(20px); }
  100% { opacity: 0; transform: translateY(-2000px); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDownBig {
  0% { opacity: 0; transform: translateY(-2000px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeftBig {
  0% { opacity: 0; transform: translateX(-2000px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRightBig {
  0% { opacity: 0; transform: translateX(2000px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUpBig {
  0% { opacity: 0; transform: translateY(2000px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

@keyframes fadeOutDownBig {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(2000px); }
}

@keyframes fadeOutLeft {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-20px); }
}

@keyframes fadeOutLeftBig {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-2000px); }
}

@keyframes fadeOutRight {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(20px); }
}

@keyframes fadeOutRightBig {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(2000px); }
}

@keyframes fadeOutUp {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes fadeOutUpBig {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-2000px); }
}

@keyframes flip {
  0% { transform: perspective(400px) translateZ(0) rotateY(0) scale(1); animation-timing-function: ease-out; }
  40% { transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); animation-timing-function: ease-out; }
  50% { transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); animation-timing-function: ease-in; }
  80% { transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95); animation-timing-function: ease-in; }
  100% { transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); animation-timing-function: ease-in; }
}

@keyframes flipInX {
  0% { transform: perspective(400px) rotateX(90deg); opacity: 0; }
  40% { transform: perspective(400px) rotateX(-10deg); }
  70% { transform: perspective(400px) rotateX(10deg); }
  100% { transform: perspective(400px) rotateX(0deg); opacity: 1; }
}

@keyframes flipInY {
  0% { transform: perspective(400px) rotateY(90deg); opacity: 0; }
  40% { transform: perspective(400px) rotateY(-10deg); }
  70% { transform: perspective(400px) rotateY(10deg); }
  100% { transform: perspective(400px) rotateY(0deg); opacity: 1; }
}

@keyframes flipOutX {
  0% { transform: perspective(400px) rotateX(0deg); opacity: 1; }
  100% { transform: perspective(400px) rotateX(90deg); opacity: 0; }
}

@keyframes flipOutY {
  0% { transform: perspective(400px) rotateY(0deg); opacity: 1; }
  100% { transform: perspective(400px) rotateY(90deg); opacity: 0; }
}

@keyframes lightSpeedIn {
  0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
  60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
  80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
  100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@keyframes lightSpeedOut {
  0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
  100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@keyframes rotateIn {
  0% { transform-origin: center center; transform: rotate(-200deg); opacity: 0; }
  100% { transform-origin: center center; transform: rotate(0); opacity: 1; }
}

@keyframes rotateInDownLeft {
  0% { transform-origin: left bottom; transform: rotate(-90deg); opacity: 0; }
  100% { transform-origin: left bottom; transform: rotate(0); opacity: 1; }
}

@keyframes rotateInDownRight {
  0% { transform-origin: right bottom; transform: rotate(90deg); opacity: 0; }
  100% { transform-origin: right bottom; transform: rotate(0); opacity: 1; }
}

@keyframes rotateInUpLeft {
  0% { transform-origin: left bottom; transform: rotate(90deg); opacity: 0; }
  100% { transform-origin: left bottom; transform: rotate(0); opacity: 1; }
}

@keyframes rotateInUpRight {
  0% { transform-origin: right bottom; transform: rotate(-90deg); opacity: 0; }
  100% { transform-origin: right bottom; transform: rotate(0); opacity: 1; }
}

@keyframes rotateOut {
  0% { transform-origin: center center; transform: rotate(0); opacity: 1; }
  100% { transform-origin: center center; transform: rotate(200deg); opacity: 0; }
}

@keyframes rotateOutDownLeft {
  0% { transform-origin: left bottom; transform: rotate(0); opacity: 1; }
  100% { transform-origin: left bottom; transform: rotate(90deg); opacity: 0; }
}

@keyframes rotateOutDownRight {
  0% { transform-origin: right bottom; transform: rotate(0); opacity: 1; }
  100% { transform-origin: right bottom; transform: rotate(-90deg); opacity: 0; }
}

@keyframes rotateOutUpLeft {
  0% { transform-origin: left bottom; transform: rotate(0); opacity: 1; }
  100% { transform-origin: left bottom; transform: rotate(-90deg); opacity: 0; }
}

@keyframes rotateOutUpRight {
  0% { transform-origin: right bottom; transform: rotate(0); opacity: 1; }
  100% { transform-origin: right bottom; transform: rotate(90deg); opacity: 0; }
}

@keyframes slideInDown {
  0% { opacity: 0; transform: translateY(-2000px); }
  100% { transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-2000px); }
  100% { transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(2000px); }
  100% { transform: translateX(0); }
}

@keyframes slideOutLeft {
  0% { transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-2000px); }
}

@keyframes slideOutRight {
  0% { transform: translateX(0); }
  100% { opacity: 0; transform: translateX(2000px); }
}

@keyframes slideOutUp {
  0% { transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-2000px); }
}

@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(2000px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideOutDown {
  0% { transform: translateY(0); }
  100% { opacity: 0; transform: translateY(2000px); }
}

@keyframes hinge {
  0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
  20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  80% { transform: rotate(60deg) translateY(0); transform-origin: top left; animation-timing-function: ease-in-out; opacity: 1; }
  100% { transform: translateY(700px); opacity: 0; }
}

@keyframes rollIn {
  0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
  100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
}

@keyframes rollOut {
  0% { opacity: 1; transform: translateX(0px) rotate(0deg); }
  100% { opacity: 0; transform: translateX(100%) rotate(120deg); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(.3); }
  50% { opacity: 1; }
}

@keyframes zoomInDown {
  0% { opacity: 0; transform: scale(.1) translateY(-2000px); animation-timing-function: ease-in-out; }
  60% { opacity: 1; transform: scale(.475) translateY(60px); animation-timing-function: ease-out; }
}

@keyframes zoomInLeft {
  0% { opacity: 0; transform: scale(.1) translateX(-2000px); animation-timing-function: ease-in-out; }
  60% { opacity: 1; transform: scale(.475) translateX(48px); animation-timing-function: ease-out; }
}

@keyframes zoomInRight {
  0% { opacity: 0; transform: scale(.1) translateX(2000px); animation-timing-function: ease-in-out; }
  60% { opacity: 1; transform: scale(.475) translateX(-48px); animation-timing-function: ease-out; }
}

@keyframes zoomInUp {
  0% { opacity: 0; transform: scale(.1) translateY(2000px); animation-timing-function: ease-in-out; }
  60% { opacity: 1; transform: scale(.475) translateY(-60px); animation-timing-function: ease-out; }
}

@keyframes zoomOut {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(.3); }
  100% { opacity: 0; }
}

@keyframes zoomOutDown {
  40% { opacity: 1; transform: scale(.475) translateY(-60px); animation-timing-function: linear; }
  100% { opacity: 0; transform: scale(.1) translateY(2000px); transform-origin: center bottom; }
}

@keyframes zoomOutLeft {
  40% { opacity: 1; transform: scale(.475) translateX(42px); animation-timing-function: linear; }
  100% { opacity: 0; transform: scale(.1) translateX(-2000px); transform-origin: left center; }
}

@keyframes zoomOutRight {
  40% { opacity: 1; transform: scale(.475) translateX(-42px); animation-timing-function: linear; }
  100% { opacity: 0; transform: scale(.1) translateX(2000px); transform-origin: right center; }
}

@keyframes zoomOutUp {
  40% { opacity: 1; transform: scale(.475) translateY(60px); animation-timing-function: linear; }
  100% { opacity: 0; transform: scale(.1) translateY(-2000px); transform-origin: center top; }
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lds-ripple {
  0% { top: 36px; left: 36px; width: 0; height: 0; opacity: 1; }
  100% { top: 0px; left: 0px; width: 72px; height: 72px; opacity: 0; }
}

@keyframes AsideLoading {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(250); opacity: .5; }
  100% { transform: scale(250); opacity: 0; }
}

@keyframes AsideBIgLoading {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1000); opacity: .5; }
  100% { transform: scale(1000); opacity: 0; }
}

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

@keyframes dash {
  0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 89, 200; stroke-dashoffset: -35px; }
  100% { stroke-dasharray: 89, 200; stroke-dashoffset: -124px; }
}

@keyframes color {
  100%, 0% { stroke: #d62d20; }
  40% { stroke: #0057e7; }
  66% { stroke: #008744; }
  80%, 90% { stroke: #ffa700; }
}

@keyframes lds-ellipsis1 {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes lds-ellipsis3 {
  0% { transform: scale(1); }
  100% { transform: scale(0); }
}

@keyframes lds-ellipsis2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(19px, 0); }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { transform: scaleY(0.4); }
  20% { transform: scaleY(1.0); }
}

@keyframes loader10g {
  0% { background-color: rgba(0, 0, 0, .2); }
  25% { background-color: #fdfdfd; }
  50% { background-color: rgba(0, 0, 0, .2); }
  75% { background-color: rgba(0, 0, 0, .2); }
  100% { background-color: rgba(0, 0, 0, .2); }
}

@keyframes loader10m {
  0% { background-color: rgba(0, 0, 0, .2); }
  25% { background-color: rgba(0, 0, 0, .2); }
  50% { background-color: #fff; }
  75% { background-color: rgba(0, 0, 0, .2); }
  100% { background-color: rgba(0, 0, 0, .2); }
}

@keyframes loader10d {
  0% { background-color: rgba(0, 0, 0, .2); }
  25% { background-color: rgba(0, 0, 0, .2); }
  50% { background-color: rgba(0, 0, 0, .2); }
  75% { background-color: #fff; }
  100% { background-color: rgba(0, 0, 0, .2); }
}

@keyframes Lastest {
  form { transform: scale(99) translate(-50%,-50%); opacity: 1; transition: .3s all ease; }
  to { transform: scale(99) translate(-50%,-50%); opacity: 0; transition: .3s all ease; }
}

@keyframes routate {
  0% { transform: rotate(15deg) scale(0.25); }
  50% { transform: rotate(-15deg) scale(0.25); }
  100% { transform: rotate(15deg) scale(0.25); }
}

@keyframes flash {
  0% { background: #ff990029; }
  50% { background: #ff990014; }
  100% { background: #ff990029; }
}

/* Animation Classes */
.bounce { animation-name: bounce; }
.flash { animation-name: flash; }
.pulse { animation-name: pulse; }
.rubberBand { animation-name: rubberBand; }
.shake { animation-name: shake; }
.swing { transform-origin: top center; animation-name: swing; }
.tada { animation-name: tada; }
.wobble { animation-name: wobble; }
.bounceIn { animation-name: bounceIn; }
.bounceInDown { animation-name: bounceInDown; }
.bounceInLeft { animation-name: bounceInLeft; }
.bounceInRight { animation-name: bounceInRight; }
.bounceInUp { animation-name: bounceInUp; }
.bounceOut { animation-name: bounceOut; }
.bounceOutDown { animation-name: bounceOutDown; }
.bounceOutLeft { animation-name: bounceOutLeft; }
.bounceOutRight { animation-name: bounceOutRight; }
.bounceOutUp { animation-name: bounceOutUp; }
.fadeIn { animation-name: fadeIn; }
.fadeInDown { animation-name: fadeInDown; }
.fadeInDownBig { animation-name: fadeInDownBig; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInLeftBig { animation-name: fadeInLeftBig; }
.fadeInRight { animation-name: fadeInRight; }
.fadeInRightBig { animation-name: fadeInRightBig; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInUpBig { animation-name: fadeInUpBig; }
.fadeOut { animation-name: fadeOut; }
.fadeOutDown { animation-name: fadeOutDown; }
.fadeOutDownBig { animation-name: fadeOutDownBig; }
.fadeOutLeft { animation-name: fadeOutLeft; }
.fadeOutLeftBig { animation-name: fadeOutLeftBig; }
.fadeOutRight { animation-name: fadeOutRight; }
.fadeOutRightBig { animation-name: fadeOutRightBig; }
.fadeOutUp { animation-name: fadeOutUp; }
.fadeOutUpBig { animation-name: fadeOutUpBig; }

.animated.flip { 
  backface-visibility: visible; 
  animation-name: flip; 
}

.flipInX { 
  backface-visibility: visible !important; 
  animation-name: flipInX; 
}

.flipInY { 
  backface-visibility: visible !important; 
  animation-name: flipInY; 
}

.flipOutX { 
  animation-name: flipOutX; 
  backface-visibility: visible !important; 
}

.flipOutY { 
  backface-visibility: visible !important; 
  animation-name: flipOutY; 
}

.lightSpeedIn { 
  animation-name: lightSpeedIn; 
  animation-timing-function: ease-out; 
}

.lightSpeedOut { 
  animation-name: lightSpeedOut; 
  animation-timing-function: ease-in; 
}

.rotateIn { animation-name: rotateIn; }
.rotateInDownLeft { animation-name: rotateInDownLeft; }
.rotateInDownRight { animation-name: rotateInDownRight; }
.rotateInUpLeft { animation-name: rotateInUpLeft; }
.rotateInUpRight { animation-name: rotateInUpRight; }
.rotateOut { animation-name: rotateOut; }
.rotateOutDownLeft { animation-name: rotateOutDownLeft; }
.rotateOutDownRight { animation-name: rotateOutDownRight; }
.rotateOutUpLeft { animation-name: rotateOutUpLeft; }
.rotateOutUpRight { animation-name: rotateOutUpRight; }
.slideInDown { animation-name: slideInDown; }
.slideInLeft { animation-name: slideInLeft; }
.slideInRight { animation-name: slideInRight; }
.slideOutLeft { animation-name: slideOutLeft; }
.slideOutRight { animation-name: slideOutRight; }
.slideOutUp { animation-name: slideOutUp; }
.slideInUp { animation-name: slideInUp; }
.slideOutDown { animation-name: slideOutDown; }
.hinge { animation-name: hinge; }
.rollIn { animation-name: rollIn; }
.rollOut { animation-name: rollOut; }
.zoomIn { animation-name: zoomIn; }
.zoomInDown { animation-name: zoomInDown; }
.zoomInLeft { animation-name: zoomInLeft; }
.zoomInRight { animation-name: zoomInRight; }
.zoomInUp { animation-name: zoomInUp; }
.zoomOut { animation-name: zoomOut; }
.zoomOutDown { animation-name: zoomOutDown; }
.zoomOutLeft { animation-name: zoomOutLeft; }
.zoomOutRight { animation-name: zoomOutRight; }
.zoomOutUp { animation-name: zoomOutUp; }

/* Base Styles */
body {
  font-family: 'FontBold', sans-serif;
  font-weight: 400;
  color: #fff;
  transition: .4s all ease;
  padding: 0;
  margin: 0;
  direction: rtl !important;
  background-size: 100% 100%;
  background: #181d25;
  font-size: 14px;
  overflow-x: hidden;
  padding-top: 70px;
}

* {
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  outline: 0;
}

input, textarea, button, select {
  border: 0;
  outline: 0;
  font-family: 'FontBold', sans-serif;
}

ul, ol, li {
  list-style: none;
  font-family: 'FontBold', sans-serif;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'FontBold', sans-serif;
  font-weight: 400;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #ce0000;
}

img {
  max-width: 100%;
}

:before, :after {
  clear: both;
  box-sizing: border-box;
}

.container {
  display: block;
  margin: 0 auto;
  width: 97%;
}

.dflex {
  display: flex;
}

/* Header */
header.PageHeader {
  height: auto;
  transition: .4s all ease;
  background: #1f252e;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  box-shadow: 0 0 30px #00000073;
}

.PageHeader .container {
  height: 100%;
  display: table;
}

.PageHeader .MenuBtn {
  float: right;
  width: 50px;
  padding: 13px 0;
  height: 50px;
  margin: 9px 0 0;
  cursor: pointer;
  margin-left: 10px;
}

.PageHeader .MenuBtn span {
  display: block;
  width: 35px;
  height: 3px;
  background: #FFF;
  margin-bottom: 7px;
}

.PageHeader .MenuBtn span:nth-child(2n+0) {
  width: 15px;
}

.PageHeader .MenuBtn span:nth-child(3n+0) {
  width: 26px;
}

header.PageHeader .HeaderLogo {
  float: right;
}

header.PageHeader .HeaderLogo > a {
  display: block;
  line-height: 60px;
  font-family: Righteous;
  text-transform: capitalize;
  padding-right: 65px;
}

header.PageHeader .HeaderLogo > a > span {
  float: left;
  font-size: 40px;
}

header.PageHeader .HeaderLogo > a > span:nth-child(1) {
  color: transparent;
  background-image: linear-gradient(90deg, #0c9 0, #09f);
  background-clip: text;
}

header.PageHeader .HeaderLogo > a p {
  font-family: Tajawal;
  display: block;
  line-height: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #DDD;
}

.PageHeader .MenuHeader {
  float: right;
  margin-right: 15px;
}

.PageHeader .MenuHeader > ul > li {
  float: right;
  font-weight: bold;
}

.PageHeader .MenuHeader > ul > li > a {
  display: block;
  font-size: 16px;
  transition: .3s all ease;
  line-height: 65px;
  padding: 0px 17px;
  border-radius: 5px;
}

.PageHeader .MenuHeader > ul > li > a i {
  vertical-align: top;
  font-size: 23px;
  line-height: 65px;
  padding-left: 10px;
}

.PageHeader .LeftHeader {
  float: left;
}

.PageHeader .LeftHeader .UserArea > a {
  float: right;
  background: #01b789;
  height: 42px;
  border-radius: 5px;
  padding: 0px 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 42px;
  color: #FFF;
}

.PageHeader .LeftHeader .UserArea {
  float: left;
  padding: 10px 0;
}

/* Footer */
footer.PageFooter {
  background: linear-gradient(180deg, #1f252e, #1f252e);
  padding: 12px 0;
  overflow: hidden;
}

ajaxpage#SiteInner {
  display: block;
  position: relative;
  z-index: 9;
}

footer.PageFooter .elshaikh {
  display: table;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  line-height: 37px;
  float: left;
}

footer.PageFooter .elshaikh a {
  box-shadow: 0 3px 2px #00000026;
  overflow: hidden;
  float: left;
  margin-right: 8px;
  cursor: pointer;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 80px;
  height: 5px;
  width: 100%;
  z-index: 1000000001;
  display: none;
  transition: .5s all;
  pointer-events: none;
}

.progress-bar > span {
  display: block;
  height: 100%;
  width: 0%;
  transition: .5s all;
  background: #00cc99;
}

.progress-bar.show {
  display: block;
}

/* Loading Animations */
.HomeSidesContext .LeftSideContext > aside .AsideLoading {
  height: 350px;
  position: relative;
  overflow: hidden;
  background: #242b35;
  margin-bottom: 15px;
  border-radius: 4px;
}

.HomeSidesContext .LeftSideContext > aside .AsideLoading:after,
.ErrorConnecting:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  background: #ffffff21;
  border-radius: 50%;
  animation: AsideLoading 1.8s ease infinite;
}

.RightSideLoader > div.topLoading:after,
.RightSideLoader > div.BottomLoading li:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  background: #ffffff21;
  border-radius: 50%;
  animation: AsideBIgLoading 1.8s ease-in-out infinite;
}

/* Layout */
.HomeSidesContext.NewsPage > .RightSideContext {
  width: calc(100% - 640px);
  position: relative;
  top: 0;
}

.HomeSidesContext.NewsPage > .LeftSideContext {
  width: 350px;
  margin-top: 0;
}

.HomeSidesContext .BlogSidebar {
  width: 230px;
  margin-top: 0;
  margin-left: 30px;
}

.HomeSidesContext .BlogSidebar > h1 {
  font-size: 54px;
  line-height: 45px;
}

.HomeSidesContext .BlogSidebar > h1 > .H1Double > em {
  font-size: 28px;
}

.HomeSidesContext .BlogSidebar > h1 > .H1Double {
  width: 87px;
}

.HomeSidesContext.NewsPage > .LeftSideContext li.SingerItem {
  width: 108px;
}

.HomeSidesContext.NewsPage {
  padding: 25px 25px 70px;
}

.HomeSidesContext .RightSideContext > span {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 430px);
  height: 100%;
  z-index: -10;
  background-size: cover;
  background-position: center;
  opacity: .1;
  display: none;
}

.HomeSidesContext .RightSideContext > span:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #170427, #1704277a);
}

.HomeSidesContext {
  min-height: 400px;
  padding: 20px 20px;
}

.HomeSidesContext .RightSideContext {
  width: calc(100% - 395px);
  float: right;
  min-height: 400px;
  position: sticky;
}

.HomeSidesContext .LeftSideContext {
  width: 380px;
  min-height: 400px;
  float: left;
  position: sticky;
}

.HomeSidesContext:after {
  content: '';
  display: block;
  clear: both;
}

.HomeSidesContext .LeftSideContext > aside {
  margin-bottom: 20px;
}

.RightSideLoader > div {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.RightSideLoader > div.topLoading {
  height: 240px;
  overflow: hidden;
  background: #242b35;
}

.RightSideLoader > div.BottomLoading {
  width: calc(100% + 15px);
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}

.RightSideLoader > div.BottomLoading li {
  display: flex;
  flex: 1;
  height: 290px;
  overflow: hidden;
  margin-left: 15px;
  background: #242b35;
  min-width: 180px;
  margin-bottom: 15px;
  border-radius: 5px;
}

/* Hover Effects */
.HoverAfter {
  overflow: hidden;
}

.HoverAfter:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: #ffffff45;
  border-radius: 50%;
  transform: scale(0);
  transition: 0s all ease;
}

.HoverAfter:hover:after {
  transform: scale(200);
  opacity: 0;
  transition: .8s all ease;
}

.HoverBefore {
  overflow: hidden;
}

.HoverBefore:before,
section.searching-section ul.search-filter li:after {
  content: '';
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 5px;
  left: 50%;
  height: 5px;
  border-radius: 50%;
  transform: scale(0) translate(-50%, -50%);
  transition: 0s all ease;
  transform-origin: left top;
  background: #ffffff45;
}

.HoverBefore:hover:before,
section.searching-section ul.search-filter li:hover:after {
  transform: scale(99) translate(-50%, -50%);
  opacity: 0;
  transition: .8s all ease;
}

/* Menu Dropdown */
.PageHeader .MenuHeader > ul > li > ul {
  background: #343c48;
  list-style: none;
  visibility: hidden;
  width: 210px;
  border-radius: 5px;
  box-shadow: 0 2px 7px #0000005e;
  position: absolute;
  min-width: 200px;
  opacity: 0;
  transition: .3s all ease;
  right: 50%;
  transform: translate(50%, 0);
  top: 65px;
}

.PageHeader .MenuHeader > ul > li > ul > li > a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  border-bottom: 1px solid #00000026;
  color: #ffffff;
  transition: .4s all ease;
}

.PageHeader .MenuHeader > ul > li > ul > li:last-child > a {
  border: 0;
}

.PageHeader .MenuHeader > ul > li > ul > li > a:hover {
  background: rgb(255 255 255 / 0.1);
  padding: 10px 30px;
}

.PageHeader .MenuHeader > ul > li > ul > li:nth-child(1) > a {
  border-radius: 5px 5px 0 0;
}

.PageHeader .MenuHeader > ul > li > ul > li:last-child > a {
  border-radius: 0 0 5px 5px;
}

.PageHeader .MenuHeader > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}

/* Search Box */
.PageHeader .LeftHeader .SearchBox {
  float: right;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid #ffffff1f;
  margin-left: 15px;
}

.PageHeader .LeftHeader .SearchBox form input[type="text"] {
  width: 300px;
  display: block;
  height: 45px;
  border-radius: 35px;
  padding: 10px 17px;
  font-weight: bold;
  font-size: 13px;
  background: #181d25;
}

.PageHeader .LeftHeader .SearchBox form button {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  text-align: center;
  height: 45px;
  font-size: 23px;
  background: #181d25;
  color: #555;
}

.PageHeader .LeftHeader .SearchBtn {
  float: right;
  margin: 13px 0 0;
  line-height: 45px;
  font-size: 33px;
  color: #DDD;
  cursor: pointer;
  margin-left: 15px;
}

/* Section Blocks */
.SectionBlock {
  display: block;
  margin: 20px 0;
}

.SectionBlock .Title {
  height: 54px;
  border-bottom: 1px solid #222831;
  margin-bottom: 15px;
}

.SectionBlock .Title h3 {
  float: right;
}

.SectionBlock .Title h3 i {
  float: right;
  font-size: 54px;
  line-height: 39px;
  padding-left: 15px;
}

.SectionBlock .Title span {
  float: right;
  line-height: 49px;
  font-size: 27px;
  font-weight: bold;
}

ul.BlocksList {
  min-height: 180px;
}

/* Block One */
.BlockOne {
  overflow: hidden;
  margin-bottom: 15px;
  margin-left: 9px;
  transition: .3s all ease;
  border: 1px solid #ffffff14;
  border-radius: 5px;
  box-shadow: 0 0 20px #0000005e;
  width: 310px;
}

.BlockOne .Poster {
  display: block;
  padding-bottom: 76%;
  background-position: center;
  background-size: cover;
}

.BlockOne .Info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(24, 29, 37, 0), rgba(24, 29, 37, .75) 40%, rgba(24, 29, 37, .8) 60%, #181d25);
  left: 0;
  padding: 150px 10px 10px;
  transition: .3s all ease;
  opacity: 0;
}

.BlockOne:hover {
  transform: scale(1.3);
  z-index: 99;
  box-shadow: 0 0 20px #000000b8;
}

.BlockOne .Info .title a {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.BlockOne .Info .Btns {
  display: flex;
  margin-top: 10px;
}

.BlockOne .Info .Btns > h4 {
  text-align: center;
  flex: 1;
  background: transparent;
  height: 33px;
  border-radius: 45px;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  box-shadow: 0 0 10px #00000052;
  transition: .4s all ease;
  transform: scale(0);
  opacity: 0;
  cursor: pointer;
}

.BlockOne .Info .Btns > h4 i {
  font-size: 25px;
  float: right;
  line-height: 34px;
  padding-left: 10px;
}

.BlockOne .Info .Btns > h4 a {
  display: table;
  margin: 0 auto;
  line-height: 34px;
  z-index: 9;
}

.BlockOne .Info .Btns > h4.WatchNow {
  background: linear-gradient(90deg, #c00 0, #d81a6e);
  transition-delay: .1s;
}

.BlockOne .Info .Btns > h4.TrailerBlock {
  background: #2c3440;
  border: 1px solid #ffffff1a;
  transition-delay: .2s;
  margin-right: 10px;
}

.BlockOne:hover .Info {
  opacity: 1;
}

.BlockOne .Info h3.title {
  display: block;
  transition: .3s .1s all cubic-bezier(0.25, 0.1, 0, 1.38);
  transform: translate(0px, -130px);
  opacity: 0;
  margin-bottom: 8px;
}

.BlockOne:hover .Info h3.title {
  transform: translate(0);
  opacity: 1;
}

.BlockOne:hover .Info .Btns > h4 {
  transform: scale(1);
  opacity: 1;
}

.BlockOne .Info p {
  font-size: 10px;
  font-weight: bold;
  color: #b3b3b3;
  height: 0;
  overflow: hidden;
  transition: .4s .15s all ease;
  border-top: .5px solid #ffffff1f;
  padding-top: 6px;
}

.BlockOne:hover .Info p {
  height: 41px;
}

.BlockOne .Poster h4.category,
.BlockOne .Poster h4.genre {
  position: absolute;
  top: 10px;
  transition: .4s all ease-in-out;
  opacity: 0;
  right: -290px;
  border-radius: 25px;
  box-shadow: 0 0 10px #0000004f;
  font-weight: bold;
  z-index: 9;
}

.BlockOne .Poster h4.category {
  background: #d41818;
}

.BlockOne .Poster h4.genre {
  top: 36px;
  transition: .4s .1s all ease-in-out;
  background: #2c3440;
}

.BlockOne .Poster h4.category a,
.BlockOne .Poster h4.genre a {
  display: block;
  font-size: 11px;
  padding: 2px 15px;
}

.BlockOne .Poster h4.genre a {
  color: #d4d4d4;
}

.BlockOne:hover .Poster h4.category,
.BlockOne:hover .Poster h4.genre {
  right: 10px;
  opacity: 1;
}

/* Owl Carousel */
.owl-item {
  float: right;
  height: auto;
}

.BlocksHolder {
  width: 310px;
  display: block;
  margin: 0 auto;
}

.owl-nav.disabled {
  display: none;
}

.owl-stage-outer {
  clear: both;
  display: table;
}

.owl-dots {
  margin: 0 auto;
  overflow: visible;
  display: table;
  transition: .3s all ease;
  top: 0;
}

.owl-dots button {
  display: inline-block;
  float: right;
  width: 15px;
  height: 15px;
  background: #2c3440;
  margin: 0 3px;
  border-radius: 50px;
  cursor: pointer;
}

.owl-dots button.active {
  background: #d41818;
}

.BlocksHolder:hover .owl-dots {
  top: 30px;
}

/* Navigation Arrows */
.NextSlide,
.PrevSlide {
  position: absolute;
  top: 0;
  z-index: 9;
  background: linear-gradient(180deg, rgba(24, 29, 37, 0), rgba(24, 29, 37, .75) 40%, rgba(24, 29, 37, .8) 60%, #181d25);
  bottom: 0;
}

.NextSlide {
  left: -1.7%;
  background: linear-gradient(90deg, #181d25, #181d2500);
  padding-right: 80px;
  font-size: 50px;
  padding-top: 5%;
  padding-left: 20px;
  z-index: 9;
  cursor: pointer;
}

.PrevSlide {
  right: -1.7%;
  background: linear-gradient(-90deg, #181d25, #181d2500);
  padding-left: 80px;
  font-size: 50px;
  padding-top: 5%;
  padding-right: 20px;
  z-index: 9;
  cursor: pointer;
}

.SectionBlock .Title a.goTo {
  float: left;
  font-size: 16px;
  font-weight: bold;
  line-height: 49px;
}

.SectionBlock .Title a.goTo i {
  float: left;
  font-size: 30px;
  line-height: 49px;
  margin-right: 10px;
  font-weight: bold;
}

.BlockOne .Ribbon {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 5;
  background: #ffbe28;
  padding: 5px 25px;
  color: #222;
  border-radius: 0 25px 25px 0;
  font-weight: bold;
  transition: .5s all ease;
  font-size: 12px;
  box-shadow: 0 0 20px #0000007a;
}

.BlockOne:hover .Ribbon {
  left: -100%;
  opacity: 0;
}

/* Footer Menu */
.footerMenu {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 58px;
  background: #2c3440;
  display: none;
  z-index: 10000;
  max-width: 100%;
  padding: 0 1.5%;
  transition: .4s all ease;
  transform: translate(0px, 110px);
  opacity: 0;
  visibility: hidden;
}

.footerMenu.show {
  opacity: 1;
  transform: translate(0);
  visibility: visible;
}

.footerMenu ul.CenterItems {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  display: table;
}

.footerMenu ul.CenterItems li {
  float: right;
  padding: 6px 10px;
  margin: 0 4px;
}

.footerMenu ul.CenterItems li a {
  display: block;
  z-index: 9;
}

.footerMenu ul.CenterItems li a i {
  display: block;
  font-size: 25px;
  line-height: 10px;
  text-align: center;
}

.footerMenu ul.CenterItems li a em {
  font-weight: bold;
  text-align: center;
  display: block;
  font-style: normal;
}

.footerMenu ul.CenterItems li.OpenSubMenu {
  background: #181d25;
  border-radius: 50%;
  top: -10px;
  height: 59px;
  box-shadow: 0 3px 10px 2px #00000040;
  border: 1px solid #00000036;
  transition: .35s all ease;
  width: 63px;
  cursor: pointer;
}

.footerMenu ul.CenterItems li.OpenSubMenu a {
  display: block;
}

.footerMenu ul.CenterItems li.OpenSubMenu a i {
  display: block;
  font-size: 38px;
  padding-top: 4px;
}

.footerMenu .SocialLinks {
  float: right;
  padding: 10px 0;
}

.footerMenu .SocialLinks a {
  float: right;
  width: 38px;
  height: 38px;
  transition: .3s all ease;
  margin-left: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  text-align: center;
  overflow: hidden;
  line-height: 38px;
  font-size: 17px;
  color: #000;
}

.footerMenu .SocialLinks a.facebook {
  color: #505cd6;
}

.footerMenu .SocialLinks a.twitter {
  color: #1da1f2;
}

.footerMenu .SocialLinks a.pinterest {
  color: red;
}

.footerMenu .SocialLinks a.telegram {
  color: #017cc7;
}

.footerMenu .SocialLinks a.facebook:hover {
  background: #505cd6;
}

.footerMenu .SocialLinks a.twitter:hover {
  background: #1da1f2;
}

.footerMenu .SocialLinks a.pinterest:hover {
  background: red;
}

.footerMenu .SocialLinks a.telegram:hover {
  background: #017cc7;
}

.footerMenu .SocialLinks a:hover {
  color: #FFF;
}

.footerMenu .LeftBtns {
  float: left;
  padding: 10px 0;
}

.footerMenu .LeftBtns > a.login,
.footerMenu .LeftBtns > a.register {
  background: #01b789;
  height: 38px;
  border-radius: 45px;
  padding: 8px 30px;
  font-size: 14px;
  font-weight: bold;
  float: right;
  margin-right: 10px;
}

.footerMenu .LeftBtns > a.login {
  background: #45aff2;
}

/* Block Buttons */
.blockBtns {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 99;
  opacity: 0;
  transition: .4s all ease;
}

.blockBtns > a {
  height: 29px;
  line-height: 29px;
  width: 29px;
  border-radius: 50%;
  background: #111c3a;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 6px;
  position: relative;
  font-size: 16px;
  box-shadow: 0 0 10px #00000054;
}

.blockBtns > a.AddFevorite {
  background: #d00b0b;
}

.blockBtns > a.watch-later {
  background: #ffbe28;
  color: #444;
}

.BlockOne:hover .blockBtns {
  top: 10px;
  opacity: 1;
}

.blockBtns > a:after {
  transition: .4s all ease;
  content: attr(data-title);
  position: absolute;
  line-height: 17px;
  background: #2c3440;
  color: #fff;
  border: .5px solid #ffffff1a;
  padding: 2px 18px;
  top: 50%;
  box-shadow: 0 0 10px #00000052;
  font-size: 11px;
  left: 106%;
  transform: translateY(-50%);
  display: block;
  opacity: 0;
  border-radius: 25px;
  white-space: nowrap;
  visibility: hidden;
  font-weight: bold;
}

.blockBtns > a:hover:after {
  opacity: 1;
  visibility: visible;
}

/* Menu Item Dropdown Arrow */
.PageHeader .MenuHeader > ul > li.menu-item-has-children > a:after {
  position: relative;
  top: 26px;
  font-family: "Font Awesome 5 Pro";
  speak: none;
  font-style: normal;
  font-weight: 700;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  float: left;
  font-size: 16px;
  left: 0;
  display: inline-block;
  transform: rotate(0deg);
  transition: .35s all ease;
  content: "\f053";
  margin-right: 10px;
}

.PageHeader .MenuHeader > ul > li.menu-item-has-children > a:hover:after {
  transform: rotate(-90deg);
}

/* Search Section */
section.searching-section {
  z-index: 9999;
  background: #1c232c;
  box-shadow: 0 1px 7px 5px #14193a47;
  transition: .4s all ease;
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 65px;
  right: 0;
  left: 0;
  bottom: 0px;
}

section.searching-section ul.search-filter {
  width: 170px;
  font-size: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1f252e;
  float: right;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 20px #00000047;
  z-index: 99;
}

section.searching-section ul.search-filter li {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #adadad;
  height: calc(100% / 4);
  overflow: hidden;
  transition: .3s all ease;
  width: 100%;
}

section.searching-section ul.search-filter li.active {
  background: #ffffff1c;
  color: #FFF;
  box-shadow: 0 2px 2px #0e133152;
}

section.searching-section ul.search-filter li span {
  display: table;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
}

section.searching-section ul.search-filter li span i {
  display: block;
  line-height: 50px;
  font-size: 3em;
  margin-left: 10px;
  text-align: center;
  margin: 0 auto;
}

section.searching-section ul.search-filter li span em {
  font-style: normal;
  font-size: 18px;
}

section.searching-section ul.search-filter li:last-child {
  border: 0;
}

.SearchingNow section.searching-section {
  opacity: 1;
  height: calc(100vh - 65px);
  visibility: visible;
}

body.SearchingNow {
  overflow: hidden;
}

.SearchingNow .footerMenu {
  transform: translate(0, 80px);
  opacity: 0;
}

.showbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.search-contentarea {
  float: left;
  width: calc(100% - 170px);
  height: 100%;
}

.search-contentarea .title-bar {
  font-size: 20px;
  position: sticky;
  top: 0;
  padding: 15px 16px;
  z-index: 10;
  background: rgb(255 255 255 / .05);
  height: 55px;
}

.search-contentarea .title-bar h3 {
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #b1b1b1;
}

.search-contentarea .title-bar h3 em {
  font-style: normal;
  color: #ffffff;
}

.search-contentarea .title-bar > a {
  display: block;
  float: left;
  font-size: 16px;
  color: #fff;
  height: 35px;
  margin-top: -4px;
  padding: 5px 22px;
  background-color: #1f252e;
  border-radius: 2px;
  font-weight: bold;
}

/* Loader */
.loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
}

.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

/* Sub Sticky Menu */
ul.SubStickyMenu {
  width: calc((80px * 4) + 40px);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%);
  display: table;
}

ul.SubStickyMenu li {
  width: 80px;
  height: 67px;
  opacity: 0;
  top: 0;
  transform: scale(0);
  padding: 11px 5px;
  border-radius: 11px;
  transform-origin: bottom center;
  border: none;
  box-shadow: 0 -1px 15px 2px rgba(0, 0, 0, .08);
  background: linear-gradient(0deg, #2c3440, #384352);
  float: right;
  margin: 0 5px;
  box-shadow: 0 0 20px #00000059;
}

ul.SubStickyMenu li:nth-child(1) {
  top: -15px;
  transition: .4s .2s all ease;
}

ul.SubStickyMenu li:nth-child(2) {
  top: -30px;
  transition: .4s .3s all ease;
}

ul.SubStickyMenu li:nth-child(3) {
  top: -30px;
  transition: .4s .4s all ease;
}

ul.SubStickyMenu li:nth-child(4) {
  top: -15px;
  transition: .4s .5s all ease;
}

ul.SubStickyMenu li a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
}

ul.SubStickyMenu li a i {
  display: block;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
}

ul.SubStickyMenu li a span {
  display: block;
  height: 100%;
}

ul.SubStickyMenu li a span em {
  font-size: 11px;
  font-weight: bold;
  font-style: normal;
  display: block;
  text-align: center;
}

.footerMenu.SubMenuActive ul.SubStickyMenu li {
  transform: scale(1);
  opacity: 1;
}

/* Index Slider */
.IndexSlider span.AfterBG {
  z-index: 9;
  content: '';
  position: absolute;
  bottom: 10%;
  right: 47%;
  background: linear-gradient(to top, #1f252e 9%, #1d232b00);
  padding-top: 10%;
  left: 0;
}

.FastSearch {
  position: absolute;
  bottom: 24%;
  right: 50px;
  width: calc(40% + 10px);
  z-index: 9999;
  height: 45px;
}

.d-flex {
  display: flex;
}

.FastSearch form input {
  width: calc(100% - 120px);
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 18px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #2c3440;
  line-height: 45px;
}

.widget-2 .form button {
  width: 115px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.btn-orange {
  color: #212529 !important;
  background-color: #fcbc28 !important;
  border-color: #f3951e !important;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1.5;
  border-radius: 6px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.FastSearch form button {
  width: 110px;
  margin-right: 10px;
  font-weight: bold;
  font-size: 16px;
}

.bigItem .RightArea .Content p {
  height: 105px;
}

/* Single Master */
section.singkeMastrer {
  min-height: 500px;
  padding: 20px 0;
}

.Fast-Information .BG {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -10;
  right: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .1;
  filter: blur(1px);
  transform: scale(0);
  transition: .4s .2s all ease;
  border-radius: 450px;
  overflow: hidden;
}

.SearchINPop {
  display: block;
  width: 100%;
}

.SearchINPop form input {
  width: 100%;
  border-radius: 0;
  border: none;
  color: #333;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #ffffff;
  line-height: 50px;
  font-weight: bold;
}

.SearchingNow header.PageHeader {
  box-shadow: 0 0 30px #00000073;
}

.ChangerSearchArea {
  display: block;
  width: 100%;
  height: calc(100vh - 105px);
  padding: 20px;
  overflow: auto;
}

.jc-bs3-container.container {
  max-width: 450px !important;
}

.btn-green {
  background: #01b789 !important;
  color: #FFF !important;
}

/* Loading Ellipsis */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  transform: scale(1.3);
}

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffffff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 .6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 .6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 .6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 .6s infinite;
}

.BlocksList .loader.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.BlocksList .loader.center::before {
  display: none;
}

/* My Lists Dropdown */
ul.myListsUL {
  background: #fff;
  list-style: none;
  visibility: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 7px #0000005e;
  position: absolute;
  opacity: 0;
  overflow: hidden;
  transition: .3s all ease;
  right: 0;
  bottom: 100%;
  left: 0;
}

.bigItem .RightArea .Content .Btns > h4.active {
  overflow: visible;
}

.bigItem .RightArea .Content .Btns > h4.active:after {
  display: none;
}

ul.myListsUL li {
  display: table;
  padding: 0px 20px;
  font-size: 15px;
  border-bottom: 1px solid #00000026;
  color: #343d4c;
  transition: .4s all ease;
  height: 10px;
  width: 100%;
}

ul.myListsUL li i {
  float: right;
  font-size: 26px;
}

ul.myListsUL li span {
  float: right;
  padding: 8px 10px 0;
}

ul.myListsUL.show {
  opacity: 1;
  visibility: visible;
}

.HoverGreen {
  transition: .4s all ease;
}

.HoverGreen:hover {
  background: #01b789;
  color: #FFF;
}

ul.myListsUL li:last-child {
  border: 0;
}

/* Inner Page */
body.InnerPage header.PageHeader {
  background: transparent;
}

img.elshaikh-img {
  width: 80px;
  padding: 0;
  display: block;
  margin: 0;
}

/* Menu Popup */
.MenuPopup {
  z-index: 99999999;
  background-color: rgb(31 37 46 / 68%);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
}

.MenuPopup .MenuPopupContent {
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #28303e;
  overflow: auto;
  box-shadow: 0 0 30px 0px #00000061;
}

.MenuPopup .MenuPopupContent > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px 60px;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem {
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin: 0 11px;
  min-width: 120px;
  text-align: center;
  overflow: hidden;
  background: #323c4c;
  border-radius: 10px;
  transition: .4s all cubic-bezier(0.37, 0.06, 0, 1.26);
  transform: translate(0px, 180px);
  opacity: 0;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem > a {
  display: block;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem > a .icon {
  font-size: 48px;
  text-align: center;
  height: 53px;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem > a span {
  font-size: 20px;
  font-weight: bold;
  display: block;
  text-align: center;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem > a > * {
  z-index: 99;
}

.MenuPopupContent a.CloseIt {
  position: absolute;
  float: left;
  top: 0;
  width: 38px;
  cursor: pointer;
  height: 28px;
  background: #323c4c;
  text-align: center;
  line-height: 28px;
  left: 0;
  z-index: 99;
  color: #FFF;
}

.activeMenu .MenuPopup {
  opacity: 1;
  visibility: visible;
}

.activeMenu .MenuPopup .MenuPopupContent > ul li.MenuPopupItem {
  transform: translate(0);
  opacity: 1;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(1) {
  transition-delay: .2s;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(2) {
  transition-delay: .3s;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(3) {
  transition-delay: .4s;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(4) {
  transition-delay: .5s;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(5) {
  transition-delay: .6s;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(6) {
  transition-delay: .7s;
}

.MenuPopup .MenuPopupContent > ul li.MenuPopupItem:nth-child(7) {
  transition-delay: .8s;
}

.PageHeader .MenuHeader > ul > li:hover:after {
  transform: scale(1);
}

/* Header Logo */
header.PageHeader .HeaderLogo > a img.imgLogo {
  float: right;
  width: 53px;
  margin: 6px 0 0 12px;
  transition: .4s all ease;
  position: absolute;
  right: 0;
}

header.PageHeader .HeaderLogo > a img.imgLogo.dark {
  right: 0;
  opacity: 0;
}

header.PageHeader .HeaderLogo > a > h4 {
  float: right;
  line-height: 65px;
  font-weight: bold;
  font-size: 30px;
  font-family: 'FontBlack';
}

header.PageHeader .HeaderLogo > a > h4 > em {
  font-style: normal;
  color: #ff5c5c;
}

/* Hero Section */
section.HeroSecion {
  display: block;
  width: 100%;
  background: #1f252e;
  clear: both;
}

section.HeroSecion .RightHero {
  float: right;
  width: 40%;
  text-align: center;
  z-index: 9;
  background: #1f252ef2;
}

section.HeroSecion .RightHero .LogoHero {
  margin: 45px 0;
}

section.HeroSecion .RightHero .LogoHero img.imgHero {
  width: 160px;
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText {
  display: table;
  overflow: hidden;
  transition: .4s .2s all cubic-bezier(0.25, 0.1, 0, 1.15);
  transform: translate(0px, 110px);
  opacity: 0;
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText .RArea,
section.HeroSecion .RightHero .LogoHero .LogoHeroText .LArea {
  float: right;
  width: 100px;
  text-align: center;
  padding-bottom: 10px;
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText i {
  float: right;
  font-size: 50px;
  transform: translate(0px, 15px);
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText .RArea span.ArSpan,
section.HeroSecion .RightHero .LogoHero .LogoHeroText .LArea span.ArSpan {
  font-size: 40px;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: .4s all ease;
  font-family: 'FontBlack';
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText .RArea span.EnSpan,
section.HeroSecion .RightHero .LogoHero .LogoHeroText .LArea span.EnSpan {
  font-family: Righteous;
  font-weight: 400;
  font-size: 40px;
  display: block;
  text-align: center;
  position: absolute;
  top: 10px;
  opacity: 0;
  transition: .4s all ease;
  transform: translate(0px, 100px);
  right: 0;
  left: 0;
}

section.HeroSecion .RightHero .LogoHero p.description {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #c3c3c3;
  padding-top: 3px;
  transition: .4s .45s all cubic-bezier(0.25, 0.1, 0, 1.15);
  transform: scale(0);
}

.LoadedBody section.HeroSecion .RightHero .LogoHero p.description {
  transform: scale(1);
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText:hover .RArea span.ArSpan {
  transform: translate(110px, 0px);
  opacity: 0;
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText:hover .LArea span.ArSpan {
  transform: translate(-110px, 0px);
  opacity: 0;
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText .RArea span.EnSpan {
  transform: translate(0px, -100px);
}

section.HeroSecion .RightHero .LogoHero .LogoHeroText:hover .RArea span.EnSpan,
section.HeroSecion .RightHero .LogoHero .LogoHeroText:hover .LArea span.EnSpan {
  transform: translate(0px, 0px);
  opacity: 1;
}

/* Search Form Hero */
form.SearchFormHero {
  display: inline-flex;
  width: 430px;
  z-index: 99;
  border-radius: 28px;
  box-shadow: 0 2px 18px #00000063;
  margin: 15px 0;
  transition: .4s .65s all cubic-bezier(0.25, 0.1, 0, 1.15);
  transform: translate(0px, 200px);
  opacity: 0;
}

section.HeroSecion .RightHero .LogoHero > a {
  display: table;
  margin: 0 auto;
}

form.SearchFormHero > i {
  width: 50px;
  text-align: center;
  height: 40px;
  background: #FFF;
  color: #929292cc;
  line-height: 40px;
  font-size: 21px;
  border-radius: 0 25px 25px 0;
}

form.SearchFormHero button {
  width: 110px;
  color: #FFF;
  background: #ce0000;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  border-radius: 25px 0 0 25px;
}

form.SearchFormHero input[type="text"] {
  width: 270px;
}

/* Social Media Hero */
.SocialMediaHero {
  display: table;
  margin: 0 auto;
  border-radius: 4px;
}

.SocialMediaHero > span {
  color: #c7c7c7;
  font-size: 13px;
  padding: 1px 12px 0 1px;
  float: right;
  line-height: 40px;
}

a.social-icon {
  font-size: 25px;
  display: inline-block;
  float: right;
  margin: 0 8px;
  border-radius: 25px;
  line-height: 40px;
  transition: .4s .45s all cubic-bezier(0.25, 0.1, 0, 1.15);
  transform: translate(0px, 80px) scale(2);
  opacity: 0;
}

a.social-icon.facebook {
  color: #618ee8;
  transition-delay: .65s;
}

a.social-icon.instagram {
  color: #d84c9b;
}

a.social-icon.telegram {
  color: #0088cc;
}

a.social-icon.twitter {
  color: #1da1f2;
}

a.social-icon:after {
  content: attr(data-text);
  background: #fff;
  font-size: 14px;
  position: absolute;
  top: 100%;
  width: 160px;
  text-align: center;
  font-weight: bold;
  left: 50%;
  transform: translate(-50%, 70px);
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  transition: .4s all ease;
  opacity: 0;
  visibility: hidden;
}

a.social-icon:hover:after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
}

a.social-icon:before {
  border-width: 10px 7px;
  border-style: solid;
  border-color: #fff #ff00 #0000 #f5deb300;
  transform: translateX(-50%) rotate(180deg);
  bottom: auto;
  top: 53px;
  content: '';
  position: absolute;
  opacity: 0;
  transition: 0.4s .1s all ease;
  visibility: hidden;
}

a.social-icon:hover:before {
  top: 23px;
  opacity: 1;
  visibility: visible;
}

/* Left Hero */
.LeftHero {
  float: left;
  width: 60%;
  margin: 20px 0 30px;
  padding-left: 15%;
  overflow: hidden;
  padding-bottom: 30px;
}

.LeftHero .MainSlides {
  margin: 0 auto;
  width: 610px;
  opacity: 0;
  visibility: hidden;
}

.LeftHero .MainSlides.show {
  opacity: 1;
  visibility: visible;
}

.SlideItem {
  height: 440px;
  display: block;
  transform-origin: center 30%;
  transition: .4s .3s all ease;
  pointer-events: none;
  opacity: .8;
  width: 280px;
}

.SlideItem > a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.SlideItem > a > .Poster {
  overflow: hidden;
  z-index: 1;
  width: 100%;
  float: left;
  border-radius: 3px;
  height: 100%;
}

.SlideItem > a > .Poster img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition: .4s all ease;
  z-index: 9;
}

a.SlidesPrev {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  top: 0px;
  background: linear-gradient(to right, #1f252e 8%, #20262f00);
  padding: 160px 120px 0px 20px;
  cursor: pointer;
  font-size: 60px;
  transition: .4s all ease;
}

a.SlidesNext {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  top: 0px;
  background: linear-gradient(to left, #1f252ef2 0%, #1f252e00);
  padding: 160px 20px 0px 120px;
  cursor: pointer;
  font-size: 60px;
  transition: .4s all ease;
}

.MainSlides .owl-dots {
  display: none;
}

.PageHeader .LeftHeader .UserArea > a.LoginNow {
  background: #5367ff;
  margin-left: 10px;
}

/* Hero Image Container */
section.HeroSecion .RightHero .LogoHero > a .ImageContainer {
  display: table;
  margin: 0 auto;
  width: 170px;
  height: 190px;
}

section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroOne {
  float: left;
  width: 135px;
  position: absolute;
  top: 0;
  left: 0;
  height: 173px;
  transition: .6s all cubic-bezier(0.69, -0.35, 0, 1.34);
  transform: translate(0px, -300px);
  opacity: 0;
}

.NightMode section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroOne {
  z-index: 55;
}

section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroOne.Drak {
  visibility: hidden;
}

.NightMode section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroOne.Drak {
  visibility: visible;
}

section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroTwo {
  position: absolute;
  right: -10px;
  top: 6px;
  width: 135px;
  transition: .6s all cubic-bezier(0.69, -0.35, 0, 1.34);
  transform: translate(0px, 300px);
  opacity: 0;
}

section.HeroSecion .RightHero .LogoHero > a .ImageContainer .PlayIcoN {
  position: absolute;
  top: 60px;
  font-size: 50px;
  right: 60px;
  color: #ce0000;
  transition: .5s .4s all cubic-bezier(0.4, 0, 0, 1.13);
  transform: scale(0);
  opacity: 0;
}

.LoadedBody section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroOne,
.LoadedBody section.HeroSecion .RightHero .LogoHero > a .ImageContainer img.imgHeroTwo {
  transform: translate(0);
  opacity: 1;
}

.LoadedBody section.HeroSecion .RightHero .LogoHero > a .ImageContainer .PlayIcoN {
  transform: scale(1);
  opacity: 1;
}

/* Slide Info Box */
.SlideItem > a .InfoBox {
  z-index: 5;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.SlideItem > a .InfoBox:after {
  content: "";
  background: linear-gradient(0deg, #1e252f 6%, #181d2500);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 230%;
  z-index: -1;
}

.SlideItem > a .InfoBox .Title {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: #FFF;
  font-weight: bold;
  transition: .5s .2s all ease;
  transform: translate(0px, -100px);
  opacity: 0;
  font-family: FontBlack;
  line-height: 25px;
}

.SlideItem > a .InfoBox .Descrip {
  font-size: 13px;
  color: #DDD;
  font-weight: 400;
  transition: .5s .2s all ease;
  transform: translate(0px, 100px);
  opacity: 0;
  margin-bottom: 8px;
}

.SlideItem > a .InfoBox .Info {
  width: 100%;
  vertical-align: middle;
  padding: 15px 20px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
  bottom: 0px;
}

.SlideItem > a .InfoBox .Info > ul {
  margin-bottom: 10px;
}

.SlideItem > a .InfoBox .BarWatchRating > ul > span {
  display: inline-block;
  border: 1px solid #ffffff3d;
  line-height: 18px;
  border-radius: 3px;
  padding: 1px 13px;
  margin-left: 5px;
  color: #ffdaf3;
  font-size: 13px;
  font-weight: bold;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.SlideItem > a .InfoBox .BarWatchRating > ul > span.categorySpan {
  background: #ce0000;
  border-color: #ce0000;
}

.BarWatchRating {
  display: inline-block;
  width: 100%;
  margin-top: 11px;
}

.RateArea {
  display: table;
  color: #f5c518;
  font-size: 20px;
  overflow: hidden;
  line-height: 20px;
  margin-top: 5px;
  transition: .5s .4s all ease;
  transform: translate(0, 100px);
  opacity: 0;
  margin: 0 auto 10px;
}

.RateArea .Front {
  position: absolute;
  top: 5px;
  right: 0;
  overflow: hidden;
}

.RateArea span {
  float: right;
  margin-left: 3px;
  line-height: 20px;
}

.RateArea .StarsRatingSingle {
  display: inline-block;
  float: right;
  padding-top: 5px;
  margin-left: 5px;
}

.RateArea .RateSpan {
  float: left;
  font-size: 20px;
  font-family: 'Righteous';
  font-weight: 400;
  line-height: 30px;
}

.RateArea .RateSpan em {
  font-style: normal;
  font-size: 30px;
  float: right;
  padding-left: 4px;
}

.BarWatchRating .WatchBtnSlide {
  position: relative;
  padding: 20px 40px;
  text-align: center;
  cursor: pointer;
  line-height: 14px;
  background: linear-gradient(-90deg, #29323e 0, #343e4e);
  border-radius: 6px;
  transition: .4s .4s all ease;
  transform: translate(-300px, 0px);
  opacity: 0;
  margin-top: 20px;
  text-align: center;
  border-radius: 80px;
}

.BarWatchRating .WatchBtnSlide i {
  float: right;
  font-size: 26px;
  line-height: 16px;
}

.BarWatchRating .WatchBtnSlide em {
  float: right;
  font-style: normal;
  font-size: 20px;
  padding-right: 10px;
  padding-top: 2px;
  font-weight: bold;
}

.BarWatchRating > ul {
  transition: .5s .4s all ease;
  transform: translate(120%, 0px);
  opacity: 0;
}

ul.NavigationMenu {
}

.RateArea .Front .InsideFrontRate {
  display: flex;
  overflow: hidden;
}

.owl-item.active .SlideItem > a .InfoBox .Title,
.owl-item.active .SlideItem > a .InfoBox .Descrip,
.owl-item.active .BarWatchRating > ul,
.owl-item.active .RateArea,
.owl-item.active .BarWatchRating .WatchBtnSlide {
  transform: translate(0);
  opacity: 1;
}

/* Page Header Hover Effects */
.PageHeader .MenuHeader > ul > li:after {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  height: 4px;
  opacity: 0;
  background: #ce0000;
  transition: .4s all ease;
  transform: scaleX(0);
  transform-origin: center;
}

.PageHeader .MenuHeader > ul > li:hover:after {
  transform: scale(1);
  opacity: 1;
}

/* Dark Mode Toggle */
.DarkMode {
  background: #343d4d;
  z-index: 9;
  border-radius: 5px;
  padding: 0 10px;
  cursor: pointer;
  float: left;
  margin: 10px 0;
  margin-right: 10px;
}

.DarkMode > svg {
  stroke: #fff !important;
  clear: both;
  overflow: hidden;
  width: 45px;
  height: 45px;
  margin: 0 -10px;
  padding: 10px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  display: block;
  fill: none;
  transition: .3s all ease;
}

.DarkMode > .svg-1 {
  position: absolute;
  opacity: 0;
}

.owl-item.active .SlideItem {
  z-index: 9;
  pointer-events: inherit;
  opacity: 1;
  box-shadow: 0 0 20px #00000085;
}

/* Section Master */
.SectionMaster {
  margin: 30px 0;
}

.SectionMaster .titleSection {
  display: table;
  width: calc(100% - 3%);
  margin: 0 auto 20px;
  transition: .3s all ease;
  padding: 10px 10px 10px;
  border-radius: 11px;
  background: #57769212;
}

.SectionMaster .titleSection .rightTitleSection {
  float: right;
}

.SectionMaster .titleSection .rightTitleSection > i {
  width: 44px;
  display: inline-block;
  height: 44px;
  z-index: 55;
  border-radius: 30%;
  overflow: hidden;
  background: #333c4b;
  float: right;
  margin-left: 10px;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
}

.SectionMaster .titleSection .rightTitleSection > span {
  float: left;
  line-height: 45px;
  font-size: 20px;
  font-family: FontBlack;
}

/* Movie Block */
.MovieBlock {
  display: block;
  width: 250px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .14), 0 10px 15px 0 rgba(0, 0, 0, .08), 0 5px 10px -1px rgba(0, 0, 0, .11);
  border-radius: 4px;
  overflow: hidden;
  min-height: 410px;
  background: #1e252f;
  transition: .4s all ease;
  transform-origin: center 30%;
}

.MovieBlock > a {
  display: block;
  transition: .4s all cubic-bezier(0.45, -0.12, 0, 1.14);
}

.MovieBlock > a > .Poster {
  display: block;
  width: 100%;
  height: 410px;
  overflow: hidden;
  z-index: 10;
}

.MovieBlock > a > .Poster > img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition: .4s all ease;
  z-index: 10;
}

.MovieBlock > a > .BlockName {
  position: absolute;
  right: 0;
  left: 0;
  padding: 10px;
  bottom: 0;
  z-index: 20;
  color: #FFF;
}

.MovieBlock .PlayButton {
  height: 45px;
  width: 45px;
  border-radius: 35px;
  text-align: center;
  line-height: 49px;
  font-size: 17px;
  float: right;
  position: absolute;
  bottom: 54px;
  right: 10px;
  transition: .4s all ease;
  z-index: 99;
  cursor: pointer;
}

.SliderInSection .owl-dots {
  display: none;
}

.MovieBlock > a > .Poster:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  background: linear-gradient(0deg, #1e252f 15%, #181d2500);
  pointer-events: none;
  transition: .4s all ease;
  z-index: 11;
  padding-top: 320px;
}

/* Slider Navigation */
.SliderInSection .SlideerPrev {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 40px;
  background: #ffffff;
  width: 46px;
  box-shadow: 0 2px 5px #0000005c;
  height: 80px;
  text-align: center;
  line-height: 94px;
  z-index: 99;
  opacity: 0;
  cursor: pointer;
  color: #333c4b;
  transform: translate(-100px, -50%);
  transition: .4s all ease;
}

.SliderInSection .SlideerNext {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 40px;
  transform: translate(0, -50%);
  background: #ffffff;
  width: 46px;
  box-shadow: 0 2px 5px #0000005c;
  height: 80px;
  text-align: center;
  line-height: 94px;
  z-index: 99;
  cursor: pointer;
  color: #333c4b;
  transform: translate(100px, -50%);
  transition: .4s all ease;
  opacity: 0;
}

.SliderInSection:hover .SlideerPrev,
.SliderInSection:hover .SlideerNext {
  transform: translate(0px, -50%);
  opacity: 1;
}

.MovieBlock > a > .BlockName h4 {
  float: left;
  width: calc(100% - 45px);
  padding-right: 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
  margin-top: -5px;
  height: 48px;
  overflow: hidden;
  color: #FFF;
}

.MovieBlock > a > .BlockName .StarsRating {
  clear: both;
  float: right;
  color: #f5c518;
}

.MovieBlock .Rate:not(span) {
  display: table;
  float: left;
}

.MovieBlock .Rate:not(span) i {
  color: #f5c518;
  float: left;
  font-size: 19px;
  padding-right: 6px;
}

.MovieBlock > a > .BlockName .StarsRating .Front {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  color: #f5c518;
}

.MovieBlock > a > .BlockName .StarsRating .Front .InsideFrontRate {
  display: flex;
}

.MovieBlock > a > .BlockName .StarsRating span {
  float: right;
  font-size: 16px;
}

.MovieBlock .Rate > span {
  float: right;
  width: auto;
  font-family: 'Righteous';
  font-weight: 400;
  line-height: 19px;
  font-size: 20px;
}

/* Footer */
footer {
  overflow: hidden;
  z-index: 999;
  font-weight: 600;
  margin-top: 20px;
}

.ElshaikhNet {
  line-height: 35px;
  padding: 7px 0;
  display: table;
  background: #333d4d6e;
  padding: 5px 25px;
  border-radius: 10px;
  margin: 10px auto 10px;
}

.ElshaikhNet > span {
  float: right;
  line-height: 46px;
  margin-left: 9px;
  font-weight: bold;
}

.ElshaikhNet h2 {
  color: #ff7171;
  font-style: normal;
  float: left;
  font-weight: 700;
  text-align: center;
}

.ElshaikhNet h2 a {
  font-size: 18px;
}

.ElshaikhNet h2 a em {
  font-style: normal;
  color: #ffbe28;
}

div#GoToTop {
  display: none;
}

/* Dropdown Button Effects */
.dropdown-button > span:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  background: linear-gradient(90deg, #ce0000 0, #920000);
  border-radius: 50%;
  transform: scale(0);
  transition: 0s all ease;
  transform-origin: 70%;
}

.dropdown-button.active > span:before {
  transform: scale(120);
  opacity: 1;
  transition: .7s all ease;
}

.ListDroped li i:before {
  opacity: 0;
  transition: .4s all ease;
}

.ListDroped li.active i:before {
  opacity: 1;
}

/* Ribbon */
.Ribbon {
  position: absolute;
  top: 23px;
  left: -61px;
  width: 200px;
  height: 30px;
  background: #f5c518;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  color: #272727;
  transform: rotate(-45deg);
  z-index: 11;
  font-weight: bold;
  transition: .4s all ease;
}

.MovieBlock .PlayButton > span {
  color: #242a36;
  font-size: 16px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 130px;
  background: #fff;
  top: -33px;
  right: 0;
  height: 24px;
  border-radius: 15px;
  line-height: 24px;
  box-shadow: 0 0 10px #0000006b;
  font-size: 13px;
  font-weight: bold;
  transform: scale(0);
  transition: .4s all ease;
}

.PlayButton > span:after {
  position: absolute;
  content: '';
  bottom: -20px;
  border-width: 10px 7px;
  border-style: solid;
  border-color: #fff #ff00 #0000 #f5deb300;
  right: 17px;
}

.MovieBlock:hover .PlayButton > span {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.MovieBlock > a > .BlockName .BottomBar {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}

.MovieBlock > a > .BlockName .BottomBar span.category {
  float: right;
  height: 22px;
  border: 1px solid #ffffff1f;
  line-height: 19px;
  font-weight: bold;
  width: 122px;
  text-align: center;
  font-size: 12px;
  border-radius: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 5px;
}

/* Spinner */
.spinner {
  margin: 185px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  transition: .4s all cubic-bezier(1, -1.07, 0, 1.57);
}

.spinner > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
  margin: 0 2px;
}

.spinner .rect2 {
  animation-delay: -1.1s;
}

.spinner .rect3 {
  animation-delay: -1.0s;
}

.spinner .rect4 {
  animation-delay: -0.9s;
}

.spinner .rect5 {
  animation-delay: -0.8s;
}

/* Go to Top Button */
.gtop {
  display: block;
  width: 135px;
  background: #31a24c;
  text-align: center;
  line-height: 32px;
  font-size: 15px;
  color: #fff;
  border-radius: 18px 18px 0 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999999;
  box-shadow: 0 0 20px #00000045;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s all ease;
}

.gtop i {
  vertical-align: top;
  font-size: 22px;
  padding-top: 10px;
  padding-left: 6px;
}

.MovieBlock > a > .BlockName .Story {
  font-size: 13px;
  color: #d0d0d0;
  transition: .4s all ease;
  height: 2px;
  overflow: hidden;
}

.MovieBlock:hover > a > .BlockName .Story {
  height: 42px;
  padding-top: 6px;
}

.MovieBlock:hover .PlayButton {
  bottom: 97px;
}

/* Movie Block Loading States */
.MovieBlock .LoadingArea {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
  transform: translate(0px, 100%);
  transition: .4s all ease;
  opacity: 0;
}

.MovieBlock.activeItem > a {
  transform: translate(0px, -100%);
  opacity: 0;
}

.MovieBlock.activeItem .PlayButton {
  transform: translate(100px, 0px);
  opacity: 0;
}

.MovieBlock.activeItem .LoadingArea {
  transform: translate(0);
  opacity: 1;
}

.MovieBlock.LoadedDone {
  transform: scale(1.05);
  z-index: 99;
}

.MovieBlock.LoadedDone .spinner {
  transform: translate(0px, -300px);
  opacity: 0;
}

/* Fast Information */
.Fast-Information .Bottom-Fast-Information {
  padding: 15px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.Fast-Information {
  display: block;
  width: 100%;
  height: 100%;
}

.Fast-Information .Top-Fast-Information {
  height: 290px;
  display: block;
  width: 100%;
}

.Fast-Information .Bottom-Fast-Information > a {
  display: block;
  width: 100%;
  border-radius: 55px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  transition: .45s all ease;
  transform: translate(0px, 300px);
  opacity: 0;
  color: #FFF;
}

.Fast-Information .Bottom-Fast-Information > a:nth-child(1) {
  margin-bottom: 10px;
  border: 1px solid #ffffff21;
  transition-delay: .2s;
}

.Fast-Information .Bottom-Fast-Information > a:last-child {
  background: linear-gradient(90deg, #0c9 0, #09f);
  transition-delay: .35s;
  transition: .45s .4s all cubic-bezier(0.63, -0.09, 0, 1.2);
}

.Fast-Information .Bottom-Fast-Information > a i {
  vertical-align: top;
  font-size: 20px;
  line-height: 40px;
  padding-left: 10px;
}

.MovieBlock.LoadedDone .Fast-Information .BG {
  transform: scale(1.3);
  border-radius: 0px;
}

.MovieBlock.LoadedDone .Fast-Information .Bottom-Fast-Information > a {
  transform: translate(0);
  opacity: 1;
}

.Fast-Information-Head {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #ffffff17;
  padding: 7px 11px;
  transition: .4s .4s all ease;
  transform: translate(0px, -100px);
  opacity: 0;
}

.Fast-Information-Head > span {
  float: right;
  font-size: 15px;
  color: #DDD;
  line-height: 25px;
  font-weight: 500;
}

.Fast-Information-Head > i {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: rgb(255 255 255/10%);
  text-align: center;
  color: #a8abaf;
  line-height: 29px;
  font-size: 18px;
  cursor: pointer;
  float: left;
}

.Fast-Information-Content .Story > h4 {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff14;
  padding-bottom: 7px;
  display: table;
  padding-left: 10px;
  margin-bottom: 8px;
}

.Fast-Information-Content .Story {
  max-height: 120px;
  overflow: auto;
  padding: 10px 10px 0;
  transition: .4s .5s all ease;
  transform: scale(0) translate(0px, 200px);
  opacity: 0;
  font-weight: bold;
  line-height: 22px;
  transform-origin: top;
  color: #DDD;
  font-size: 13px;
}

.Fast-Information-Content .Story::-webkit-scrollbar {
  width: 2px;
}

.Fast-Information-Content .Story::-webkit-scrollbar-track {
  background: #343e4e;
}

.Fast-Information-Content .Story::-webkit-scrollbar-thumb {
  background-color: #4b5a71;
}

.MovieBlock.LoadedDone .Fast-Information-Head {
  transform: translate(0);
  opacity: 1;
}

.MovieBlock.LoadedDone .Story {
  transform: scale(1) translate(0);
  opacity: 1;
}

/* Glide Slider */
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  padding: 0;
  display: flex;
}

.glide__slides .MovieBlock {
  margin: 0 10px;
}

.glide__arrows {
  position: initial;
}

/* Popup Filters */
.PopUPFilters {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999999;
  background: #181d25ad;
}

.PopUPFilters .PopUPFilters-Contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  box-shadow: 0 0 30px #0000006e;
  background: #262e3a;
}

.PopUPFilters .PopUPFilters-Contents ul.PopUPFilters-Tabs {
  display: flex;
}

.PopUPFilters .PopUPFilters-Contents ul.PopUPFilters-Tabs li {
  flex: 1;
  padding: 15px 3px;
  text-align: center;
  cursor: pointer;
}

.PopUPFilters .PopUPFilters-Contents ul.PopUPFilters-Tabs li i {
  vertical-align: top;
  font-size: 28px;
  padding-left: 10px;
}

.PopUPFilters .PopUPFilters-Contents ul.PopUPFilters-Tabs li em {
  vertical-align: top;
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
}

/* Image Optimizer */
img.imgOptimzer {
  opacity: 0;
  transition: .4s all ease;
}

img.imgOptimzer.Loaded {
  opacity: 1;
}

.Fast-Information-Content ul {
  padding: 0 10px;
}

.Fast-Information-Content ul li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #ffffff14;
  padding: 5px 0;
  transition: .4s all ease;
  transform: translate(0px, 150px);
  opacity: 0;
  font-size: 12px;
}

.Fast-Information-Content ul li span {
  float: right;
  padding: 2px 10px;
  border-radius: 45px;
  color: #DDD;
  font-weight: bold;
}

.Blocks-UL {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin: 0 -10px;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.Fast-Information-Content ul li em {
  font-style: normal;
  padding: 4px 10px;
  border-radius: 45px;
  background: #ffffff1f;
  float: right;
  font-size: 12px;
  font-weight: bold;
  color: #e8e8e8;
}

.MovieBlock.LoadedDone .Fast-Information-Content ul li {
  transform: translate(0);
  opacity: 1;
}

.Fast-Information-Content ul li:nth-child(1) {
  transition-delay: .3s;
}

.Fast-Information-Content ul li:nth-child(2) {
  transition-delay: .4s;
}

.Fast-Information-Content ul li:nth-child(3) {
  transition-delay: .5s;
}

.Fast-Information-Content ul li:nth-child(4) {
  transition-delay: .6s;
}

/* Popup Trailer */
.PopupTrailer {
  z-index: 99999999;
  background-color: rgb(31 37 46 / 68%);
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: .3s all ease;
  opacity: 0;
  visibility: hidden;
}

.PopupTrailer.Opened {
  opacity: 1;
  visibility: visible;
}

.trailerIFrame {
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #28303e;
  box-shadow: 0 0 30px 0px #00000061;
  width: 900px;
  height: 490px;
}

.trailerIFrame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailerIFrame .CloseTrailer {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -40px;
  height: 40px;
  background: #313a4a;
  border-radius: 15px 15px 0 0;
  padding: 0 25px;
  cursor: pointer;
  box-shadow: 0 0 30px 0px #00000061;
}

.trailerIFrame .CloseTrailer i {
  vertical-align: top;
  font-size: 20px;
  padding-left: 10px;
  line-height: 40px;
  color: #FFF;
}

.trailerIFrame .CloseTrailer em {
  line-height: 40px;
  font-style: normal;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
}

/* More From Section */
a.MoreFromSection {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: .4s all ease;
  width: 150px;
  height: 44px;
  text-align: center;
  border-radius: 25px;
  overflow: hidden;
  float: left;
  background: #343d4d;
}

/* Loader 10 */
.loader10 {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 12px;
  animation: loader10m 3s ease-in-out infinite;
  transition: .3s all ease;
  display: block;
  z-index: 99;
  top: 18px;
  left: -103px;
}

.loader10:before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  height: 10px;
  width: 10px;
  border-radius: 12px;
  animation: loader10g 2s ease-in-out infinite;
}

.loader10:after {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  animation: loader10d 3s ease-in-out infinite;
}

a.MoreFromSection span {
  display: inline-block;
  font-size: 16px;
  position: relative;
  float: right;
  transition: .35s all ease;
  padding-right: 25px;
  line-height: 44px;
}

.leftTitleSection {
  float: left;
  border-radius: 0 45px;
}

.Blocks-UL .MovieBlock {
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-width: 221px;
  flex: 1;
  margin: 0 10px 20px;
  max-width: 260px;
}

.SlideItem > a .InfoBox .Info .PLaySlide {
  display: table;
  margin: 0 auto;
  font-size: 40px;
  width: 90px;
  height: 90px;
  border: 2px solid #FFF;
  border-radius: 100px;
  text-align: center;
  padding-top: 14px;
  padding-left: 8px;
  margin-bottom: 14px;
  transition: .4s .4s all ease;
  transform: translate(0px, -200px);
  opacity: 0;
}

span.afterSlide {
  display: block;
  height: 100px;
  margin-bottom: -100px;
  background: linear-gradient(0deg, #1f252f00 6%, #1f252f);
}

.filteringMore {
  display: table;
  margin: 0 auto;
  z-index: 99;
}

.tax--filter {
  position: absolute;
  display: none;
}

.dropdown-button span.HoverAfter {
  display: block;
  background: linear-gradient(-90deg, #29323e 0, #343e4e);
  height: 46px;
  border-radius: 100px;
  padding: 0 25px;
}

.dropdown-button span.HoverAfter em {
  width: 0;
  float: right;
  overflow: hidden;
}

.dropdown-button span.HoverAfter > span {
  float: right;
  font-size: 15px;
  line-height: 45px;
}

.dropdown-button span.HoverAfter i {
  float: right;
  font-size: 20px;
  line-height: 45px;
  padding-left: 12px;
}

.dropdown-button:last-child {
  margin-left: 0;
}

.AboElSeed {
  display: table;
  margin: 0 auto;
}

.AboElSeed > * {
  display: inline-block;
  font-size: 16px;
}

.AboElSeed a {
  padding-right: 5px;
  color: #e8d33d;
}

/* Form Page */
.formPage {
  max-width: 430px;
  margin: 60px auto;
  background: #333d4d6e;
  padding: 25px;
  border-radius: 10px;
  overflow: hidden;
}

header.formHeader {
  display: block;
  width: 100%;
  padding-top: 20px;
}

header.formHeader > p {
  display: block;
  text-align: center;
  font-size: 17px;
}

header.formHeader > h3 {
  display: table;
  text-align: center;
  margin: 0 auto;
  font-size: 30px;
  font-family: FontBlack;
}

header.formHeader > h3 > em {
  font-family: Righteous;
  font-style: normal;
  color: #e8d33d;
}

header.formHeader > .img {
  display: table;
  margin: 0 auto;
  width: 110px;
  transition: .4s all ease;
}

header.formHeader > .img.dark {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 100px;
  opacity: 0;
}

.formPage::after {
  content: '';
  position: absolute;
  top: -120px;
  right: 0;
  left: 0;
  height: 300px;
  background: #2a3342;
  border-radius: 0 0 250px 250px;
  z-index: -1;
}

.formGroup {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.formGroup input,
.formGroup select {
  display: block;
  width: 100%;
  height: 42px;
  background: #2e3747;
  border-radius: 59px;
  color: #FFF;
  padding: 0 25px;
}

.formGroup label {
  display: block;
  text-align: right;
  margin-bottom: 8px;
}

.formRow {
  display: flex;
  margin: 0 -5px 20px;
}

.formRow .formGroup {
  flex: 1;
  margin: 0 5px;
}

.formClass {
  margin-top: 14px;
}

.formClass button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: #2e3747;
  display: block;
  width: 100%;
  border-radius: 60px;
  margin-top: 8px;
  cursor: pointer;
}

a.form-A {
  display: table;
  margin: 14px auto 0;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.alert.danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.ajaxfyAlerts .alert {
  border-radius: 45px;
}

.alert.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

a.newAcc {
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff !important;
  background-color: #5cad4b;
  border-radius: 10px;
  margin-top: 8px;
  cursor: pointer;
  display: table;
  width: 430px;
  margin: -40px auto 70px;
  z-index: 99;
}

a.newAcc i {
  vertical-align: top;
  font-size: 23px;
  padding-right: 6px;
  line-height: 20px;
  padding-top: 5px;
}

/* Hero Title */
.HeroTitle {
  display: table;
  margin: 40px auto 0px;
  padding: 12px 45px;
  background: #333d4d6e;
  border-radius: 50px;
  transition: .4s .6s all ease;
  transform: translate(0px, -200px);
  opacity: 0;
}

.LoadedBody .HeroTitle {
  transform: translate(0);
  opacity: 1;
}

.HeroTitle i {
  float: right;
  font-size: 30px;
  padding-left: 12px;
  line-height: 40px;
}

.HeroTitle span {
  float: right;
  font-family: 'FontBlack';
  font-size: 24px;
  line-height: 40px;
}

/* Tax Page Filter */
.TaxPageFilterItem {
  float: right;
  width: calc((100% - 10px) / 2);
  margin-left: 10px;
  margin-bottom: 10px;
  z-index: 9;
  transition: .4s all ease;
  transform: translate(400px, 0px);
  opacity: 1;
  visibility: hidden;
}

.TaxPageFilter > ul {
  display: table;
  width: 460px;
  margin: 0 auto;
}

.TaxPageFilterItem:nth-child(2n+0) {
  margin-left: 0;
  transform: translate(-400px, 0px);
}

.TaxPageFilterDrop {
  position: absolute;
  right: 0;
  width: 460px;
  top: 100%;
  height: 220px;
  opacity: 0;
  visibility: hidden;
  transition: .4s all ease;
  background: #343d4d;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 10px #0000005c;
}

.TaxPageFilterItem.Selected .TaxPageFilterDrop {
  opacity: 1;
  visibility: visible;
}

.TaxPageFilterItem > span {
  display: block;
  background: #333d4d6e;
  height: 45px;
  border-radius: 60px;
  cursor: pointer;
  padding: 0 25px;
  text-align: right;
  line-height: 45px;
}

.TaxPageFilterItem > span em {
  font-style: normal;
}

section.HeroSecion.TaxHero {
  overflow: visible;
}

section.HeroSecion.TaxHero form.SearchFormHero {
  width: 460px;
  transform: translate(0px, -200px);
  transition: 0.4s .4s ease;
}

.LoadedBody section.HeroSecion.TaxHero form.SearchFormHero {
  transform: translate(0);
}

section.HeroSecion.TaxHero form.SearchFormHero input[type="text"] {
  width: 300px;
}

.TaxPageFilter h2 {
  font-family: 'FontBlack';
  color: #e8d33d;
  margin-bottom: 10px;
  display: none;
}

.TaxPageFilterItem i.fa-angle-down {
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 27px;
}

.TaxPageFilterItem > span i {
  vertical-align: top;
  font-size: 20px;
  line-height: 45px;
  padding-left: 12px;
  float: right;
  text-align: right;
}

.RatingFilter {
  display: table;
  width: 460px;
  margin: 0px auto 30px;
  background: #333d4d6e;
  transform: translate(0px, 200px);
  border-radius: 65px;
  transition: .4s .5s all ease;
  opacity: 0;
}

.LoadedBody .RatingFilter {
  transform: translate(0);
  opacity: 1;
}

.RatingFilter > span {
  float: right;
  width: 60px;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  color: #f5c518;
  transition: .4s all ease;
}

.RatingFilter > ul {
  float: left;
  width: calc(100% - 60px);
  padding: 7px 0;
}

.RatingFilter > ul span {
  float: right;
  width: 35px;
  height: 35px;
  background: #343d4d;
  margin-left: 9px;
  border-radius: 45px;
  overflow: hidden;
  cursor: pointer;
}

.RatingFilter > ul span i {
  position: absolute;
  opacity: 0;
}

.RatingFilter > ul span em {
  font-size: 22px;
  text-align: center;
  display: block;
  font-family: 'Righteous';
  font-style: normal;
  line-height: 35px;
}

.RatingFilter > ul span:hover,
.RatingFilter > ul span.active {
  background: #f5c518;
  color: #222;
  transition: .4s all ease;
}

.TaxPageFilterItem.Selected {
  z-index: 99;
}

.TaxPageFilterItem:nth-child(2n+0) .TaxPageFilterDrop {
  right: auto;
  left: 0;
}

.TaxPageFilterDrop ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  overflow: auto;
  max-height: 220px;
}

.TaxPageFilterDrop ul li {
  font-size: 14px;
  line-height: 14px;
  padding: 10px 15px;
  color: #fff;
  flex: 1;
  white-space: nowrap;
  background: #424b5d;
  margin: 0 5px 5px;
  margin-bottom: 7px;
  transition: .3s all ease;
  border-radius: 6px;
  cursor: pointer;
}

section.HeroSecion.TaxHero .RightHero {
  padding: 30px 0;
  overflow: visible;
  z-index: 9999;
}

.TaxPageFilterDrop ul li i {
  vertical-align: top;
  font-size: 17px;
  line-height: 11px;
  padding-top: 3px;
  padding-left: 6px;
}

.TaxPageFilterDrop ul li.active,
.TaxPageFilterDrop ul li:hover {
  background: #4f5c73;
}

.TaxPagePosts {
  margin: 20px 0;
}

/* Pagination */
.pagination {
  flex: 1;
  min-width: 100%;
}

.pagination > ul {
  list-style: none;
  text-align: center;
  padding: 10px 0;
}

.pagination > ul > li {
  display: inline-block;
  margin: 0 5px;
  background: #333d4d6e;
  border-radius: 60px;
  overflow: hidden;
}

.pagination > ul > li > * {
  display: block;
  height: 50px;
  color: #bbbbbb;
  padding: 0 20px;
  transition: .2s all ease;
  font-size: 19px;
  line-height: 50px;
  font-family: Righteous;
  min-width: 50px;
  text-align: center;
}

.pagination > ul > li > span.current {
  background: #f70342;
  color: #fff;
}

section.HeroSecion.TaxHero form.SearchFormHero input[type="submit"] {
  background: #ffa93e;
  color: #222;
}

.LoadedBody .TaxPageFilterItem {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

/* Category Blocks */
.CatBlocks .Head {
  display: block;
  width: 100%;
  background: #333d4d6e;
  height: 60px;
  border-radius: 10px 10px 0 0;
  padding: 0 20px;
  overflow: hidden;
}

.CatBlocks .Head .titleC {
  float: right;
}

.CatBlocks .Head .titleC i {
  float: right;
  font-size: 30px;
  line-height: 60px;
  color: #ff5050;
}

.CatBlocks .Head .titleC span {
  float: right;
  line-height: 60px;
  font-size: 18px;
  font-family: 'FontBlack';
  margin-right: 10px;
}

.CatBlocks .Head .titleC span b {
  font-weight: 400;
  font-family: 'Righteous';
  font-size: 30px;
  line-height: 20px;
  top: 5px;
  margin: 0 3px;
  color: #f5c518;
}

.CatBlocks .Head .titleC span em {
  color: #f5c518;
  font-style: normal;
  vertical-align: middle;
  height: 40px;
  line-height: 39px;
  border: 1px solid;
  border-radius: 55px;
  padding: 0 25px;
  margin: 10px 10px;
}

.CatBlocks .SliderInSection {
  padding: 20px 20px;
  overflow: hidden;
  background: #1f252e;
  border-radius: 0 0 10px 10px;
}

.CatBlocks .SliderInSection .SlideerPrev {
  left: 0;
}

.CatBlocks .SliderInSection .SlideerNext {
  right: 0;
}

.TitleCenteral {
  margin: 30px 0;
}

.TitleCenteral h3 {
  display: table;
  margin: 0 auto;
  font-size: 25px;
  line-height: 30px;
}

.TitleCenteral h3 span {
  float: left;
  color: #f5c518;
  font-family: 'FontBlack';
  margin: 0 10px;
  font-size: 30px;
}

/* Links List */
ul.LinksList {
  display: table;
  margin: 0 auto;
}

ul.LinksList a {
  float: right;
  margin: 15px 5px 10px;
  text-align: center;
  position: relative;
  font-size: 15px;
  padding: 0 0 0 25px;
  color: #bababa;
  transition: .4s all ease;
  height: 50px;
  background: #1f252e;
  border-radius: 45px;
  line-height: 50px;
  overflow: hidden;
}

ul.LinksList a i {
  float: right;
  font-size: 27px;
  line-height: 50px;
  margin-left: 10px;
  width: 60px;
  text-align: center;
  background: rgb(255 255 255 / 0.05);
  border-radius: 15px 0 0 26px;
  transition: .2s all ease;
}

ul.LinksList a.active i,
ul.LinksList a:hover i {
  background: rgb(0 0 0 / 0.1);
}

ul.LinksList a span {
  vertical-align: middle;
  color: #f5c518;
  font-size: 18px;
  margin-right: 8px;
  transition: .4s all ease;
}

ul.LinksList a:hover,
ul.LinksList a.active {
  background: #f5c518;
  color: #444;
}

ul.LinksList a:hover span,
ul.LinksList a.active span {
  color: #222;
}

ul.LinksList a strong {
  vertical-align: top;
  font-size: 30px;
  padding-right: 5px;
  display: inline-block;
}

.CatBlocks {
  margin: 30px 0;
}

/* Live Search */
.LiveSearch {
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  background: #343d4d;
  border-radius: 15px;
  box-shadow: 0 12px 28px 0 #0003, 0 2px 4px 0 #0000001a, inset 0 0 0 1px #a7b0ea12;
  height: 80px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.SearchActive .LiveSearch {
  height: 250px;
  opacity: 1;
  visibility: visible;
}

form.SearchFormHero.homeSearcher {
  transition-delay: 0s;
  transform: translate(0px, -120px) !important;
}

.LoadedBody section.HeroSecion .RightHero .LogoHero .LogoHeroText,
.LoadedBody form.SearchFormHero,
.LoadedBody a.social-icon {
  opacity: 1;
  transform: translate(0);
}

ul.SearchHistoryUL {
  padding: 0 11px;
}

.LiveSearchInner {
  height: 100%;
  overflow: auto;
}

.LiveSearchInner > h3 {
  text-align: right;
  padding: 6px 14px;
  font-size: 14px;
  border-bottom: 1px solid #ffffff08;
  margin-bottom: 10px;
}

.SearchHistoryUL li {
  display: inline-block;
  width: 100%;
  text-align: right;
  padding: 8px 15px;
  border: 1px solid #ffffff1c;
  border-radius: 45px;
  transition: .4s all ease;
}

.SearchHistoryUL li i {
  float: right;
  width: 25px;
  height: 25px;
  margin-left: 9px;
  border-radius: 45px;
  overflow: hidden;
  text-align: center;
  line-height: 25px;
  font-size: 17px;
}

.SearchHistoryUL li span {
  float: right;
  font-size: 15px;
  line-height: 25px;
}

.SearchHistoryUL li a {
  display: table;
  width: 100%;
}

.SearchHistoryUL li a img {
  float: right;
  width: 30px;
  height: 30px;
  border-radius: 60px;
  overflow: hidden;
  margin-left: 10px;
}

.SearchHistoryUL li:hover {
  background: #3d4756;
}

div#SearchInnerList li a {
  display: block;
  width: 100%;
  padding: 5px 20px;
  text-align: right;
}

.LiveSearch *::-webkit-scrollbar,
.descriptionLine::-webkit-scrollbar {
  width: 2px;
}

.LiveSearch *::-webkit-scrollbar-track,
.descriptionLine::-webkit-scrollbar-track {
  background: #343d4d;
}

.LiveSearch *::-webkit-scrollbar-thumb,
.descriptionLine::-webkit-scrollbar-thumb {
  background-color: #f5c518;
}

#SearchInnerList li {
  transition: .3s all ease;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #dddddd0f;
  margin-bottom: 10px;
}

div#SearchInnerList {
  padding: 10px 10px 5px;
}

#SearchInnerList li:hover {
  background: #414b5d;
}

/* Logged In User */
.LoggedINUser {
  float: left;
}

.LoggedINUser .LoggedINUserBtn {
  display: block;
  padding: 8px;
  border-radius: 4px;
  background: #343d4d;
  height: 45px;
  cursor: pointer;
}

.LoggedINUser .LoggedINUserBtn > i {
  float: right;
  border-radius: 10px;
  width: 40px;
  background: #ffffff17;
  height: 29px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
}

.LoggedINUser .LoggedINUserBtn span {
  float: right;
  font-size: 16px;
  line-height: 32px;
  padding: 0 10px;
  text-transform: capitalize;
  font-family: 'FontBlack';
}

.LoggedINUser .LoggedINUserBtn em {
  display: none;
}

ul.userListHead {
  list-style: none;
  position: absolute;
  top: 45px;
  width: 220px;
  left: -30px;
  background: #fff;
  border-radius: 5px;
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  transition: .3s all ease;
  visibility: hidden;
}

.userListHead > li > a {
  display: block;
  color: #0f142d;
  padding: 13px 12px;
  line-height: 100%;
  font-size: 14px;
  border-bottom: 1px solid #efefef;
  font-weight: bold;
}

.userListHead a i {
  color: #5775fb;
  float: right;
  font-size: 18px;
  margin-left: 13px;
  margin-top: -1px;
}

/* Notification List */
.NotificationListBTN {
  float: left;
  background: #343d4d;
  z-index: 9;
  border-radius: 5px;
  padding: 0 10px;
  cursor: pointer;
  float: left;
  margin-right: 10px;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
}

.NotificationList {
  float: left;
}

ul.userListHead.ISActive {
  opacity: 1;
  visibility: visible;
}

.NotificationListBTN span {
  width: 25px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  bottom: 0;
  left: 2px;
  overflow: hidden;
  background: #ce0000;
  border-radius: 55px;
  font-family: 'Righteous';
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  transform: scale(.7);
}

.NotifcationsLists {
  position: absolute;
  top: 52px;
  text-align: right;
  width: 360px;
  overflow: hidden;
  left: 0;
  min-width: 280px;
  box-shadow: 0 12px 28px 0 #0003, 0 2px 4px 0 #0000001a, inset 0 0 0 1px #a7b0ea12;
  border-radius: 8px;
  transition: .3s all ease;
  margin-top: 3px;
  background: #343d4d;
  opacity: 0;
  visibility: hidden;
}

.NotifcationsLists > h3 {
  display: block;
  text-align: center;
  padding: 70px 0;
  font-size: 21px;
}

/* Term Buttons */
.TermBTNs {
  width: 460px;
  margin: -20px auto 0;
  display: flex;
  transform: translate(0px, 200px);
  opacity: 0;
  transition: .4s .75s all ease;
}

.LoadedBody .TermBTNs {
  transform: translate(0);
  opacity: 1;
}

.TermBTNs > div {
  flex: 1;
  height: 40px;
  border-radius: 45px;
  padding: 0 18px;
  transition: .3s all ease;
  cursor: pointer;
}

.TermBTNs > div.FollowTerm {
  background: #ffa93e;
  color: #222;
  margin-left: 10px;
}

.TermBTNs > div i {
  float: right;
  font-size: 23px;
  line-height: 40px;
}

.TermBTNs > div span {
  float: right;
  line-height: 40px;
  margin-right: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 40px);
  overflow: hidden;
}

.TermBTNs > div.AddToMyHome {
  background: #343d4d;
}

.TermBTNs > div.FollowTerm.inList {
  background: red;
  color: #fff;
}

.NotifcationsLists.Show {
  opacity: 1;
  visibility: visible;
}

.TaxPageFilterDrop ul::-webkit-scrollbar,
.TaxFilter > ul::-webkit-scrollbar {
  width: 3px;
}

.TaxPageFilterDrop ul::-webkit-scrollbar-track,
.TaxFilter > ul::-webkit-scrollbar-track {
  background: #1f252e;
}

.TaxPageFilterDrop ul::-webkit-scrollbar-thumb {
  background-color: #ce0000;
}

/* Show Result */
.ShowResult {
  height: 40px;
  border-radius: 45px;
  padding: 0 18px;
  transition: .3s all ease;
  cursor: pointer;
  background: #ffa93e;
  color: #222;
  display: table;
  width: 300px;
  margin: 10px auto -40px;
  line-height: 39px;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
}

.ShowResult i {
  vertical-align: top;
  font-size: 25px;
  line-height: 40px;
  padding-right: 7px;
}

.filterSelected .ShowResult.Show {
  opacity: 1;
  visibility: visible;
}

.filteringSli {
  display: table;
  font-size: 16px;
  border: 1px solid #f5c518;
  color: #f5c518;
  padding: 4px 20px;
  border-radius: 85px;
  float: left;
  margin-right: 12px;
  margin-top: -5px;
}

.filteringSli b {
  color: #f5c518;
  float: right;
  padding-left: 10px;
}

.filteringSli em {
  float: right;
  font-style: normal;
}

.filteringSli em + em::before {
  margin: 0 6px;
  content: "\f053";
  font-family: 'Font Awesome 5 Pro';
}

/* Single Page */
.rightSingle {
  float: right;
  width: 700px;
}

.singleMaster {
  padding: 20px 0;
}

.rightSingle .Poster {
  display: block;
  width: 320px;
  height: 440px;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #1f252e;
  box-shadow: 0 0 20px #00000078;
  float: right;
  z-index: 9;
}

.rightSingle .Poster img {
  display: block;
  width: 100%;
  height: 100%;
}

.PosterShape {
  position: absolute;
  top: 0;
  right: 0;
  width: 570px;
  z-index: -1;
  height: 100%;
  background-size: cover;
  background-position: right center;
  box-shadow: 0 0 100px 100px rgba(23, 23, 26, .6);
  overflow: hidden;
  filter: blur(20px);
}

.PosterShape:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #181d25 10%, #181b2200 80%);
}

.PosterShape:after {
  content: "";
  position: absolute;
  top: 60%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #181b2100 0%, #181d25 100%);
}

.InfoPartOne {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #333d4d6e;
  height: 250px;
  max-height: none;
  box-shadow: 0 0 10px #00000061;
  border-radius: 4px;
  padding: 15px;
  padding-right: 356px;
}

.InfoPartOne .Title {
  display: block;
  font-size: 18px;
  padding-bottom: 5px;
}

.rightSingle .ReactionsHolder {
  left: 0;
  z-index: 99;
  padding-left: 20px;
  border-radius: 8px;
  height: 430px;
  padding-top: 20px;
  padding-right: 15px;
  background: #ffffff08;
  box-shadow: 0 0 6px #00000026;
  float: right;
  width: 85px;
  margin-left: 15px;
}

.rightSingle .hold {
  min-height: 455px;
  display: block;
  width: 100%;
  padding: 0px 15px 15px;
}

/* Breadcrumbs */
.BreadCrumbs {
  display: block;
  width: 100%;
  background: #333d4d6e;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #0000004f;
  padding: 6px 15px;
  border-radius: 5px;
  overflow: hidden;
}

.BreadCrumbs ol {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.BreadCrumbs ol li {
  display: inline-flex;
  vertical-align: middle;
  font-size: 15px;
}

.BreadCrumbs ol li a {
  color: #FFF;
}

.BreadCrumbs ol li + li:before {
  content: '\f053';
  font-weight: 400;
  font-family: 'FONT AWESOME 5 PRO';
  margin: 0 9px;
  color: #FFF;
}

.InfoPartOne p.descrip {
  display: block;
  text-align: right;
  color: #DDD;
  margin: 6px 0 0;
  max-height: 100px;
  overflow: auto;
  overflow-x: hidden;
}

/* Circular Progress (c100) */
.c100 {
  position: relative;
  font-size: 160px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #dfe8ed;
  transform: scale(.8);
  transform-origin: top right;
  margin-bottom: -25px;
  display: block;
  transition: .4s all ease;
}

.c100 *,
.c100 *:before,
.c100 *:after {
  box-sizing: content-box;
}

.c100 > span {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 50%;
  width: 100%;
  font-size: 46px;
  color: #3c4761;
  display: block;
  text-align: center;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-family: 'Righteous';
  transform: translate(0, -50%);
}

.c100:after {
  position: absolute;
  top: 0.09em;
  left: 0.09em;
  display: block;
  content: " ";
  border-radius: 50%;
  background-color: #ffffff;
  width: 0.82em;
  height: 0.82em;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.c100 .slice {
  position: absolute;
  width: 1em;
  height: 1em;
  clip: rect(0em, 1em, 1em, 0.5em);
}

.c100 .bar,
.pie {
  position: absolute;
  border: 0.09em solid #000000;
  width: 0.82em;
  height: 0.82em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
  transition: .4s all ease;
}

/* Generate all percentage classes dynamically with CSS calc */
.c100[data-percent] .bar {
  transform: rotate(calc(var(--percent, 0) * 3.6deg));
}

/* For backward compatibility, keep individual classes */
.c100.p1 .bar { transform: rotate(3.6deg); }
.c100.p2 .bar { transform: rotate(7.2deg); }
.c100.p3 .bar { transform: rotate(10.8deg); }
.c100.p4 .bar { transform: rotate(14.4deg); }
.c100.p5 .bar { transform: rotate(18deg); }
.c100.p6 .bar { transform: rotate(21.6deg); }
.c100.p7 .bar { transform: rotate(25.2deg); }
.c100.p8 .bar { transform: rotate(28.8deg); }
.c100.p9 .bar { transform: rotate(32.4deg); }
.c100.p10 .bar { transform: rotate(36deg); }
.c100.p11 .bar { transform: rotate(39.6deg); }
.c100.p12 .bar { transform: rotate(43.2deg); }
.c100.p13 .bar { transform: rotate(46.8deg); }
.c100.p14 .bar { transform: rotate(50.4deg); }
.c100.p15 .bar { transform: rotate(54deg); }
.c100.p16 .bar { transform: rotate(57.6deg); }
.c100.p17 .bar { transform: rotate(61.2deg); }
.c100.p18 .bar { transform: rotate(64.8deg); }
.c100.p19 .bar { transform: rotate(68.4deg); }
.c100.p20 .bar { transform: rotate(72deg); }
.c100.p21 .bar { transform: rotate(75.6deg); }
.c100.p22 .bar { transform: rotate(79.2deg); }
.c100.p23 .bar { transform: rotate(82.8deg); }
.c100.p24 .bar { transform: rotate(86.4deg); }
.c100.p25 .bar { transform: rotate(90deg); }
.c100.p26 .bar { transform: rotate(93.6deg); }
.c100.p27 .bar { transform: rotate(97.2deg); }
.c100.p28 .bar { transform: rotate(100.8deg); }
.c100.p29 .bar { transform: rotate(104.4deg); }
.c100.p30 .bar { transform: rotate(108deg); }
.c100.p31 .bar { transform: rotate(111.6deg); }
.c100.p32 .bar { transform: rotate(115.2deg); }
.c100.p33 .bar { transform: rotate(118.8deg); }
.c100.p34 .bar { transform: rotate(122.4deg); }
.c100.p35 .bar { transform: rotate(126deg); }
.c100.p36 .bar { transform: rotate(129.6deg); }
.c100.p37 .bar { transform: rotate(133.2deg); }
.c100.p38 .bar { transform: rotate(136.8deg); }
.c100.p39 .bar { transform: rotate(140.4deg); }
.c100.p40 .bar { transform: rotate(144deg); }
.c100.p41 .bar { transform: rotate(147.6deg); }
.c100.p42 .bar { transform: rotate(151.2deg); }
.c100.p43 .bar { transform: rotate(154.8deg); }
.c100.p44 .bar { transform: rotate(158.4deg); }
.c100.p45 .bar { transform: rotate(162deg); }
.c100.p46 .bar { transform: rotate(165.6deg); }
.c100.p47 .bar { transform: rotate(169.2deg); }
.c100.p48 .bar { transform: rotate(172.8deg); }
.c100.p49 .bar { transform: rotate(176.4deg); }
.c100.p50 .bar { transform: rotate(180deg); }

/* For 51-100, we need to handle the fill differently */
.c100.p51 .slice,
.c100.p52 .slice,
.c100.p53 .slice,
.c100.p54 .slice,
.c100.p55 .slice,
.c100.p56 .slice,
.c100.p57 .slice,
.c100.p58 .slice,
.c100.p59 .slice,
.c100.p60 .slice,
.c100.p61 .slice,
.c100.p62 .slice,
.c100.p63 .slice,
.c100.p64 .slice,
.c100.p65 .slice,
.c100.p66 .slice,
.c100.p67 .slice,
.c100.p68 .slice,
.c100.p69 .slice,
.c100.p70 .slice,
.c100.p71 .slice,
.c100.p72 .slice,
.c100.p73 .slice,
.c100.p74 .slice,
.c100.p75 .slice,
.c100.p76 .slice,
.c100.p77 .slice,
.c100.p78 .slice,
.c100.p79 .slice,
.c100.p80 .slice,
.c100.p81 .slice,
.c100.p82 .slice,
.c100.p83 .slice,
.c100.p84 .slice,
.c100.p85 .slice,
.c100.p86 .slice,
.c100.p87 .slice,
.c100.p88 .slice,
.c100.p89 .slice,
.c100.p90 .slice,
.c100.p91 .slice,
.c100.p92 .slice,
.c100.p93 .slice,
.c100.p94 .slice,
.c100.p95 .slice,
.c100.p96 .slice,
.c100.p97 .slice,
.c100.p98 .slice,
.c100.p99 .slice,
.c100.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}

.c100.p51 .fill,
.c100.p52 .fill,
.c100.p53 .fill,
.c100.p54 .fill,
.c100.p55 .fill,
.c100.p56 .fill,
.c100.p57 .fill,
.c100.p58 .fill,
.c100.p59 .fill,
.c100.p60 .fill,
.c100.p61 .fill,
.c100.p62 .fill,
.c100.p63 .fill,
.c100.p64 .fill,
.c100.p65 .fill,
.c100.p66 .fill,
.c100.p67 .fill,
.c100.p68 .fill,
.c100.p69 .fill,
.c100.p70 .fill,
.c100.p71 .fill,
.c100.p72 .fill,
.c100.p73 .fill,
.c100.p74 .fill,
.c100.p75 .fill,
.c100.p76 .fill,
.c100.p77 .fill,
.c100.p78 .fill,
.c100.p79 .fill,
.c100.p80 .fill,
.c100.p81 .fill,
.c100.p82 .fill,
.c100.p83 .fill,
.c100.p84 .fill,
.c100.p85 .fill,
.c100.p86 .fill,
.c100.p87 .fill,
.c100.p88 .fill,
.c100.p89 .fill,
.c100.p90 .fill,
.c100.p91 .fill,
.c100.p92 .fill,
.c100.p93 .fill,
.c100.p94 .fill,
.c100.p95 .fill,
.c100.p96 .fill,
.c100.p97 .fill,
.c100.p98 .fill,
.c100.p99 .fill,
.c100.p100 .fill {
  transform: rotate(180deg);
}

/* Continue with the remaining bar transforms for 51-100 */
.c100.p51 .bar { transform: rotate(183.6deg); }
.c100.p52 .bar { transform: rotate(187.2deg); }
.c100.p53 .bar { transform: rotate(190.8deg); }
.c100.p54 .bar { transform: rotate(194.4deg); }
.c100.p55 .bar { transform: rotate(198deg); }
.c100.p56 .bar { transform: rotate(201.6deg); }
.c100.p57 .bar { transform: rotate(205.2deg); }
.c100.p58 .bar { transform: rotate(208.8deg); }
.c100.p59 .bar { transform: rotate(212.4deg); }
.c100.p60 .bar { transform: rotate(216deg); }
.c100.p61 .bar { transform: rotate(219.6deg); }
.c100.p62 .bar { transform: rotate(223.2deg); }
.c100.p63 .bar { transform: rotate(226.8deg); }
.c100.p64 .bar { transform: rotate(230.4deg); }
.c100.p65 .bar { transform: rotate(234deg); }
.c100.p66 .bar { transform: rotate(237.6deg); }
.c100.p67 .bar { transform: rotate(241.2deg); }
.c100.p68 .bar { transform: rotate(244.8deg); }
.c100.p69 .bar { transform: rotate(248.4deg); }
.c100.p70 .bar { transform: rotate(252deg); }
.c100.p71 .bar { transform: rotate(255.6deg); }
.c100.p72 .bar { transform: rotate(259.2deg); }
.c100.p73 .bar { transform: rotate(262.8deg); }
.c100.p74 .bar { transform: rotate(266.4deg); }
.c100.p75 .bar { transform: rotate(270deg); }
.c100.p76 .bar { transform: rotate(273.6deg); }
.c100.p77 .bar { transform: rotate(277.2deg); }
.c100.p78 .bar { transform: rotate(280.8deg); }
.c100.p79 .bar { transform: rotate(284.4deg); }
.c100.p80 .bar { transform: rotate(288deg); }
.c100.p81 .bar { transform: rotate(291.6deg); }
.c100.p82 .bar { transform: rotate(295.2deg); }
.c100.p83 .bar { transform: rotate(298.8deg); }
.c100.p84 .bar { transform: rotate(302.4deg); }
.c100.p85 .bar { transform: rotate(306deg); }
.c100.p86 .bar { transform: rotate(309.6deg); }
.c100.p87 .bar { transform: rotate(313.2deg); }
.c100.p88 .bar { transform: rotate(316.8deg); }
.c100.p89 .bar { transform: rotate(320.4deg); }
.c100.p90 .bar { transform: rotate(324deg); }
.c100.p91 .bar { transform: rotate(327.6deg); }
.c100.p92 .bar { transform: rotate(331.2deg); }
.c100.p93 .bar { transform: rotate(334.8deg); }
.c100.p94 .bar { transform: rotate(338.4deg); }
.c100.p95 .bar { transform: rotate(342deg); }
.c100.p96 .bar { transform: rotate(345.6deg); }
.c100.p97 .bar { transform: rotate(349.2deg); }
.c100.p98 .bar { transform: rotate(352.8deg); }
.c100.p99 .bar { transform: rotate(356.4deg); }
.c100.p100 .bar { transform: rotate(360deg); }

.c100:hover {
  cursor: default;
}

.c100:hover > span {
  transform: translate(0, -41px);
}

.c100.blue .bar,
.c100.blue .fill {
  border-color: #30bae7 !important;
}

.c100.green .bar,
.c100.green .fill {
  border-color: #3db366 !important;
}

.c100.green:hover > span {
  color: #3db366;
}

/* Info Poster Two */
.infoPosterTwo {
  position: absolute;
  top: 0;
  right: 335px;
  left: 0;
  padding-right: 15px;
}

.UsersRate {
  float: left;
  width: 128px;
  text-align: center;
  padding-top: 6px;
}

/* Likes Button */
.LikesBTn {
  display: flex;
  align-items: center;
}

.LikesBTn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50px;
  cursor: pointer;
  margin: 0 3px;
  color: #FFF;
  font-family: 'Righteous';
  font-size: 12px;
  background-color: #3db366;
}

.LikesBTn button.disLike {
  background-color: #c84848;
}

.LikesBTn button i {
  font-size: 14px;
  padding-bottom: 2px;
}

.LikesBTn button .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.LikesBTn > div i {
  display: block;
  text-align: center;
  font-size: 14px;
  padding-bottom: 2px;
}

/* Post Actions */
.PostActions {
  float: right;
  width: calc(100% - 145px);
  display: table;
  height: 190px;
}

.PostActions > div > div:not(.RatingImdb) {
  display: block;
  width: 100%;
  text-align: center;
  height: 40px;
  border-radius: 45px;
  margin-bottom: 10px;
  border: 1px solid #ffffff30;
  line-height: 39px;
  cursor: pointer;
  overflow: hidden;
}

.PostActions > div i {
  vertical-align: top;
  font-size: 20px;
  line-height: 39px;
  padding-left: 9px;
}

.InfoPartOne p.descrip::-webkit-scrollbar {
  width: 2px;
}

.InfoPartOne p.descrip::-webkit-scrollbar-track {
  background: #181d25;
}

.InfoPartOne p.descrip::-webkit-scrollbar-thumb {
  background-color: #ce0000;
}

.PostActions > div {
  display: table-cell;
  vertical-align: middle;
}

.RatingImdb {
  width: 100%;
  height: 40px;
  color: #232222;
  background: linear-gradient(#f5c518, #d08906);
  text-align: right;
  border-radius: 3px;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-family: 'Righteous';
}

.RatingImdb strong {
  float: left;
  font-style: normal;
  font-size: 23px;
  line-height: 29px;
  padding: 0px 7px;
  background: #00000021;
  border-radius: 5px;
  font-weight: 400;
  margin-right: 12px;
}

.RatingImdb em {
  float: left;
  font-size: 27px;
  font-style: normal;
  line-height: 33px;
}

.RatingImdb span {
  float: left;
  line-height: 33px;
  font-size: 18px;
  margin-left: 6px;
}

.StoryLine > h3 > i {
  vertical-align: top;
  margin-left: 0px;
  font-size: 25px;
  padding-left: 9px;
}

.StoryLine {
  border-top: 1px solid #ffffff14;
  padding-top: 10px;
  color: #f5c518;
}

.leftSingle {
  float: left;
  width: calc(100% - 720px);
}

.leftSingle .MetaTermsInfo {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}

/* Watch Buttons */
.WatchButtons {
  margin-top: 15px;
  display: table;
  width: 100%;
}

.WatchButtons > a {
  float: right;
  border-radius: 3px;
  overflow: hidden;
  width: calc((100% - 15px) / 2);
  background: #333d4d6e;
  transition: .3s all ease;
  padding: 13px 20px;
  box-shadow: 0 0 10px #00000061;
}

.WatchButtons > a.watchBTn:hover {
  background: #ce0000;
}

.WatchButtons a.downloadBTn {
  margin-right: 15px;
}

.WatchButtons > a span {
  display: table;
  width: 100%;
}

.WatchButtons > a span em {
  font-size: 18px;
  font-style: normal;
  line-height: 25px;
  text-align: center;
  display: block;
  color: #FFF;
  font-family: 'FontBlack';
}

.WatchButtons > a span i {
  float: right;
  font-size: 42px;
  text-align: center;
}

#RelatedUL .spinner {
  display: block;
  width: 100%;
  padding: 0;
  margin: 50px 0;
}

.leftSingle .MetaTermsInfo > li {
  flex: 1;
  min-width: calc((100% - 45px) / 3);
  max-width: 60%;
  margin-left: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 7px 14px;
  border-radius: 3px;
  background: #57769212;
  padding-right: 60px;
}

.leftSingle .MetaTermsInfo > li .icon {
  position: absolute;
  font-size: 24px;
  margin-left: 20px;
  color: #fff;
  font-weight: 200;
  line-height: 40px;
  width: 50px;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}

.leftSingle .MetaTermsInfo > li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: rgb(255 255 255 / .05);
  bottom: 0;
  width: 63px;
  z-index: -1;
  transform: skew(-21deg);
  transform-origin: 100% 100%;
  transition: .3s all ease;
}

.leftSingle .MetaTermsInfo > li > span {
  display: block;
  font-size: 12px;
  color: #AAA;
  line-height: 13px;
}

.leftSingle .MetaTermsInfo > li > a {
  border-radius: 25px;
  border: 1px solid #ffffff24;
  padding: 0 20px;
  margin-top: 5px;
  float: right;
  transition: .3s all ease;
  font-size: 14px;
  margin-left: 6px;
}

.leftSingle .MetaTermsInfo > li:hover::after {
  width: 99%;
  transform: skew(21deg);
  transform-origin: 0 0;
}

.leftSingle .MetaTermsInfo > li > a:hover {
  background: #ce0000;
  color: #fff;
  border-color: #ce0000;
}

/* Top Bar Single */
.topBarSingle {
  display: table;
  width: 100%;
  background: #57769212;
  padding: 11px 14px;
  border-radius: 5px;
  overflow: hidden;
}

.topBarSingle .shortLink {
  float: right;
}

.topBarSingle .shortLink > input {
  float: right;
  width: 330px;
  text-align: left;
  padding: 0 15px;
  height: 35px;
  border-radius: 55px;
  background: #272e37;
  cursor: pointer;
  color: #FFF;
  margin-right: 10px;
  direction: ltr;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topBarSingle .shortLink > span {
  line-height: 35px;
  float: right;
}

.topBarSingle .socialShare {
  float: left;
}

.topBarSingle .socialShare span {
  float: right;
  line-height: 35px;
}

.topBarSingle .socialShare > a {
  float: right;
  width: 35px;
  height: 35px;
  color: #fff;
  margin-right: 7px;
  border-radius: 5px;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
}

.topBarSingle .socialShare > a.facebook {
  background: #5b4ed4;
}

.topBarSingle .socialShare > a.twitter {
  background: #0dc4e5;
}

.topBarSingle .socialShare > a.whatsapp {
  background: #57c22b;
}

.infotitle {
  display: inline-block;
  width: 100%;
  font-size: 20px;
}

.infotitle > i {
  float: right;
  font-size: 35px;
  margin-left: 10px;
}

.infotitle > span {
  font-family: 'FontBlack';
}

.infotitle > span b {
  color: #f5c518;
}

.descriptionLine {
  display: block;
  width: 100%;
  text-align: right;
  margin-top: 10px;
  max-height: 100px;
  overflow: auto;
}

/* Work Team */
.WorkTeam {
  margin: 15px 0;
  overflow: hidden;
  width: 100%;
}

.WorkTeamIteM {
  position: relative;
  background: #1f252e;
  border-radius: 8px;
  width: 150px;
  height: 160px;
  overflow: hidden;
}

.WorkTeamIteM > a {
  display: block;
  width: 100%;
  height: 100%;
}

.WorkTeamIteM > a .Icon {
  display: block;
  width: 100%;
  text-align: center;
}

.WorkTeamIteM > a h4 {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99;
  color: #FFF;
  padding: 60px 10px 10px;
  text-align: center;
  background: linear-gradient(0deg, #1f252e 15%, #181d2500);
}

.WorkTeamIteM > a i {
  font-size: 60px;
  color: #ffffff6e;
  border: 1px solid;
  width: 100px;
  height: 100px;
  display: inline-block;
  text-align: center;
  margin: 20px 0 0;
  line-height: 98px;
  border-radius: 60px;
}

.WorkTeamIteM > a h4 span {
  display: block;
  text-align: center;
  color: #ccc;
  font-size: 12px;
}

.WorkTeamIteM > a h4 em {
  display: block;
  font-style: normal;
}

.WorkTeamSlider {
  margin-top: 15px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
  margin-top: 15px;
}

.WorkTeamSlider .info-lists {
  max-width: 190px;
  flex: 0 0 32.3%;
  margin: 0 .5%;
}

.WorkTeamSlider .info-lists ul {
  margin: 0;
  list-style: none;
  padding: 0;
  margin-top: 0;
  max-height: 126px;
}

.WorkTeamSlider .info-lists ul.Scroll-list {
  min-height: 120px;
  background: #1c232c;
  overflow: auto;
}

.WorkTeamSlider .info-lists ul li {
  font-size: 15px;
  line-height: 30px;
  padding: 5px 15px;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.WorkTeamSlider .info-lists ul li.title {
  display: block;
  background: #c84848;
  display: table;
  width: 100%;
}

.WorkTeamSlider .info-lists ul li a {
  align-items: center;
  display: flex;
  width: 100%;
  line-height: 20px;
}

.WorkTeamSlider .info-lists ul li a i,
.WorkTeamSlider .info-lists ul li a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 5px;
  text-align: center;
  font-size: 20px;
  overflow: hidden;
  float: right;
  line-height: 30px;
}

/* Work Team Navigation */
a.WorkTeamNext,
a.WorkTeamPrev {
  position: absolute;
  z-index: 999;
  bottom: 0;
  line-height: 160px;
  font-size: 40px;
  cursor: pointer;
}

a.WorkTeamPrev {
  left: 0;
  right: auto;
  background: linear-gradient(to right, #181d25 8%, #20262f00);
  padding: 0 35px 0 13px;
}

a.WorkTeamNext {
  left: auto;
  right: 0;
  background: linear-gradient(to left, #181d25 8%, #20262f00);
  padding: 0 13px 0 25px;
}

/* Notification Items */
.NotifcationsListsHead {
  display: block;
  padding: 6px 10px;
  font-size: 15px;
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: 10px;
}

li.NotficiationItem {
  display: table;
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px solid #ffffff0f;
}

li.NotficiationItem > a {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.NotficiationItemImage {
  float: right;
  width: 60px;
  height: 60px;
  border-radius: 70px;
  overflow: hidden;
}

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

.NotficiationItemContent {
  float: left;
  width: calc(100% - 70px);
}

.NotficiationItemContent > span {
  display: block;
  font-size: 12px;
}

.NotficiationItemContent > span em {
  color: #f5c518;
  font-style: normal;
}

.NotficiationItemContent h3 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
}

.NotficiationItemContent time {
  display: block;
  font-size: 12px;
  color: #DDD;
}

li.NotficiationItem.NotRead {
  background: #ffffff0d;
}

li.NotficiationItem:last-child {
  border: 0;
}

ul.NotifcationsListsUL {
  max-height: 600px;
  overflow: auto;
}

.NotifcationsListsUL::-webkit-scrollbar {
  width: 2px;
}

.NotifcationsListsUL::-webkit-scrollbar-track {
  background: #343d4d;
}

.NotifcationsListsUL::-webkit-scrollbar-thumb {
  background-color: #1c232c;
}

/* Container Servers */
.WatcherArea {
  margin: 30px 0 20px;
}

.containerServers {
  float: right;
  width: 280px;
}

.containerServers .infotitle {
  display: table;
  width: auto;
  margin: 0 auto 15px;
}

.containerServers > ul {
  background: #1f252e;
  border-radius: 5px;
  overflow: auto;
}

.containerServers > ul h3 {
  display: table;
  font-size: 12px;
  color: #DDD;
  padding: 5px 20px;
  border-bottom: 1px solid #ffffff17;
}

.containerServers > ul > li {
  transition: .3s all ease;
  display: table;
  padding: 8px 10px;
  cursor: pointer;
  width: 100%;
}

.containerServers > ul > li.active {
  background: #343d4d;
}

.containerServers > ul > li > i {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  margin-left: 10px;
  height: 35px;
  text-align: center;
  background: #343d4d;
  border-radius: 28px;
  color: #fff;
  line-height: 35px;
  font-size: 16px;
  transition: .3s all ease;
}

.containerServers > ul > li > span {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  vertical-align: middle;
  text-transform: capitalize;
}

.containerServers > ul > li.active > i {
  background: #181d25;
}

.containerIframe {
  float: right;
  width: calc(100% - 300px);
  margin-right: 20px;
  border: 5px solid #2a3039;
  position: relative;
}

.containerIframe > iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.containerIframe .spinner {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Seasons List */
.SeasonsListHolder {
  float: right;
  width: 280px;
}

.ContainerEpisodesList {
  width: calc(100% - 300px);
  float: left;
  text-align: center;
}

.SeasonsListHolder > ul > li {
  text-align: center;
  position: relative;
  font-size: 15px;
  padding: 0 0 0 25px;
  color: #bababa;
  transition: .4s all ease;
  height: 50px;
  background: #1f252e;
  overflow: hidden;
  border-radius: 45px;
  line-height: 50px;
  margin-bottom: 15px;
  cursor: pointer;
}

.SeasonsListHolder > ul > li > i {
  float: right;
  font-size: 27px;
  line-height: 50px;
  margin-left: 10px;
  width: 60px;
  text-align: center;
  background: rgb(255 255 255 / 0.05);
  border-radius: 15px 0 0 26px;
  transition: .2s all ease;
}

.SeasonsListHolder > ul > li > span {
  vertical-align: middle;
  color: #f5c518;
  font-size: 18px;
  margin-right: 8px;
  transition: .4s all ease;
}

.SeasonsListHolder > ul > li.active,
.SeasonsListHolder > ul > li:hover,
.ContainerEpisodesList > a.active,
.ContainerEpisodesList > a:hover {
  background: #f5c518;
  color: #555;
}

.SeasonsListHolder > ul > li.active > span,
.SeasonsListHolder > ul > li:hover > span {
  color: #222;
}

.SeasonsListHolder > ul > li.active > i,
.SeasonsListHolder > ul > li:hover > i,
.ContainerEpisodesList > a.active em,
.ContainerEpisodesList > a:hover em {
  background: rgb(0 0 0 / 0.1);
}

.ContainerEpisodesList > a {
  display: inline-block;
  background: rgb(31 37 46);
  flex: 1;
  height: 50px;
  min-width: 175px;
  margin: 0px 4px 10px;
  border-radius: 25px;
  max-width: 200px;
  transition: .3s all ease;
  overflow: hidden;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
}

.ContainerEpisodesList > a > em {
  float: left;
  font-size: 27px;
  line-height: 50px;
  width: 60px;
  text-align: center;
  background: rgb(255 255 255 / 0.05);
  border-radius: 0 15px 26px 0;
  transition: .2s all ease;
  font-family: 'Righteous';
  font-style: normal;
}

.ContainerEpisodesList .spinner {
  display: block;
  width: 100%;
  margin: 50px 0;
}

h3.noEpus {
  display: table;
  margin: 30px auto 0;
  font-family: 'FontBlack';
  font-size: 30px;
  color: #f5c518;
}

/* Download Block */
.DownloadArea {
  display: block;
  margin: 40px 0;
}

.DownloadBlock .TitleCenteral {
  background: linear-gradient(-90deg, #1e252f 15%, #181d2500);
  margin: 10px 0 20px;
  padding: 12px 25px;
  border-radius: 10px;
}

.DownloadBlock .TitleCenteral h3 {
  margin: 0;
}

ul.download-items {
  display: flex;
  flex-wrap: wrap;
}

a.downloadsLink {
  display: inline-block;
  background: #2a3039;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 16px 65px 16px 16px;
  line-height: 100%;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  overflow: hidden;
  margin-left: 12px;
  transition: .4s .2s all ease;
  position: relative;
}

a.downloadsLink > span {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
  text-transform: capitalize;
}

a.downloadsLink em {
  position: absolute;
  left: 14px;
  bottom: 11px;
  font-style: normal;
  font-size: 12px;
}

a.downloadsLink i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 55px;
  text-align: center;
  color: #fff;
  line-height: 100%;
  padding-right: 10px;
  font-size: 32px;
  transform: translate(0px, -50%);
}

a.downloadsLink.ArabSeedServer,
a.downloadsLink:hover {
  background: #3db366;
}

/* User Page */
.UserPageRight {
  display: block;
  width: 100%;
}

.UserPageRight header.UserHeaderCover {
  height: 350px;
  border-left: 1px solid #282e3b;
  position: relative;
}

.UserPageRight header.UserHeaderCover .UserHeaderCoverImg {
  display: block;
  width: 100%;
  height: 100%;
  background: #282e3b;
}

.UserPageRight header.UserHeaderCover .UserHeaderCoverImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header.UserHeaderCover:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(0deg, #181d25 15%, #181d2500);
}

.UserHeaderCoverContent {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 25px;
}

.UserBar {
  height: 70px;
  overflow: hidden;
  background: #343d4d8c;
  padding: 0 25px;
  padding-right: 200px;
}

.UserBar > li {
  float: right;
  height: 45px;
  margin: 12px 0;
  border-radius: 45px;
  transition: .3s all ease;
}

.UserBar > li.follows.active > a {
  color: #29b0ef;
}

.UserBar > li.later.active > a {
  color: #ffbe28;
}

.UserBar > li.fevorite.active > a {
  color: #f15858;
}

.UserBar > li.logout {
  background: #c50000;
  float: left;
}

.UserBar > li:hover,
.UserBar > li.active {
  background: #373f50;
}

.UserBar > li > a {
  display: block;
  width: 100%;
  line-height: 45px;
  padding: 0 25px;
  color: #FFF;
}

.UserBar > li > a > i {
  float: right;
  line-height: 45px;
  font-size: 20px;
  padding-left: 8px;
}

.UserBar > li > a > span {
  float: right;
  line-height: 45px;
}

.UserImage {
  float: right;
}

.PIC {
  color: #DDD;
  width: 150px;
  height: 150px;
  float: right;
  background: #2e3544;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  line-height: 150px;
  font-size: 60px;
  border: 1px solid #363e4e;
  top: 90px;
}

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

.UserImage > h4 {
  float: right;
  font-size: 30px;
  text-transform: capitalize;
  height: 30px;
  line-height: 30px;
  padding-top: 150px;
  margin-right: 27px;
  color: #FFF;
}

.infoUserArea {
  float: left;
  padding-top: 120px;
  margin-bottom: -10px;
}

.infoUserArea > li {
  float: right;
  height: 60px;
  margin-right: 10px;
}

.infoUserArea > li.follow > i,
.infoUserArea > li.follow > div > span {
  color: #29b0ef;
}

.infoUserArea > li.heart i,
.infoUserArea > li.heart > div > span {
  color: #ce0000;
}

.infoUserArea > li.history i,
.infoUserArea > li.history > div > span {
  color: #ffbe28;
}

.infoUserArea > li > div {
  float: right;
}

.infoUserArea > li > div > em {
  float: right;
  font-style: normal;
  font-size: 14px;
  line-height: 60px;
  color: #FFF;
}

.infoUserArea > li > div > span {
  float: right;
  font-family: 'Righteous';
  font-size: 32px;
  line-height: 60px;
  padding-left: 7px;
}

.infoUserArea > li > i {
  float: right;
  font-size: 30px;
  width: 60px;
  text-align: center;
  height: 60px;
  line-height: 60px;
}

/* Form Components */
form.UserPageForm {
  display: table;
  width: 600px;
  margin: 0 auto 50px;
}

.UserPageForm button {
  background: #269e42;
  color: white;
  border-radius: 8px;
  display: table;
  margin: 0 auto;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 16px;
}

.UserPageForm button > i {
  float: right;
  font-size: 24px;
  padding-left: 10px;
}

/* Show Trailer Single */
.ShowTrailerSingle {
  position: absolute;
  bottom: 10px;
  border-radius: 5px;
  height: 40px;
  left: 10px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  padding: 0 20px;
  box-shadow: 0 0 20px #00000059;
  font-size: 15px;
  cursor: pointer;
  color: #FFF;
  background: linear-gradient(90deg, #0c9 0, #09f);
}

.ShowTrailerSingle > i {
  float: right;
  font-size: 23px;
  line-height: 40px;
  margin-left: 8px;
}

.ShowTrailerSingle:hover {
  background: #343d4d;
}

/* Search History */
ul.LastestSearhching {
  display: table;
  margin: 0 auto;
  text-align: center;
}

.search-contentarea .SearchHistory {
  display: block;
  width: 100%;
  padding: 15px 15px;
}

.search-contentarea .SearchHistory > h4 {
  display: table;
  margin: 0 auto;
  font-size: 18px;
  font-family: 'FontBlack';
  margin-block: 10px;
  color: #FFF;
}

.search-contentarea .SearchHistory > h4 > i {
  float: right;
  font-size: 28px;
  padding-left: 10px;
}

ul.LastestSearhching > li {
  display: inline-block;
  max-width: 300px;
  border: 1px solid #e6eefc2e;
  margin: 0 5px;
  transition: .3s all ease;
  border-radius: 50px;
  margin-bottom: 10px;
}

ul.LastestSearhching > li > a {
  display: block;
  padding: 6px 25px;
  color: #FFF;
}

ul.LastestSearhching > li > a > i {
  float: right;
  font-size: 18px;
  padding-left: 6px;
  padding-top: 3px;
}

ul.LastestSearhching > li:hover {
  background: #3f495d;
}

/* Dropdown Components */
.DropdownButton {
  float: right;
  margin: 0 6px;
  position: relative;
}

.DropdownButton > span {
  display: block;
  text-align: center;
  position: relative;
  font-size: 15px;
  padding: 0 0 0 46px;
  color: #bababa;
  transition: .4s all ease;
  height: 50px;
  background: #1f252e;
  border-radius: 45px;
  line-height: 50px;
  overflow: hidden;
  cursor: pointer;
}

.DropdownButton > span > i {
  float: right;
  font-size: 27px;
  line-height: 50px;
  margin-left: 13px;
  width: 60px;
  text-align: center;
  background: rgb(255 255 255 / 0.05);
  border-radius: 15px 0 0 26px;
  transition: .2s all ease;
}

.DropdownButton > span > span {
  vertical-align: middle;
  color: #f5c518;
  font-size: 18px;
  margin-right: 8px;
  transition: .4s all ease;
}

.DropdownButton > i {
  position: absolute;
  font-size: 29px;
  left: 20px;
  top: 11px;
}

.TaxFilter {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  background: #343d4d;
  width: 400px;
  left: 50%;
  transform: translate(-50%) scale(.4);
  height: 40px;
  overflow: hidden;
  box-shadow: 0 0 20px #000;
  border-radius: 5px;
  transition: .4s all ease;
}

.DropdownButton.active .TaxFilter {
  opacity: 1;
  visibility: visible;
  height: 240px;
  transform: translate(-50%) scale(1);
}

div#MainUL.active {
  opacity: .5;
  pointer-events: none;
}

.TaxFilter > ul {
  height: 184px;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 3px;
}

.TaxFilter > ul > li {
  font-size: 14px;
  line-height: 14px;
  padding: 10px 15px;
  color: #fff;
  flex: 1;
  white-space: nowrap;
  background: #424b5d;
  margin: 0 5px 5px;
  margin-bottom: 7px;
  transition: .3s all ease;
  border-radius: 6px;
  cursor: pointer;
  max-width: 50%;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.TaxFilter > ul > li > span {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.TaxFilter > ul > li.active {
  background: #4f5c73;
}

.TaxFilter > ul > li > i {
  vertical-align: top;
  font-size: 17px;
  line-height: 11px;
  padding-top: 3px;
  padding-left: 6px;
}

.TaxFilterTitle {
  padding: 10px;
  border-bottom: 1px solid #ffffff12;
}

.TaxFilterTitle > i {
  position: absolute;
  z-index: 9;
  right: 10px;
  width: 50px;
  text-align: center;
  line-height: 35px;
  color: #b9b9b9;
}

.TaxFilterTitle > input {
  display: block;
  width: 100%;
  border-radius: 45px;
  padding: 0px 47px 0 5px;
  background: #202938;
  height: 35px;
  color: #FFF;
}

/* Dropdown Positioning */
.DropdownButton:nth-child(1) .TaxFilter {
  transform: translate(0) scale(.4);
  right: 0;
  left: auto;
}

.DropdownButton.active:nth-child(1) .TaxFilter {
  transform: translate(0) scale(1);
}

.DropdownButton:last-child .TaxFilter {
  transform: translate(0) scale(.4);
  right: auto;
  left: 0;
}

.DropdownButton.active:last-child .TaxFilter {
  transform: translate(0) scale(1);
}

/* Slider Components */
.SlidesHold {
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
  padding-right: 1.5%;
}

/* View Count */
.ViewsCount {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 9;
  color: #FFF;
  background: #1d1d1d73;
  padding-left: 10px;
  border-radius: 5px;
}

.ViewsCount > i {
  float: right;
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  text-align: center;
}

.ViewsCount > span {
  float: right;
}

.ViewsCount > em {
  display: block;
  font-family: 'Righteous';
  font-style: normal;
  line-height: 15px;
}

/* Slide Menu */
.SlideMenu {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: 250px;
  padding: 20px !important;
  z-index: 9999999999;
  height: 100%;
  background: #181d25;
  transition: .3s all cubic-bezier(1, 0.05, 0, 0.98);
  transform: translate(150%, 0%);
  opacity: 0;
  visibility: hidden;
}

.MainMenuOverlay {
  position: fixed;
  top: 0;
  opacity: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  cursor: pointer;
  height: 100%;
  z-index: 99999999;
  background: #212121d9;
  transition: .2s all ease;
}

.activeMenu .MainMenuOverlay {
  opacity: 1;
  visibility: visible;
}

.activeMenu .SlideMenu {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.SlideMenu > h3 {
  color: #e2be3a;
  text-align: center;
  font-size: 20px;
  border: 2px solid;
  margin-bottom: 10px;
  border-radius: 55px;
}

.SlideMenu > ul > li > a {
  display: block;
  font-size: 13px;
  padding: 0px 14px;
  border-radius: 5px;
}

.SlideMenu li.latestLi > a {
  text-align: center;
}

.SlideMenu li.latestLi > a > i {
  padding-left: 8px;
  vertical-align: middle;
}

.SlideMenu > ul > li:not(.latestLi) > a {
  font-size: 14px;
  padding: 9px 14px;
  border-radius: 5px;
  color: #FFF;
  background: rgb(255 255 255 / .05);
}

.SlideMenu > ul > li:not(.latestLi) {
  margin-top: 10px;
}

.SlideMenu > ul > li:not(.latestLi) > ul {
  display: block;
  padding: 6px 10px;
  background: #ffffff0a;
  border-radius: 6px;
}

.SlideMenu > ul > li:not(.latestLi) > ul > li > a {
  display: block;
  color: #FFF;
  border-bottom: 1px solid #ffffff21;
  padding: 7px 8px;
  overflow: hidden;
}

.SlideMenu > ul > li:not(.latestLi) > ul > li:last-child > a {
  border: 0;
}

/* Additional Components */
.SinglePageContent {
  text-align: center;
  background: #1f252e;
  border-radius: 15px;
  padding: 25px;
  line-height: 30px;
}

a.ads-aa {
  display: table;
  margin: 25px auto;
  max-width: 728px;
}

.MovieBlock > a .number {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  background: #181c249e;
  text-align: center;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0 0 10px #00000082;
}

.MovieBlock > a .number span {
  display: block;
  font-family: 'Righteous';
  font-size: 25px;
  line-height: 28px;
}

a.nextEp.EP-A {
  padding: 0 25px 0 0;
}

a.nextEp.EP-A i {
  float: left;
  border-radius: 0 15px 26px 0;
  margin: 0;
  margin-right: 12px;
}

ul.LinksList a.arabic_netflix {
  padding: 0 20px;
}

ul.LinksList a.arabic_netflix img {
  display: table;
  margin: 0 auto;
  height: 37px;
  margin-top: 7px;
}

ul.LinksList a.arabic_netflix:hover,
ul.LinksList a.arabic_netflix.active {
  background: #000;
}

/* Additional Special Elements */
h3.NoHome {
  display: table;
  margin: 90px auto;
  color: #FFF;
  font-family: 'FontBlack';
  font-size: 30px;
}

img.ElshaikhImg {
  width: 115px;
  display: block;
  margin: 3px auto;
}

.RatingFilter > h4 {
  display: none;
}

a.prous {
  border: 2px solid #ffcc26;
  border-radius: 7px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 13px;
  line-height: 34px;
  display: block;
  color: #ffcc26;
  float: right;
  margin-top: 15px;
  transition: .3s all ease;
  margin-left: 10px;
  font-family: 'FontBlack';
}

a.prous:hover {
  background: #ffcc26;
  color: #222;
}

.MovieBlock .PlayButton img {
  width: 60px !important;
  height: auto;
}

.MovieBlock > a > .Poster {
  background-size: 100% 100%;
}

/* Latest Animation */
.PageHeader .MenuHeader > ul > li.latestLi > a {
  line-height: 40px;
  height: 40px;
  overflow: hidden;
  background: #343d4d;
  margin: 12px 10px 0;
}

.PageHeader .MenuHeader > ul > li.latestLi:after {
  display: none;
}

li.latestLi > a i {
  line-height: 40px !important;
  font-size: 20px !important;
}

.PageHeader .MenuHeader > ul > li.latestLi a:before {
  animation: Lastest 1s ease infinite;
}

/* Ramadan Slider */
ramdan--slider {
  display: block;
  min-width: 100%;
  height: 85vh;
  overflow: hidden;
  direction: ltr;
  position: relative;
}

slider--image {
  position: absolute;
  width: 100%;
  z-index: 0;
  animation-name: fadeIn;
  top: 0;
  width: 100%;
  height: 100%;
}

slider--image:after {
  content: '';
  position: absolute;
  width: 100%;
  background: linear-gradient(0deg, #181d25, transparent);
  padding-top: 250px;
  z-index: 1;
  bottom: 0;
}

slider--image:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(-90deg, #121820 15%, #12182000);
}

slider--image img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 100%;
  object-position: top;
  height: 100%;
  object-fit: cover;
}

slider--image i {
  display: none !important;
}

slider--image a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Ramadan Slider Meta */
slider--metabox.Slider--MetaBox {
  width: 32vw;
  position: absolute;
  z-index: 1;
  flex-direction: column;
  padding: 0 2.344vw;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  top: calc(50% - 100px);
  right: 0;
  transform: translate(0, -50%);
}

slidebox--logo {
  display: block;
  width: 100%;
}

slidebox--logo > a {
  display: table;
  margin: 0 auto;
}

slidebox--logo img {
  max-width: 350px;
}

slider--box--ul {
  display: block;
  width: 100%;
  margin: 20px 0 0;
}

slider--box--ul > ul {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

slider--box--ul > ul > li {
  display: flex;
  align-content: center;
  align-items: center;
}

slider--box--ul > ul > li:after {
  content: '';
  display: inline-block;
  padding: 3px;
  margin: 0 .350vw;
  background: #8f8e94;
  border-radius: 5px;
}

slider--box--ul > ul > li.Data-RunTime {
  color: #fff;
}

slider--box--ul > ul > li.Data-Mpaa {
  border: 1px solid #ffffff75;
  border-radius: 5px;
}

slider--box--ul > ul > li.Data-Mpaa:after {
  display: none;
}

slider--box--ul > ul > li:last-child:after {
  opacity: 0;
}

slider--box--ul > ul > li > a {
  display: block;
  color: #fff;
  padding: 0 5px;
  font-weight: bold;
  font-size: 21px;
}

sliderbox--story {
  font-size: 20px;
  text-align: justify;
  color: #d6d4de;
  padding: 1vw 0;
  display: block;
  line-height: 30px;
  text-align: center;
}

slidebox--actors {
  display: block;
}

slidebox--actors > ul {
  display: flex;
}

slidebox--actors > ul > li {
  display: flex;
  align-content: center;
  align-items: center;
}

slidebox--actors > ul > li:before {
  content: '';
  display: block;
  padding: 3px;
  margin: 0 .481vw;
  background: #aca3cf;
}

slidebox--actors > ul > li > a {
  display: block;
  color: #fff;
}

slidebox--actions {
  display: table;
  margin: 0 auto;
  justify-content: space-between;
  padding: 1vw 0 0 0;
  text-align: center;
  min-width: 50%;
  align-content: center;
  align-items: center;
}

.SliceSection--SectionSeries slidebox--actions {
  margin-top: 25px;
}

slidebox--actions > div {
  position: relative;
  width: 100%;
  margin: 0 0 0 0.5vw;
  cursor: pointer;
  border: 0.078vw solid #ff2a0d;
  border-radius: 15px;
  background: linear-gradient(90deg, #0c9 0, #09f);
  overflow: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 1vw;
  transition: .5s all ease;
}

slidebox--actions > div > a {
  display: block;
  padding: 0.625vw 0;
  color: #fff;
}

slidebox--actions > div i {
  font-size: 40px;
  padding: 0 0 0 0.5vw;
  vertical-align: middle;
}

slidebox--actions > div:nth-child(2n) {
  padding: 0.625vw 0;
  margin: 0;
  background: #ffffff12;
  border: 0.078vw solid #ffffff2e;
}

slidebox--actions > div > a span {
  font-size: 1vw;
}

/* Ramadan Slider Navigation */
ramdan--slider .owl-item {
  position: relative;
  float: left;
  overflow: hidden;
  height: 100%;
  padding: 0 !important;
}

.Slider--Box--Item {
  position: relative;
  direction: rtl;
  height: 100%;
  display: flex;
  overflow: hidden;
  background: #eee;
}

innser--slider--root {
  display: block;
  height: 100%;
}

innser--slider--root > div {
  height: 100%;
}

innser--slider--root > div > div {
  height: 100%;
}

innser--slider--root .owl-dots {
  display: flex;
  position: absolute;
  justify-content: center;
  padding: 0vw 5vw;
  animation: fadein 2s;
  align-content: flex-end;
  width: 100%;
  bottom: 40px;
  height: max-content;
  align-items: center;
  direction: ltr;
  top: auto;
}

innser--slider--root .owl-dots > .owl-dot {
  cursor: pointer;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
  line-height: 100%;
  position: relative;
  min-width: 50px;
  font-size: 40px;
  border: 1px solid transparent;
  background: #ffffff03;
  transition: .3s all ease;
  opacity: .5;
  transform-origin: center bottom;
}

innser--slider--root .owl-dots > .owl-dot img {
  max-width: 250px;
  filter: drop-shadow(2px 4px 6px #00000024);
  height: 70px;
}

innser--slider--root .owl-dots > .owl-dot.active {
  z-index: 999;
  opacity: 1;
  border-color: #ffffff08;
}

slider--dots > ul {
  display: flex;
  justify-content: center;
  padding: 0vw 5vw;
  align-items: center;
  direction: ltr;
}

slider--dots > ul > li > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-onscroll {
  transform: translate(0px, -200px);
  opacity: 0;
}

slider--box--item {
  position: relative;
  direction: rtl;
  height: 100%;
  display: flex;
  overflow: hidden;
  background: #eee;
}

/* Fanous Animation */
section.HeroSecion .RightHero > img {
  position: absolute;
  right: 0;
  opacity: .3;
}

#work {
  width: 90px;
  margin: 0 auto;
  position: relative;
  top: -20px;
  animation-name: routate;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  float: right;
  transform: scale(.5);
  height: 10px;
  right: -30px;
}

#work #wire {
  margin: 0 auto;
  height: 130px;
  width: 10px;
  background: #363f4f;
  border: 5px #363f4f solid;
  position: absolute;
  top: -60px;
  left: -64px;
  display: none;
}

#work #c1 {
  position: absolute;
  z-index: 5;
  bottom: -190px;
  left: -90px;
}

#work .light {
  width: 100%;
  height: 100%;
  padding: 30px;
  margin: 0 auto;
  background: rgba(255, 155, 0, 0.08);
  border-radius: 100%;
  animation-name: flash;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  transform: rotate(-15deg);
}

#fanos {
  height: 180px;
  padding: 10px;
  margin: 0 auto;
  position: absolute;
  top: -20px;
  right: 20px;
}

#small-circle {
  margin: 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #261647;
  border: 5px #0c032e solid;
  position: relative;
  z-index: 5;
}

#half-circle {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 100%;
  background: #343d4d;
  border: 5px #0c032e solid;
}

#bottom-quppa {
  margin: 0 auto;
  position: relative;
  top: 50px;
  z-index: 3;
}

#line {
  margin: 0 auto;
  width: 200px;
  height: 30px;
  padding-top: 3px;
  background: #343d4d;
  border: 5px #0c032e solid;
  overflow: hidden;
  text-align: center;
}

#line .ball {
  width: 15px;
  height: 15px;
  margin: auto 5px;
  display: inline-block;
  border-radius: 100%;
  background: #40315a;
  border: 5px #0c032e solid;
}

#top-triangle {
  margin: 0 auto;
  width: 210px;
  height: 0;
  border-left: 25px transparent solid;
  border-right: 25px transparent solid;
  border-bottom: 30px #0c032e solid;
  position: relative;
  top: -5px;
}

#top-triangle:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
  width: 155px;
  height: 0;
  border-left: 15px transparent solid;
  border-right: 15px transparent solid;
  border-bottom: 20px #40315a solid;
}

#box {
  width: 170px;
  margin: 0 auto;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  top: -10px;
  z-index: 1;
  border: 5px #0c032e solid;
}

#box #candel {
  height: 60px;
  width: 30px;
  background: #ffffff;
  border: 5px #0c032e solid;
  border-bottom: 0;
  position: absolute;
  z-index: 1;
  left: 65px;
  bottom: 0;
}

#box #candel:after {
  content: '';
  display: block;
  margin: 0 auto;
  position: relative;
  top: -20px;
  width: 10px;
  height: 15px;
  border-radius: 100%;
  background: #ff9b00;
  border: 5px #0c032e solid;
}

#box #col {
  margin: 0 auto;
  width: 90px;
  height: 170px;
  border-left: 5px #0c032e solid;
  border-right: 5px #0c032e solid;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
}

#final {
  position: relative;
  z-index: 4;
  top: -15px;
}

#last-triangle {
  margin: 0 auto;
  width: 245px;
  height: 0;
  border-left: 25px transparent solid;
  border-right: 25px transparent solid;
  border-bottom: 25px #0c032e solid;
  position: relative;
  top: -5px;
}

#last-triangle:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
  width: 190px;
  height: 0;
  border-left: 15px transparent solid;
  border-right: 15px transparent solid;
  border-bottom: 15px #40315a solid;
}

.LogoHeroText {
  overflow: visible !important;
}

/* Fanous Elements */
.circle-1 {
  position: absolute;
  top: 20%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFF3CD;
}

.circle-2 {
  position: absolute;
  top: 15%;
  left: -5%;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: rgba(255, 243, 205, .5);
}

.circle-3 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: rgba(255, 243, 205, .2);
}

.rope-1 {
  position: absolute;
  left: 30%;
  width: 5%;
  height: 60%;
  z-index: 99999;
}

.rope-2 {
  position: absolute;
  right: 23%;
  width: 5%;
  height: 60%;
  transform: translate(0px, -190px);
  transition: .4s all ease;
}

.string {
  position: absolute;
  left: 45%;
  width: 2px;
  height: 10%;
  background: #343944;
}

.circle-string {
  position: absolute;
  bottom: 10%;
  width: 100%;
  height: 8%;
  border-radius: 50%;
  border: 3px solid #343d4d;
}

.fanous-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 90%;
}

.circle-hold {
  position: absolute;
  top: -3%;
  left: 45%;
  width: 10%;
  height: 5%;
  border-radius: 50%;
  border: 3px solid #343d4d;
  background: #F1ECD0;
}

.top-layer {
  position: absolute;
  top: 1%;
  left: 10%;
  width: 80%;
  height: 20%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border: 3px solid #343d4d;
  background: #8F7E70;
  overflow: hidden;
}

.inner-top-layer {
  position: absolute;
  width: 50%;
  top: -2px;
  left: 25%;
  height: 110%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border: 3px solid #343d4d;
}

.mid-layer {
  position: absolute;
  top: 20.5%;
  width: 100%;
  height: 10%;
  background: #343d4d;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.mid-layer-left {
  position: absolute;
  left: 1%;
  top: 2%;
  width: 30%;
  height: 98%;
  background: #907F6F;
  clip-path: polygon(40% 5%, 100% 5%, 100% 100%, 5% 100%);
}

.mid-layer-mid {
  position: absolute;
  left: 33%;
  top: 2%;
  width: 34%;
  height: 98%;
  background: #907F6F;
  clip-path: polygon(0 5%, 100% 5%, 100% 100%, 0 100%);
}

.mid-layer-right {
  position: absolute;
  right: 1%;
  top: 2%;
  width: 30%;
  height: 98%;
  background: #907F6F;
  clip-path: polygon(0 5%, 65% 5%, 95% 100%, 0 100%);
}

.bottom-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70%;
  border: 3px solid #343d4d;
  background: #907F6F;
}

.left-side {
  position: absolute;
  width: 30%;
  height: 100%;
}

.mid-side {
  position: absolute;
  left: 30.5%;
  width: 39%;
  height: 100%;
  border-left: 3px solid #343d4d;
  border-right: 3px solid #343d4d;
}

.right-side {
  position: absolute;
  right: 0;
  width: 30%;
  height: 100%;
}

.left-glow {
  position: absolute;
  left: 10%;
  top: 2.5%;
  width: 80%;
  height: 95%;
  border: 3px solid #343d4d;
  background: #FFD84F;
}

.right-glow {
  position: absolute;
  left: 10%;
  top: 2.5%;
  width: 80%;
  height: 95%;
  border: 3px solid #343d4d;
  background: #FFD84F;
}

.mid-glow {
  position: absolute;
  left: 10%;
  top: 2.5%;
  width: 80%;
  height: 95%;
  border: 3px solid #343d4d;
  background: #E60290;
}

/* Fanous 2 */
.fanous-2 {
  position: absolute;
  top: 6%;
  right: 10.5%;
  width: 30%;
  height: 40%;
  transform: translate(0px, -190px);
  transition: .4s .1s all ease;
}

.fanous-container {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 100%;
  border-radius: 150px;
  overflow: hidden;
  border: 3px solid #343d4d;
  background: #CAB381;
}

.inner-fanous-container {
  position: absolute;
  top: -1%;
  left: 30%;
  width: 40%;
  height: 102%;
  border-radius: 150px;
  border: 3px solid #343d4d;
}

.fanous-2-face {
  position: absolute;
  top: 20%;
  width: 100%;
  height: 60%;
  border: 3px solid #343d4d;
  background: #CAB284;
}

.pillar {
  position: absolute;
  top: -10%;
  width: 15%;
  height: 120%;
  border: 3px solid #343d4d;
  background: #CAB381;
}

.pillar-copy {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #CAB381;
  z-index: 2;
}

.fanoos-pilar-1 {
  left: -2%;
}

.fanoos-pilar-2 {
  left: 43%;
}

.fanoos-pilar-3 {
  right: -2%;
}

.top-circle {
  position: absolute;
  top: -10%;
  left: 12.5%;
  width: 75%;
  height: 10%;
  border: 3px solid #343d4d;
  border-radius: 50%;
  background: #CAB284;
}

.bottom-circle {
  position: absolute;
  bottom: -10%;
  left: 12.5%;
  width: 75%;
  height: 10%;
  border: 3px solid #343d4d;
  border-radius: 50%;
  background: #CAB284;
}

.needle {
  position: absolute;
  left: 42.5%;
  top: -15%;
  width: 15%;
  height: 130%;
  background: #343d4d;
}

.glass-glow-l {
  position: absolute;
  left: 13%;
  top: 15%;
  width: 30%;
  height: 70%;
  border: 3px solid #343d4d;
  border-radius: 50%;
  background: #ffcc26;
}

.glass-glow-r {
  position: absolute;
  right: 13%;
  top: 15%;
  width: 30%;
  height: 70%;
  border: 3px solid #363e4e;
  border-radius: 50%;
  background: #ffcc26;
}

.circle-hold-fanous-2 {
  position: absolute;
  top: -7%;
  left: 46%;
  width: 8%;
  height: 10%;
  border: 3px solid #343d4d;
  background: #CAB284;
}

.fanous-2-hold {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  z-index: 99999;
  pointer-events: none;
  opacity: .13;
  transform: scale(.7);
  transform-origin: top;
}

.LoadedBody .fanous-2,
.LoadedBody .rope-2 {
  transform: translate(0);
}

.fanous-1-hold {
  position: absolute;
  top: 0;
  right: 5%;
  width: 300px;
  height: 300px;
  z-index: 99;
  pointer-events: none;
  transform: scale(.5);
  transform-origin: top;
  opacity: .15;
}

.fanous-3-hold {
  position: absolute;
  top: 0;
  right: 10%;
  width: 300px;
  height: 300px;
  z-index: 9;
  pointer-events: none;
  transform: scale(.75);
  transform-origin: top;
  opacity: .06;
}

.fanous-4-hold {
  position: absolute;
  top: 0;
  right: 16%;
  width: 300px;
  height: 300px;
  z-index: 9;
  pointer-events: none;
  transform: scale(1);
  transform-origin: top;
  opacity: .1;
}

.fanous-5-hold {
  position: absolute;
  top: 0;
  right: 30%;
  width: 300px;
  height: 300px;
  z-index: 99999;
  pointer-events: none;
  opacity: .13;
  transform: scale(2);
  transform-origin: top;
}

/* Search Categories */
ul.searchCats {
  display: table;
  margin: 0 auto;
  text-align: center;
}

ul.searchCats a {
  float: right;
  padding: 5px 30px;
  color: #FFF;
  border: 1px solid #ffffff2e;
  margin: 0 5px;
  border-radius: 45px;
}

/* Responsive Design - Desktop */
@media only screen and (max-width: 1300px) {
  .leftSingle .MetaTermsInfo > li {
    min-width: 100%;
  }
  .WorkTeam {
    width: calc(100% + 680px);
    margin-right: -700px;
  }
  .HoldINfo {
    min-height: 650px;
  }
  .PosterShape {
    bottom: auto;
    height: 600px;
    overflow: hidden;
    top: 0;
  }
}

@media only screen and (max-width: 1150px) {
  section.HeroSecion .RightHero {
    width: 48%;
  }
  .LeftHero {
    width: 52%;
  }
}

@media only screen and (max-width: 1024px) {
  .HoldINfo {
    min-height: 0px;
  }
  .topBarSingle {
    width: 100%;
    display: block;
  }
  section.HeroSecion,
  section.HeroSecion.TaxHero {
    overflow: hidden;
  }
  .PopupTrailer .content {
    width: 80%;
    height: 60%;
  }
  .trailerIFrame {
    display: block;
    width: 100%;
    height: 100%;
  }
  .PageHeader .MenuHeader {
    display: none;
  }
}

/* Responsive Design - Tablet (continued) */
@media only screen and (max-width: 970px) {
  section.HeroSecion.TaxHero form.SearchFormHero {
    float: none;
  }
  section.HeroSecion.TaxHero .RightHero {
    padding: 20px;
  }
  section.HeroSecion .RightHero .LogoHero {
    margin: 30px 0 80px;
    padding: 0 30px;
  }
  .SocialMediaHero {
    float: left;
    margin-top: 16px;
  }
  form.SearchFormHero input[type="text"] {
    width: calc(100% - 160px);
  }
  section.HeroSecion .RightHero {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
    height: auto;
  }
  .LeftHero {
    width: 100%;
    float: none;
  }
  .rightSingle {
    display: block;
    width: 100%;
    float: none;
  }
  .leftSingle {
    float: none;
    width: 100%;
    padding: 20px 20px 0;
  }
  .WorkTeam {
    margin: 15px 0 0;
    width: 100%;
  }
  .leftSingle .MetaTermsInfo {
    margin: 0;
  }
  ul.LinksList {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  ul.LinksList a {
    display: inline-block;
    float: none;
    margin-bottom: 0;
  }
}

/* Responsive Design - Mobile Large */
@media only screen and (max-width: 768px) {
  .HoldINfo {
    min-height: 0px;
  }
  .formPage {
    width: calc(100% - 30px);
  }
  .ElshaikhNet {
    margin-bottom: 60px;
  }
  .SeasonsListHolder > ul > li {
    float: right;
    width: calc((100% - 15px) / 2);
    padding: 0 10px;
  }
  .SeasonsListHolder > ul > li:nth-child(even) {
    margin-right: 15px;
  }
  .SeasonsListHolder > ul {
    display: table;
    width: 100%;
    padding: 0 10px;
  }
  .SeasonsListHolder {
    display: block;
    float: none;
    width: 100%;
  }
  .ContainerEpisodesList {
    float: none;
    width: 100%;
  }
  section.HeroSecion.TaxHero .LeftHero {
    display: none;
  }
  .Blocks-UL {
    margin: 0;
    width: 100%;
  }
  .containerServers {
    float: none;
    width: 100%;
  }
  .containerServers > ul > li {
    float: right;
    width: 50%;
    border-radius: 75px;
  }
  .containerIframe {
    float: none;
    width: 100%;
    margin: 15px 0 0;
  }
  .WorkTeamSlider .info-lists {
    flex: 0 0 48%;
    margin: 0 1% 14px;
  }
}

/* Responsive Design - Mobile Medium */
@media only screen and (max-width: 670px) {
  ajaxpage#SiteInner {
    overflow-x: hidden;
  }
  .HoldINfo {
    min-height: 0px;
  }
  section.HeroSecion .RightHero .LogoHero > a {
    transform: scale(.8);
    transform-origin: top;
    margin-bottom: -50px;
  }
  .MenuPopup .MenuPopupContent > ul li.MenuPopupItem > a span {
    font-size: 14px;
  }
  .MenuPopup .MenuPopupContent > ul li.MenuPopupItem {
    display: inline-block;
    width: 140px;
    margin-bottom: 10px;
  }
  .MenuPopup .MenuPopupContent {
    width: 85%;
    padding: 30px 0 20px;
  }
  .MenuPopup .MenuPopupContent > ul {
    display: table;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .NightMode .DarkMode,
  .NightMode .LoggedINUser .LoggedINUserBtn,
  .NotificationListBTN {
    height: 35px;
    line-height: 35px;
  }
  .SearchingNow section.searching-section {
    height: calc(100vh - 95px);
    top: 120px;
  }
  .search-contentarea {
    float: none;
    width: 100%;
  }
  section.searching-section ul.search-filter {
    float: none;
    height: auto;
    width: 100%;
    display: block;
  }
  section.searching-section ul.search-filter li {
    float: right;
    width: 25%;
    height: 60px;
  }
  section.searching-section ul.search-filter li span i {
    display: none;
  }
  .CatBlocks .Head .titleC span {
    font-size: 14px;
  }
  form.UserPageForm {
    width: 100%;
  }
  section.HeroSecion .RightHero .LogoHero {
    margin-bottom: 20px;
  }
  .SocialMediaHero {
    float: none;
    display: table;
    margin: 0 auto;
  }
  form.SearchFormHero {
    float: none;
    display: inline-flex;
    width: 100%;
  }
  .containerServers > ul > li {
    float: none;
    width: 100%;
  }
  .rightSingle .Poster {
    float: none;
    display: table;
    margin: 0 auto;
  }
  .rightSingle .hold {
    height: auto;
    padding: 0;
  }
  .InfoPartOne {
    display: block;
    float: none;
    position: relative;
    padding: 15px 20px;
    height: auto;
    margin-top: 20px;
  }
  .PosterShape {
    left: 0;
    width: 100%;
    right: 0;
  }
  .infoPosterTwo {
    position: relative;
    right: 0;
    width: 100%;
    padding: 0;
    margin: 15px 0;
    display: table;
    width: 100%;
  }
  a.SlidesNext,
  a.SlidesPrev {
    line-height: 58px;
    height: 50px;
    overflow: hidden;
    text-align: center;
    padding: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #343d4d;
    font-size: 37px;
    width: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
  }
  a.SlidesPrev {
    left: 20px;
  }
  a.SlidesNext {
    right: 20px;
  }
  .UserBar {
    padding: 0 20px;
    height: auto;
  }
  .UserBar > li {
    width: 50%;
    text-align: center;
  }
  .UserBar > li > a > i {
    display: none;
  }
  .UserImage,
  .PIC,
  .infoUserArea {
    float: none;
    display: table;
    margin: 0 auto;
    position: relative;
    top: 0;
    right: 0;
    border: 0;
    padding: 0;
  }
  .PIC {
    margin: 15px;
  }
  .UserPageRight header.UserHeaderCover {
    height: 480px;
  }
  .UserImage > h4 {
    display: block;
    padding: 0;
    float: none;
  }
  .infoUserArea {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .infoUserArea > li {
    margin: 0;
    width: 50%;
  }
  header.UserHeaderCover:after {
    height: 550px;
  }
  .TaxFilter {
    width: 280px;
  }
  .DropdownButton:nth-child(1) .TaxFilter,
  .DropdownButton.active:nth-child(1) .TaxFilter,
  .DropdownButton:last-child .TaxFilter,
  .DropdownButton.active:last-child .TaxFilter {
    transform: translate(-50%) scale(1);
    left: 50%;
    right: auto;
  }
  .filteringMore {
    display: block;
    width: 310px;
    padding: 0 20px;
  }
  .DropdownButton {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .SlidersFilter {
    padding: 0 30px !important;
  }
  .SlidersFilter > a {
    float: right !important;
    width: 48% !important;
  }
  ul.LinksList a span {
    font-size: 15px !important;
  }
  header.PageHeader {
    height: 120px;
  }
  .WorkTeamSlider .info-lists {
    flex: 0 100%;
    margin: 0 0 14px;
  }
}

/* Responsive Design - Mobile Small */
@media only screen and (max-width: 490px) {
  #RelatedTerms {
    margin-top: 10px !important;
  }
  ul.LinksList a span {
    vertical-align: middle;
    text-align: center;
  }
  ul.LinksList a i {
    display: none !important;
  }
  .SlidersFilter {
    padding: 0 30px !important;
  }
  .SlidersFilter > a {
    float: right !important;
    width: 48% !important;
  }
  ul.LinksList a span {
    font-size: 15px !important;
  }
  a.newAcc {
    width: calc(100% - 60px);
  }
  .ElshaikhNet {
    width: 290px;
  }
  .LoggedINUser .LoggedINUserBtn > i {
    display: none;
  }
  .SeasonsListHolder > ul > li i {
    display: none;
  }
  .CatBlocks .Head {
    height: auto;
  }
  .CatBlocks .Head .titleC {
    float: none;
    display: block;
    width: 100%;
  }
  .CatBlocks .Head .titleC span {
    width: calc(100% - 40px);
    text-align: center;
  }
  .CatBlocks .Head .titleC span em {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 0 10px;
  }
  .PageHeader .LeftHeader {
    float: none;
    display: table;
    margin: 8px auto 0;
  }
  .BreadCrumbs ol {
    white-space: inherit;
    text-align: center;
  }
  .PageHeader .LeftHeader .UserArea > a {
    font-size: 14px;
    padding: 0 13px;
    height: 35px;
    line-height: 35px;
  }
  .PageHeader .LeftHeader .SearchBtn {
    margin-top: 0;
    height: 35px;
    line-height: 35px;
  }
  .DarkMode {
    margin: 0 10px 0 0;
    height: 35px;
  }
  .LoggedINUser .LoggedINUserBtn {
    height: 35px;
  }
  .LoggedINUser .LoggedINUserBtn span {
    line-height: 22px;
  }
  .DarkMode > svg {
    width: 39px;
    height: 37px;
  }
  .PageHeader .LeftHeader .UserArea {
    padding: 0;
  }
  .infoUserArea > li {
    width: 210px;
    text-align: center;
  }
  section.HeroSecion.TaxHero form.SearchFormHero {
    width: 100%;
    float: none;
  }
  .WatchButtons > a {
    display: table;
    width: 100%;
    float: none;
    margin: 10px 0;
  }
  .WatchButtons a.downloadBTn {
    margin-right: 0;
  }
  header.PageHeader .HeaderLogo {
    float: none;
    display: table;
    margin: 0 auto;
  }
  .PageHeader .MenuBtn {
    position: absolute;
  }
  .singleMaster {
    overflow: hidden;
  }
  .container {
    width: calc(100% - 40px);
  }
  .leftSingle .MetaTermsInfo > li {
    margin-left: 0;
  }
  .leftSingle {
    padding: 20px 0;
  }
  ul.LinksList a {
    float: none;
    display: table;
    width: 100%;
    text-align: center;
    padding-left: 0;
    width: 100%;
    margin: 7px 0;
  }
  .SectionContent .SlidersFilter a {
    width: 47% !important;
    margin: 5px 4px !important;
  }
  ul.LinksList {
    width: 100%;
  }
  .AboElSeed > * {
    display: block;
    text-align: center;
  }
  .ElshaikhNet h2 {
    display: table;
    float: none;
    margin: 0 auto;
    width: 250px;
  }
  .ElshaikhNet > span {
    float: none;
    display: table;
    margin: 0 auto;
  }
  .topBarSingle .shortLink {
    width: 100%;
    float: none;
  }
  .topBarSingle {
    display: block;
    width: 100%;
  }
  .topBarSingle .shortLink > span {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 8px;
  }
  .topBarSingle .shortLink > input {
    float: none;
    width: 100%;
    margin: 0 0 15px;
  }
  .topBarSingle .socialShare {
    display: table;
    margin: 0 auto;
    float: none;
  }
  .TaxPageFilter > ul {
    width: 100%;
    display: block;
  }
  .TaxPageFilterDrop {
    width: calc(200% + 10px);
  }
  .RatingFilter > span {
    display: none;
  }
  .RatingFilter > h4 {
    display: block !important;
    font-size: 20px;
    height: 30px;
    background: #ffa93e;
    width: 130px;
    margin: 10px auto;
    border-radius: 60px;
    color: #333;
  }
  .RatingFilter > ul {
    float: none;
    display: table;
    width: auto;
    padding: 10px 10px 1px;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
  .RatingFilter {
    width: 100%;
  }
  .RatingFilter > ul span {
    margin-left: 5px;
    display: inline-block;
    float: none;
  }
  .TermBTNs {
    width: 100%;
    float: none;
    display: table;
  }
  .TermBTNs > div {
    margin: 0;
  }
  .TermBTNs > div.FollowTerm {
    margin: 0 0 10px;
  }
  .TermBTNs > div i,
  .TermBTNs > div span {
    float: none;
    vertical-align: top;
  }
  .NotifcationsLists {
    width: 300px;
    left: -30px;
  }
  .BarWatchRating .WatchBtnSlide i {
    display: none;
  }
  .BarWatchRating .WatchBtnSlide em {
    display: block;
    float: none;
  }
  .ContainerEpisodesList > a {
    min-width: 141px;
  }
  a.prous {
    padding: 0 8px;
    line-height: 31px;
    margin-top: 0;
  }
  .LoggedINUser .LoggedINUserBtn {
    padding: 8px 2px;
  }
  .LoggedINUser .LoggedINUserBtn span {
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 90px;
  }
  .PageHeader .LeftHeader .SearchBtn {
    margin-left: 6px;
  }
}

/* Responsive Design - Mobile Very Small */
@media only screen and (max-width: 390px) {
  .PostActions > div > div:not(.RatingImdb) span {
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .PostActions > div i {
    display: none;
  }
  .SlidersFilter {
    padding: 0 30px !important;
  }
  .SlidersFilter > a {
    float: right !important;
    width: 48% !important;
  }
  ul.LinksList a span {
    font-size: 15px !important;
  }
  .MenuPopup .MenuPopupContent > ul li.MenuPopupItem {
    width: 120px;
  }
  .PostActions {
    float: right;
    width: 50%;
    height: auto;
  }
  .PostActions > div {
    width: 100%;
    height: 193px;
  }
  .rightSingle .Poster {
    width: 100%;
  }
  .PostActions > div i {
    display: none;
  }
  .UsersRate {
    float: left;
    display: block;
    width: 49%;
    text-align: center;
  }
  .c100 {
    display: table;
    margin: 0 auto -20px;
    transform-origin: center top;
  }
}

/* Mobile Media Queries for Ramadan Slider */
@media(max-width: 600px) {
  slider--image:before {
    display: none;
  }
  innser--slider--root .owl-dots {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  slidebox--actions > div {
    box-shadow: 0 0 10px #00000054;
    border-color: transparent;
  }
  innser--slider--root,
  .owl-stage-outer,
  ramdan--slider {
    height: auto;
  }
  ramdan--slider .owl-item {
    height: 90vh;
  }
  innser--slider--root .owl-dots > .owl-dot {
    flex: 0 0 33.33333%;
  }
  innser--slider--root .owl-dots > .owl-dot img {
    max-width: 70px;
    height: auto;
  }
  slider--metabox.Slider--MetaBox {
    width: 100%;
  }
  slidebox--actions {
    display: none;
  }
  slidebox--actions > div > a {
    font-size: 15px;
    padding: 10px 20px;
  }
  slidebox--logo {
    display: none;
  }
  slidebox--logo img {
    max-width: 230px;
  }
  slidebox--actions > div > a span {
    font-size: 15px;
  }
  slidebox--actions > div > a i {
    font-size: 19px;
  }
  slidebox--actions {
    margin-top: 10px;
  }
}

/* Night Mode Styles */
.NightMode {
  background: #e7e9ec;
}

.NightMode,
.NightMode a {
  color: #222;
}

.NightMode header.PageHeader {
  background: transparent;
  box-shadow: none;
}

.NightMode .PageHeader .MenuBtn span {
  background: #ce0000;
}

.NightMode .TitleCenteral h3 span,
.NightMode header.PageHeader .HeaderLogo > a > h4 > em {
  color: #ce0000;
}

.NightMode .BarWatchRating .WatchBtnSlide {
  color: #FFF;
  background: #ffffff14;
}

.NightMode .DarkMode,
.NightMode .LoggedINUser .LoggedINUserBtn,
.NightMode .NotificationListBTN {
  background: #ffffff;
  border: 1px solid #DDD;
}

.NightMode .DarkMode svg,
.NightMode .DarkMode svg * {
  fill: #222;
}

.NightMode section.HeroSecion {
  background: transparent;
}

.NightMode section.HeroSecion .RightHero {
  background: transparent;
}

.NightMode a.SlidesNext {
  background: transparent;
  color: #1f1f1f;
  padding-left: 40px;
}

.NightMode a.SlidesPrev {
  background: transparent;
  color: #1f1f1f;
  padding-right: 40px;
}

.NightMode span.afterSlide {
  background: #DDD;
  height: 1px;
  margin-bottom: 0;
}

.NightMode section.HeroSecion .RightHero .LogoHero > a,
.NightMode .DropdownButton > span > span {
  color: #ce0000;
}

.NightMode section.HeroSecion .RightHero .LogoHero p.description {
  color: #949494;
}

.NightMode form.SearchFormHero {
  box-shadow: none;
  border: 1px solid #DDD;
}

.NightMode .SlideItem {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}

.NightMode .SlideItem > a .InfoBox:after,
.NightMode .MovieBlock > a > .Poster:after {
  background: linear-gradient(0deg, #192a46 6%, #192a4600);
}

.NightMode .DropdownButton > span {
  background: #f4f3f3;
  border: 1px solid #DDD;
  color: #222;
}

.NightMode .DropdownButton > span i {
  background: #0000000a;
}

.NightMode .HoverAfter:after {
  background: #00000014;
}

.NightMode .Ribbon {
  color: #fff;
  background: #ce0000;
}

.NightMode .MovieBlock {
  background: #192a46;
}

.NightMode .topBarSingle .shortLink > input {
  background: #fff;
  color: #222;
  border: 1px solid #DDD;
}

.NightMode .leftSingle .MetaTermsInfo > li .icon {
  color: #3a3a3a;
}

.NightMode .leftSingle .MetaTermsInfo > li::after {
  background: #55555512;
}

.NightMode .PosterShape:before {
  background: linear-gradient(to right, #e7e9ec 10%, #e7e9ec00 80%);
}

.NightMode .PosterShape:after {
  background: linear-gradient(to bottom, #e7e9ec00 0%, #e0e2e5 100%);
}

.NightMode .PosterShape {
  box-shadow: 0 0 100px 100px rgb(255 255 255 / 60%);
}

.NightMode .BreadCrumbs {
  background: #3e3d3d38;
  box-shadow: none;
}

.NightMode .InfoPartOne {
  background: #dddddd26;
  box-shadow: 0 0 10px #00000021;
}

.NightMode .StoryLine,
.NightMode .StoryLine p {
  color: #3e3e3e;
  border-color: #22222224;
}

.NightMode .leftSingle .MetaTermsInfo > li > a {
  border-color: #bdbdbd;
}

.NightMode .WorkTeamIteM {
  background: #f2f2f2;
}

.NightMode .WorkTeamIteM > a h4 {
  background: linear-gradient(0deg, #d0d0d0 15%, #181d2500);
  color: #222;
}

.NightMode .WorkTeamIteM > a h4 span {
  color: #222;
}

.NightMode a.WorkTeamNext {
  background: linear-gradient(to left, #d0d0d0 8%, #20262f00);
}

.NightMode a.WorkTeamPrev {
  background: linear-gradient(to right, #d0d0d0 8%, #20262f00);
}

.NightMode .WorkTeamIteM > a i {
  color: #22222242;
}

.NightMode .infotitle > span b {
  color: #ce0000;
}

.NightMode .leftSingle .MetaTermsInfo > li > span {
  color: #222;
}

.NightMode .NotificationListBTN > span {
  background: #e7e9ec;
}

.NightMode .NotifcationsLists {
  background: #f2f3f4;
}

.NightMode .NotficiationItemContent > span em,
.NightMode .ElshaikhNet h2 a em {
  color: #ce0000;
}

.NightMode ul.LinksList a,
.NightMode .ContainerEpisodesList > a,
.NightMode .SeasonsListHolder > ul > li,
.NightMode .TaxPageFilterItem > span {
  background: #f4f3f3;
  border: 1px solid #DDD;
  color: #222;
}

.NightMode ul.LinksList a span,
.NightMode .SeasonsListHolder > ul > li > span {
  color: #ce0000;
}

.NightMode ul.LinksList a i {
  background: #00000012;
}

.NightMode ul.LinksList a:hover,
.NightMode ul.LinksList a.active,
.NightMode .SeasonsListHolder > ul > li.active,
.NightMode .SeasonsListHolder > ul > li:hover {
  background: #ce0000;
  color: #dedede;
}

.NightMode ul.LinksList a:hover span,
.NightMode ul.LinksList a.active span,
.NightMode .SeasonsListHolder > ul > li.active > span,
.NightMode .SeasonsListHolder > ul > li:hover > span {
  color: #FFF;
}

.NightMode .WatchButtons > a.downloadBTn i,
.NightMode .WatchButtons > a.watchBTn i {
  color: #FFF;
}

.NightMode .ElshaikhNet {
  background: #57769212;
}

.NightMode .ElshaikhNet h2 {
  background: #55555512;
}

.NightMode .pagination > ul > li > *,
.NightMode .pagination > ul > li {
  background: #57769212;
  color: #222;
}

.NightMode .RatingImdb {
  background: #dedede;
}

.NightMode .PostActions > div > div:not(.RatingImdb) {
  border: 1px solid #DDD;
}

.NightMode .PostActions > div > div:not(.RatingImdb).AddFav.inList,
.NightMode .UserBar > li:hover > a,
.NightMode header.formHeader > h3 > em {
  color: #ce0000;
}

.NightMode .PostActions > div > div:not(.RatingImdb).AddWatched.inList {
  color: #5b4ed4;
}

.NightMode .PageHeader .MenuHeader > ul > li > ul {
  background: #fff;
}

.NightMode .PageHeader .MenuHeader > ul > li > ul a {
  color: #222;
}

.NightMode .DarkMode > .svg-1 {
  opacity: 1;
  visibility: visible;
}

.NightMode .DarkMode > .svg-2 {
  opacity: 0;
  visibility: hidden;
}

.NightMode .UserBar {
  background: #ddd;
  box-shadow: 0 -1px 10px #00000052;
}

.NightMode .UserBar > li:hover,
.NightMode .UserBar > li.active {
  background: #EEE;
}

.NightMode .UserBar > li > a {
  color: #222;
}

.NightMode header.UserHeaderCover:after {
  background: linear-gradient(0deg, #192a46 6%, #192a4600);
}

.NightMode .TaxFilter {
  background: #e7e9ec;
  box-shadow: 0 0 20px #0000004a;
}

.NightMode .TaxFilterTitle > input {
  background: #DDD;
  color: #222;
}

.NightMode .TaxFilter > ul > li {
  background: #DDD;
  color: #222;
}

.NightMode .PageHeader .LeftHeader .SearchBtn {
  color: #555;
}

.NightMode section.searching-section {
  box-shadow: none;
  background: #f1f1f1;
  color: #222;
}

.NightMode .c100 {
  box-shadow: 0 0 10px #00000036;
}

.NightMode .LikesBTn > div {
  box-shadow: 0 0 10px #00000036;
}

.NightMode .formPage {
  background: #57769212;
}

.NightMode .formPage::after {
  background: #55555512;
  border: 1px solid #cacaca;
}

.NightMode .TaxPageFilterDrop {
  background: #FFF;
}

.NightMode .TaxPageFilterDrop ul li {
  background: #DDD;
  color: #222;
}

.NightMode .TaxPageFilterDrop ul li.active {
  background: #ce0000;
  color: #FFF;
}

.NightMode .HeroTitle {
  background: #f4f3f3;
  border: 1px solid #DDD;
}

.NightMode .RatingFilter {
  background: #FFF;
  border: 1px solid #DDD;
}

.NightMode .RatingFilter > ul span {
  background: #DDD;
}

.NightMode .RatingFilter > span {
  color: #222;
}

.NightMode .TermBTNs > div.AddToMyHome {
  background: #DDD;
  border: 1px solid #c7c7c7;
}

.NightMode .CatBlocks .Head {
  background: #ffffff;
  border: 1px solid #DDD;
  border-bottom: 0;
}

.NightMode .CatBlocks .Head .titleC span em {
  color: #ce0000;
}

.NightMode .CatBlocks .SliderInSection {
  background: #f1f1f1;
  border: 1px solid #DDD;
  border-top: 0;
}

.NightMode .SectionMaster .titleSection {
  background: #fff;
  border: 1px solid #ddd;
}

.NightMode a.MoreFromSection {
  color: #fff;
  background: #ce0000;
}

.NightMode .SectionMaster .titleSection .rightTitleSection > i {
  background: #e0e0e0;
}

.NightMode .owl-item.active .SlideItem {
  box-shadow: 0 0 10px #00000085;
}

.NightMode .containerServers > ul > li.active,
.NightMode .TaxFilter > ul > li.active {
  background: #d02223;
  color: #fff;
}

.NightMode .containerServers > ul {
  background: #DDD;
  border: 1px solid #DDD;
}

.NightMode .containerServers > ul > li > span {
  color: #222;
}

.NightMode .containerServers > ul > li.active span {
  color: #FFF;
}

.NightMode .containerIframe {
  border-color: #c7c7c7;
}

.NightMode .containerServers > ul > li > i {
  background: #DDD;
  color: #222;
  border: 1px solid #b5b5b5;
}

.NightMode .spinner > div {
  background: #222;
}

.NightMode .LiveSearch {
  background: #fdfdfd;
}

.NightMode .LiveSearchInner > h3 {
  border-color: #22222214;
}

.NightMode .SearchHistoryUL li {
  border-color: #DDD;
}

.NightMode .SearchHistoryUL li:hover {
  background: #ddddddd1;
}

.NightMode header.PageHeader .HeaderLogo > a img.imgLogo.dark {
  opacity: 1;
}

.NightMode header.PageHeader .HeaderLogo > a img.imgLogo:not(.dark) {
  opacity: 0;
  visibility: hidden;
}

.NightMode .MenuPopup .MenuPopupContent > ul li.MenuPopupItem > a {
  color: #fff;
}

.NightMode .MovieBlock .spinner > div,
.NightMode .search-contentarea .spinner > div {
  background: #FFF;
}

.NightMode .search-contentarea .MovieBlock > a > .Poster:after {
  background: linear-gradient(0deg, #1e252f 15%, #181d2500);
}

.NightMode .search-contentarea .MovieBlock {
  background: #1e252f;
}

.search-contentarea .Blocks-UL .MovieBlock {
  min-width: 227px;
}

.NightMode li.latestLi > a {
  background: #f00 !important;
  color: #FFF;
}

.NightMode li.latestLi a:before {
  background: #00000029 !important;
}

.NightMode h3.NoHome {
  color: #333;
}

.NightMode .TermBTNs > div.AddToMyHome:hover {
  min-width: 230px;
  right: -10px;
  transition: .4s all ease;
}

.NightMode .search-contentarea .title-bar {
  background: #eaeaea;
  color: #5f5f5f;
}

.NightMode .search-contentarea .title-bar h3,
.NightMode .search-contentarea .SearchHistory > h4,
.NightMode ul.LastestSearhching > li a {
  color: #3c3939;
}

.NightMode ul.LastestSearhching > li {
  border-color: #c5c5c5;
}

.NightMode section.searching-section ul.search-filter {
  background: #f1f1f1;
}

.NightMode section.searching-section ul.search-filter li {
  box-shadow: none;
  border-block: 1px solid #DDD;
  color: #333;
}

.NightMode section.searching-section ul.search-filter li.active {
  background: #dcdada;
}

.NightMode .SlideItem > a .InfoBox:after {
  padding-top: 160%;
}

.NightMode section.searching-section ul.search-filter li:after,
.NightMode .HoverBefore:before {
  background: #00000029;
}

.NightMode header.formHeader > .img.dark {
  opacity: 1;
}

.NightMode .formGroup input,
.NightMode .formGroup select {
  background: #d3d7db;
  color: #222;
}

.NightMode .DownloadBlock .TitleCenteral {
  background: linear-gradient(-90deg, #d8d8d8 15%, #d8d8d800);
}

.NightMode a.downloadsLink {
  background: #dcdcdc;
}

.NightMode a.downloadsLink i {
  color: #31a24c;
}

.NightMode a.downloadsLink.ArabSeedServer {
  background: #fc0000;
  color: #FFF;
}

.NightMode a.downloadsLink.ArabSeedServer i {
  color: #FFF;
}

.NightMode h3.noEpus {
  color: #444;
}

.NightMode .ContainerEpisodesList > a.active,
.NightMode .ContainerEpisodesList > a:hover {
  background: #ce0000;
  color: #FFF;
}

.NightMode .SinglePageContent {
  background: #fff;
}

.NightMode .MovieBlock > a .number {
  color: #FFF;
}

body:not(.NightMode) .SlideMenu li.latestLi > a {
  background: #343d4d;
}

/* Final Styles */
.SliderInSection {
  opacity: 0;
  visibility: hidden;
  transition: .4s all ease;
}

.SliderInSection.show {
  opacity: 1;
  visibility: visible;
}

.leftSingle .MetaTermsInfo.noStory {
  margin-top: -15px;
}

p.likesCountP {
  font-size: 18px;
  position: absolute;
  z-index: 9999;
  color: #3db366;
  right: 50%;
  transform: translate(50%);
  width: 100%;
  bottom: 44px;
  opacity: 0;
  visibility: hidden;
}

.c100:hover p.likesCountP {
  opacity: 1;
  visibility: visible;
}

/* تم الانتهاء من تحسين الملف وإزالة جميع التكرارات مع الحفاظ على نفس الوظائف والأسماء */


.WatchButtons>a span p {
    display: block;
    text-align: center;
    padding: 0 10px;
    font-size: 12px;
    color: #DDD;
}

.WatchButtons> a.watchBTn {
    color: #ce0000;
}

.WatchButtons> a {
    float: right;
    border-radius: 3px;
    overflow: hidden;
    width: calc((100% - 15px) / 2);
    background: #333d4d6e;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    padding: 13px 20px;
    -webkit-box-shadow: 0 0 10px #00000061;
    box-shadow: 0 0 10px #00000061;
}

.watchBTn:hover .fas.fa-camera-movie {
    color: white;
}

.downloadBTn {
    color: #31a24c; /* لون النص والأيقونة */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.downloadBTn i {
    color: #31a24c; /* لون الأيقونة */
    transition: all 0.3s ease;
}

.downloadBTn:hover {
    background-color: #31a24c; /* الخلفية تتحول لأخضر */
    color: white; /* النص يتحول لأبيض */
}

.downloadBTn:hover i {
    color: white; /* الأيقونة تتحول لأبيض */
}
