:root {
  color-scheme: light only;
  --black: #111111;
  --grey: #393939;
  --darkgrey: #232323;
  --active: #17E0EE;
  --highlight: #891a9e;
  --white: #eeeeee;
  --gradient: linear-gradient(to right bottom, #1bdae7, #ca50e1);
  --gradient2: linear-gradient(to right, #e077f4, #891a9e);
  --gradient3: linear-gradient(to right, #ffbe45, #d48a28);
  --font: "Outfit", serif;
  --btn_dl: 70px;
  --btncolor: #616161;
  --navH: 67px;
  --txt_body: 16px;
}

/*---------------------------------------
   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;} 
}

/*---------------------------------------
   Scroll Effect       
-----------------------------------------*/
body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/* Remove animations or transitions on padding */
[style*="padding-right"] {
  transition: none !important;
}

::-webkit-scrollbar {
  width: 3.5px;
  height: 3.5px;
}
::-webkit-scrollbar-thumb {
  background: var(--btncolor);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--active);
  transition: all .3s;
}

#playlist::-webkit-scrollbar, .modal-body::-webkit-scrollbar, .dropdown ::-webkit-scrollbar{
  display: none;
}
.packageinfo p::-webkit-scrollbar {
  width: 3px;
  height: 3.5px;
}
.packageinfo p::-webkit-scrollbar-track {
  opacity: 0;
  background:  #dbdbdb;
} 


/*---------------------------------------
   COMMON      
-----------------------------------------*/
/* Avoid heavy layout on reveal and keep hidden stuff cheap */
#topUpWrapper, .modal, .offcanvas, .tab-pane { 
  will-change: transform, opacity; }
.tab-pane, #topUpWrapper { 
  content-visibility: auto; 
  contain-intrinsic-size: 800px 1200px; 
}

/* Images: prevent reflow + decode off main thread */
img { max-width: 100%; height: auto; }

::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(--black);
}

h2{
  margin: 0;
}

.pagination .page-link{
  color: #888888;
  font-weight: 600;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  border: 1px solid #b9b9b9;
  transition: none;
}
.pagination .page-link:hover, .pagination .page-link.active,.active>.page-link{
  color: var(--white);
  border: 1px solid var(--highlight);
  /* border: none; */
  background-image: linear-gradient(to bottom, rgba(224, 119, 244, 1), rgba(137, 26, 158, 1));
  transition: none;
}

.page-item:first-child .page-link {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}

.disabled>.page-link, .page-link.disabled{
  color: #b9b9b9;
  background: none;
  border: 1px solid #b9b9b9;
}

