:root {
  color-scheme: light only;
  --black: #111111;
  --darkgrey: #232323;
  --active: #17E0EE;
  --highlight: #891a9e;
  --white: #eeeeee;
  --gradient: linear-gradient(to right bottom, rgb(27 218 231), rgb(202 80 225));
  --font: "Outfit", serif;
}


/*---------------------------------------
   Animation
-----------------------------------------*/
/* slidein */
@keyframes slideinleft{
	from {transform: translateX(-300px);}
    to {transform: translateX(0px);}
}
.a_slideinL.show{
  animation: slideinleft .5s ease-in-out backwards;
  animation-delay: 100ms;
}
@keyframes slideinright{
	from {transform: translateX(300px);}
    to {transform: translateX(0px);}
}
.a_slideinR.show{
  animation: slideinright .5s ease-in-out backwards;
  animation-delay: 100ms;
} 
@keyframes slideintop{
	from {transform: translateY(300px); opacity: 0;}
    to {transform: translateY(0px); opacity: 1; }
}
.a_slideinT.show{
  animation: slideintop .5s ease-in-out backwards;
}

@keyframes float{
  from {transform: translateY(10px);}
    to {transform: translateY(0);}
}

@keyframes zoom{
  from {scale: 1}
    to {scale: 1.05}
}

@keyframes rotate{
  from {rotate: 0deg;}
    to {rotate: 360deg;}
}

@keyframes textglow{
  from{ text-shadow: var(--active) 0 0 0;}
    to{ text-shadow: var(--active) 0 0 25px;}
}

/* popin */
@keyframes popin {
  0% {transform: scale(2); opacity: 0; filter: blur(3px);}
  100% {transform: scale(1); opacity: 1; filter: blur(0);} 
}
.a_popin.show{
  animation: popin .35s ease-in-out forwards;
}
@keyframes popout {
  0% {transform: scale(0.3); opacity: 0;}
  100% {transform: scale(1); opacity: 1;} 
}

@keyframes expand {
  0% {opacity: 1; scale: 100% 0;}
  100% {opacity: 1; scale: 100% 100%;} 
}

/*---------------------------------------
   Scroll Effect       
-----------------------------------------*/
body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
  overflow-x: hidden !important;
}

/* Remove animations or transitions on padding */
[style*="padding-right"] {
  transition: none !important;
}

/* body::-webkit-scrollbar {
  width: 6px;
  height: 3.5px;
  display: none;
}
body::-webkit-scrollbar-track {
  opacity: 0;
  background:  #dbdbdb;
} */
::-webkit-scrollbar-thumb {
  background: var(--active);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #33f1ff;
}

#playlist::-webkit-scrollbar , .modal-body::-webkit-scrollbar{
  display: none;
}
.packageinfo p::-webkit-scrollbar {
  width: 3px;
  height: 3.5px;
}
.packageinfo p::-webkit-scrollbar-track {
  opacity: 0;
  background:  #dbdbdb;
} 

/*---------------------------------------
   COMMON      
-----------------------------------------*/
::before, ::after{
  pointer-events: none;
}

body{
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0px;
  padding: 0px;
  color: var(--white);
  font-size:  var(--txt_s);
  font-weight: 200;
  font-family: var(--font);
  text-wrap: pretty;
  overflow-x: hidden !important;
  background-color: var(--white);
}

