@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,200;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;1,200;1,400;1,700&display=swap');


* {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    /*transition: .2s linear;*/
    scrollbar-width: thin;
    scrollbar-color: #565e64 #013847;
}

html {
    font-size: 20px;
    /*overflow: hidden;*/
    /*scroll-padding-top: 9rem;*/
    /*scroll-behavior: smooth;*/
}

/*html::-webkit-scrollbar-track {*/
/*    background: transparent;*/
/*}*/

/*html::-webkit-scrollbar-thumb {*/
/*    background: #0b5ed7;*/
/*    border-radius: 5rem;*/
/*}*/

body {
    background: #041a24;
}

*::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

*::-webkit-scrollbar-track {
  background: #013847;        /* color of the tracking area */
}

*::-webkit-scrollbar-thumb {
  background-color: #4a4a4e;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #4a4a4e;  /* creates padding around scroll thumb */
}


input {
    height: 45px;
    width: 100%;
    outline: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
    background: none;
    text-align: center;
    color: #ffffff;
}

input:focus,
input:valid {
    border-color: rgba(17, 142, 209, 150);
}

.button{
    height: 45px;
    width: 100px;
    outline: none;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: 1px;
    background: rgba(17, 142, 209, 150);
    margin-top: 45px;
    margin-bottom: 15px;
}

.button input {
    border: none;
}

.button input:hover {
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
}

/*---------------------------------------------------------------NAVBAR----------------------------------------------------*/

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 1.5rem 3%;*/
    /*border-bottom: .2rem solid rgba(220, 222, 222, .3);*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 60%;
}

.header .logo img {
    height: 4rem;
}

.navbar{
    float: right;
    margin-top: 1rem;
}

.navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #c2a027;
}

.navbar a:hover {
    border-bottom: .1rem solid #c2a027;
    padding-bottom: .5rem;
}

.header .icons div {
    color: rgb(220, 222, 222);
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover {
    color: #c2a027;
}

.header #name{
    color: #c2a027;
    float: right;
    margin-top: 1rem;
    margin-left: .4rem;
    font-size: 28px;
}


@media only screen and (max-width: 900px) {

    .header{
        width: 100%;
    }

    .navbar{
        float: right;
    }

    .header .logo img {
        height: 2rem;
    }

    .navbar a {
        margin: 0 0.3rem;
        font-size: 1rem;
        color: #c2a027;
    }

    .navbar a:hover {
        border-bottom: .1rem solid #c2a027;
        padding-bottom: .5rem;
    }

    .header #name{
        color: #c2a027;
        float: right; margin-top: 1rem;
        margin-left: .2rem;
        font-size: 20px;
    }
}





/*------------------------------------------------------------Login-------------------------------------------------------*/

.container-Login {
    /*box-shadow: -1px 1px 30px 10px gray;*/
    border: 1px solid #71b7e6;
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container-Login .title {
    font-size: 25px;
    font-weight: 500;
    position: relative;
}

.container-Login .title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background: rgba(17, 142, 209, 150);
}

.container-Login form .user-details {
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 12px 0;
}

form .user-details .input-box {
    margin-bottom: 15px;
    /*width: calc(100% / 2 - 20px);*/
    width: 100%;
}

