* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  border: none;
  outline: none;
  background: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #fff;
}

.bb {
  border-bottom: 2px solid #10131c;
}

.b {
  border: 2px solid #10131c;
}

.bg-dark {
  background: #10131c !important;
}

.bg-black {
  background: #111;
}

.bg-custom {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.ovsc {
  overflow: scroll;
  padding-bottom: 300px !important;
}

.c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tsh {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.pointer {
  cursor: pointer;
  user-select: none;
}

body {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg,#1b1430 0%, #140e29 100%);
}

#container {
  height: 100%;
  width: 100%;
  background: #17142b;
}

nav {
  height: 60px;
  width: 100%;
}

#brand {
  width: 120px;
  z-index: 100;
}

.swiper-pagination-bullet {
  background: #fff;
  border: 1px solid #256799;
  width: 8px;
  height: 4px;
  border-radius: 0;
  transition: all .5s;
}

.swiper-pagination-bullet-active {
  background: #256799;
  width: 16px;
  height: 4px;
  border-radius: 0;
}


main {
  height: calc(100% - 60px);
  width: 100%;
}

.search {
  height: 45px;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}

.search input {
  width: calc(100% - 30px);
  height: 100%;
}

.search i {
  height: 100%;
  width: 30px;
}

#play-box {
  height: 450px;
  width: 100%;
  margin-top: 6px;
  z-index: 99;
  flex-direction: column;
}

#play-box .ad-imgs {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
}

#play-box .ad-imgs img {
  width: 100%;
}

.desc {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  z-index: 4;
}


#play-box iframe {
  height: 100%;
  width: 90%;
  z-index: 2;
}

#play-box-close-btn {
  top: 6px;
  right: 10px;
  font-size: 1.5em;
  z-index: 6;
}

#header-ad {
  width: 100%;
  z-index: 100;
  margin-top: 6px;
}

.ad {
  flex-direction: column;
}

.ad .ad-img {
  width: 100%;
}

#footer-ad {
  width: 100%;
  position: fixed;
  bottom: 6px;
  z-index: 9;
}

.box-container {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

.box-container img {
  width: 100%;
}

.box {
  width: 49%;
  border-radius: 2px;
}

.box .thumbnail {
  width: 100%;
}

.box div {
  justify-content: space-between;
}

.time {
  position: relative;
  top: -30px;
  border-radius: 2px;
  font-size: .6em;
}

.box span {
  font-size: .8em;
  height: 50px;
}

#loading {
  height: 70px;
  width: 70px;
  position: relative;
  padding: 2px;
  overflow: hidden;
  z-index: 999999;
  margin-top: 100px;
  left: calc(50% - 35px);
  border-radius: 50%;
}

#loading:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
  background-image: conic-gradient(transparent, transparent, #7b0458);
}

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

#loading img {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 50%;
}

.numbers-gp {
  width: 100%;
  margin-top: 6px;
}

.numbers-gp .bg-custom {
  background: #5621cf !important;
}

.numbers-gp i {
  height: 25px;
  width: 25px;
  background: #5621cf;
}

.numbers-wrapper {
  width: calc(100% - 60px);
  margin: 0 5px;
}

.numbers {
  height: 30px;
  width: 100%;
  justify-content: space-between;
}

.numbers div {
  width: 9%;
  height: 30px;
  transition: all .5s;
}

#vd-clip {
  width: 100%;
  z-index: 6;
}

#vd-clip-sec {
  bottom: 6px;
  right: 12px;
  z-index: 5;
}


@media (min-width: 420px) {
  body {
    padding: 0 50px;
  }
  
  #container {
    width: 420px;
  }
  
  .box {
    width: 33%;
  }
  
  #play-box .ad-img {
    width: 50%;
  }
  
  #play-box #vd-clip,
  #play-box iframe {
    width: 50%;
  }
  
  .ad .ad-img {
    width: 60%;
  }
}