h1{
  color: var(--active);
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

button{
  --txt_s: 16px;
  font-size: var(--txt_s);
}
button p{
  margin: 0;
  font-weight: 600;
}
button[disabled]{
  pointer-events: none !important;
  filter: saturate(0);
}

.form-check-input:checked, .form-check-input:target {
  background-color: var(--active);
  color: var(--black) !important;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.hidden-by-filter,
.hidden-by-fav { display: none !important; }

/*---------- 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-lg .modal-body{
  max-height: 80vh !important;
}
.modal-body{
  position: relative;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  width: 100%;
  height: fit-content;
  min-height: 200px;
  max-height: 400px;
  overflow: hidden;
  border: 3px solid #393939;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .75));
  padding: 0;
  overflow-y: scroll;
}

.modal-body li span{
  color: var(--active);
  font-weight: 600;
}

.modal-body img{
  width: 100%;
  height: fit-content  !important;
  max-height: 300px !important;
  object-position: center;
  object-fit: scale-down;
  align-self: center;
  justify-self: center;
}

.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 .divider {
  width: 115%;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.modal ol, .modal ul{
  padding: 0 30px;
}
.modal ol{
  margin-left: 15px;
}

.modal h6, .modal h5{
  margin: 0;
  display: inline;
}
.modal h6{
  line-height: 30px;
}
.modal h5{
  line-height: 16px;
}

.modal_header{
  width: 100%;
  padding: 30px 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: var(--darkgrey);
  position: sticky;
  top: 0;
  z-index: 10;
}
/*---------- 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 ----------*/

/*---------- offcanvas ----------*/
.offcanvas-backdrop.show{
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}
/*---------- offcanvas ----------*/

/*---------------------------------------
   NAVBAR        
-----------------------------------------*/
.btn_panel:not(.close){
  position: fixed !important;
  left: var(--p_s);
  top: var(--p_s);
  z-index: 100;
}
.btn_panel.close{
  opacity: .3;
  padding: 5px;
}
.btn_panel.close:hover{
  opacity: 1;
}

body:has(.navwrapper.show)::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.navigation{
  appearance: none;
  width: 0;
  max-width: 350px;
  min-height: 100vh;
  /* height: 100%; */
  background-image: linear-gradient(to top, #111111, #232323);
  z-index: 9999;
  border-right: var(--active) 2px solid;
  transform: translateX(-100%);
  transition: all .5s;

}
.navigation.active{
  appearance: unset;
  min-width: 280px;
  width: fit-content;
  transform: unset;
  transition: all .5s;
}
.nav_brand{
  margin: 0;
  /* margin-top: 15px; */
  z-index: 99;
  pointer-events: all;
}
.nav_brand img{
  max-height: 50px;
  transition: all .5s linear;
  /* margin: 5px 0; */
}
.nav_item{
  width: 100%;
  padding: 10px;
  border-top: 2px solid var(--grey);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
.nav_item .vertical{
  gap: 5px;
}
.nav_btn{
  position: relative;
  --txt_l: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: var(--txt_l);
  font-weight: 600;
  padding: 5px;
  border-radius: 5px;
}
.nav_btn:hover, .nav_btn.active{
  padding: 5px 10px;
}
.nav_btn:hover, .nav_btn:hover *, .nav_btn.active, .nav_btn.active *{
  background: #333333;
  color: var(--active);
  transition: all .5s;
}
.dropdown-toggle::after {
  position: absolute;
  right: 15px;
  transform: rotate(-90deg);
  opacity: .3;
}
.dropdown-toggle:hover::after,.nav_item:has(.show) .dropdown-toggle::after{
  transform: rotate(0);
  opacity: 1;
  transition: none;
}
.nav_item *{
  color: white;
}
.nav_link{  
  margin: 0;
  width: 100%;
  height: fit-content;
  color: var(--white);
  text-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  pointer-events: all;
  padding: 5px 15px;
  border-radius: 5px;
}
.nav_link:hover, .nav_link.active{
  background: #333333;
  color: var(--active);
}

.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;
  pointer-events: all;
}
.hamburgerbtn:hover{
  min-width: 65px;
  height: 65px;
  border: none;
}

.nav-link.icon {  
  padding: unset !important;
  width: 50px;
}
.nav-link.official{
  --p: 25px;
  padding: 15px var(--p) !important;
  transition: all .3s;
}


.navbar-collapse.collapsing {
  height: 0;
  padding: 0;
  transition: all 0.3s ease;
}
.navbar-collapse.collapse {
  max-height: 100vh !important;
}

.navbar-collapse.collapsing .navbar-nav{
  display: none;
}

@media screen and (max-width: 1080px) {
  .navigation{
    position: fixed;
    max-width: unset;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: none;
  }
}

@media screen and (max-width: 600px) {
  .navigation.active{
    width: 100vw;
    transition: all .3s;
  }
}

/*---------------------------------------
   ELEMENTS
-----------------------------------------*/
.element_child{
  position: absolute;
  pointer-events: none;
}

.effectvideo{
  position: absolute;
  width: 100%;
  bottom: 0;
  mix-blend-mode:screen;
  /* opacity: .15; */
  pointer-events: none;
  z-index: -1;
}

.brd_r35{
  border-radius: 35px;
  border: 3px solid #393939;
}

.topgap{
  min-height: 100vh;
  height: fit-content;
  padding-top: 60px;
  padding-bottom: 50px;
}
@media screen and (max-width: 500px) { 
  .topgap{
    padding-top: 100px;
    min-height: fit-content;
  }
  .topgap:not(.vertical){
    align-items: flex-start !important;
  }
  .topgap.vertical{
    justify-content: flex-start !important;
  }
}

.bottomline{
  position: relative;
  width: 100%;
  overflow: visible;
}
.bottomline::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #9bdddd;
}

.halftone, #playlist li.active, #filterList li.active{
  position: relative;
  overflow: hidden;
}
#playlist li.active, #filterList li.active{
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.halftone *{
  z-index: 2;
}
.halftone::before, #playlist li.active::before, #filterList 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;
  pointer-events: none;
}
.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, .navbar-nav.halftone {
  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;
}
.price_wrapper.btnlight::after ,.mPoint_wrapper.btnlight::after{
  opacity: .15;
}

