@media screen and (max-width:560px) {
  .TabBody .content {
    font-size: 0.8em;
  }
}
@media screen and (max-width:870px) {
  .box1.area {
    width: 100% !important;
    display: block !important;
  }
}
/*--------- Global FX ---------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  overflow-y: auto;
  /* color-scheme: dark; */
  background-color: #000;
}
* {
  box-sizing: border-box;
}
.loader {
  border: 2px solid #c56440;
  border-bottom-color: #eee;
  border-right-color: #eee;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  -webkit-animation: spin_ 1s linear infinite;
  /* Safari */
  animation: spin_ 1s linear infinite;
}
@keyframes OpaFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes OpaFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes PopText {
  0% {
    font-size: 1.2em;
    color: white;
  }
  10% {
    color: red;
  }
  20% {
    color: white;
  }
  30% {
    color: red;
  }
  40% {
    color: white;
  }
  50% {
    color: white;
  }
  60% {
    color: red;
  }
  70% {
    font-size: 1.2em;
    color: yellow;
  }
  100% {
    font-size: 1em;
    color: white;
  }
}
@keyframes SwipeRight {
  from {
    transform: translateX(-50%)
  }
  to {
    transform: translateX(0%)
  }
}
@keyframes SwipeLeft {
  from {
    transform: translateX(50%)
  }
  to {
    transform: translateX(0%)
  }
}
.SwipeLeft {
  animation: SwipeLeft 0.2s ease-out !important;
}
.SwipeRight {
  animation: SwipeRight 0.2s ease-out !important;
}
.hideFade {
  opacity: 0;
  animation-name: OpaFadeOut;
  animation-duration: 0.5s;
  animation-delay: 0;
}
.fx-fadeIn {
  animation-name: OpaFadeIn;
  animation-duration: 1s;
}
/*________ INFINITY PROGRESS BAR ________*/
.progress-inf,
.progress-inf:before {
  height: 4px;
  width: 100%;
  margin: 0;
}
.progress-inf {
  border-radius: 20px;
  background-color: #FFF;
  display: -webkit-flex;
  display: flex;
  margin: 5px;
}
.progress-inf:before {
  background-color: #faae00;
  content: '';
  -webkit-animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
#ProgressBar {
  width: 0%;
  height: 6px;
  background-color: #FAAE00;
  border-radius: 10px;
  transition: 0;
  transition: none;
}
#ProgressBox {
  width: 100%;
  background-color: #ddd;
  border-radius: 10px;
}
@-webkit-keyframes running-progress {
  0% {
    margin-left: 0px;
    margin-right: 100%;
  }
  50% {
    margin-left: 25%;
    margin-right: 0%;
  }
  100% {
    margin-left: 100%;
    margin-right: 0;
  }
}
@keyframes running-progress {
  0% {
    margin-left: 0px;
    margin-right: 100%;
  }
  50% {
    margin-left: 25%;
    margin-right: 0%;
  }
  100% {
    margin-left: 100%;
    margin-right: 0;
  }
}
/*________ END PROGRESS BAR ________*/
@-webkit-keyframes HEAD_BGFX {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes HEAD_BGFX {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
#HEAD_PAGE {
  background: linear-gradient(358deg, #293558, #000);
  background-size: 150% 240%;
  /* background-position: 0% 30%; */
  /* -webkit-animation: HEAD_BGFX 5s ease-in infinite; */
  /* animation: HEAD_BGFX 5s ease-in infinite; */
  color: #666565;
}
body {
  font-size: 17px;
  /* background-color: #111625; */
  background-color: #111c2e;
  color: #9c9ea0;
  margin-top: -62px;
}
#main_content {
  max-width: 2560px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
/* HERO WAVES  */
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}
/* .wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
} */
@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
label:hover,
label:active,
input:hover+label,
input:active+label,
#NotiClose:hover,
a:hover {
  color: #f57546;
  cursor: pointer;
}
.preload {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFF;
  z-index: 100;
}
.hidden {
  display: none !important;
}
/*_____ Elements ______*/
.button.ACTION {
  font-size: 1.2rem;
  background: #d83e1e;
  display: inline-block;
  margin-bottom: 25px;
}
button.ACTION>span.sm {
  display: block;
  position: relative;
  top: 2px;
  background: #986c25;
  border-radius: 5px;
  color: #000;
  padding: 3px 0;
}
.sale::after {
  content: attr(data-sale);
  position: relative;
  top: -40px;
  right: -100%;
  width: fit-content;
  background: red;
  color: #fe0;
  border-radius: 5px;
  padding: 2px 4px;
  display: block;
  font-size: 0.8rem;
  box-shadow: #0003 1px 1px 10px;
}
audio {
  height: 30px;
  max-width: 290px;
}
a {
  color: #41B3FF;
  text-decoration: none;
}
hr {
  border: 1px solid #4e4a4a;
}
button {
  transition: all 0.3s;
  border-style: none;
}
button:hover {
  box-shadow: 0 0 5px 2px #f1b98a;
}
.itemlist {
  counter-increment: itemID;
}
.itemlist:hover {
  background: #111b2f;
}
#YoutubeChannelSub {
  margin: 10px auto;
  padding: 10px;
  max-width: 900px;
  text-align: center;
  background: #1a3746;
  border-radius: 10px;
}
.GGADS {
  margin: 0.5rem;
}
/*______ Other Sets _________*/
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}
.flex-js-flex-end {
  justify-content: flex-end !important;
}
.col {
  flex: 0 1 auto;
  padding: 2px 5px;
}
.area {
  display: inline-table;
  margin: 5px 2px;
  padding: 5px;
}
.area_sm {
  margin: 3px;
  padding: 5px;
}
.box1 {
  animation: OpaFadeIn 1s ease-out;
  margin: 2px 4px;
  width: 100%;
  max-width: 750px;
  background-color: #01040a;
  margin-bottom: 5px !important;
}
.box1 .title {
  text-align: center;
  color: #d6d2d2;
  font-size: 1.2em;
  margin: 0 0 0.5rem 0;
}
.headbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  flex: 1 1 auto;
}
.box1:hover .title {
  color: #76d0ff;
}
*:target {
  border: #666 1px solid;
}
.box_sm {
  background: linear-gradient(145deg, #89a, #bababa);
  box-shadow: 3px 3px 5px #888,
    -3px -3px 9px #fff;
}
.bor {
  border-radius: 15px;
}
.bor:hover {
  border-color: #464646;
}
.HL {
  color: #707e8a;
  background: #dc6821;
  border-radius: 3px;
  padding: 1px 5px;
}
.HLfaded,
strong,
HL {
  color: #fff;
  background: #33596b;
  border-radius: 10px;
  padding: 4px;
  margin: 1px;
  display: inline-block;
}
t {
  background: #eed8aa;
  color: #333;
  padding: 0 0.2rem;
  border-radius: 5px;
}
.red {
  color: red;
}
.yellow {
  color: yellow !important;
}
.white {
  color: white !important;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.sm {
  font-size: 0.7em
}
.fullwidth {
  width: 100%
}
.inline {
  display: inline-block
}
details {
  margin-bottom: 1em;
  font-size: 0.9rem;
}
details>p {
  margin-left: 1em;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0.5em;
  border-left: 2px solid;
}
summary {
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 90%);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
  z-index: 5;
  overflow: auto;
}
.popup {
  margin: 50px auto;
  background: #07111b;
  text-align: center;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  word-break: break-word;
  position: relative;
  z-index: 555;
}
.popup .title {
  padding: 0.8rem;
  margin: 0;
}
#PopupClose:hover {
  cursor: pointer;
  box-shadow: none;
}
#PopupClose {
  /* The popup close button */
  font-size: 2.2rem;
  background: transparent;
  position: absolute;
  right: 0;
  width: 30px;
  height: 30px;
  line-height: 0;
}
#PopupNode {
  padding: 0 10px 15px;
}
/*--------- TABLE ---------*/
/* tr {background: #484848;} */
table {
  border-spacing: 1.5px;
  counter-reset: itemID;
  font-size: 14px;
}
td,
th {
  padding: 0.1em;
}
td:hover {
  max-width: unset !important;
}
/* td:first-child::before{ content: counter(itemID);} */
/* FIX COMPATIBILITY */
/* ios safari  */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.table td,
.table th {
  border: none;
}
/* MAIN */
.navbar.is-main {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  /* background: transparent; */
}
.navbar.is-black a.navbar-item {
  transition: all 0.2s;
  border-radius: 15px 8px;
  /* text-shadow: #000 0 0 5px ; */
}
.navbar.is-black a.navbar-item.is-active,
.navbar.is-black a.navbar-item:focus,
.navbar.is-black a.navbar-item:hover {
  border-radius: 32px 21px;
}
.message.is-main,
.message.is-main .message-header,
.message.is-main .message-body {
  background-color: #01040a;
}