/*---------- modal ----------*/
.modal{
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}
.modal-backdrop.show{
  opacity: 0;
}
.modal-content{
  position: relative;
  background: none;
  border-radius: 30px;
}
.modal-body{
  position: relative;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  width: 100%;
  height: fit-content;
  max-height: 400px;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
  padding: 30px 25px;
  overflow-y: scroll;
}
.modal-body ol{
  padding-left: 15px;
  margin: 0;
}
.modal-body li{
  padding-bottom: 10px;
}
.modal-body li span{
  color: var(--active);
  font-weight: 600;
}
.modal .btn_close{
  position: absolute;
  font-size: calc( var(--txt_body) - 2px);
  color: #696969;
  text-transform: uppercase;
  text-shadow: 0 1px #393939;
  padding-top: 1px;
  margin: 0;
  width: 75px;
  height: 35px;
  top: -25px;
  right: 35px;
  background-color: #111111;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-image: linear-gradient(to top, #111111, #232323);
  filter: drop-shadow(0 -2px #393939);
  transition: all .3s;
}
.modal .btn_close:hover{
  margin-top: 6px;
  color: var(--active);
  transition: all .3s;
}
/*---------- modal ----------*/

/*---------- carousel ----------*/
.btn_prev, .btn_next{
  font-size: 15px;
  position: unset;
  width: 35px;
  height: 35px;
  background-color: var(--active);
  opacity: 100%;
  border-radius: 50%;
}
.btn_prev:hover, .btn_next:hover{
  background-color: var(--highlight);
}
/*---------- carousel ----------*/


/*---------------------------------------
   NAVBAR        
-----------------------------------------*/
.navigation{
  width: 100vw;
  display: flex;
  align-items: flex-start;
  padding-right: 0 !important;
}

.navigation-container{
  padding: 0 5%;
  height: 100px;
  display: flex;
}

.navbar-brand{
  margin: 0;
}

.navbar-brand img{
  max-width: 160px;
  transition: all .5s linear;
  height: 75px;
  margin: 5px 0;
}

.navwrapper{
  height: 65px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.navbar-nav{
  height: 100%;
}

.navigationitem{
  width: fit-content;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: .3s;
  z-index: 5;
}

.hamburgerbtn span{
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  text-align: center;
} 

.hamburgerbtn, .hamburgerbtn:active, .hamburgerbtn:focus, .hamburgerbtn:focus-visible{
  color: var(--white);
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0 20px;
  border-radius: 0;
}

.hamburgerbtn:hover{
  min-width: 65px;
  height: 65px;
  border: none;
}

.nav-link{  
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-transform: uppercase;
  text-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  gap: 6px;
  cursor: pointer;
  pointer-events: all;
  padding: 15px 50px !important;
}
.nav-link.icon {  
  padding: unset !important;
  width: 50px;
}

.navigationitem:hover .nav-link, .nav-link:hover, .nav-link.active{
  color: var(--white) !important;
}

.navbar-collapse.collapsing {
  height: 0;
  padding: 0;
  transition: all 0.3s ease; /* Smooth transition */
}
.navbar-collapse.collapse {
  max-height: 100vh !important;
}


.navbar-collapse.collapsing .navbar-nav{
  display: none;
}
@media screen and (max-width: 767px) {
  .navigation{
    padding: 0;
    background: #232323;
    z-index: 99999;
    height: fit-content;
    border-bottom: var(--active) 2px solid;
  }
  .navbar-brand img{
    padding-left: 10%;
    margin: 0;
  }
  .navigation-container{
    padding: 0;
    height: fit-content;
  }
  .navwrapper {
    padding-top: 25px;
    padding-bottom: 50px;
    width: 100vw;
    height: fit-content;
    flex-direction: column;
    background-image: linear-gradient(to top, #111111, #232323);

    transition: all 0.3s ease; /* Smooth transition */
  }
  .navbar-nav, .navigationitem:not(:has(.icon)){
    width: 100%;
  }

  .navigationitem{
    height: unset;
    padding: 0;
  }
  li.biggap{
    gap: 15px;
  }
}

/*---------------------------------------
   ELEMENTS
-----------------------------------------*/
.element_child{
  position: absolute;
  pointer-events: none;
}

.effectvideo{
  position: absolute;
  width: 100%;
  bottom: 0;
  mix-blend-mode: color-dodge;
  opacity: .5;
  pointer-events: none;
}

.halftone, #playlist li.active{
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.halftone *{
  z-index: 2;
}
.halftone::before, #playlist li.active::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pattern.png) top repeat;
  background-size: 100px;
  mix-blend-mode: soft-light;
  opacity: .35;
  z-index: 1;
}
.beat::before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/beat.gif) bottom repeat-x;
  background-size: contain;
  z-index: 5;
  mix-blend-mode: screen;
  opacity: .35;
  pointer-events: none;
}

.btn_cta{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  background-image: var(--gradient);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 50px;
  pointer-events: all;
  border-radius: 50px;
  height: 50px;
  cursor: pointer;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .5));
}
.btn_cta.icon{
  padding: unset;
  width: 50px;
  height: 50px;
}

