@import url('https://fonts.googleapis.com/css2?family=BenchNine&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BenchNine&family=Changa&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.impo{
    font-size: .7em;
    color: #ff4802;
    margin-top: 5px;
}

.suspend{
    width: 100%;
    height: 100%;
    display: none;
    padding-top: 30px;
    /* align-items: center; */
    justify-content: center;
    backdrop-filter: blur(4px);
    position: fixed;
    top: 0;
    background: #030f1684;
    background: #8f959984;
    z-index: 10000;
}

.suspend.active{
    display: flex;
}

.suspend .cause{
    width: fit-content;
    padding: 30px 50px;
    height: fit-content;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #032030;
    color: white;
    text-transform: capitalize;
    position: relative;
}

.suspend .cause p{
    font-size: 1.4em;
    height: fit-content;
}

.suspend .cause a{
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: 15px;
    background: #00a6ff;
    color: var(--lightBlack);
    text-decoration: none;
    font-size: 1.5em;
}

html{
    font-size: 100%;
}

::-webkit-scrollbar{
    width: 8px;
}

::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background: #00a6ff;
}

body{
    height: 100vh;
    --graylight: #a0a0a0;
    --graylighter: #dbdada;
    --orange: #f59b2c;
    --orangelight: #f0a54b;
    --grey: #f0f8ff;
    --white: #fff;
    --darkgrey: #3f4141;
    --lightBlack: #282929;
    color: #151414;
    letter-spacing: 1px;
    transition: all 0.5s;
    font-family: 'BenchNine', sans-serif;
    font-family: 'Changa', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'ABeeZee', sans-serif;
    font-family: sans-serif;
    background: #222b34fa;
}

.app{
    width: 100%;
    height: 100%;
    position: relative;
}

