@charset "UTF-8";

@import url("/static/css/base.css");
@import url("/static/css/layout.css");
@import url("/static/css/components.css");

/* select_box */
.coin_select_box{  
    width: 100%;
    margin-top: var(--space-10);
    position: relative;
  }
  .apikey_input{
    border:  1px solid #B9B9B9;
    border-radius: 10px;
    padding-left: 10px;
    width: 400px;
    display: block;
    margin-top: var(--space-10);
  }
  .coin_select_box .selected{
    width: 100%;
    border: 1px solid #c0c0c0;
    line-height: 48px; 
    padding-left: 16px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .caret-down-fill{
    position: absolute;
    right: 16px;
  }
  .coin_select_box .coin_info{
    display: flex;
    gap: var(--space-12);
    font-size: 14px;
    align-items: center;
  }
  .coin_select_box .select_coin_img{
    border-radius: 50%;
    width: 28px;
    height: auto;
  }
  .coin_select_box .coin_info .coin_name{
    display: flex;
    gap: var(--space-10);
    align-items: center;
  }
  .coin_select_box .coin_info .coin_name .detail_text{
    color: #616161;
  }
  .coin_select_box .select_btn{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  .coin_select_box .coin_list::-webkit-scrollbar{
    display:none;
  }
  .coin_select_box .coin_list{
    display: none;
    position: relative;  
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .coin_select_box .coin_list.on{
    display: block;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #c0c0c0;
    border-radius: 8px;
    background-color: #fff;
    position: absolute;
    top: 56px;  
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  .choice_coin{position: relative;}
  .coin_select_box .coin_list li{
    height: 50px;
    line-height: 50px;
    display: flex;
    gap: var(--space-10);
    align-items: center;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 300;
  }
  .coin_select_box .coin_list li .coin_name{
    display: flex;
    gap: var(--space-10);
    align-items: center;
  }
  .coin_select_box .coin_list li .coin_name:first-child{  
    gap: 0;  
  }

.gridBotSub .reset_btn {
    border: 1px solid #dbdbdb;
    background: #fafafa;
    width: 70px;
    height: 30px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 3px;
}
.gridBotSub .balance_wrap .balance_title > p {
    font-size: 18px;
    font-weight: bold;
}
.gridBotSub .balance_wrap {
    border: 1px solid #b9b9b9;
    border-radius: 8px;
    padding: 16px;
    margin-top: var(--space-16);
    margin-bottom: var(--space-20);
}
.gridBotSub .balance_wrap .balance_title {
    display: flex;
    justify-content: space-between;
}
.gridBotSub .balance_wrap .info_wrap {
    display: grid;
    border-bottom: 2px solid #F2F2F2;
    padding-bottom: 20px;
    margin-top: var(--space-16);
}
.gridBotSub .balance_wrap .in_use {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gridBotSub .balance_wrap .info_wrap .info_title {
    justify-self: start;
    margin: 5px 0;
}
.gridBotSub .balance_wrap .info_wrap > div > p > span {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 400;
}

.gridBotSub .balance_wrap .info_wrap > div > p > span {
    margin-left: 5px;
    font-size: 16px;
}
.gridBotSub .balance_wrap .coin_name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
}
.gridBotSub .info_wrap.info_wrap_2 {
    padding-bottom: 5px;
    border-bottom: none;
}
.gridBotSub .date_num {
    margin-right: 10px;
    background: #4B79D9;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    padding: 4px 11px;
}
.gridBotSub .list_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: right;
    font-size: 15px;
    gap: var(--space-20);
    font-weight: bold;
    color: #555;
    margin-top: var(--space-16);
    word-break: break-all;
}
.gridBotSub .grid_title {
    font-size: 15px;
    color: #333;
    font-weight: 400;
    margin-bottom: 5px;
}
.gridBotSub .balance_wrap .balance_title .coin_use {
    border-radius: 8px;
    background: #F29F05;
    color: white;
    font-size: 14px;
    width: 70px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    font-weight: 400;
    display: none;
}
.gridBotSub .balance_wrap .balance_title .coin_use.on {
    display: block;
}
.tab_content {
    display: none;
}

 .tab_content.on {
    display: block;
}
.gridBotSub .list_none {
    text-align: center;
    padding-top: 60px;
}

.gridBotSub .history_list_head {
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    padding: 0 10px;
    border-top: 2px solid #f5f5f5;
}
.gridBotSub .history_list {
    display: grid;
    gap: var(--space-10);
    padding: 15px 0;
    margin-bottom: var(--space-10);
}
.tradingVolomeBot .history_list li,
.gridBotSub .history_list li {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.gridBotSub .history_list li p:last-child{
    font-weight: 500;
}
.gridBotSub .list_have .gray_box  {
    display: grid;
    gap: var(--space-10);
}
.gridBotSub .history_have{
    overflow: scroll;
    height: 550px;
     -ms-overflow-style: none;
}
.gridBotSub .history_have::-webkit-scrollbar{
    display:none;
}
.gridBotSub .history_have_trade{
    overflow: scroll;
    height: 550px;
     -ms-overflow-style: none;
}
.gridBotSub .history_have_trade::-webkit-scrollbar{
    display:none;
}
.gridBotSub .list_have .gray_box > div {
    display: flex;
    justify-content: space-between;
}
.gridBotSub .tab_wrap {
    padding-bottom: 70px;
}
/* .gridBotSub .side_bar .side_grid {
    background: url(../images/doc-fail_on.svg) no-repeat;
    background-position: 94% 50%;
}
.gridBotSub .side_bar .side_home {
    background: url(../images/house.svg) no-repeat;
    background-position: 94% 50%;
} */

.gridBotSub .botDel_btn {
    text-align: center;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    background: #FFF3F3;
    border: 1px solid #F24405;
    color: #F24405;
    border-radius: 8px;
    font-size: 14px;
    display: block;
    margin-top: 50px;
}


/* buybot tab CSS */
.tradingVolomeBot .list_none {
    text-align: center;
    padding-top: 60px;
}

.tradingVolomeBot .history_list_head {
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    padding: 0 10px;
    border-top: 2px solid #f5f5f5;
}
.tradingVolomeBot .history_list {
    display: grid;
    gap: var(--space-10);
    padding: 15px 0;
    margin-bottom: var(--space-10);
}
.tradingVolomeBot .history_list li {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.tradingVolomeBot .history_list li p:last-child{
    font-weight: 500;
}
.tradingVolomeBot .list_have .gray_box  {
    display: grid;
    gap: var(--space-10);
}
.tradingVolomeBot .history_have{
    overflow: scroll;
    height: 550px;
     -ms-overflow-style: none;
}
.tradingVolomeBot .history_have::-webkit-scrollbar{
    display:none;
}
.tradingVolomeBot .history_have_trade{
    overflow: scroll;
    height: 550px;
     -ms-overflow-style: none;
}
.tradingVolomeBot .history_have_trade::-webkit-scrollbar{
    display:none;
}
.tradingVolomeBot .list_have .gray_box > div {
    display: flex;
    justify-content: space-between;
}
.tradingVolomeBot .tab_wrap {
    padding-bottom: 70px;
}



@media screen and (max-width: 1060px) { 
}


.list_have, .list_none {
    display: none;
}

.list_have.on , .list_none.on {
    display: block;
}




/* 탭 */



@media screen and (max-width: 900px) {
    .desktop_none {
        display: block;
    }

    .history_list_table {
        display: none;
    }
}

@media (hover: hover) {
    .coin_select_box .coin_list li:hover{
        background-color: #fafafa;
        cursor: pointer;
      } 

    button:hover {
        box-shadow: 2px 2px 10px -5px #333;
    }
    .side_bar .right_arrow:hover {
        box-shadow: none;
    }

    .side_bar a:hover {
       color: #F29F05;
    }
    .side_bar:hover .right_arrow {
        background-position-x: 15px;
    }
    .index .management_box:hover {
        box-shadow: -2px -2px 5px 0px #c0c0c0, 2px 2px 10px 0px #ffffff;
    }
    .index .management_box.off:hover {
        box-shadow: -2px -2px 5px 0px #d7d7d7, 2px 2px 10px 0px #ffffff;
    }
    .tradingVolomeBot .bot_how:hover,
    .gridbot .bot_how:hover,
    .botlook:hover {
        box-shadow: 2px 2px 10px -3px #f29f0566;
    }
    .login .signUp_go a:hover {
        text-decoration: underline;
    }
}