.btn_mute span{
  color:white;
  font-size:18px;
}

.btn_download{
  border: 2px solid var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  border-radius: var(--btn_dl); 
  padding: 0 50px;
  max-width: 80vw;
  height:  var(--btn_dl); 
  z-index: 5;
  animation: zoom .75s infinite alternate-reverse;
}
.btn_download p{
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0;
}
.btn_download span {
  padding-left: 2px;
  color:var(--white); 
  font-size: 2.5rem;
  font-weight: 600;
}

.btn_clear{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  gap: 5px;
  opacity: .5;
}
.btn_clear span{
  font-size: 16px;
}
.btn_clear:hover{
  opacity: 1;
}

.btn_3d {
  position: relative;
  min-width: unset;
  max-width: 250px;
  min-height: 50px !important;
  aspect-ratio: unset;
  padding: 10px 25px;
  background-image: linear-gradient(to top, #111111, #232323);
  border-radius: 30px;
  border: 3px solid #393939;
  filter: drop-shadow(0 6px 0 rgb(0, 0, 0));
  color: #696969 !important;
  font-weight: 400;
}
.btn_3d:hover {
  color: var(--active) !important;
  transform: translateY(6px);
  border: 3px solid var(--active);
  box-shadow: 0px 0px 21.7px 0px var(--active) inset !important;
  filter: unset;
  transition: none;
}
.btn_3d[disabled] {
  background-image: linear-gradient(to top, #393939, #393939);
}

.btn_3d span{
  font-size: 18px;
}

.btn_fav{
  --active: #ff219b;
}
.btn_fav:hover, .btn_fav:hover span{
  opacity: .85 !important; 
  color: var(--active) !important;
}
.btn_fav:hover span{
  transform-origin: center;
  transform: scale(.98);
}
  .btn_fav.active, .btn_fav.active span{
  opacity: 1 !important; 
  color: var(--active) !important;
}

.bottomline:has(.btn_download):after{
  content: "";
  position: absolute;
  bottom: calc(var(--btn_dl) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #393939;
}

.title{
  width: fit-content;
  max-width: 100%;
  z-index: 15;
  margin-top: 0;
}
.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%;
}

#filterList{
  list-style: none;
  padding: 0;
  width: 100%;
  height: fit-content;
  max-height: 300px;
}
#filterList li{
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px 25px;
}
#filterList li p{
  margin: 0;
  padding: 0;
}
#filterList li:hover{
  background-color: rgb(44, 44, 44);
  color: white;
}
#filterList li.active{
  background-image: var(--gradient2);
  color: white;
}

/*---------------------------------------
  DROPDOWN
-----------------------------------------*/
.dropdown {
  position: relative;
  width: 100%;
}
.dropdown_toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 10px 15px;
  height: 35px;
  font-weight: 700;
  color: var(--btncolor);
  border-radius: 15px;
  border: 2.5px solid #393939;
  cursor: pointer;
  gap: 10px;
}
.dropdown_toggle:hover{
  background:  #393939;
  color: var(--active);
}

.dropdown_menu{
  display: none;
  position: absolute;
  width: fit-content;
  min-width: 100%;
  height: calc(40px * 5);
  background-image: linear-gradient(to top, #111111, #232323);
  margin-top: 5px;
  border-radius: var(--p_s);
  z-index: 99999;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
  overflow: hidden;
  overflow-y: scroll;
}

.dropdown_menu li {
  height: fit-content;
  padding: 10px 25px !important;
  color: var(--white);
  cursor: pointer;
}

.dropdown_menu li:hover {
  background: var(--highlight);
}

.dropdown_menu li:not(:last-child) {
  border-bottom: 1px solid rgba(57, 57, 57, .5);
}

/*---------------------------------------
   Main
-----------------------------------------*/
#Shop{
  position: relative;
  content: "";
  top: 0;
  width: 100%;
  max-width: 100vw;
  height: fit-content;
  background: url(../img/showcase/bg.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  scroll-snap-align: center;
}

.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;
  }
}

button.grey{
  --btnsize: 50px;
  background: #111111;
  border-radius: 30px; 
  border: 2.5px solid #393939;
  width: var(--btnsize); 
  height: var(--btnsize); 
  color: var(--btncolor);
  gap: 5px;
  line-height: 15px;
}

