.x_title h2 {
    padding:1px;
}

 ::-webkit-scrollbar {
                                        /* 스크롤바 전체 영역 */
  width: 20px;
  height: 10px;
}
::-webkit-scrollbar-track {
                                        /* 스크롤이 움직이는 영역  */
      background-color: #f9f9f9;
}
::-webkit-scrollbar-thumb {
                                        /*  스크롤  */
      background-color: red;
  border-radius:50px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
                                        /*  스크롤의 화살표가 포함된 영역   */
 display:block;
  height:8px;
  background-color: #000;
}
::-webkit-scrollbar-corner {
                                        /*  상하+좌우 스크롤이 만나는 공간   */
      background-color: red;
}

@media screen and (max-width: 765px) and (min-width: 300px){

.table-container{
	 width:100%;
	 overflow-x:auto;
     white-space: nowrap;
	}

 table{
    width:auto;
 }

 }
