@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* common */
header {
  background-color: black;
  padding: 1rem 0 0 0;
  /* height: 220px; */
}
main {
  background: #1a1a20;
}

.navbar {
  background: linear-gradient(
    90deg,
    rgba(114, 214, 245, 0.1),
    rgba(200, 193, 221, 0.1) 50%,
    rgba(255, 148, 179, 0.1)
  );

  box-shadow: 0px 5px 10px -1px #14141f;
}
.navbar a {
  font-size: 14px;
}

.ms-n5 {
  margin-left: -40px;
}

.btn-login {
  justify-self: end;
}

.navbar-nav > li > a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  animation: flicker 0.8s ease-in-out infinite alternate;
}
@keyframes flicker {
  0% {
    text-shadow: 0 0 5px #00dcff, 0 0 10px #00dcff, 0 0 15px #00dcff,
      0 0 30px #00dcff;
  }
  100% {
    text-shadow: 0 0 5px #09889c, 0 0 10px #09889c, 0 0 15px #09889c,
      0 0 30px #09889c;
  }
}
.navbar-nav .nav-item:hover {
  background-color: #272525;
}

#form-group span {
  z-index: 1000;
}
.form-login input {
  /* background: none; */
}
/* main */
.section-title {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    0.25turn,
    rgba(255, 249, 34),
    rgba(255, 0, 128)
  );
  border-image-slice: 1;
  /* width: 100%; */
}

.item-link {
  width: 75px;
  height: 105px;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.item-link img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.item:hover img {
  transform: scale(1.5);
}
.item {
  opacity: 0.8;
  background-color: #0b0b0d;
  border-bottom: 1px solid #646262;
}
.item:hover {
  opacity: 1;
}

h3.title {
  top: 10px;
  left: 90px;
  font-size: 13px;
}
footer {
  background-color: #0e0e13;
}
/* linear-gradient */

.color-gradient {
  font-size: 20px;
  font-weight: bold;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff8a00),
    to(#da1b60)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-blue {
  padding: 3px 7px 3px;

  background-size: 300% 100%;
  background-image: linear-gradient(
    to right,
    #25aae1,
    #043ea5,
    #04befe,
    #3f86ed
  );
  border-radius: 3px;
  font-size: 11px;
  text-transform: capitalize;
  margin-left: 3px;
}
.gradient-dark-green {
  background: linear-gradient(
    140deg,
    rgba(26, 26, 32, 0.25) 0%,
    rgba(0, 77, 102, 0.25) 50%,
    rgba(0, 134, 179, 0.25) 75%,
    rgba(0, 191, 255, 0.25) 100%
  );
}
.gradient-dark-green:hover {
  background: linear-gradient(
    140deg,
    rgba(0, 77, 102, 0.8) 0%,
    rgba(0, 134, 179, 0.9) 50%,
    rgba(0, 191, 255, 1) 100%
  );
}
/* end linear-gradient */
/* end common */
/* index pages */
.entry-title {
  font-size: 12px;
}
article:hover .entry-title,
.item:hover .title {
  transition: 0.3s ease-in-out;

  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff8a00),
    to(#da1b60)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
  font-weight: bolder;
}
.movie-item .episode {
  box-shadow: rgba(0, 0, 0, 0.75) 0px 3px 10px;

  padding: 3px 5px 1px;
  border-top-left-radius: 5px;
  background-size: 200% 100%;
  background-image: linear-gradient(
    to right,
    #8e2de2 0%,
    #000046 51%,
    #1cb5e0 100%
  );
  transition: 0.5s;
  font-size: 12px;
  left: 15px;
  top: 15px;
}
figure img {
  transform: scale(1);
  transition: 0.5s ease-in-out;
}

figure:hover img {
  transform: scale(1.5);
}
figure:hover ~ .episode {
  background-size: 100% 250%;
  transition: 0.5s;
  font-size: 15px;
}

.orverlay {
  padding: 80px 5px 0 5px;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(6, 6, 6, 0.55) 30%,
    rgba(0, 0, 0, 0.92) 100%
  );
}
#tuesday,
#thursday,
#friday,
#saturday,
#sunday,
#wednesday,
#tuesday,
#monday {
  display: none;
}
#call-monday:checked ~ #monday {
  display: block;
}

#call-tuesday:checked ~ #tuesday {
  display: block;
}
#call-wednesday:checked ~ #wednesday {
  display: block;
}
#call-thursday:checked ~ #thursday {
  display: block;
}
#call-friday:checked ~ #friday {
  display: block;
}
#call-saturday:checked ~ #saturday {
  display: block;
}
#call-sunday:checked ~ #sunday {
  display: block;
}
/* end index pages */
/* info pages */
.watch-box {
  background: rgba(0, 0, 0, 0.23);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(6, 6, 6, 0.24) 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.watch-box .watch-movie {
  background-size: 300% 100%;

  background-image: linear-gradient(
    to right,
    #ffbb00,
    #e43603,
    #ff6290,
    #ff5000
  );
  box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}
.watch-box .watch-movie:hover {
  transition: all 0.3s ease-in-out;
  background-size: 100% 100%;
}
.list-episode a {
  font-size: 12px;
}
.list-episode span:hover {
  background: linear-gradient(
    140deg,
    rgba(27, 27, 27, 0.25) 0%,
    rgba(128, 49, 0, 0.7) 50%,
    rgba(179, 68, 0, 0.85) 75%,
    rgba(255, 98, 0, 0.9) 100%
  );
}

.list-episode span {
  padding: 10px 10px;
}
.overlay-gradient {
  height: 50px;
  width: 100%;
  bottom: 60px;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 36, 0.28) 0%,
    rgb(30, 30, 36) 100%
  );
}
/* end info pages */
/* watching pages */
.bg-yellow {
  background: #a16b29;
}
#bookmark {
  top: 10px;
  left: 10px;
}
#bookmark img {
  width: 42px;
  height: 47px;
}
.bookmark-img-animation {
  animation: bookmark-animation 1.5s infinite ease-in-out;
}

@keyframes bookmark-animation {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-5deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(5deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-5deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(5deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
/* end watching pages */

@media (min-width: 993px) {
  .input-group {
    width: 63%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .input-group {
    width: 70%;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .input-group {
    width: 75%;
  }
}

@media (max-width: 576px) {
  .input-group {
    width: 90%;
  }
}

/* login pages*/
#login p:hover {
  width: 70%;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    0.25turn,
    rgba(255, 249, 34),
    rgba(255, 0, 128)
  );
  border-image-slice: 1;
}
.login-form img {
  animation: imgEffect 1.8s infinite ease-in-out;
}
@keyframes imgEffect {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-5deg) scale(1.03) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(5deg) scale(1.05) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-5deg) scale(1.07) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(5deg) scale(1.09) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1.1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1.2) skew(1deg);
  }
}
/* end login pages*/
/* sing up pages */

#singup .card {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

form input::placeholder {
  /* color: #fff !important; */
  font-style: italic;
  font-size: 15px;
}
/*end sing up pages */
