.info_movie {
  position: absolute;
  z-index: 9;
  bottom: -127px;
  width: 100%;
  border-image: fill 0 linear-gradient(#0000000d, #000000ed);
  transition: all 0.5s ease;
}

.info_movie p {
  color: white;
  font-size: 12px;
}

.info_movie p:first-child {
  font-size: 15px !important;
}

.info_movie svg {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

.info_movie svg path {
  fill: #ffeb3b;
}

.info_movie .type {
  width: fit-content;
  background: #673ab7;
  padding: 0 5px;
  margin-top: 5px !important;
}

.movies.items .item .poster a img {
  position: relative;
}

.info_movie .contributors_img img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  border: 2px solid white;
}

.movies.items .item .poster {
  cursor: pointer;
}

.movies.items .item .poster {
  padding-top: 8px;
}

.movies.items .item .poster:hover .info_movie {
  bottom: 0;
}

.movies.items .item .poster a:before {
  display: none;
  transition: 0.3s;
}

.movies.items .item .poster:hover a:before {
  display: block;
}

/*? ANIMATION FOR FIRST SLIDER */

.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#slider .swiper-wrapper .item{
  display: none;
}
#slider .swiper-wrapper .item.show{
  display: block !important;
}

.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


/*? THIS ANIMATION FOR DESCRIPTION FIRST SLIDER */

.scale-up-ver-center {
  -webkit-animation: scale-up-ver-center 0.4s
    cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-ver-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes scale-up-ver-center {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }

  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

#featured .carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}

#featured .carousel .carousel-inner {
  height: 100%;
}

#featured .carousel .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
#featured .carousel .carousel-inner .carousel-item::after{
  content: '';
  position: absolute;
  background: #00000094;
  width: 100%;
  height: 100%;
}
#featured .carousel .carousel-inner .carousel-item::before{
  content: '';
  position: absolute;
  background-image: linear-gradient(#ffffff00, #000000ed);
  width: 100%;
  height: 400px;
  bottom: 0px;
}

#featured .carousel .carousel-inner .carousel-item .container {
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}
#featured .carousel .carousel-inner .carousel-item .container .slide-wrapper{
  position: relative;
  z-index: 99999;
}
#featured .carousel .carousel-inner .carousel-item .container a {
  background: transparent;
  border: none;
  padding: 0;
}
#slider .item .info .actions a{
  border-color: transparent !important;
  padding: 0;
}

/*? THIS ANIMATION FOR SECOND SLIDER */

.slide-top {
  -webkit-animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.scale-in-center {
  -webkit-animation: scale-in-center 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: scale-in-center 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*? STYLE BTN WATCH NOW */

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: #b70707;
  border-radius: 100px;
  font-weight: 600;
  color: white;
  box-shadow: 0 0 0 2px #007bff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
}

.animated-button svg {
  position: absolute;
  width: 24px;
  z-index: 9;
  border-radius: 50%;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #b70707;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #007bff;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

#featured .swiper-slide .slide-wrapper .info .start .name {
  font-size: 4.7em;
}

#slider .paging>span.active, #slider .paging>span.swiper-pagination-bullet-active, #slider .item .info .actions .watchnow:hover, .btn-outline-info:hover, .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show>.btn-outline-info.dropdown-toggle, #slider .item .info .meta .quality, .watch-extra section.info .info .meta .quality, section.bl .heading .tabs>span.active, .filmlist .item .icons>div.quality, #episodes .bl-seasons ul li.active, #episodes .bl-servers ul.episodes li a.active{
  background-color: #b70707;
}

#featured .swiper-slide .slide-wrapper .info .start .meta a:not(:last-child),
#featured .swiper-slide .slide-wrapper .info .start .meta span:not(:last-child),
.fab.fa-imdb {
  font-size: 19px;
}

#featured .swiper-slide .slide-wrapper .info .desc {
  color: rgb(172 172 172);
}

.top9.items .item:hover {
  background: #a66f6f6b;
}

.top9.items .item:hover > div span {
  color: white;
}

.top9.items .item:hover .info .name {
  color: white;
}

#featured .swiper-slide .slide-wrapper .actions .start .watchnow {
  border: none;
}

footer {
  margin-top: auto !important;
}

#w-info .info .name {
  line-height: 3.5rem !important;
}

swiper-slide {
  cursor: pointer;
}
#container___s_second swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  position: relative;
}

#container__s_second swiper-slide .info_m_s_second {
  position: absolute;
  z-index: 99;
  bottom: 0;
  border-image: fill 0 linear-gradient(#0000000d, #000000ed);
  width: 100%;
  color: white;
  padding: 15px;
  font-family: sans-serif;
}
#container__s_second swiper-slide .info_m_s_second h2 {
  font-size: 20px;
}
#container__s_second swiper-slide .info_m_s_second p {
  font-size: 12px;
  letter-spacing: 1px;
}
/*! loading */
.wapper_loading{
  position: fixed !important;
  z-index: 999;
  width: 100%;
  background: #000000d9;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  border: 4px solid red;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-right-color: transparent;
  animation: rot 1s linear infinite;
  box-shadow: 0px 0px 20px red inset;
}

@keyframes rot {
  100% {
    transform: rotate(360deg);
  }
}
/*! MEDIA QUERY */

@media (max-width: 1200px) {
  #featured .carousel .carousel-inner .carousel-item .container .name{
    font-size: 31px;
    color: white;
  }
  #featured .carousel .carousel-inner .carousel-item .container span{
    font-size: 12px;
    color: white;
  }
  #featured .carousel .carousel-inner .carousel-item .container .desc{
    font-size: 13px;
    margin: 12px 0;
  }
  #featured .carousel .carousel-inner .carousel-item .container span.text{
    font-size: 15px;
    margin-right: 5px;
  }
  #featured .carousel .carousel-inner .carousel-item .container a button{
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .container____f_slider swiper-slide {
    height: 400px;
  }
  #container___s_second swiper-slide {
    height: 100%;
  }
  .animated-button {
    padding: 4px 26px !important;
  }

  .animated-button:hover .arr-2 {
    left: 8px;
  }

  #featured .swiper-slide .slide-wrapper {
    margin-bottom: 0 !important;
  }

  #featured .swiper-slide .slide-wrapper .info .start .meta a:not(:last-child),
  #featured
    .swiper-slide
    .slide-wrapper
    .info
    .start
    .meta
    span:not(:last-child),
  .fab.fa-imdb {
    font-size: 16px;
  }

  #featured .swiper-slide .slide-wrapper .info .start .meta a,
  #featured .swiper-slide .slide-wrapper .info .start .meta span:not(.quality) {
    font-size: 15px;
    padding: 10px 0;
  }

  #featured .swiper-slide .slide-wrapper .info .start .name {
    font-size: 30px;
  }
  header {
    padding: 15px 0;
    background: #1f1f1f94;
    z-index: 9999;
    height: 80px;
  }
  header.active{
    height: auto !important;
  }
}
@media (min-width: 1201px){
  #featured .carousel .carousel-inner .carousel-item .container{
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }
  #featured .carousel .carousel-inner .carousel-item .container .name {
    color: white;
    font-size: 75px;
    font-weight: 600;
  }
  #featured .carousel .carousel-inner .carousel-item .container span {
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0;
    text-transform: capitalize;
    color: #f4f4f4;
  }
  
  #featured .carousel .carousel-inner .carousel-item .container .desc{
    margin: 10px 0;
    font-size: 17px;
    width: 50%;
  }
  
  #featured .carousel .carousel-inner .carousel-item .container a button{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
}