/*  우측 사이드바 Style  PC 에서만 작동*/
@media screen and (min-width:1367px) {
   aside{
      position: fixed;
      top:0;right:0;
      width:200px;
      height:100%;
      border-left:1px solid #e1e1e1;
   }
   .close-btns{
      width:35px;
      text-align:center;
      background:#fff;
      position:absolute;
      right:199px;
      top:50%;
      border:1px solid #e1e1e1;
      cursor:pointer;
   }
   .top-btn{
      display:none;
      width:65px;
      height:65px;
      padding-top:7px;
      text-align:center;
      background:rgba(0,0,0, .5);
      color:#fff;
      position:absolute;
      right:223px;
      bottom:33px;
      cursor:pointer;
      vertical-align: middle;
      border-radius: 5px 5px;
      -webkit-border-radius: 5px 5px;
      -moz-border-radius: 5px 5px;
      -ms-border-radius: 5px 5px;
      -o-border-radius: 5px 5px;
}

}

@media screen and (max-width:1366px) {
   aside, .close-btns{
      display: none;
   }
}