@import url('https://fonts.googleapis.com/css2?family=Tahoma:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

html {
   height: 100%;
   -webkit-text-size-adjust: 100%;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: #1A2026;*/
    background: rgb(26 32 38);
    min-height: 100%;
    font-family: Tahoma, sans-serif;
    font-variant-ligatures: none;
    -webkit-font-smoothing: antialiased;
}

.content {
    display: none;
}

.loading {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loading-photo {
    width: 80%;
}

/*
.loading-account-validate {
    color: #fffff0;
    font-size: 1.1rem;
    animation: account-validate 1s ease-in-out infinite;
}
@keyframes account-validate {
    0%     {color: #55ADFF;}
    50.0%  {color: #fffff0;}
    100.0%  {color: #55ADFF;}
}
*/
/*
.loading-bars {
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.loading span {
    width: 5px;
    height: 34px;
    background: #26A1FF;
    animation: scale 0.9s ease-in-out infinite;
}
.loading span:nth-child(2) {
    background: #26A1FF;
    animation-delay: -0.8s;
}
.loading span:nth-child(3) {
    background: #26A1FF;
    animation-delay: -0.7s;
}
.loading span:nth-child(4) {
    background: #26A1FF;
    animation-delay: -0.6s;
}
.loading span:nth-child(5) {
    background: #26A1FF;
    animation-delay: -0.5s;
}
@keyframes scale {
    0%, 40%, 100% {
    transform: scaleY(0.05);
    }
    20% {
    transform: scaleY(1);
    }
}
*/
.navigation {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 66px;
    background: rgb(26 32 38);
    justify-content: center;
    align-items: center;
    padding: 0 25px 0 25px;
    z-index: 50;
}
.navigation ul {
    display: flex;
    width: 100%;
    justify-content: center;
}
.navigation ul li {
    position: relative;
    width: 25%;
    justify-content: center;
    align-items: center;
    list-style: none;
    background: transparent;
}
.navigation ul li button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
}
.navigation ul li button .icon {
    display: flex;
    color: #cccccc;
    font-size: 1.6em;
    transition: all 0.1s ease-in-out;
}
.navigation ul li.active button .icon {
    color: #26A1FF;
    font-size: 1.6em;
    transition: all 0.1s ease-in-out;
}
.navigation ul li button .text {
    color: #cccccc;
    font-weight: 300;
    font-size: .8em;
    letter-spacing: .03em;
    padding: 2px 0 0 0;
    transition: all 0.1s ease-in-out;
}
.navigation ul li.active button .text {
    color: #26A1FF;
    font-weight: 500;
    font-size: .8em;
    padding: 2px 0 0 0;
    transition: all 0.1s ease-in-out;
}


.header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background: rgb(26 32 38);
    padding: 5px 15px 5px 15px;
    z-index: 50;
}
.header-app-box {
    width: 80%;
    display: flex;
    margin-left: 0;
    align-items: center;
    justify-content: left;
}
.header-app-icon {
    width: 14px;
}
.header-app-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 0 4px;
}
.header-support-box {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: right;
}
.header-support-icon {
    display: flex;
    color: #ffffff;
    font-size: 1.4em;
}

.capital-stats-chart-popup, .crypto-deals-chart-popup, .commodity-chart-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: auto;
    background: rgb(33, 42, 51);
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #FDD300;
    z-index: 101;
    animation: moveup .5s ease-in-out;
}
@keyframes moveup {
    from {
    transform: translateY(500px) ;
    }
    to {
    transform: translateY(0px) ;
    }
}
.charts-title {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    margin-top: 50px;
}
.charts-subtitle {
    color: #999;
    font-size: .7rem;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}
.charts-container {
    width: 88%;
    max-width: 600px;       /* works well on tablets/desktop */
    margin: auto;
    margin-bottom: 20px;
}
#canvas {
    width: 100% !important; /* make chart scale */
    height: auto !important;
}

.capitalstats-popup-btn, .cryptodealschart-popup-btn, .commoditychart-popup-btn {
    display: flex;
    position: relative;
    cursor: pointer;
    width: 90%;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #26A1FF;
    border: none;
    border-radius: 5px;
    margin: 20px 5px 20px 5px;
}