.user-details .input-box .details {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

form .type-details .type-title {
    font-size: 20px;
    font-weight: 500;
}

form .type-details .category {

    display: flex;
    width: 100%;
    margin: 14px 0;
    justify-content: center;

}

.type-details .category label {
    display: flex;
    align-items: center;
    margin: 10px;
}

.type-details .category .dot {
    height: 18px;
    width: 18px;
    background: #d9d9d9;
    border-radius: 50%;
    margin-right: 10px;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 900px) {

    .container-Login {
        width: 90%;
    }

    .container-Login form .user-details {
        width: 100%;
    }
}

/*------------------------------------------------------------END-OF-Login-------------------------------------------------------*/

/*------------------------------------------------------------Dashboard2-------------------------------------------------------*/

.sidebar {
    position: fixed;
    height: 100%;
    width: 350px;
    background: #052533;
    transition: all 0.5s ease;
    top: 4rem;
}

.sidebar.active {
    width: 60px;
}

.sidebar .logo-details {
    height: 80px;
    display: flex;
    align-items: center;
}

.sidebar .logo-details i {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    min-width: 60px;
    text-align: center
}

.sidebar .logo-details .logo_name {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.sidebar .nav-links {
    margin-top: 10px;
}

.sidebar .nav-links li {
    position: relative;
    list-style: none;
    height: 50px;
}

.sidebar .nav-links li a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.sidebar .nav-links li a.active {
    background: #013847;
}

.sidebar .nav-links li a:hover {
    background: #081D45;
}

.sidebar .nav-links li i {
    min-width: 60px;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.sidebar .nav-links li a .links_name {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    white-space: nowrap;
}

.home-section {
    position: relative;
    background: #041a24;
    min-height: 100vh;
    width: calc(100% - 350px);
    left: 350px;
    transition: all 0.5s ease;
    /*top: 80px;*/
}

.sidebar.active ~ .home-section {
    width: calc(100% - 60px);
    left: 60px;
}

.home-section nav {
    display: flex;
    justify-content: space-between;
    height: 80px;
    background: #041a24;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: fixed;
    width: calc(100% - 350px);
    left: 350px;
    z-index: 100;
    padding: 0 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;

}

.sidebar.active ~ .home-section nav {
    left: 60px;
    width: calc(100% - 60px);
}

.home-section nav .sidebar-button {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
}

nav .sidebar-button i {
    font-size: 35px;
    margin-right: 10px;
}

.home-section nav .search-box {
    position: relative;
    height: 50px;
    max-width: 550px;
    width: 100%;
    margin: 0 20px;
}

nav .search-box input {
    height: 100%;
    width: 100%;
    outline: none;
    background: #F5F6FA;
    border: 2px solid #EFEEF1;
    border-radius: 6px;
    font-size: 18px;
    padding: 0 15px;
}

nav .search-box .bx-search {
    position: absolute;
    height: 40px;
    width: 40px;
    background: #2697FF;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.4 ease;
}

.home-section nav .profile-details {
    display: flex;
    align-items: center;
    background: #F5F6FA;
    border: 2px solid #EFEEF1;
    border-radius: 6px;
    height: 50px;
    min-width: 190px;
    padding: 0 15px 0 2px;
}

nav .profile-details img {
    height: 40px;
    width: 40px;
    border-radius: 6px;
    object-fit: cover;
}

nav .profile-details .admin_name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    white-space: nowrap;
}

nav .profile-details i {
    font-size: 25px;
    color: #333;
}

.home-section .home-content {
    position: relative;
    padding-top: 104px;
    color: #ffffff;
}

.home-content .overview-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-bottom: 26px;
}

.overview-boxes .box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 5 - 15px);
    background: #013847;
    color: #ffffff;
    padding: 15px 14px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.overview-boxes .box-topic {
    font-size: 20px;
    font-weight: 500;
}

.home-content .box .number {
    display: inline-block;
    font-size: 35px;
    margin-top: -6px;
    font-weight: 500;
}

.home-content .box .indicator {
    display: flex;
    align-items: center;
}

.home-content .box .indicator i {
    height: 20px;
    width: 20px;
    background: #8FDACB;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    margin-right: 5px;
}

.box .indicator i.down {
    background: #e87d88;
}

.home-content .box .indicator .text {
    font-size: 12px;
}

.home-content .box .cart {
    display: inline-block;
    font-size: 32px;
    height: 50px;
    width: 50px;
    background: #cce5ff;
    line-height: 50px;
    text-align: center;
    color: #66b0ff;
    border-radius: 12px;
    margin: -15px 0 0 6px;
}

.home-content .box .cart.two {
    color: #2BD47D;
    background: #C0F2D8;
}

.home-content .box .cart.three {
    color: #ffc233;
    background: #ffe8b3;
}

.home-content .box .cart.four {
    color: #e05260;
    background: #f7d4d7;
}

.home-content .total-order {
    font-size: 20px;
    font-weight: 500;
}

.home-content .sales-boxes {
    display: flex;
    /*justify-content: space-around;*/
    /* padding: 0 20px; */
}

/* left box */
.home-content .sales-boxes .recent-sales {
    width: 100%;
    background: #013847;
    color: #ffffff;
    padding: 20px 30px;
    margin: 0 20px;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.home-content .sales-boxes .sales-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sales-boxes .box .title {
    font-size: 24px;
    font-weight: 500;
    /* margin-bottom: 10px; */
}

.sales-boxes .sales-details li.topic {
    font-size: 20px;
    font-weight: 500;
}

.sales-boxes .sales-details li {
    list-style: none;
    margin: 8px 0;
    text-align: -webkit-center;
}

.sales-boxes .sales-details li a {
    font-size: 18px;
    font-size: 400;
    text-decoration: none;
}

/* LOG */
.sales-boxes .log{
    width: 100%;
    margin-top: 26px;
    margin-right: 37px;
}

.sales-boxes .log .recent-sales{
    width: 100%;
}

.sales-boxes .log .log-details{
    height:275px;
    overflow:hidden;
    overflow-y:scroll;
}
.sales-boxes .log-details li {
    list-style: none;
    margin: 8px 0;
}

.sales-boxes .log-details li a {
    font-size: 18px;
    font-size: 400;
    text-decoration: none;
}


.sales-boxes .box .button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.sales-boxes .box .button a {
    color: #fff;
    background: #0A2558;
    padding: 4px 12px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sales-boxes .box .button a:hover {
    background: #0d3073;
}

/* Right box */
.home-content .sales-boxes .top-sales {
    width: 35%;
    background: #fff;
    padding: 20px 30px;
    margin: 0 20px 0 0;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.sales-boxes .top-sales li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.sales-boxes .top-sales li a img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 10px;
    background: #333;
}

.sales-boxes .top-sales li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sales-boxes .top-sales li .product,
.price {
    font-size: 17px;
    font-weight: 400;
    color: #333;
}

#openPos {
    font-size: 16px;
    margin-left: 50px;
}
#totalOpen{
    margin-left: 10px;
    font-size: 28px;
}