.btn_cta:hover{
  background-image: linear-gradient(to right, #e077f4, #891a9e);
  transition: all .3s;
}
.btn_cta::after, .btnlight::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 85%;
  height: 50%;
  border-radius: 35px;
  background-image: linear-gradient(to top, rgb(0, 0, 0), rgb(255, 255, 255) 70%);
  mix-blend-mode: screen;
  opacity: .35;
}
.btn_cta.icon::after {
  width: 60%;
}
.btnlight::after{
  width: 95%;
}
.halftone.btnlight{
  text-shadow: none;
}

.title{
  width: fit-content;
  max-width: 100%;
  z-index: 15;
}
.title_txt {
  font-weight: 700;
  margin: 0;
  padding: 5px 35px;
  border-radius: 50px;
  color: var(--black);
  background-color: var(--active);
  text-align: center;
}

.watermark{
  position: relative;
}
.watermark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 100%;
  background: url(../img/logo.png) center no-repeat;
  background-size: contain;
  z-index: -1;
  filter: saturate(0);
  mix-blend-mode: luminosity;
  opacity: 20%;
}
/* .watermark::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/grain.png) center repeat;
  mix-blend-mode: color-burn;
}
 */


/*---------------------------------------
   Music Player
-----------------------------------------*/
#musicPlayer {
  --cd: 166px;
  position: fixed;
  top: 50%;
  right: calc(calc(var(--cd) / -2) - 5px);
  transform: translateY(-65%);
  z-index: 99;
  width: var(--cd);
  height: var(--cd);
}
#musicPlayer span {
  position: absolute;
  cursor: pointer;
  background: url(../img/cd.png) top left no-repeat;
  background-size: contain;
  width: var(--cd);
  height: var(--cd);
  transform-origin: center;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
  transition: all .3s;
}
#musicPlayer:hover span, #musicPlayer.active span{
  filter: drop-shadow(0 0 12px rgba(217, 252, 255, 0.5));
  --cd: 160px;
}
#musicPlayer.active span{
  filter: drop-shadow(0 0 12px rgba(217, 252, 255, 0.5));
  --cd: 160px;
  animation: rotate 3s linear infinite;
  transition: all .25s;
}

#musicPlayer::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 198px;
  height: 194px;
  rotate: -15deg;
  transform-origin: right bottom;
  background: url(../img/cd_player.png) right bottom no-repeat;
  background-size: contain;

  transition: all .3s;
  z-index: 3;
}
#musicPlayer:hover::before, #musicPlayer.active::before{
  rotate: -3deg;
  transition: all .3s;
}
#musicControls .modal-content{
  position: relative;
  background: none;
  border-radius: 30px;
}
#musicControls .modal-body{
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
}

.musicbtnwrapper{
  position: relative;
  overflow: hidden;
  cursor: unset;
  background-image: linear-gradient(to right, rgba(23, 224, 238, .8), rgba(224, 119, 244, .8));
}
.musicbtn{
  cursor: pointer;
  font-size: 20px;
  width: 35px;
  height: 35px;
  padding: 30px;
}
.musicbtn:hover{
  font-size: 18px;
  filter: drop-shadow(0 0 12px var(--active));
}

#playlist {
  list-style: none;
  padding: 0;
  width: 100%;
  height: 200px;
}
#playlist li {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px 25px;
}
#playlist li p{
  margin: 0;
  padding: 0;
}
#playlist li:hover {
  background-color: rgb(44, 44, 44);
  color: white;
}
#playlist li.active{
  background-image: linear-gradient(to right, rgba(224, 119, 244, 1), rgba(137, 26, 158, 1));
  color: white;
}

@media screen and (max-width: 1020px) { 
  #musicPlayer{
    display: none;
  }
}

