/**
 *
 * tabsheet style
 */

.tabsheet{
  width:100%;
}
.tabsheet .tab-header{}
.tabsheet .tab-header>ul{
  list-style:none;
}
.tabsheet .tab-header>ul>li{
  display:inline-block;
  padding:10px 0px;
  margin:0px 10px;
  cursor:pointer;
  box-sizing:border-box;
}
.tabsheet .tab-header>ul>li:hover{
  color:#0066ff;
  border-bottom:2px solid #0066ff;
}
.tabsheet .tab-header>ul .active{
  color:#0066ff;
  border-bottom:2px solid #0066ff;
}

.tabsheet .tab-client{
  width:100%;
  min-height:50px;
}
.tabsheet .tab-client>ul{}
.tabsheet .tab-client>ul>li{
  padding:10px 0px;
  width:100%;
  display:none;
}
.tabsheet .tab-client>ul .active{
  display:block;
}