.app main{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.app main .sidebar{
    width: 20vw;
    /* height: 100%; */
    height: 98%;
    margin: auto;
    border-radius: 10px;
    background: var(--graylighter);
    position: relative;
    box-shadow: 1px 1px 3px #09131cf2;
}

.app main .sidebar .logo{
    width: 100%;
    height: 130px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 2px solid red; */
}

.app main .sidebar .logo img{
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.app .logoMage1{
    display: block;
}

.app .logoMage2{
    display: none;
}

.app main .sidebar .budget{
    width: 100%;
    height: 100px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
    color: #3f4141;
}

.app main .sidebar .budget h2{
    font-size: 1.7em;
}

.app main .sidebar .budget p{
    font-size: 1.1em;
    margin: 5px 0;
}

.app main .sidebar .menu-tabs,
.app main .sidebar .menu-tabs ul{
    width: 100%;
    height: auto;
    list-style: none;
}

.app main .sidebar .menu-tabs ul li{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    font-size: 1.04em;
    font-weight: lighter;
    letter-spacing: 1px;
    transition: 0.5s;
    cursor: pointer;
    font-weight: 700;
    color: #3f4141;
}

.app main .sidebar .menu-tabs ul li.active,
.app main .sidebar .menu-tabs ul li.active:hover{
    color: #ffffff;
    font-size: .9em;
    font-weight: 700;
    background: var(--orange);    
    transform: scale(1.03);
    box-shadow: 1px 1px 5px #a0a0a0eb,
    1px 3px 7px #a0a0a0eb;
}

.app main .sidebar .menu-tabs ul li.active:hover{
    background: var(--orangelight);   

}

.app main .sidebar .menu-tabs ul li:hover{
    color: #ffffff;
    font-size: .9em;
    font-weight: 700;
    background: var(--graylight);    
    transform: scale(1.01);
    box-shadow: 1px 1px 5px #a0a0a0eb;
}

.app main .sidebar .menu-tabs ul li p i {
    margin: 0 5px;
    margin-left: 22px;
}



.app main .button{
    width: 35px;
    height: 30px;
    padding: 5px 0;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 25px;
    right: -25px;
    border-radius: 6px;
    overflow: hidden;
    /* background: var(--graylight); */
    background: #030c14f2;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    transition: 0.5s;
    /* border-right: 2px solid var(--graylight);
    border-left: 2px solid var(--graylight); */
    border: 2px solid #b5ccff;
    z-index: 100;
}

/* .app main .sidebar .button::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--graylight);
    transition: 0.5s;
}


.app main .sidebar .button::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--graylight);
    transition: 0.5s;
} */

/* .app main .sidebar .button:hover::before, */
/* .app main .sidebar .button.active::before{
    background: var(--orange);
    width: 5px;
} */

/* .app main .sidebar .button:hover::after,
.app main .sidebar .button.active::after{
    background: var(--orange);
    width: 5px;
}

.app main .sidebar .button:hover,
.app main .sidebar .button.active{
    background: #0000003b;
    border-left: 2px solid rgba(0, 0, 0, 0);
    border-right: 2px solid rgba(0, 0, 0, 0);
}

*/

.app main .button .icon{
    margin: auto;
    width: 80%;
    height: 3px;
    border-radius: 20px;
    /* background: var(--grey); */
    background: #b5ccff;
    transition: 0.5s;
}





/* .app main .sidebar .button:hover .icon,
.app main .sidebar .button.active .icon{ */
    /* transform: scale(calc(-0.5 * var(--ic))); */
    /* background: var(--orange);
} */


/* LOGOUT */
.app main .sidebar .log-out{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 17px 0;
}

.app main .sidebar .log-out i {
    margin: 0 5px;
    margin-left: 22px;
}

.app main .sidebar .log-out input[type="submit"]{
    background: transparent;
    font-size: 1em;
    padding: 5px 10px;
    border: none;
    outline: none;
    color: var(--darkgrey);
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 1px -1px 2px #dc1414;
}

.app main .sidebar .log-out input[type="submit"]:hover{
    transform: scale(1.1);
}




/* NAVBAR ACTIVE CLASS  */
.app main .sidebar.active{
    width: 250px;
    position: absolute;
    left: 0;
    transition: 0.1s;
    z-index: 50;
    /* box-shadow: 0 1px 10px var(--darkgrey); */
}

.app main .sidebar.active + .content{
    filter: blur(2px) saturate(0.5) brightness(0.8);
}

.app main .sidebar.active .logo {
    display: flex;
}


.app main .sidebar.active .budget{
    opacity: 1;
}


.app main .sidebar.active .menu-tabs ul{
    display: block;
}

.app main .sidebar.active .log-out{
    display: flex;
}




























/* ---------------------------------------------------- CONTENT ------------------------------------------------------------------ */

.app main .content{
    width: 80vw;
    height: 100%;
    /* border: 2px solid green; */
}


.app main .content .tab{
    width: 100%;
    height: 100%;
    display: none;
    overflow-y: scroll;
}

.app main .content .tab.active{
    display: block;
}

.app main .content .tab .heading{
    width: 100%;
    /* height: 100px; */
    height: 80px;
    /* padding: 30px 20px; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    box-shadow: 1px 1px 5px #a0a0a045;
    /* border: 3px solid black; */
    position: sticky;
    top: 0;
    translate: 0 5px;
    z-index: 99;
}

.app main .content .tab .heading .title h2{
    font-size: 2em;
    margin-left: 52px;
    text-transform: capitalize;
}

.app main .content .tab .heading .info{
    width: fit-content;
    height: 100%;
    padding: 0 5px;
    display: flex;
    align-items: center;
}

.app main .content .tab .heading .info .note{
    width: 30px;
    height: 30px;
    display: flex;
    margin-right: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: grey;
}

.app main .content .tab .heading .info .profile{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 50%;
    text-transform: capitalize;
    /* background: grey; */
}

.app main .content .tab .heading .info .profile .pic{
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1eb223;
    margin-right: 10px;
    overflow: hidden;
}




.app main .content .tab .mini{
    width: 100%;
    height: auto;
    padding: 20px;
}




/* ------------------------------------------------------ CYPTO-TABS ----------------------------------------------------- */
.app main .content .tab .crypto-tabs{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.app main .content .tab .crypto-tabs h3{
    margin-bottom: 5px;
}

.app main .content .tab .crypto-tabs > div{
    width: 100%;
    height: 120px;
    height: auto;
    padding: 10px 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #063148,#085985);
    color: #ffff;
    /* box-shadow: 1px 1px 5px #a0a0a0; */
    box-shadow: 1px 1px 5px #032639;
    border-radius: 3px;
    text-transform: capitalize;
}

.app main .content .tab .crypto-tabs > div.eth{
    background: linear-gradient(90deg, #044669,#0d5982);
}

.app main .content .tab .crypto-tabs > div.bin{
    background: linear-gradient(90deg, #04527c,#1e7eb2);
}

.app main .content .tab .crypto-tabs > div .image{
    display: flex;
    align-items: center;
}

.app main .content .tab .crypto-tabs > div .image img{
    width: 35px;
    height: 60px;
    margin-right: 6px;
    border-radius: 50%;
    object-fit: contain;
}

.app main .content .tab .crypto-tabs > div .image .name h2{
    font-size: 1.2em;
    margin-bottom: 2px;
}

.app main .content .tab .crypto-tabs > div .show{
    width: 20%;
    /* border: 2px solid white; */
    text-align: end;
}

.app main .content .tab .crypto-tabs > div .image .name p{
    font-size: .8em;
}


.app main .content .tab .activity{
    padding: 0;
    margin: auto;
    width: 90%;
    box-shadow:  0 0 3px #032030;
    margin-bottom: 10px;
}

.app main .content .tab .activity .head{
    padding: 20px 15px;
    background: linear-gradient(90deg, #051f2d,#032639);
    color: var(--graylight);
}


.app main .content .tab .activity .table{
    padding: 20px 15px;
}

.app main .content .tab .activity .table .outline{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 10px;
}

.app main .content .tab .activity .table .outline .purse{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app main .content .tab .activity .table .outline .purse i{
    padding: 8px;
    margin-right: 8px;
    border-radius: 8px;
    background: var(--graylight);
    /* color: var(--grey); */
    color: #0c1c2af2;
    border: 1px solid #0c1c2af2;
}


/* STATUS */
.app main .content .tab .activity .table .outline.success .status{
    color: #067106;
}

.app main .content .tab .activity .table .outline.fail .status{
    color: #9d0920;
}








/* ------------------------------------------------------ INVEST-TABS ----------------------------------------------------- */
/* DEPOSITS */
.app main .content .tab .big-balance{
    margin: auto;
    margin-top: 20px;
    width: 95%;
    background: #0c1c2af2;
    color: #feffffc2;
    border-radius: 20px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.app main .content .tab .big-balance .fund{
    margin: 30px 10px;
}

.app main .content .tab .big-balance .fund h4{
    font-size: 1.2em;
    margin-bottom: 5px;
}

.app main .content .tab .big-balance .fund h1{
    font-size: 2.2em;
}



.app main .content .tab .invest-tabs{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 45px;
}

.app main .content .tab .invest-tabs > div{
    width: 220px;
    height: 120px;
    display: flex;
    padding: 20px;
    /* align-items: center; */
    flex-direction: column;
    justify-content: center;
    color: #ffff;
    /* box-shadow: 1px 1px 5px #a0a0a0; */
    box-shadow: 1px 1px 5px #0c1c2af2;
    border-radius: 3px;
    text-transform: capitalize;
}

.app main .content .tab .invest-tabs > div.robot{
    background: linear-gradient(90deg, #00a6ff,#085985);
}

.app main .content .tab .invest-tabs > div.balance{
    background: linear-gradient(90deg, #ff00fb,#9b1199);
}

.app main .content .tab .invest-tabs > div.earned{
    background: linear-gradient(90deg, #ffcc00,#977b0b);
}

.app main .content .tab .invest-tabs > div.pending{
    background: linear-gradient(90deg, #5230ff,#1f0b7e);
}

.app main .content .tab .invest-tabs > div h3{
    font-size: 1em;
    margin-bottom: 8px;
}

.app main .content .tab .invest-tabs > div p{
    font-size: 2em;
}

.app main .content .tab .invest-tabs > div .pack{
    font-size: 1.5em;
}

.app main .content .tab .invest-tabs > div .sts {
    font-size: 1.5em;
}

.overview{
    width: 80%;
    background: #0c1c2af2;
    color: #feffffc2;
    margin-left: 50px;
    margin-bottom: 5px;
    padding: 25px;
    border-radius: 10px
}
/* .app main .content .tab .chart-container{
    border: 2px solid red;
    height: 100px;
} */


.app main .content .tab .chart-container #statsChart{
    width: 100%;
}








/* ------------------------------------------------------ STATS ----------------------------------------------------- */
.app main .content .tab .stats{
    width: 100%;
    height: auto;
    color: #e9f3fdf2;
}

.app main .content .tab .stats form{
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.app main .content .tab .stats form .fill > div{
    width: 100%;
    display: flex;
    /* align-items: center; */
    padding: 0 10px;
    flex-direction: column;
    justify-content: space-around;
    height: auto;
    margin-bottom: 20px;
    /* border: 2px solid red; */
}

.app main .content .tab .stats form .fill > div input[type="number"]{
    width: 300px;
    height: 30px;
    padding: 0 10px;
    margin-bottom: 7px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 3px var(--graylight)
}

.app main .content .tab .stats form .fill > div label{
    font-size: 1.5em;
    margin-bottom: 10px;
}

.app main .content .tab .stats form .fill > div .pay{
    padding: 0 30px;
    margin: 3px 0;
}

.app main .content .tab .stats form .fill > div .pay input[type="submit"]{
    width: 70px;
    height: 30px;
    cursor: pointer;
    border: none;
    background: linear-gradient(90deg, #35389b, #1d22b3);
    color: #f0f8ff;
    transition: 0.5s;
}

.app main .content .tab .stats form .fill > div .pay.request,
.app main .content .tab .stats form .fill > div .pay.deposit{
    display: none;
}

.app main .content .tab .stats form .fill > div .pay.request.active,
.app main .content .tab .stats form .fill > div .pay.deposit.active{
    display: block;
}


.app main .content .tab .stats form .fill > div .pay input[type="submit"]:hover{
    background: linear-gradient(90deg, #484ba3, #272baa);
    transform: scale(1.03);
}

.app main .content .tab .stats form .fill .wallet{
    align-items: center;
    margin-top: 10px;
    display: none;
}

.app main .content .tab .stats form .fill .wallet > div input[type="text"]{
    width: 300px;
    height: 30px;
    padding: 0 10px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 3px var(--graylight)
}

.app main .content .tab .stats form .fill .wallet.active{
    display: block;
}

.app main .content .tab .stats form .fill .wallet > div{
    margin-bottom: 10px;
}

.app main .content .tab .stats form .fill .wallet > div h4{
    font-size: 1.3em;
}

.app main .content .tab .stats form .fill .wallet > div p{
    font-size: 1.2em;
    overflow: auto;
}

.app main .content .tab .stats table{
    width: 100%;
    height: auto;
    border-collapse: collapse;
    /* border: 2px solid black; */
    /* border: 1px solid #0000006b; */
    box-shadow: 0 0 4px #0000006b;
}

.app main .content .tab .stats h2{
    margin-bottom: 10px;
}

.app main .content .tab .stats table thead{
    height: 50px;
    /* background: var(--graylight); */
    box-shadow: 0 0 4px #0000006b;
    /* border: 1px solid #0000006b; */
    background: #0e0f23;
}

.app main .content .tab .stats table thead th{
    text-align: center;
}

.app main .content .tab .stats table tbody .middle{
    font-size: 3em;
    margin: auto;
    padding: 20px;
}

.app main .content .tab .stats table tbody tr{
    background: #13142ef5;
}

.app main .content .tab .stats table tbody tr:nth-of-type(odd){
    /* background: var(--graylighter); */
    background: #00020ffa;
}
.app main .content .tab .stats table tbody td{
    text-align: center;
    height: 40px;
}



/* WITHDRAWAL METHODS */
.app main .content .tab .stats .methods{
    /* width: 100%; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    height: auto;
    margin-bottom: 20px;
}

.app main .content .tab .stats .methods > div{
    padding: 12px 12px;
    margin-right: 10px;
    height: 50px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* box-shadow: 0 0 2px var(--graylight); */
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
    background: #02283c;
    color: var(--white);
    box-shadow: 0 0 2px #00d3ff;
}

.app main .content .tab .stats .methods > div:hover{
    background: 30% var(--graylighter);
}

.app main .content .tab .stats .methods > div.active{
    background: 30% var(--orange);
    color: var(--white);
}

.app main .content .tab .stats .methods > div img{
    width: 30px;
    margin-right: 3px;
}

.app main .content .tab .stats form#formWith {
    display: none;
}

.app main .content .tab .stats form#formWith.active {
    display: block;
}

.app main .content .tab .stats form#formWith .methodDiv{
    display: none;
}

.app main .content .tab .stats form#formWith .methodDiv.active{
    display: block;
}










/* ------------------------------------------------------------- LIVE --------------------------------------------- */
.app main .content .tab .live{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
}

.app main .content .tab .live > div{
    margin: 10px 5px;
    height: auto;
    border-radius: 10px;
}

.app main .content .tab .live #chartDiv{
    width: 70%;
    padding-top: 20px;
    box-shadow: -1px 0 3px var(--graylight); /* shadow left */
}

.app main .content .tab .live #secondChart{
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px;
}

.app main .content .tab .live .trades-phantom{
    width: 30%;
    box-shadow: 1px 0 3px var(--darkgrey); /* shadow right */
}

.app main .content .tab .live .trades-phantom h3{
    margin: 20px;
}

.app main .content .tab .live .trades-phantom .output{
    width: 100%;
    height: 80%;
    overflow-y: auto;
}

.app main .content .tab .live .trades-phantom .output::-webkit-scrollbar{
    width: 5px;
}

.app main .content .tab .live .trades-phantom .output::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background: #ff0051;
    cursor: pointer;
    opacity: 0.3;
}

.app main .content .tab .live .trades-phantom .output::-webkit-scrollbar-thumb:hover{
    opacity: 1;
}

.app main .content .tab .live .trades-phantom table{
    width: 100%;
    border-collapse: collapse;
}


.app main .content .tab .live .trades-phantom .output table thead{
    height: 40px;
    display: none;
}

.app main .content .tab .live .trades-phantom table thead th{
    text-align: center;
}

.app main .content .tab .live .trades-phantom table tbody{
    overflow: hidden;
}


.app main .content .tab .live .trades-phantom table tbody td{
    text-align: center;
    height: 40px;
}
.green{
    color: #18b518;
    text-shadow: 0 0 10px #28ff28;
}
.red{
    color: #cf1a35;
    text-shadow: 0 0 10px #ff304f;
}




















/* ------------------------------------------------------------------------- SUPPORT ------------------------------------------ */
.app main .content .tab .support{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.app main .content .tab .support form {
    width: 80%;
    padding: 30px 15px;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 2px #3f4141;
    border-radius: 20px;
}

.app main .content .tab .support form h2{
    width: fit-content;
    margin-left: 35px;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #651717;
    text-transform: capitalize;
}

.app main .content .tab .support form .full{
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
}

.app main .content .tab .support form .full input{
    width: 100%;
    height: 35px;
    padding-left: 10px;
    border: none;
    outline: none;
    border-radius: 20px;
    background: #2c95cd49;
}

.app main .content .tab .support form .full textarea{
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    border: none;
    outline: none;
    border-radius: 20px;
    background: #2c95cd49;
}


.app main .content .tab .support form .send_btn{
    margin: 20px;
    width: 90%;
    height: 35px;
    border: none;
    outline: none;
    border-radius: 20px;
    background: linear-gradient(45deg, #8f112a, #dc143c);
    color: var(--white);
    cursor: pointer;
    transition: 0.5s;
}

.app main .content .tab .support form .send_btn:hover{
    background: linear-gradient(175deg, #f32e56, #dc143c);
}














/* --------------------------------------------------------------------------- MEDIA QUERIES ----------------------------------------------------- */
@media screen AND (max-width: 1200px){
    html {
        /* font-size: 95%; */
    }




    .app main .content .tab .invest-tabs > div {
        width: 200px;
    }
}



@media screen AND (max-width: 1150px){
    html {
        /* font-size: 90%; */
    }

    
    .app main .content .tab .invest-tabs > div {
        width: 190px;
    }
}


@media screen AND (max-width: 1060px){
    html {
        /* font-size: 85%; */
    }

    
    .app main .content .tab .invest-tabs > div {
        width: 180px;
    }
}


@media screen AND (max-width: 1000px){
    html {
        font-size: 90%;
    }

    .app main .sidebar .logo {
        height: 100px;
    }
    
    .app main .sidebar .menu-tabs ul li {
        height: 46px;
    }


    .app main .content .tab .heading .info .note {
        width: 20px;
        height: 20px;
        margin-right: 20px;
    }

    

    .app main .content .tab .invest-tabs > div {
        width: 170px;
        height: 112px;
    }

    
}


@media screen AND (max-width: 950px){
    /* html {
        font-size: 70%;
    } */
    

    .app main .content .tab .invest-tabs > div {
        width: 160px;
        height: 110px;
    }

    .app main .content .tab .live #chartDiv {
        width: 60%;
    }

    .app main .content .tab .live .trades-phantom {
        width: 35%;
    }
}


@media screen and (max-width: 900px){
    /* html {
        font-size: 65%;
    } */


    .app main .content .tab .invest-tabs > div {
        width: 150px;
        height: 100px;
    }

    .app main .content .tab .live {
        flex-direction: column;
    }

    .app main .content .tab .live #chartDiv {
        width: 100%;
    }

    .app main .content .tab .live .trades-phantom {
        width: 100%;
    }
}


@media screen and (max-width: 850px){
    /* html {
        font-size: 60%;
    } */


    

    .app main .content .tab .invest-tabs > div {
        width: 140px;
        height: 90px;
    }
}


@media screen and (max-width: 780px){
    .app main .content .tab .invest-tabs > div {
        width: 250px;
        height: 90px;
        margin: 20px 10px;
    }
}


@media screen and (max-width: 750px){
    .app main .content .tab .invest-tabs > div {
        width: 250px;
        height: 90px;
        margin: 20px 0px;
    }
}


@media screen and (max-width: 700px){

    .app main .sidebar {
        width: 5vw;
    }

    .app main .sidebar .logo {
        display: none;
    }

    .app main .sidebar .budget{
        opacity: 0;
    }

    .app main .sidebar .button {
        display: flex;
    }

    
    .app main .sidebar .menu-tabs ul{
        display: none;
    }

    .app main .sidebar .log-out{
        display: none;
    }


    
    .app main .content {
        width: 100vw;
    }
}


@media screen and (max-width: 600px){



    .app main .content .tab .invest-tabs > div {
        width: 230px;
        height: 90px;
    }
}




@media screen and (max-width: 550px){
    
    .app main .sidebar {
        width: 0;
    }

    .app main .sidebar .button {
        width: 30px;
        height: 30px;
        top: 32px;
        right: -38px;
    }
    
    
    .app main .content .tab .heading .info .note {
        display: none;
    }

    .app main .content .tab .invest-tabs > div {
        width: 47%;
        margin: 5px;
    }


    .app main .content .tab .support form {
        width: 90%;
    }
}

@media screen AND (max-width: 500px) {
    .app main .sidebar .menu-tabs ul li {
        width: 100%;
        height: 45px;
        font-size: 1.2em;
    }

    .app main .content .tab .live .trades-phantom {
        height: 300px;
    }

    .app main .content .tab .live .trades-phantom .output{
        height: 70%;
    }
}



@media screen AND (max-width: 450px) {
    .app main .content .tab .support form {
        width: 100%;
        padding: 30px 0px;
    }
}


@media screen AND (max-width: 400px) {

    .app main .sidebar .menu-tabs ul li {
        height: 50px;
        /* font-size: 142%; */
    }

    .app main .content .tab .heading {
        font-size: 87%;
    }

    .app main .content .tab .crypto-tabs {
        font-size: 80%;
    }

    .app main .content .tab .invest-tabs > div {
        width: 90%;
        margin: 5px;
        padding: 20px 25px;
    }

    .app main .content .tab .crypto-tabs > div .image img {
        width: 25px;
    }

    .app main .content .tab .activity{
        font-size: 85%;
    }

    .app main .content .tab .activity .table {
        padding: 10px 0px;
        font-size: 85%;
    }


    .app main .content .tab .stats form .fill > div input[type="number"] {
        width: 90%;
    }

    .app main .content .tab .stats form .fill > div .pay input[type="submit"] {
        width: 70px;
        height: 28px;
    }

    .app main .content .tab .stats form .fill .wallet > div input[type="text"] {
        width: 90%;
        height: 30px;
    }

    .app main .content .tab .stats .methods > div {
        padding: 7px;
        margin-right: 7px;
        height: 45px;
    }

    .app main .content .tab .stats .methods > div img {
        width: 25px;
    }

}


@media screen AND (max-width: 350px) {
    .app main .content .tab .stats form .fill .wallet > div p {
        font-size: .9em;
    }

    .app main .content .tab .stats .methods {
        font-size: 80%;
    }

    .app main .content .tab .stats .methods > div {
        padding: 7px;
        margin-right: 5px;
        height: 35px;
    }

    .app main .content .tab .stats .methods > div img {
        width: 20px;
    }
}

@media screen and (max-width: 300px){
    html {
        font-size: 60%;
    }

    .app main .content .tab .heading {
        padding: 0 10px;
    }







    .app main .content .tab .stats form .fill > div .pay input[type="submit"] {
        width: 60px;
        height: 28px;
        font-size: xx-small;
    }

    .app main .content .tab .stats form .fill > div .pay {
        padding: 0 0px;
        margin: 20px 0;
    }


    .app main .content .tab .stats form .fill > div input[type="number"] {
        height: 25px;
    }

    .app main .content .tab .stats form .fill .wallet > div input[type="text"] {
        height: 25px;
    }
}


@media screen and (max-width: 260px){
    html {
        font-size: 55%;
    }

    .app main .content .tab .heading {
        padding: 0;
    }

    .app main .content .tab .stats form .fill > div .pay input[type="submit"] {
        width: 52px;
        height: 22px;
    }
}