/* header */

.header {
	position:fixed;
	top: 0;
	z-index: 2;
	width:100%;
	background-color:#FFF;
	height: 60px;
	border-bottom: 1px solid #efefef;
	padding: 10px 15px;
}
.header .back {
	position: absolute;
	left: 15px;
	top: 15px;
}
.center_logo{
    width: calc(100% - 50px);
    text-align: center;
}
.title{
	font-size:.95em;
	line-height: 40px;
	width: 100%;
	display: block;
	text-align: center;
    font-family: 'NanumSquareEB';
}
.header .center_logo a.logo_img{
	width: 90px;
    display:none;
}
.header .header-box {
	line-height:25px;
	font-size:1.2em;
	width:100%;
    display: flex;
    justify-content: space-around;
}
.header .header-btn{
	position: absolute;
	top: 10px;
	right: 15px;
}
.header .menu-btn {
	line-height: 35px;
}
.header .menu-btn #ham{
	height: 20px;
}
.header .header-btn #noti{
	height: 33px;
	margin-right: 10px;
}

.header .header-btn #n_noti{
	height: 33px;
	margin-right: 10px;
}
.header .logo a {
	font-weight: bold;
	display: inline-block;

}
.header #back{
	height: 18px;
	margin-right: 10px;
}
/* aside */

.back-g {
	width:100%;
	height:100%;
	position:fixed;
	background-color:rgba(0,0,0,0.7);
	top:0;
	right:0;
	left: 0;
	bottom: 0;
	display:none;
	z-index:3;
	opacity: 0;
	transition:all 400ms ease-in-out;
}

.back-g.open  {
	display:block;
	opacity: 1;
}



.aside {
	width:250px;
	height:100%;
	background-color:#FFF;
	position:fixed;
	-webkit-transition-duration: 300ms;
    transition-duration: 300ms;
	top: 0;
	bottom: 0;
	right: 0;
	-webkit-transform: translate3d(250px,0,0);
    -moz-transform: translate3d(250px,0,0);
    transform: translate3d(250px,0,0);
	-webkit-overflow-scrolling: touch;
	z-index: 99 !important;
	overflow-y:auto;
}

.aside.open {
	right: 0;
	-webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.aside .cl-btn {
	text-align: right;
	padding: 7% 10% 5%;
}
.aside .cl-btn img{
	width: 10%;
}
.aside #wrapper {
	overflow:auto !important;
}
.aside .profile-wrap{
	padding: 5% 10% 7%;
	font-weight: normal;
}
.aside .profile-wrap h3{
	font-weight: bold;
	font-size: 1.3em;
	margin: 7px 0;

}
.aside .profile-wrap button{
	font-size: .8em;
	padding: 0;
	margin: 0;
	box-shadow: none;
	background-color: transparent;
	border: none;
}

.aside .profile-wrap button:focus{
	box-shadow: none !important;
}
.bar{
	width: 100%;
	height: 7px;
	background-color: #efefef;
}
.aside .menu-wrap > ul{
	padding: 5% 0;
	height: calc(100vh - 250px);
	overflow: auto;
}

.aside .menu-wrap ul li{
	height:55px;
	line-height: 55px;
	padding: 0 10%;
}

.aside .menu-wrap ul li a{
	color: #091133;
}
.aside .menu-wrap ul li a i{
	margin-right:7px;
    color: #091133;
	width: 25px;
}

.aside ul .submenu{
	background-color: #5C7DFB;
	padding: 7px 0;
	display: none;
}

.aside ul .submenu li{
	height: 36px;
	line-height: 36px;
}
.aside ul .submenu li a{
	color: #fff;
	font-size: 14px;
}










.logout-btn{
    margin-top: 30px;
}
/* footer */
.footer .tab{
	border-radius: 7px;
}
.footer .tab-wrap{
	padding: 0;
}







/* 사용여부 토글 버튼 */
.shop_open{
    margin-top: 15px;
}
.toggle p.shop{
	display: inline-block;
	margin-right: -5px;
}
/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 90px;
	height: 30px !important;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  /* The slider */
  .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ddd;
	-webkit-transition: .4s;
	transition: .4s;
	height: 28px !important;
  }
  
  .slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  input:checked + .slider {
	background-color: #5C7DFB;
  }
  
  input:focus + .slider {
	box-shadow: 0 0 1px #5C7DFB;
  }
  
  input:checked + .slider:before {
	-webkit-transform: translateX(61px);
	-ms-transform: translateX(61px);
	transform: translateX(61px);
  }
  
  /* Rounded sliders */
  .slider.round {
	border-radius: 28px;
  }
  
  .slider.round:before {
	border-radius: 50%;
  }
  .offtxt{
	  color: #777;
	  font-size: 13px;
	  width: 100%;
	  position: absolute;
	  right: 14px;
	  top: 4px;
	  text-align: right;
	  display: inline-block;
	  transition: .4s;
  }
  .ontxt{
	  color: #fff;
	  font-size: 13px;
	  top: 4px;
	  width: 100%;
	  position: absolute;
	  left: 14px;
	  text-align: left;
	  display: none;
	  height: 10px;
	  transition: .4s;
  }
  input:checked ~ .offtxt{
	  display: none;
  }
  
  input:checked ~ .ontxt{
	display: inline-block;
}

.Elli {
	max-width:100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-wrap: normal;
	vertical-align:middle
}

table .Ellip {
	overflow: hidden;
    height: auto;
    white-space: normal;
    word-wrap:break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