button.grey{
  --btnsize: 30px;
  width: fit-content;
}

button.grey:hover, button.grey.active{
  background: #393939;
  transition: all .3s;
  color:var(--active);
}
button.grey span, button.grey{
  font-weight: 600;
  color:var(--btncolor);
}

button.grey:hover span{
  color:var(--active);
  transition: all .3s;
}

.topnavbar{
  position: relative;
  max-width: 1200px;
}

@media screen and (max-width: 768px) { 
  .topnavbar{
    justify-content: center !important;
  }
}

table *, .tbody {
  background: none !important;
}

/*---------------------------------------
  FORM
-----------------------------------------*/
.g-recaptcha {
  transform: scale(0.79);
  transform-origin: 0 0;
  max-width: 80vw;
}

label{
  font-size: 18px;
  font-weight: 400;
  width: 15%;
  min-width: fit-content;
  margin: 0;
}

input{
  height: 45px;
  padding: 0 25px;
  border-radius: 50px;
  color: var(--white);
  background-color: var(--darkgrey);
  border: rgba(177, 177, 177, .5) 1px solid;
}

.server_dropdown {
  position: relative;
  width: 100%;
  overflow: visible;
}
.navigation .server_dropdown {
  display: none;
}
.navigation.active .server_dropdown {
  display: unset;
}
.server_dropdown-selected {
  position: relative;
  padding: 10px 15px;
  background: #111111;
  border-radius: 30px;
  border: 2.5px solid #393939;
  width: var(--btnsize);
  height: var(--btnsize);
  color: var(--active);
  gap: 5px;
  line-height: 15px;
  font-weight: 600;
  cursor: pointer;
}

.server_dropdown-selected{
  color: var(--active) !important;
  transform: translateY(-5px);
  filter: unset;
  transition: none;
}

.server_dropdown-selected {
  position: relative;
  padding: 10px 15px;
  width: var(--btnsize);
  height: var(--btnsize);
  border-radius: 30px;
  border: 2.5px solid transparent;
  background:
    linear-gradient(#111111, #111111) padding-box,
    linear-gradient(270deg, var(--active), var(--highlight), var(--active), var(--highlight)) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: borderFlow 6s linear infinite;
  color: var(--active);
  font-weight: 600;
  cursor: pointer;
}
@keyframes borderFlow {
  0% {
    background-position: 0% 50%, 0% 50%;
  }
  100% {
    background-position: 0% 50%, 100% 50%;
  }
}

.server_dropdown-selected.dropdown-toggle::after {
  top: 15px;
  opacity: 1;
}
.server_dropdown.active .server_dropdown-selected.dropdown-toggle::after {
  transform: rotate(0);
}

/* .server_dropdown-selected::before {
  position: absolute;
  content: 'Current Server';
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--btncolor);
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  z-index: 0;
} */

.server_dropdown-selected:hover{
  border: 2.5px solid var(--active);
  box-shadow: 0px 0px 12px 0px var(--active) inset !important;
}

.server_dropdown-menu {
  position: absolute;
  top: 110%;
  width: 100%;
  background: var(--darkgrey);
  border-radius: 10px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.25s ease;
}

.server_dropdown.active .server_dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 99999;
}
.server_dropdown-item {
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
}
.server_dropdown-item:hover {
  color: var(--active);
  background: var(--grey);
}
.server_dropdown-item p{
  margin: 0;
}


.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;
  }
}

@media screen and (max-width: 500px) { 
  .form_captcha{
    flex-direction: column-reverse;
    /* align-items: center; */
    gap: 5px;
  }
  .formwrapper{
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
    align-items: flex-start !important;
  }
  .formwrapper label{
    padding-left: 15px;
  }
}

.t_link{
  font-style: italic;
  text-decoration: underline;
  padding-right: 2px;
}

.t_link:hover{
  color: var(--active);
}
.t_note, .t_note *{
  color:var(--btncolor);
  font-weight: 400;
  font-style: italic;
}
.t_note span{
  font-weight: 600; 
  color: #707070;
}
ul.t_note li{
  list-style-type: disc;
}
.btn_showPW {
  position: absolute;
  top: 5px;
  right: 15px;
}
.btn_showPW span {
  font-size: var(--txt_body);
  color:var(--btncolor);
}