.volume-controller {
  position: absolute;
  color: #696969;
  text-transform: uppercase;
  text-shadow: 0 1px #393939;
  padding-top: 1px;
  margin: 0;
  width: 40%;
  height: 15px;
  top: -15px;
  left: 35px;
  gap: 5px;
  background-color: #111111;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-image: linear-gradient(to top, #111111, #232323);
  filter: drop-shadow(0 -2px #393939);
  transition: all .3s;

  padding-right: 30px;
}

#volume {
  --thumb-size: 6px; /* Thumb size */
  -webkit-appearance: none; 
  appearance: none;
  width: 100%;
  height: 2px;
  background: #696969;
  /* background: linear-gradient(
    to right,
    var(--active) 50%, 
    #696969 50%
  );  */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 2px; 
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}

#volume::-webkit-slider-thumb {
  -webkit-appearance: none; /* Remove default thumb styling */
  appearance: none;
  height: var(--thumb-size); /* Thumb height */
  width: var(--thumb-size); /* Thumb width */
  background: var(--active); /* Thumb background color */
  border-radius: 50%; /* Make thumb circular */
  cursor: pointer;
}

/* Firefox */
#volume::-moz-range-thumb {
  height: var(--thumb-size); /* Thumb height */
  width: var(--thumb-size); /* Thumb width */
  background: var(--active); /* Thumb background color */
  border-radius: 50%; /* Make thumb circular */
  cursor: pointer;
}

/* Internet Explorer */
#volume::-ms-thumb {
  height: var(--thumb-size); /* Thumb height */
  width: var(--thumb-size); /* Thumb width */

  background: var(--active); /* Thumb background color */
  border-radius: 50%; /* Make thumb circular */
  cursor: pointer;
}

#volumeIcon{
  cursor: pointer;
}
#volumeIcon span{
  font-size: calc(var(--txt_body) + 2px);
}

/*---------------------------------------
   Song Progress
-----------------------------------------*/
#songProgress {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  position: relative;
  cursor: pointer;
}

#songprogressBar {
  position: relative;
  width: 0%;
  height: 100%;
  background-image: linear-gradient(to left,  #e077f4, #891a9e);
  transition: width 0.1s linear;
}

#songprogressBar::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  width: 9px;
  height: 9px;
  background-color: var(--active);
  background-color: #e077f4;
  border-radius: 50%;
  z-index: 9;
  animation: zoom 1s infinite;
}
#songprogressBar::before:hover{
  width: 10px;
  height: 10px;
  transition: all .3s;
}


/*---------------------------------------
   KV
-----------------------------------------*/
#KV, #Comeback, #Bundle, #Package{
  position: relative;
  top: 0;
  max-width: 100vw;
  height: 100vh;
  height: fit-content;
  /* padding-top: 150px; */
  background: url(../img/bg.png) top center no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  scroll-snap-align: center;
}
#KV{
  position: sticky;
  height: 100vh;
}

@keyframes logovideo{
  from {opacity: 1;}
  to {opacity: 0;}
}


.logovideo{
  display: none;
 }
 .kvlogo{
   opacity: 1;
   animation: unset;
 }

@media screen and (min-width: 768px) { 
  .logovideo{
    display: unset;
    position: absolute;
    z-index: 5;
    width: 1470px;
    max-width: 228vw;
    top:-82px;
    left: 50%;
    transform: translateX(calc(-50% + 5px));
  
    animation: logovideo 1s forwards;
    animation-delay: 6s;
  }
  
  .kvlogo{
    opacity: 0;
    animation: logovideo 1s reverse forwards;
    animation-delay: 3s;
  }
}

/*---------------------------------------
   COMEBACK
-----------------------------------------*/
#Comeback, #Bundle{
  max-height: fit-content;
  background-image: linear-gradient(to top, #F8E6FF, #ECBBFF);
  background: #ECBBFF;
  overflow: visible;
}
#Comeback::before, #Bundle::before, #Package::before{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg2.png) top no-repeat;
  background-size: cover;
  background-attachment: fixed;
  mix-blend-mode: soft-light;
  z-index: 0;
}

#Comeback::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 793px;
  max-height: 636px;
  background: url(../img/comeback/firework.png) top no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
  z-index: 0;
  animation: popout .35s ease-in-out ;
}
.comebackwrapper{
  position: relative;
  z-index: 5;
}
.comebackwrapper::before{
  content: "";
  position: absolute;
  width: 166px;
  height: 216px;
  left: -150px;
  bottom: 25px;
  background: url(../img/comeback/pet2.png) bottom no-repeat;
  background-size: contain;
  z-index: -1;
}
.comebackwrapper::after{
  content: "";
  position: absolute;
  width: 139px;
  height: 182px;
  right: -120px;
  bottom: 25px;
  background: url(../img/comeback/pet1.png) bottom no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 800px) { 
  .comebackwrapper::before, .comebackwrapper::after{
    display: none;
  }
}

