
/* 
body::-webkit-scrollbar{
        display: none;
    } */

.main-history{
    padding: 10px 10px 15px 0;

}
p{
    margin:0;
}
.input-content{
    width: 100%;
    padding: 10px 20px;
    border-radius: 20px;
    background: #fff;

}

.tab-detail{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 1rem 3rem;
    background-color: transparent;
    border-bottom: 1px #eae4df solid;
    transition: background-color .2s;
    font-size: 1rem;
}
.tab-detail h3{
    display: flex;
    flex-direction: row;
    font-weight: 600;
    align-items: center;
    font-size: 14px;
    margin-bottom: 0.25rem;
}
.tab-detail h3 img{
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-right: 0.35rem;
}

.tab-detail p{
    margin-top: 0.25rem;
        color: #735d58;
}
.info{
    color: #999;
    font-size: 0.75rem;
}

.tab-detail:hover{
    background-color: #f4f4f4;
}

.btn-group button {
    margin-right: 20px;
}

.scrollbar{
    overflow-y: scroll;
    height: 100vh;
}
.content-history{
    width: 100%;
    height: 100vh;

}
.response-box{
    width: 60%;
}
/*
 *  STYLE 1
 */

 .style-1::-webkit-scrollbar-track
 {
     -webkit-box-shadow: inset 0 0 6px rgba(204, 165, 165, 0.3);
     border-radius: 10px;
     background-color: #F5F5F5;
 }
 
 .style-1::-webkit-scrollbar
 {
     width: 5px;
     background-color: #F5F5F5;
 }
 
 .style-1::-webkit-scrollbar-thumb
 {
     border-radius: 10px;
     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
     background-color: #555;
 }

.no-data{
    padding: 2rem !important;
}

.bg-active{
    background-color: #f4f4f4;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.back-btn{
    font-weight: bold;
    padding: 0;
    display: none;
    cursor: pointer;
}

.icon-loading{
    text-align: center;
    position: relative;
    top: calc(50% - 115px);
}
.icon-loading i {
    font-size: 40px;
}


 @media (max-width:480px)  { 
    /* .box-history  {
        display: none !important;
        } */
    .tab-detail{
            padding: 1rem 1rem;
        }
    .main-history{
        padding-left: 10px;
    }
    .bg-active{
        background: transparent;
    }
    .content-history{
        width:100%;
        padding-left: 0 !important;
        padding-bottom: 70px;
    }
    .btn-group{
        display: block !important;
    }
    .btn-group button{
        margin-bottom: 10px;
        width: 100%;
    }

    .back-btn{
        display: block;
    }

    .response-box{
        width: 100%;
    }

 }

 @media (max-width:768px)  { 

    .back-btn{
        display: block;
    }
    .history-tab{
        padding-bottom: 60px;
    }
 }