#startBtn[name="startBtnOn"] {
    color:#1ad571;
    position: absolute;
    cursor: pointer;
    display: flex;
    margin-left: 90%;
    font-size: 3rem;
}

#startBtn[name="startBtnOff"] {
    color:#9b9b9b;
    position: absolute;
    cursor: pointer;
    display: flex;
    margin-left: 90%;
    font-size: 3rem;
}


@media only screen and (max-width: 900px) {

    .sidebar {
        width: 60px;
    }

    .home-section {
        width: calc(100% - 60px);
        left: 60px;
    }

    .home-section nav {
        left: 60px;
        width: calc(100% - 60px);

    }

    nav .sidebar-button i {
        display: none;
    }

    .home-section nav .sidebar-button {
        font-size: 15px;
    }

    #totalSig {
        display: none;
    }
    #totalSignals{
        display: none;
    }

    #openPos {
        font-size: 15px;
        margin-left: 10px;
    }
    #totalOpen{
        font-size: 25px;
    }

    #startBtn[name="startBtnOn"] {
        margin-left: 80%;
        font-size: 2.5rem;
        display: flex;
    }

    #startBtn[name="startBtnOff"] {
        margin-left: 80%;
        font-size: 2.5rem;
        display: flex;
    }

    .sales-boxes .box .title {
        font-size: 15px;
    }

    .sales-boxes .sales-details li.topic {
        font-size: 10px;
    }

    .sales-boxes .log-details li a {
        font-size: 10px;
    }

    .sales-boxes .log-details li {
        margin: 4px 0;
    }

    .sales-boxes .sales-details li a {
        font-size: 10px;
        text-decoration: none;
    }

}

@media only screen and (max-width: 450px) {

    #startBtn[name="startBtnOn"] {
        margin-left: 75%;
        font-size: 2.5rem;
        display: flex;
    }

    #startBtn[name="startBtnOff"] {
        margin-left: 75%;
        font-size: 2.5rem;
        display: flex;
    }

}


/*------------------------------------------------------------END-OF-Dashboard2-------------------------------------------------------*/

/*------------------------------------------------------------ResetPassword-------------------------------------------------------*/

@media only screen and (max-width: 900px) {

    h1{
        font-size: 25px;
    }

    .col-6 {
        width: 80%;
    }

    .form-control {
        font-size: .7rem;
    }
}



/*------------------------------------------------------------END-OF-ResetPassword-------------------------------------------------------*/


/*------------------------------------------------------------BotList-------------------------------------------------------*/

.bot-details{
    /*height:35px;*/
    /*overflow:hidden;*/
    /*cursor: pointer;*/
    /*display: -webkit-inline-box;*/
    /*width: fit-content;*/
}

.bot-box{
    height: 65px;
    font-size: 25px;
    padding-top: 17px;
    padding-left: 35px;
    text-align-last: justify;
}

.level-box{
    height: 100px;
    font-size: 25px;
    padding-top: 5px;
    padding-left: 35px;
}

i[name="tokenOn"]{
    color:#1ad571;
    font-size: 2rem;
    cursor: pointer;
    float: right;
    margin-right: 50px;
}

i[name="tokenOff"]{
    color:#9b9b9b;
    font-size: 2rem;
    cursor: pointer;
    float: right;
    margin-right: 50px;
}

#remBtn{
    margin-top: 10px;
    width: 100px;
    margin-bottom: 0;
}



@media only screen and (max-width: 900px) {

    .trading-settings{
        font-size: 12px;
    }

    .bot-details{
        width: fit-content;
        font-size: 10px;
    }

    #tokenStatus{
        width: fit-content;
        font-size: 10px;
        height: 2rem;
    }

    .bot-box{
        height: 80px;
        font-size: 25px;
        padding-top: 0px;
        padding-left: 15px;
    }

    i[name="tokenOn"]{
        font-size: 1.5rem;
        margin-right: 0;
    }

    i[name="tokenOff"]{
        font-size: 1.5rem;
        margin-right: 0;
    }

    #remBtn{
        margin-top: 15px;
        width: 80px;
        margin-bottom: 0;
    }

    #remBot{
        font-size: 15px;
    }


}


/*------------------------------------------------------------END-OF-BotList-------------------------------------------------------*/

.tokenMove{

    margin-top: 10px;
    width: 20px;
    margin-bottom: 0px;
    padding-top: 10px;
    cursor: pointer;
    margin-left: 450px;
    height: 60px;

}
.tokenMove:hover{
    font-size: 15px;
}

@media only screen and (max-width: 900px) {

    .tokenMove{
        margin-left: 80px;
    }
     #Tgicon{
         display: flex;
     }


}

@media only screen and (max-width: 450px) {

    .tokenMove{
        margin-left: 5%;
    }
     #Tgicon{
         display: flex;
     }


}