*{
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}
a, a:hover, a:visited, a:focus{text-decoration : none; color: #707070;}
li{list-style : none;}

#body{
  height : 100%;
}
/* 스크롤바 안보이게 */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.container{
  margin : 0 auto;
  padding : 0;
  max-width: 100%;
}

#tab-btn ul {
  overflow: hidden;
  margin-bottom : 0;
  padding : 0;
}
#tab-btn li {
  float: left; 
  width: 50%; 
  text-align: center;
}
#tab-btn li a {
  display: block; 
  color: #707070;
  padding: 15px 20px; 
}
#tab-btn li.active a {
  border-bottom: 1.5px solid #981D26;
  color: black;
}
#tab-cont {
  width: 100%; 
  background: #fff; padding: 20px; 
  box-sizing: border-box;
  border-radius: 0 0 4px 4px;
}

.all-item-box{
  border-top : 1px solid  rgba(223,223,223,0.7);
}
.all-item-box > div {
  overflow: hidden;
}
.play-container, .theater-container{
  display : flex;
}
.play-left, .theater-left{
  overflow : scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height : calc(var(--vh, 1vh) * 100 - 230px);
  width : 20%;
}
.play-left::-webkit-scrollbar, .theater-left::-webkit-scrollbar{
  display : none;
}
.left-items{
  display : block;
  height : 60px;
  text-align : center;
  line-height: 60px;
  background-color : rgba(223,223,223,0.4);
  color : #707070;
  border-right : 1px solid  rgba(223,223,223,0.7);
}
.left-active{
  border-top : 1px solid rgba(223,223,223,0.7);
  border-bottom : 1px solid rgba(223,223,223,0.7);
  border-right : none;
  background-color : white;
}

.play-right, .theater-right{
  overflow : scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height : calc(var(--vh, 1vh) * 100 - 230px);
  width : 80%;
}
.play-right::-webkit-scrollbar, .theater-right::-webkit-scrollbar{
  display : none;
}
.right-items{
  display : block;
  height : 60px;
  line-height: 60px;
  margin-left : 20px;
  color : #707070;
}

/* 반응형 시작 */

/* PC */
@media (min-width: 1200px){
  .container {
      max-width: 720px;
  }
}