.element_child:has(.gameplaywrapper){
  left: 50%;
  transform: translateX(-85%) translateY(25px);
}
.element_child:has(.letterwrapper){
  right: 0;
  bottom: 0;
}

.gameplay{
  width: fit-content;
  max-width: 90vw !important;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #F8E6FF, var(--white));
}

.gameplay .carousel,.gameplay .carousel-inner, .gameplay .carousel-item{
  width: 500px;
  max-width: 100% !important;
  height: fit-content;
  max-height: 370px;
  border-radius: 15px;
  overflow: hidden;
}
.carousel-item img{
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.letterwrapper {
  --letter_w: 162px;
  --letter_h: 180px;
  position: relative;
  width: var(--letter_w);
  max-width: 70vw;
  height: 100%;
  min-height: var(--letter_h);
  rotate: 8deg;
  scale: .98;
  background: url(../img/comeback/letter_bck.png) bottom no-repeat;
  background-size: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .35));
  pointer-events: all;
  cursor: pointer;
  transition: all .3s;
  animation: zoom .5s infinite alternate;

}
.letterwrapper:hover{
  rotate: 10deg;
  transform: scale(1.02);
  transition: all .3s;
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.8));
}

.letterwrapper::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/comeback/letter_frnt.png) bottom no-repeat;
  background-size: contain;
  bottom: 0;
  z-index: 5;
}
.letterwrapper span {
  position: absolute;
  width: 100%;
  max-width: 70%;
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  right: 10%;
  bottom: 15px;
  background-image: linear-gradient(to top, #ffefec, #fffbeb);
  opacity: 100%;
  transition: all .3s;
  overflow: hidden;
}

.letterwrapper:hover span{
  transform: translateY(-40px) rotate(1deg);
  transition: all .3s;
}
.letterwrapper:has(.active) span{
  transform: translateX(-50%) translateY(-40px) rotate(1deg);
  opacity: 0;
  transition: all .3s;
}

@media screen and (max-width: 450px) { 
  .letterwrapper{
    width: calc(var(--letter_w) * 0.55);
    min-height: calc(var(--letter_h) * 0.55);
  }
}

/*---------------------------------------
   BUNDLE
-----------------------------------------*/
.bundlewrapper{
  width: 500px;
  max-width: 90vw;
  height: 300px;
  /* max-height: fit-content; */
}
.bundlewrapper img {
  height: 80%;
  max-height: fit-content;
  filter: drop-shadow(0px 4px 6px var(--white));
  animation: popout .35s ease-in-out forwards, zoom .5s infinite alternate;
}

/*---------------------------------------
   PACKAGE
-----------------------------------------*/
#Package{
  z-index: 15 !important;
  background-image: linear-gradient(to top, #EFFCFF, #9EEDFF);
  overflow: visible;
}
#Package::before{
  background: url(../img/bg3.png) top no-repeat;
  background-attachment: fixed;
  background-size: cover;
  mix-blend-mode: overlay;
}

