/* Link Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");
/*! font-family: 'Poppins', sans-serif; */
/*! font-family: 'Roboto', sans-serif; */
/* ^^ Sample fonts ^^ */
/* Style For Body */
.content {
  background: linear-gradient(to top, #8e9eab, #eef2f3);
  display: grid;
  justify-items: center;
  grid-template-rows: 15vh auto;
  font-family: "Poppins", sans-serif;
}
/* Header Style */
.topHeader {
  position: sticky;
  top: 10px;
  z-index: 1000;
  background-color: #1b1b1b;
  width: 86vw;
  max-height: 15vh;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
  margin: 2vh;
  display: grid;
  grid-template-columns: 2fr 10fr;
  align-content: center;
  justify-items: center;
}
/* Header Logo */
.logo {
  font-size: 2.5rem;
  color: rgb(255, 208, 0);
  display: flex;
  align-items: center;
}
/* Navbar Menu Style */
.navMenu {
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  grid-template-rows: 1fr;
  grid-template-columns: 7fr 5fr;
}
.itemMenu {
  padding: 0;
  list-style: none;
  width: 80%;
  height: 100%;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-content: center;
}
.itemMenu li {
  display: inline-block;
}
.itemMenu li a {
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  color: rgb(255, 208, 0);
}
.itemMenu li a:hover {
  text-shadow: 0px 0px 5px rgb(255, 174, 0);
}
/* Navbar Search Box Style */
.topSearchBox {
  margin: 10px;
}
@media screen and (max-width: 880px) {
  .logo {
    font-size: 2rem;
  }
  .itemMenu {
    width: 90%;
  }
  .itemMenu li a {
    font-size: 1rem;
  }
  .topSearchBox {
    align-items: center;
  }
  .btn-outline-warning {
    height: 70%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
  }
  .navSearch {
    height: 70%;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 645px) {
  .navSearch {
    height: 70%;
    font-size: 0.5rem;
  }
}
/* Show Video Details Div Style */
.aboutDiv {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1001;
  background-color: #000000bb;
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutDivShow {
  width: 80vw;
  min-height: 80vh;
  background-color: #202020;
  box-shadow: 0px 0px 25px #424242;
  border-radius: 15px;
  display: grid;
  grid-template-rows: 10% auto;
  row-gap: 10px;
}
/* Show Video Details Div Buttom */
.aboutDivClose {
  position: relative;
  left: 95%;
  top: 5%;
}
.closeBtn {
  margin-top: 8px;
  padding: 0 5px;
  font-size: 20px;
}
/* Show Video Details Div Image */
.aboutDivImg {
  width: 50%;
  justify-self: center;
  text-align: center;
}
.showBtn {
  margin-top: 15px;
  width: 15rem;
}
/* Show Video Details Div Text */
.aboutDivText {
  color: black;
  background-color: whitesmoke;
  width: 95%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  justify-self: center;
}
@media screen and (max-width: 880px) {
  .aboutDivClose {
    left: 90%;
  }
  .showBtn {
    width: 10rem;
  }
  .aboutDivText {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 550px) {
  .showBtn {
    font-size: 0.6rem;
    width: 5rem;
  }
  .closeBtn {
    font-size: 13px;
  }
}
/* Hidden Event */
.hidden {
  display: none;
}
.hiddenSearch {
  display: none;
}
/* Selector Box */
.selector {
  background-color: #373838;
  width: 86vw;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
  text-align: center;
}
.selectorLbl {
  color: white;
  font-size: 1.5rem;
  margin: 0 5px;
}
.selectorSelect {
  width: min-content;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 1380px) {
  .selectorLbl {
    font-size: 1.3rem;
  }
  .selectorSelect {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .selectorLbl {
    font-size: 1rem;
  }
  .selectorSelect {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 975px) {
  .selectorSelect {
    width: 100%;
  }
}
/* Content Of All Video Cards */
.mainContent {
  background-color: #373838;
  width: 86vw;
  min-height: 20vh;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(30rem, 1fr));
  place-items: center;
  column-gap: 15px;
  padding-top: 20px;
}
/* Video Card */
.videoCard {
  width: 19rem;
  max-width: 20rem;
  min-width: 18rem;
  max-height: 32rem;
  min-height: 30rem;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: rgb(43, 43, 43);
  border-radius: 10px;
}
/* Video Card Image */
.videoCardImage {
  box-shadow: 0px 0px 10px 3px black;
  width: 17rem;
  height: 14rem;
}
/* Video Card Image Hover Box */
.imgHover {
  text-align: center;
  position: relative;
  perspective: 500px;
}
.imgDetails {
  width: 80%;
  height: 70%;
  padding: 5% 8%;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(90deg);
  transform-origin: 50%;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: all 0.4s ease-in;
}
.imgHover:hover .imgDetails {
  transform: translate(-50%, -50%) rotateY(0deg);
  opacity: 1;
}
/* Video Card Name */
.videoName {
  color: white;
  margin: 0px 20px 0px 20px;
  direction: rtl;
  text-align: center;
  align-self: flex-start;
}
/* Video Card Badge */
.videoEpisode {
  left: 50%;
}
.videoDate {
  top: 100%;
  left: 75%;
}
.videoScore {
  top: 100%;
  left: 25%;
}
.videoScoreBadge {
  color: rgb(255, 193, 7);
}
/* Start Video Card Button */
.videoCardBtn {
  display: flex;
  margin-left: 8%;
  flex-wrap: wrap;
  align-items: center;
}
/* Video Card Play Buttom */
.videoCardPlayBtn {
  margin: 1px;
  min-width: 2rem;
  min-height: 2rem;
  position: relative;
  left: 2rem;
  overflow: hidden;
  transition: all 0.15s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.videoCardPlayBtn:hover .playBtnIconOne {
  top: 2rem;
}
.videoCardPlayBtn:hover .playBtnIconTwo {
  top: 10%;
}
/*  Video Card Time Buttom */
.videoCardTimeBtn {
  margin: 1px;
  min-width: 2rem;
  min-height: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.15s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.videoCardTimeBtn:hover .playBtnIconOne {
  top: 2rem;
}
.videoCardTimeBtn:hover .playBtnIconTwo {
  top: 10%;
}
/* Video Card Buttom Icon Style */
.playBtnIconOne {
  display: block;
  position: absolute;
  top: 0.1rem;
  transition: all 0.15s ease-in-out;
}
.playBtnIconTwo {
  display: block;
  position: absolute;
  top: -2rem;
  transition: all 0.15s ease-in-out;
}
/* Video Card Buttom Pop Up Animation */
.videoCardPlayBtnPopUp {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-bottom: 5px;
  height: 1.8rem;
  width: 3.1rem;
  visibility: hidden;
  text-align: center;
}
.videoCardPlayBtn:hover + .videoCardPlayBtnPopUp {
  animation-name: leftmove;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  position: relative;
  visibility: visible;
}
@keyframes leftmove {
  0% {
    left: -20px;
  }
  100% {
    left: -50px;
  }
}
.videoCardTimeBtnPopUp {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-top: 2px;
  position: relative;
  left: -36px;
  height: 1.8rem;
  width: 3.5rem;
  visibility: hidden;
  text-align: center;
}
.videoCardTimeBtn:hover + .videoCardTimeBtnPopUp {
  animation-name: rightmove;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  visibility: visible;
}
@keyframes rightmove {
  0% {
    left: -32px;
  }
  100% {
    left: -1px;
  }
}
/* Footer Style */
.bottomFooter {
  background-color: #1b1b1b;
  width: 86vw;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
  margin: 2vh;
  display: grid;
  grid-template-columns: 6fr 3fr 3fr;
  column-gap: 10px;
}
/* Footer Abute Box */
.footerAbute {
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(255, 208, 0);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
/* Footer Menu Box */
.footerMenu {
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(255, 208, 0);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brackLine{
  width: 100%;
  height: 2px;
  background-color: black;
}
.footerMenu ul {
  list-style: none;
  padding: 0;
}
.footerMenu a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.footerMenu a:hover {
  color: whitesmoke;
  text-shadow: 0px 0px 10px black;
}
/* Footer Icon Box */
.footerIcon {
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(255, 208, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerIcon a {
  text-decoration: none;
  color: black;
  font-size: 2.5rem;
  margin: 10px;
}
.footerIcon a:hover {
  color: whitesmoke;
  text-shadow: 0px 0px 10px black;
}

@media screen and (max-width: 880px){
  .footerAbute{
    font-size: 0.8rem;
  }
  .footerMenu li{
    font-size: 0.7rem;
  }
  .footerMenu a{
    font-size: 0.7rem;
  }
  .footerIcon a{
    font-size: 1.7rem;
  }
}