/* @import url(common.css); */
.customer_tab *{margin:0; padding:0;}
.customer_tab{
  margin:0 auto;
  width:100%;
  max-width:1024px;
  letter-spacing: -1px;
}
.customer_head{
  padding:20px 0;
}
.customer_head>h2{
  font-size: 30px;
}
.tab_wrap{
  position: relative;
  width: 100%;
  background: rgb(245, 245, 245);
}
.tab_in{
  text-align: center;
  overflow-x: scroll;
  -ms-overflow-style:none;
  white-space: nowrap;
  scroll-snap-type: none;
}
.tab_in::-webkit-scrollbar{ 
  display: none;
}
.tab_in>ul>li{
  display: inline-block;
  margin:0 20px;
  padding:8px 0px;
  color:#333;
  cursor: pointer;
  font-size: 18px;
}
.on2{
  color:#333 !important;
  font-weight: 500;
  border-bottom:2px solid #009eb4;
  box-sizing: border-box;
}
/*_______________________________________________모바일 기준으로*/
@media screen and (max-width:767px){
  .customer_head{
    padding:10px 0;
  }
  .customer_head>h2{
    font-size: 18px;
  }
  .tab_in{
    margin:0 10px;
  }
  .tab_in>ul>li{
    margin:0 10px;
    font-size: 16px;
  }
}