.charwrapper{
  position: absolute;
  z-index: 15 !important;
  bottom: -5%;
  width: 1200px;
  min-width: 1000px;
  max-width: 100vw;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.charwrapper img{
  min-height: fit-content;
  height: fit-content;
}
@media screen and (max-width: 1020px) { 
  .charwrapper{
    display: none;
  }
}

.tv_top{
  /* width: 700px; */
  position: relative;
  height: fit-content;
  max-width: 90vw;
  min-width: 100%;
  padding: var(--p_l);
  background: url(../img/package/tv_top.png) top no-repeat;
  background-size: contain;
  z-index: 3;
}
.tv_ctr{
  --tvbutton: 40px;
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 10px var(--p_l);
  margin-top: -5px;
  background: url(../img/package/tv_ctr.png) top repeat-y;
  background-size: 100% auto;
}
.tv_btm{
  width: 100%;
  height: 167px;
  background: url(../img/package/tv_btm.png) top no-repeat;
  background-size: contain;
}

#packageTab{
  border: none;
  flex-wrap: nowrap;
}
#packageTab .nav-link {
  width: var(--tvbutton);
  height: var(--tvbutton);
  padding: 0 !important;
  border: none !important;
  border-radius: 50px;
  background-image: linear-gradient(to bottom, #d77cd1, #efb4ea);
  filter: drop-shadow(0 -1px #d692d1) drop-shadow(0 1px var(--white));
}
#packageTab .nav-link:hover, #packageTab .nav-link.active{
  background-image: linear-gradient(to top, #e077f4, #891a9e);
  filter:
  drop-shadow(0 -2px #5a1069)
  drop-shadow(0 1px var(--white)) ;
}

#packageTabContent {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  height: fit-content;
  border-radius: 5px;
  background-color: var(--black);
  filter:
  drop-shadow(0 -2px #d692d1)
  drop-shadow(-2px 0 #d692d1)
  drop-shadow(2px 0 #d692d1)
  drop-shadow(0 2px var(--white)) ;
  overflow: hidden;
}
#packageTabContent .tab-pane{
  width: 100%;
  height: 100%;
  position: relative;
}
.packagecontent{
  position: relative;
  width: 100%;
  height: 100%;
  max-width: fit-content;
}
.packagecontent img{
  height: 100%;
  max-height: fit-content;
  object-fit: contain;
  display: unset;
}
.packageinfo{
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(to top, #111111, rgba(0, 0, 0, .7));
  backdrop-filter: blur(5px);
  display: none;
  z-index: 15 !important;
}
.note{
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2px 15px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: .65rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  background: var(--black);
  /* border-radius: 25px; */
  z-index: 6 !important;
}
#packageTabContent:has(.tab-pane.active:hover) .note {
  display: none;
}

#packageTabContent .tab-pane.active:hover .packageinfo{
  display: flex;
}
.packageinfo p{
  font-weight: 600;
  color: var(--active);
  margin: 0;
}

#packageTabContent.tab-content > .active {
  display: flex !important;
}
.packageprizewrapper{
  height: 15%;
  background-image: linear-gradient(to right, #e077f4, #891a9e);
  z-index: 0;
}
.packageprize{
  --prize: 45px;
  position: absolute;
  right: 0;
  bottom: 0;
  gap: 2px;
  height: fit-content;
  z-index: 10 !important;
  color: var(--active);
  color: var(--white);
  color:#5a1069;
  font-style: italic;
  font-size: var(--prize);
  line-height: calc(var(--prize) - 10px);
  text-shadow: 
    0 -1px var(--white), 
    0 1px var(--white), 
    -1px 0  var(--white), 
    1px 0  var(--white),
    0 1px 2px var(--black);
}
.packageprize::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 183px;
  height: 108px;
  background: url(../img/package/prizebg.png) left no-repeat;
  animation: prizebg 1s infinite steps(2);
  z-index: -1;
  transform-origin: right bottom;
}
@keyframes prizebg{
	from {background-position: 0 0;}
  to {background-position: -366px 0;}
}
.packagetitle{
  height: fit-content !important;
  max-height: 30% !important;
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 10 !important;
  padding: 10px;
  animation: zoom .7s infinite alternate linear;
}
.packageprize span{
  font-size: calc(var(--prize) / 2);
  line-height: calc(var(--prize) / 2);
}

.btn_paynow{
  padding: 15px 15px;
}
@media screen and (max-width: 1200px) { 
  .tv_top{
    width: unset;
  }

}

@media screen and (max-width: 500px) { 
  .tv_ctr, #packageTab{
    --tvbutton: 30px;
  }
  .packageprize{
    --prize: 25px;
  }
  .packageprize::after{
    scale: .60;
  }
}

