html,
body {
    background-color: #000;
    overflow-x: hidden;
}

body {
    background-image: url("./kaba_main_bg.png");
    background-size: contain;
    background-repeat: repeat-y;
}
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    /* Safari seems to support, but seems deprecated and does the same thing as the others. */
    image-rendering: -webkit-optimize-contrast;
}

/* HEADER */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0 12px 0;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    height: auto;
    background-color: transparent;
}

.navigation.active {
    background: rgba(0, 0, 0, 0.84);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.navigation img {
    resize: both;
    height: 68px;
}
.navigation a {
    color: #fff;
    font-family: "Righteous", cursive;
    font-size: 14px;
    padding: 12px 16px;
    float: right;
    margin-top: 12px;
}

.header {
    height: auto;
    min-height: 900px;
    padding-top: 20px;
    background-image: url(./hero.png);
    background-size: cover;
}

/*-- Add bg when scroll --*/
.header.active {
    background: #fff;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

/* hero */
.hero img {
    resize: both;
    max-height: 554px;
    height: 80%;
    display: block;
    margin: 0 auto;
    float: right;
}
.hero img:first-child {
    position: relative;
    margin-right: 80px;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
}
.hero img:last-child {
    margin-top: -80px;
}

.hero ul {
    margin-top: 68px;
}
.hero ul li {
    float: left;
}
.hero ul li a {
    color: #fff;
    font-family: "Righteous", cursive;
    font-size: 24px;
    padding: 12px 16px;
    margin-right: 12px;
}

/* BODY */

/* story line */
.story_line {
    margin-top: 128px;
}
.story_line ul {
    margin-top: 32px;
}
.story_line ul li {
    float: left;
    margin: 0 16px 16px 0;
    padding: 12px 24px 8px 24px;
    background: rgba(140, 163, 190, 0.32);
    box-shadow: 0px 10.5101px 28.027px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(3.50337px);
}
.story_line ul li a img {
    resize: both;
    height: 32px;
}

/* float planet */
.float_planet img {
    resize: both;
    height: 128px;
    position: absolute;
    right: 8vw;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

/* in-Game Assest */
.ingame_assest {
    padding: 128px 0 80px 0;
}
#ib_tab {
    background-color: #1d1d1d;
    box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.25);
    width: auto;
    margin: 40px auto 0 auto;
}
.tablink {
    background-color: #1d1d1d;
    color: #fff;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 28px;
    text-transform: uppercase;
    width: auto;
    border-radius: 8px;
    margin-right: 12px;
}
.tablink:last-child {
    margin-right: 0px;
}

.tablink:hover {
    background-color: #2a2a2a;
}
.counting h1 {
    font-size: 64px;
}
.counting h1 span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 20px;
    letter-spacing: normal;
    font-family: "Righteous", cursive;
}
.carousel-item img {
    resize: both;
    width: 80% !important;
    margin: 0 auto;
}
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
    color: white;
    display: none;
    height: auto;
    margin-top: 96px;
}
.tabcontent .top .planet_desc {
    background-image: url(./planet_pointer.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-bottom: 24px;
}
.tabcontent .top img.planet_pointer {
    resize: both;
    width: 100%;
    position: relative;
    z-index: 99;
}

.tabcontent .mid {
    display: flex;
    align-items: center;
    margin-top: -32px;
}
.tabcontent .mid ul {
    display: flex;
    align-items: center;
}

.tabcontent .mid ul li {
    float: left;
    margin-left: 24px;
}
.tabcontent .mid ul li a {
    color: rgba(255, 255, 255, 1);
}
.tabcontent .mid ul li a:hover {
    color: #fe8115;
}

.tabcontent .mid .planet_circle {
    background-image: url(./planet_circle.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tabcontent .mid .planet_circle img {
    resize: both;
    width: 85%;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
}

.row.bottom {
    margin-top: 32px;
}
.tabcontent .bottom .asset_name {
    width: auto;
    background-color: rgba(140, 163, 190, 0.24);
    border-right: 1px solid #8ca3be;
    padding-left: 64px;
}
.tabcontent .bottom .asset_name h1 {
    line-height: 40px;
    padding: 16px 0;
}
.tabcontent .bottom .asset_name img.splash {
    position: relative;
    float: right;
    top: -32px;
    padding-right: 32px;
}
.tabcontent .bottom .asset_detail {
    float: right;
    width: auto;
    height: auto;
}
.tabcontent .bottom .asset_detail p {
    background: rgba(140, 163, 190, 0.24);
    border: 1px solid #8ca3be;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 12px;
}
.tabcontent .bottom .asset_detail img.splash {
    position: relative;
    float: right;
    top: -8px;
    padding-right: 32px;
}
/* key features */
.feature {
    margin-top: 128px;
}
.key_feature > div img {
    resize: both;
    width: 124px;
    margin-bottom: -70px;
    position: relative;
    z-index: 99;
}
.feature_detail {
    padding: 64px 24px 12px 24px;
    margin-bottom: 48px;
    background: rgba(57, 57, 57, 0.52);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 2px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(4px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 16px;
}

.feature_detail p {
    height: 54px;
    display: block;
    overflow: hidden;
}

/* tokenomic */
.tokenomic {
    margin-top: 108px;
    background: rgba(29, 29, 29, 0.84);
    box-shadow: inset 0px 4px 12px rgba(0, 0, 0, 0.25);
    padding: 96px 0 56px 0;
}
.tokenomic_list > div {
    margin-bottom: 40px;
}
.tokenomic img {
    resize: both;
    height: 64px;
}

/* tokenmetric */
.tokenmetric {
    margin-bottom: 128px;
}
#kaba_chart {
    height: 532px;
    background-color: transparent !important;
}
.anychart-credits {
    display: none;
}
g:hover {
    fill: none !important;
}
g > path:not([data-ac-wrapper-id="7"]):hover {
    fill: #fe8115;
}

.tokenmetric {
    margin-top: 128px;
}
.metric_list ul li {
    display: table;
    width: 100%;
    padding: 12px 12px;
    background-color: rgba(255, 255, 255, 0);
}
.metric_list ul li:hover {
    background-color: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}
.metric_list ul li span {
    display: table-cell;
    vertical-align: middle;
    line-height: 32px;
    text-align: left;
}
.metric_list ul li span:nth-child(1) {
    width: 75%;
    display: inline-block;
    color: rgba(255, 255, 255, 0.82);
}
.metric_list ul li span:nth-child(2) {
    font-family: "Righteous", cursive;
    width: 10%;
    display: inline-block;
    text-align: right;
    color: rgba(255, 255, 255, 1);
}
.metric_list ul li span:nth-child(3) {
    width: 15%;
}
.metric_list ul li span img {
    resize: both;
    height: 32px;
    float: right;
}
.metric_list ul li:last-child {
    background: rgba(140, 163, 190, 0.24);
    padding: 20px 16px;
    border-right: 1px solid #8ca3be;
}
.metric_list ul li:last-child span:nth-child(1) {
    width: 30%;
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    font-family: "Righteous", cursive;
}
.metric_list ul li:last-child span:nth-child(2) {
    color: rgba(255, 255, 255, 0.82);
    font-size: 48px;
    text-align: right;
    width: 70%;
}

/* roadmap */
.roadmap {
    background-image: url(./roadmap_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 128px 0;
}
.roadmap img {
    resize: both;
    width: 100%;
}
.roadmap img.xs_show {
    resize: both;
    height: 40%;
    width: auto;
}
/* our team */
.team {
    margin-top: 128px;
}
.team_mate {
    margin-bottom: 80px;
}
.team_mate img {
    resize: both;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1px;
}
.team_mate_detail {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 8px;
    padding: 4px 16px 8px 16px;
}

/* news */
.on_press {
    background-image: url(./onPress.jpg);
    height: auto;
    min-height: 900px;
    background-size: cover;
    background-position: bottom;
    padding-top: 10%;
}

.news {
    margin-top: 72px;
}
.news_listing {
    background-color: #fff;
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 8px;
    padding: 16px 16px 0px 16px;
    margin-top: 16px;
}

.news_listing:hover {
    float: left;
    background: rgba(255, 255, 255, 0.24);
}
.news_listing:hover > p {
    color: #fe8115;
}
.news_listing img {
    resize: both;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}
.news_listing ul {
    margin-top: 24px;
}
.news_listing ul li {
    float: left;
}
.news_listing ul li img {
    resize: both;
    height: 20px;
}
.news_listing ul li:last-child {
    float: right;
    margin-top: 6px;
}

/* backers*/
.backer {
    height: auto;
    min-height: 900px;
    background-image: url(/web/20211128121434im_/https://kriptobattle.com/img/onPress.jpg);
    background-size: cover;
    background-position: bottom;
    display: none;
}

.backer_list {
    margin-top: 72px;
}
.backer_list img {
    resize: both;
    height: 40px;
    display: block;
    margin: 0 auto 52px auto;
    opacity: 0.6;
}
.backer_list img:hover {
    opacity: 1;
}

/* FOOTER */
footer {
    background-color: #030207;
    padding: 24px 0 40px 0;
}
footer .logo > img {
    resize: both;
    height: 80px;
}
footer .social {
    margin: auto;
}
footer .social ul {
    float: right;
}
footer .social ul li {
    float: left;
    margin-left: 24px;
}
footer .social ul li a > img {
    resize: both;
    width: 20px;
}
footer .social ul li a:hover > img {
    filter: grayscale(0%);
}

hr.footer {
    background-color: rgba(143, 144, 166, 0.52);
    margin: 0 !important;
}

.copy_rights {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}
.copy_rights ul {
    float: right;
}
.copy_rights ul li {
    float: left;
    margin-left: 12px;
}
.copy_rights ul li a {
    color: rgba(255, 255, 255, 0.82);
}
.copy_rights ul li a:hover {
    color: #fe8115;
}
/*
     FILE ARCHIVED ON 12:14:34 Nov 28, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:24:08 Jun 12, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.745
  exclusion.robots: 0.108
  exclusion.robots.policy: 0.096
  esindex: 0.013
  cdx.remote: 16.324
  LoadShardBlock: 103.87 (3)
  PetaboxLoader3.datanode: 68.266 (4)
  PetaboxLoader3.resolve: 81.681 (2)
  load_resource: 73.856
*/