.pages-section {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: none;
    align-items: center;
    padding-top: 20px;
    overflow-y: scroll;
}
.pages-section::-webkit-scrollbar {
    display: none;
}
.pages-section {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.page2, .page3, .page4, .page5 {
    display: none;
}

.page1, .page2, .page3, .page4, .page5 {
    flex-direction: column;
    width: 100%;
}

.devider {
  height: 10px;
}

.page-finish-devider {
  height: 140px;
}






/* ------------------ Page1 Home Balance -------------------- */

.user-total-balance {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.total-balance-icon {
    width: 36px;
}
.total-balance-amount {
    color: #F5F5F5;
    font-family: "Roboto", sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    padding: 0 0 0 7px;
}
.deposits-withdrawals {
    color: #CCCCCC;
    font-family: "Roboto", sans-serif;
    font-size: .7rem;
    font-weight: 300;
    text-align: center;
}

.gain-info-frame, .charts-buttons-frame {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 10px;
}
.gain-APRT, .gain-APRY, .gain-APRM, .gain-day-max, .gain-day-min {
    display: flex;
    flex-direction: column;
    width: 20%;
    align-items: center;
    justify-content: center;
    margin: 5px;
}
.gain-info-amounts {
    display: flex;
    color: #FFFFFF;
    font-size: .8rem;
    font-weight: 500;
    text-align: center;
}
.gain-info-texts {
    color: #cccccc;
    font-size: .75rem;
    font-weight: 300;
    text-align: center;
    margin-top: 7px;
}
.gain-chart, .most-crypto-chart, .most-item-chart {
    display: flex;
    flex-direction: column;
    width: 33.33%;
    align-items: center;
    justify-content: center;
    background: rgb(33, 42, 51);
    border-radius: 10%;
    padding: 1.3rem;
    margin: 5px;
}
.gain-chart-icon {
    display: flex;
    color: #7CFC00;
    font-size: 1.4em;
}
.most-crypto-icon {
    display: flex;
    color: #FFA500;
    font-size: 1.4em;
}
.most-item-icon {
    display: flex;
    color: #FFCC00;
    font-size: 1.4em;
}
.gain-chart-text, .most-crypto-text, .most-item-text {
    color: #cccccc;
    font-size: .75rem;
    font-weight: 300;
    text-align: center;
    margin-top: 7px;
}

.gain-chart-popup {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #FDD300;
}
.gain-total-amount {
    color: #26A1FF;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
}

/*
#clock {
    color: #cccccc;
    font-size: .75rem;
    font-weight: 300;
    text-align: center;
    margin: 0 0 10px 0;
}
*/






/* ------------------ Page2 Deposit -------------------- */
.deposit-page-photo {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
}
.deposit-title {
    color: #BBBBBB;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: -10px 0 30px 0;
}
.deposit-box {
    display: flex;
    flex-direction: column;
    width: 88%;
    margin: auto;
}
.wallet-add-title {
    color: #BBBBBB;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    padding: 0 0 0 3px;
}
.deposit-address-box {
    display: flex;
    width: 100%;
    background: rgb(33, 42, 51);
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 10px;
    margin-top: 5px;
}
.deposit-address-text {
    width: 90%;
    color: #BBBBBB;
    font-size: .8rem;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-align: center;
}
.deposit-copyaddress-icon {
    width: 10%;
    color: #26A1FF;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin: auto;
}
.new-deposit-frame, .enterActivationCode-frame {
    display: flex;
    flex-direction: column;
    width: 88%;
    align-items: center;
    justify-content: center;
    background: rgb(33, 42, 51);
    border-radius: 5px;
    padding: 30px 15px 30px 15px;
    margin: 10px auto;
}
.new-deposit-title, .enterActivationCode-title {
    color: #BBBBBB;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}
.deposit-input-fields, .activationcode-input-fields {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 4px;
    background: #1A2026;
    color: #ccc;
    border: none;
    outline: none;
    box-shadow: none;
}
.deposit-input-fields:focus,
.deposit-input-fields:hover,
.deposit-input-fields:active {
    border: 1px solid #ccc !important;   /* Keep border unchanged */
    outline: none !important;
    box-shadow: none !important;
}
.activationcode-input-fields:focus,
.activationcode-input-fields:hover,
.activationcode-input-fields:active {
    border: 1px solid #ccc !important;   /* Keep border unchanged */
    outline: none !important;
    box-shadow: none !important;
}
.deposit-submit-btn, .check-code-btn {
    display: flex;
    color: #FFFFFF;
    width: 100%;
    height: 40px;
    font-size: .8rem;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    background: #248BDA;
    border-radius: 5px;
    margin: 10px 0 0 0;
    cursor: pointer;
    border: none;
    outline: none;
}






/* ------------------ Page3 Withdraw -------------------- */
.withdraw-page-photo {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
}
.withdraw-title {
    color: #BBBBBB;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: -10px 0 30px 0;
}
.new-withdraw-frame {
    display: flex;
    flex-direction: column;
    width: 88%;
    align-items: center;
    justify-content: center;
    background: rgb(33, 42, 51);
    border-radius: 5px;
    padding: 30px 15px 30px 15px;
    margin: 10px auto;
}
.new-withdraw-title {
    color: #BBBBBB;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}
.withdraw-input-fields {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 4px;
    background: #1A2026;
    color: #ccc;
    border: none;
    outline: none;
    box-shadow: none;
}
.withdraw-input-fields:focus,
.withdraw-input-fields:hover,
.withdraw-input-fields:active {
    border: 1px solid #ccc !important;   /* Keep border unchanged */
    outline: none !important;
    box-shadow: none !important;
}
.withdraw-submit-btn {
    display: flex;
    color: #FFFFFF;
    width: 100%;
    height: 40px;
    font-size: .8rem;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    background: #248BDA;
    border-radius: 5px;
    margin: 10px 0 0 0;
    cursor: pointer;
    border: none;
    outline: none;
}





/* ------------------ Page4 Activation Codes -------------------- */
/*
.codes-page-photo {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-top: 20px;
}
.codes-title {
    color: #BBBBBB;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: -10px 0 30px 0;
}
.codes-description {
    color: #BBBBBB;
    font-size: .8rem;
    font-weight: 400;
    text-align: justify;
    margin: -10px 30px 10px 30px;
}
.new-codes-frame {
    display: flex;
    flex-direction: column;
    width: 88%;
    align-items: center;
    justify-content: center;
    background: rgb(33, 42, 51);
    border-radius: 5px;
    padding: 30px 15px 30px 15px;
    margin: 10px auto;
}
.new-codes-title {
    color: #BBBBBB;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}
.codes-showing-box {
    display: flex;
    width: 100%;
    background: #1A2026;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 10px;
    margin-top: 5px;
}
.code-text {
    width: 90%;
    color: #BBBBBB;
    font-size: .8rem;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-align: center;
}
.code-copy-icon {
    width: 10%;
    color: #26A1FF;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    margin: auto;
}
.codes-showing-field {
    width: 100%;
    padding: 15px 10px 15px 10px;
    border-radius: 4px;
    font-size: 13px;
    background: #1A2026;
    color: #ccc;
    border: none;
    margin: 10px 0 10px 0;
}
.code-generation-btn {
    display: flex;
    color: #FFFFFF;
    width: 100%;
    height: 40px;
    font-size: .8rem;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    background: #248BDA;
    border-radius: 5px;
    margin: 10px 0 0 0;
    cursor: pointer;
}
*/





/* ------------------ Page5 Overview -------------------- */
.overview-page-photo {
    display: flex;
    width: 55px;    
    margin: auto;
}
.overview-title {
    color: #BBBBBB;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 4px;
}

.user-stats {
    display: flex;
    width: 91%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.user-stats-boxes {
    display: flex;
    width: 100%;
    height: 35px;
    align-items: center;
    justify-content: left;
    border-radius: 7px;
    background-color: #22303D;
    border: .5px solid #4B4B4B;
    padding: 0 0 0 10px;
    margin: 1px;
}
.stats-title {
    color: #BBBBBB;
    font-size: .8rem;
    font-weight: 600;
}
.stats-amount {
    color: #55ADFF;
    font-size: .8rem;
    font-weight: 600;
}

.boost-rank-btn {
    display: flex;
    width: 90%;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #248BDA;
    border-radius: 5px;
    margin: auto;
    cursor: pointer;
}
.boost-icon {
    font-size: 1.3em;
    color: #FFFFFF;
    padding: 4px 5px 0 0;
}
.boost-rank-text {
    color: #FFFFFF;
    font-size: .8rem;
    font-weight: 400;
}

.airdrop-overview-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    background-color: #22303D;
    border: .5px solid #4B4B4B;
    border-radius: 7px;
    padding: 20px;
    margin: 5px;
}
.airdrop-rank-name {
    width: 100%;
    color: #3AA0FF;
    font-size: .75rem;
    font-weight: 600;
}
.airdrop-check-icon {
    width: 9px;
    margin: 0 0 0 10px;
}
.airdrop-amount {
    width: 100%;
    color: #BBBBBB;
    font-size: .7rem;
    font-weight: 400;
}

.overview-frame {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.overview-roadmap-title, .overview-airdrop-title {
    color: #BBBBBB;
    font-size: .85rem;
    font-weight: 700;
    text-align: center;
    justify-content: left;
}
.roadmap-overview-card {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #22303D;
    border: .5px solid #4B4B4B;
    border-radius: 5px;
    padding: 30px 0 30px 0;
    margin: 5px;
}
.roadmap-icon {
    width: 70%;
    display: flex;
    margin: auto;
}
.overview-desc {
    color: #B7B7B7;
    text-align: justify;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 5px;
}