/*---------------------------------------
   MARQUEE
-----------------------------------------*/
@keyframes marqueescroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#marqueeBar, #marqueeBar2{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;

  background-image: linear-gradient(to right, #A143A0, #8A2A89);
  rotate: -1deg;
  z-index: 5;
}
#marqueeBar2{
  background-image: linear-gradient(to right, #44E7E7, #38ABDC);
  top: 0;
  rotate: 1deg;
}
.marquee {
  height: 100%;
  position: absolute;
  overflow: hidden;
  mix-blend-mode: soft-light;

}
.marquee-content {
  display: flex;
  animation: marqueescroll 50s linear infinite forwards;
}
.marquee-content img{
  height: fit-content;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}




/*---------------------------------------
   MILESTONE - REWARD
-----------------------------------------*/
#stickyBar_btm.hidden{
  position: sticky;
  bottom: 0;
  z-index: 9999;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom: var(--active) 1px solid;
  background-color: #232323;
  background-image: linear-gradient(to top, #111111, #232323);
  transform: translateY(100%);
  gap: 0;
}
#stickyBar_btm.show{
  opacity: 1;
  transform: translateY(0);
}
#stickyBar_btm.hide .stickybarbtmwrapper{
  height: 0;
  display: none;
  transition: height .35s;
}
.btnStickybar{
  cursor: pointer;
}
.btn_hide{
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
  font-size: 14px;
}
.btnStickybar:hover .btn_hide{
  text-shadow: none;
  color: var(--active);
}
#stickyBar_btm.hide .btn_hide{
  transform: rotate(180deg);
  transition: all .35s;
}

.ms_rewardwrapper{
  position: relative;
  width: 100%;
  max-width: 680px;
}
.ms_reward{
  position: relative;
  width: 80px;
  height: 80px;
  font-weight: 600;
  user-select: none;
}
.ms_reward p{
  z-index: 1;
  margin: 0;

  padding: 2px 15px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1430px) { 
  .ms_reward > p{
    font-size: 16px;
    padding: 2px 5px;
  }
}

.ms_reward::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/reward_bg.png) center no-repeat;
  background-size: contain;
  filter: saturate(0);
  z-index: 0;
}

.ms_reward.done::after{
  background: url(../img/reward_bg.png) center no-repeat;
  background-size: contain;
  animation: zoom .3s infinite alternate;
  filter: unset;
}

.beatline{
  width: 100%;
  max-width: 90px;
  margin: 0 -10px;
  height: 70px;
  background: url(../img/beatline.gif) center no-repeat;
  background-size: contain;
  mix-blend-mode: screen;
}
.ms_rewardimg{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ms_rewardimg img{
  transform: translateY(-5px);
  opacity: 0;
  scale: .5;
  transition: all .3s;
  pointer-events: none;
}
.ms_rewardimg p{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  
  font-size: 10px;
  font-weight: 900;
  line-height: 10px;
  text-transform: uppercase;
  text-wrap: nowrap;
  text-align: center;

  border-radius: 50px;
  color: var(--black);
  background-color: var(--active);

  opacity: 0;
  overflow: hidden;
  width: 0;
  transition: width .3s;
}
.ms_reward.done:hover .ms_rewardimg p{
  opacity: 1;
  width: fit-content;
  transition: width .3s;
}
.ms_reward.done:hover .ms_rewardimg img{
  opacity: 1;
  scale: 1;
  filter: drop-shadow(0 0 5px var(--white));
  transition: all .3s;
}

/*---------------------------------------
   FORM
-----------------------------------------*/
input{
  height: 50px;
  padding: 0 25px;
  border-radius: 50px;
  color: var(--white);
  background-color: var(--darkgrey);
  border:#b1b1b1 1px solid;
}

.checkbox_radio{
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  margin-bottom: 1px;
  cursor: pointer;
}

.radio-style:checked {
  background-color: var(--active); 
}

.checkbox_radio {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  -webkit-appearance: none;
  appearance: none; 
  margin-bottom: 1px;
  cursor: pointer;
}

.checkbox_radio:checked {
  border: 2px solid white;
  background-color: var(--active);
}

.stickybarbtmwrapper {
  row-gap: 20px !important;
  padding: 20px;
  padding-bottom: 25px;
  overflow: visible;
}

@media screen and (max-width: 1430px) { 
  .stickybarbtmwrapper, .ms_rewardwrapper, .formwrapper{
    align-items: center;
    justify-content: center;
  }

}