@charset "utf-8";

/* 초기화 */

*{ color:#49494A;}

:root {
  --font-color- : #1a1a1a;
  --main-color- : #00709D; /* 파랑 */
  --sub-color- : #3F8F7C;  /* 청록 */
  --thrd-color- : #D19C35;  /* 노랑 */
  --bg-color: #F4F5F8;
}

html, body{
  
}

body, input[type=text], input[type=password], textarea, select{
  font: 400 16px 'Noto Sans KR', 'Pretendard', Arial, Helvetica, sans-serif; 
  color:#49494A;
  background-color:#fff;
  outline: none;
}
body, html, p, div, ul, li , h1, h2, h3, h4, h5, h6, span,br, dl, dt, dd{ 
  padding:0; margin:0;
}

a{ 
  text-decoration:none; 
  color:#49494A;
}

a, img{ 
  border:none; 
  vertical-align:middle;
}

ul, li{ 
  list-style:none; 
}

img{ 
  max-width:100%;
}

button{ 
  border:none; 
  background-color: transparent; 
  cursor: pointer; 
  margin: 0; 
  padding: 0;
}

::placeholder{ 
  font-size: 14px; 
  color: #c2c2c2;
}

.body-wrap{
  height: 100%;
  min-height: calc(100vh - 70px);
  box-sizing: border-box;
  background: #fff;
}

.center-wrap{
  padding: 0 5%;
}

/* gnb */
#gnb-menu-wrap { 
  position: fixed; 
  bottom: 0; 
  width: 100%; 
  z-index: 800; 
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -3px 6px #ddd;
}

#gnb-menu-wrap .gnb-menu{
  display: flex; 
  justify-content: flex-start; 
  align-items: stretch; 
  padding: 0 0px; 
  list-style-type: none;
}

.gnb-menu li { 
  flex: 1; 
  text-decoration: none;
}

.gnb-menu .link { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 70px; 
  flex-direction: column; 
  font-size: 11px; 
  font-weight: 500; 
  line-height: 1.7em; 
  color: #6A6A6A; 
  text-decoration: none;
}

.gnb-menu .icon { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 26px; 
  height: 26px; 
  margin-bottom: 2px;
}

.gnb-menu .icon img { 
  max-width: 100%;
}

.gnb-menu .label { 
  font-size: 14px; 
  font-weight: 500;
  color: #C5C5C5;
}

.gnb-menu .link.active .label{ 
  color: var(--main-color-);
}

/* 하단 버튼 */
.form-btn-contoller { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  padding: 20px 0 20px; 
  background-color: #fff;
}

.form-btn-contoller .form-contoller-btn{ 
  width: 70%; 
  background-color: var(--main-color-); 
  color: #fff; 
  padding: 14px; 
  border-radius: 14px;
  font-size: 16px;
}

.form-btn-contoller .form-contoller-btn.btn-cancel{ 
  width: 28%; 
  background-color: #fff;
  border: 1px solid #e2e2e2; 
  color: #888;
}

.form-btn-contoller .form-contoller-btn.btn-white{ 
  width: 28%; 
  background-color: #fff; 
  border: 1px solid #006AAE; 
  color: #006AAE;
}

.form-btn-contoller .form-contoller-btn.w100{ 
  width: 100%;
}

/* checkbox */
.checkbox {
  position: relative;
  display: inline-block;
}

.checkbox input[type="checkbox"]{ 
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  outline: none;
}

.checkbox input[type="checkbox"] + label{ 
  display: flex; 
  justify-content: flex-start; 
  align-items: center; 
  font-size: 15px;  
  letter-spacing: -0.28px; 
  word-break: keep-all; 
  color: #777;
  font-weight: 400;
}

.checkbox input[type="checkbox"] + label:before{ 
  content: ""; 
  width: 24px; 
  height: 24px; 
  margin-right: 6px; 
  background-image: url(../img/icon-chk.svg); 
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center; 
}

.checkbox input[type="checkbox"] + label:before{ 
  background-repeat: no-repeat; 
  background-position: center; 
  background-size: 24px;
}

.checkbox input[type="checkbox"]:checked + label:before{ 
  background-image: url(../img/icon-chk-on.svg);
}

/* 페이지 타이틀 */

.pg-hd { 
  display: flex; 
  /* justify-content: center;  */
	justify-content: space-between;
  align-items: center; 
	width: 100%;
  height: 50px; 
  background-color: #F6F6F6; 
  position: relative;
}

.pg-hd .pg-title{ 
  font-size: 15px; 
  font-weight: 400; 
  color: #555;
}

.pg-hd .his-back{ 
	display:block;
 /*  position: absolute; 
  left: 4%; 
  top: 47%; 
  transform: translateY(-50%); */
	margin-left: 5%;
}

.pg-hd .go-home{ 
	display:block;
 /*  position: absolute;
  	left: unset;
  right: 4%; 
  top: 47%; 
  transform: translateY(-50%); */
	margin-right: 5%;
}

.pg-hd .his-back img{ 
	height: 18px; 
}

.pg-hd .go-home img{ 
	height: 18px; 
	filter: invert(0.4);
}

.page-tit{
  font-size: 20px;
  font-weight: 700;
  color: #49494A;
  padding: 20px 5%;
}


/* 배지 */
.badge-wrap{ 
  display: flex;
  align-items: center;
}

.badge{
  padding: 6px 6px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 6px;
  border-radius: 4px;
}

.badge.st01{
  background-color: #E4ECFF;
  color: #596297;
}

.badge.st02{
  background-color: #FCF7EF;
  color: #D19C35;
}

.badge.st03{
  background-color: #F2F0F8;
  color: #7D64B8;
}

.badge.st04{
  background-color: #D1E4E0;
  color: #3F8F7C;
}

.badge.st05{
  background-color: #e8e8e8;
  color: #605C6A;
}

.list-date{
  font-size: 13px;
  font-weight: 300;
  color: #999;
  margin: 10px 0;
}

.list-tit{
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

/* 레이어 팝업 */
.layer__pop{
  position: fixed;
  inset: 0;
  z-index: 8001;
  background: rgba(0, 0, 0, 0.5);
}

.layer__pop .layer__body{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);  
  width: 300px;
  height: 430px;
  max-height: 430px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 900;
}

.layer__pop .layer__content{
  width: 100%;
  height: 390px;
  max-height: 390px;
}

.layer__pop .layer__content img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer__pop .close-btn{
  position: absolute;
  right: 14px;
  top: 14px;
}

.layer__pop .today-close{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #f8f8f8;
  padding: 10px;
  box-sizing: border-box;
}

.layer__pop .today-close {
  display: flex;
  align-items: center;
}

.layer__pop .today-close label{
  font-size: 15px;
  margin-left: 6px;
}

/* 멤버십 */
/* 로그인 */
.login-form-wrap{

}

.login-logo {
  padding: 120px 0 50px;
  text-align: center;
}

.login-bt {
  background-color: #fff;
  padding: 20px 4% 10%;
  border-radius: 30px 30px 0 0;
}

.login-form-wrap .login-field-label{ 
  font-size: 15px; 
  margin-bottom: 10px; 
  color: #888;
}

.login-form-wrap .login-field input{ 
  width: 100%;
  height: 50px; 
  padding: 14px; 
  margin-bottom: 20px; 
  border: 1px solid #eee; 
  border-radius: 14px;
  outline: none;
  box-sizing: border-box;
}

.login-form-wrap .login-field:nth-child(2) input{ 
  margin-bottom: 0;
}

.login-form-control{ 
  margin: 20px 0 15px;
}

.login-form-wrap .login-form-control .form-btn{ 
  background: var(--main-color-); 
  color: #fff; 
  width: 100%; 
  border-radius: 10px; 
  padding: 14px; 
  font-size: 15px;
}

.login-find{ 
  display: flex; 
  justify-content: center; 
  align-items: center;
  margin: 30px 0;
}

.login-find .link-btn{ 
  color: #888; 
  position: relative; 
  padding: 0 14px; 
  font-size: 15px;
}

.login-find .link-btn::after{ 
  content: ""; 
  display: inline-block; 
  width: 1px; 
  height: 14px; 
  background-color: #888; 
  position: absolute; 
  right: 0; 
  top: 50%; 
  transform: translateY(-50%);
}

.login-find .link-btn:last-child:after{ 
  display: none;
}

.join-bt .c-info-txt{
  margin: 40px 0;
  text-align: center;
  color: var(--main-color-);
  line-height: 1.5;
  font-size: 15px;
}

.join-bt .link-btn{
  display: block;
  width: 100%;
	background: #fff;
  border: 1px solid var(--main-color-);
  color: var(--main-color-);
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  text-align: center;
  box-sizing: border-box;
	margin-top: 16%;
 /*  position: fixed;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%); */
}

/* 회원가입 */
.join-body-wrap { 
  padding: 30px 4%;
}

.join-body-wrap .form-label{ 
  font-size: 14px; 
  margin-bottom: 10px; 
  color: #888;
}

.join-body-wrap .field-group input{ 
  width: 100%; 
  height: 50px; 
  padding: 14px; 
  margin-bottom: 20px; 
  border: 1px solid #eee; 
  border-radius: 14px; 
  box-sizing: border-box; 
  outline-color: var(--main-color-);
}

.join-body-wrap .field-group select{ 
  width: 100%; 
  height: 50px; 
  padding: 10px 14px; 
  margin-bottom: 20px; 
  border: 1px solid #eee; 
  border-radius: 14px; 
  box-sizing: border-box; 
  outline-color: var(--main-color-);
}

.join-body-wrap .field-group{ 
  position: relative;
}

.join-body-wrap .form-control-btn.inp-btn{ 
  position: absolute; 
  right: 4%; 
  top: 16px; 
  color: var(--main-color-);
}

.invalid-feedback{ 
  margin-top: -10px; 
  font-size: 12px; 
  color: #ff0000; 
  padding-left: 6px; 
  margin-bottom: 16px;
}

.field-group > div{ 
  position: relative; 
  margin-bottom: -7px;
}

.field-group .btn-txt{ 
  position: absolute; 
  right: 14px; 
  top: 14px; 
  color: var(--main-color-);
}

.form-terms{ 
  margin-top: 10px;
  padding: 20px;
  background-color: #f1f9ff;
  border-radius: 10px;
}

.form-terms .terms-all{ 
  padding-bottom: 10px; 
  border-bottom: 4px solid #F2F2F2;
}

.form-terms .terms-all .checkbox input[type="checkbox"] + label{ 
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.form-terms .checkbox input[type="checkbox"] + label:before{ 
  border-radius: 20px;
}

.form-terms .terms-list-wrap .terms-list{ 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-top: 10px;
}

.form-terms .terms-list-wrap .terms-list a{ 
  font-size: 14px; 
  border-bottom: 1px solid #888; 
  color: #888;
}

.form-btn-contoller { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  padding: 30px 0 0; 
  background-color: #fff;
}

.form-btn-contoller .form-contoller-btn.btn-cancel{ 
  width: 28%; 
  background-color: #fff; 
  color: #888;
}

.join-ok-wrap{
  display: flex;
  padding: 30px 4%;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 93vh;
  box-sizing: border-box;
}

.join-ok-wrap img{
  margin-bottom: 15px;
}

.join-ok-wrap .txt-wrap{
  color: var(--main-color-);
  font-weight: 500;
  line-height: 1.5;
}

/* 비밀번호 찾기 */
.find-body-wrap{
  padding: 30px 4%;
}

.find-body-wrap .info-txt {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
}

.find-body-wrap .form-label {
  font-size: 15px;
  margin-bottom: 10px;
  color: #888;
}

.find-body-wrap .field-group{
  position: relative;
}

.find-body-wrap .field-group input{ 
  width: 100%; 
  height: 50px; 
  padding: 14px; 
  margin-bottom: 20px; 
  border: 1px solid #eee; 
  border-radius: 14px; 
  box-sizing: border-box; 
  outline-color: var(--main-color-);
}

.find-body-wrap .form-time{
  position: absolute;
  right: 15%;
  bottom: 44px;
}

.find-body-wrap .form-time .time {
  color: #278DF4;
  font-size: 13px;
}

.find-body-wrap .form-btn-contoller{ 
  width: 92%; 
  position: fixed; 
  bottom: 20px; 
  left: 50%; 
  transform: translateX(-50%);
}

.find-body-wrap .find-ok-con{ 
  text-align: center; 
  margin-top: 40px;
}

.find-body-wrap .find-ok-con .find-ok-txt{ 
  font-size: 24px; 
  font-weight: 700; 
  color: var(--main-color-); 
  margin: 30px 0;
}
.find-body-wrap .find-ok-con p{ 
  font-size: 16px; 
  color: #666; 
  margin-top: 20px; 
  line-height: 1.5;
}

.find-body-wrap .form-btn-contoller.find .form-contoller-btn{
  width: 48%;
}

/* 메인 */
.main-body-wrap{
  padding: 30px 0 60px;
}

.main-user-wrap{
  display: flex;
  align-items: center;
  position: relative;
}

.main-user-wrap .user-profile{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* border: 2px solid var(--main-color-); */
  box-shadow: 1px 1px 4px #e2e2e2;
}

.main-user-wrap .user-profile img{
  width: 100%;
  height: 100%;
	border-radius: 50%;
}

.main-user-wrap .user-info{
  margin-left: 20px;
}

.main-user-wrap .user-info .c-info{
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
}

.main-user-wrap .user-info .user-name{
  font-size: 20px;
  font-weight: 700;
}

.link-btn-wrap{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 80px;
}

.main-alram {
  position: relative;
}

.main-alram .alram-num{
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #F6777C;
  color: #fff;
  padding: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-sizing: border-box;
}

.main-search-wrap{
  margin: 28px 0 14px;
}

.main-search-wrap input{
  background: #fff url(../img/icon-search.svg) no-repeat center left 10px;
  width: 100%;
  box-shadow: 1px 1px 4px #e2e2e2;
  border: 1px solid #00709D;
  padding: 10px;
  padding-left: 36px;
  box-sizing: border-box;
  border-radius: 14px;
  outline: none;
}

.main-search-wrap input::placeholder{
  color: #91ABB6;
}

.main-tab-menu{
  border-bottom: 1px solid #e2e2e2;
  margin: 0 5%;
  overflow-x: scroll;
}

.main-tab-menu ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
}

.main-tab-menu ul li{
  padding: 10px 14px;
  color: #999;
}

.main-tab-menu ul li.on{
  border-bottom: 3px solid var(--main-color-);
  font-weight: 500;
  color: var(--main-color-);
}

.main-body-wrap .page-tit{
  padding: 0;
}

.main-list-wrap{
  padding: 20px 0 30px;
}

.main-filter .filte-sort{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.main-filter .filte-sort .sort-box select{
  border: none;
  color: #79797A;
  font-size: 15px;
}

.live-view-wrap{
  display: none;
}

.live-view-wrap.on{
  display: block;
  margin-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e2e2;
}

.live-view-wrap p{
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.live-view-wrap .live-zone{
  margin-top: 10px;
  height: 220px;
  position: relative;
}

.live-view-wrap .live-zone img{
  width: 100%;
  height: 100%;
}

.live-view-wrap .live-zone .live-badge{
  width: 54px;
  position: absolute;
  left: 14px;
  top: 12px;
}

.main-list-wrap .main-list{
  margin-top: 14px;
}

.main-list ul li{
  display: flex;
  border-bottom: none;
  padding: 0;
  margin-bottom: 14px;
}

.main-list .list-thum{
  width: 170px;
  height: 120px;
  margin-bottom: 0;
}

.main-list .list-thum img{
  border-radius: 14px;
	width: 100%;
	height: 100%;
}

.main-list .list-right{
  width: 50%;
  padding: 10px 0 10px 14px; 
}

.more-btn{
  width: 100%;
  padding: 10px;
  border: 1px solid #00709D;
  color: #00709D;
  border-radius: 14px;
  margin-top: 14px;
}

footer{
  padding: 24px 5% 110px;
  background-color: #F4F5F8;
}

footer .fc-name{
  font-size: 15px;
  font-weight: 500;
  color: #69696A;
  margin-bottom: 20px;
}

footer .fc-info{
  font-size: 13px;
  color: #69696A;
}

footer .fc-info div{
  margin: 10px 0;
}

footer .copyright{
  font-weight: 300;
  color: #969696;
}

/* 상세페이지 */
.view-body-wrap{
  padding-bottom: 40px;
}

.view-body-wrap .video-info{
  padding: 20px 5% 10px;  
  position: relative;
}

.view-body-wrap .video-info .badge-wrap{
  margin-bottom: 14px;
}

.view-body-wrap .video-info .bookmark-btn{
  position: absolute;
  right: 4%;
  bottom: 14px;
	background: url(/common/front/img/icon-bookmark.svg) no-repeat 0 0 / 100%;
  width: 30px;
  height: 30px;
}

.view-body-wrap .video-info .bookmark-btn.on{
	background: url(/common/front/img/icon-bookmark-on.svg) no-repeat 0 0 / 100%;
}

.view-body-wrap .form-btn-contoller{ 
  width: 92%; 
  position: fixed; 
  bottom: 10px; 
  left: 50%; 
  transform: translateX(-50%);
}

.view-body-wrap .form-btn-contoller .form-contoller-btn{ 
  background-color: var(--sub-color-);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-body-wrap .form-contoller-btn img{
  margin-right: 6px;
}

.view-file-wrap{
  padding: 20px 5% 10px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.view-file-wrap .file-tit{
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #666;
  padding-bottom: 20px;
}

.view-file-wrap .file-tit img{
  width: 20px;
  margin-right: 6px;  
}

.view-file-wrap .file-down-wrap{}

.view-file-wrap .file-down-wrap .file-down{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.file-down-wrap .file-down button{
  display: flex;
  align-items: center;
  background-color: var(--main-color-);
  border-radius: 6px;
  padding: 4px 5px;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
}

.file-down-wrap .file-down button img{
  width: 15px;
  height: 15px;
  margin-right: 4px;
}

.file-down-wrap .file-down .file-name{
  font-size: 15px;
  color: #999;
}

.view-body-wrap .view-content{
  padding: 20px 5%;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
}

/* 알림 목록 */
.alram-body-wrap{
  padding: 30px 5% 40px;
}

.alram-wrap{
  
}

.alram-wrap ul li{ 
  padding: 16px;
  background-color: #fff;
  box-shadow: 1px 1px 8px #eaeaea;
  border-radius: 10px;
  margin-bottom: 15px;
}

.alram-wrap ul li .box{
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 10px;
}

.alram-wrap ul li p{
  font-size: 13px;
  color: #888;
  font-weight: 300;
}

/* 일정표 */
.calendar-wrap{ 
  padding: 24px 2%; 
  height: auto; 
  box-sizing: border-box;
}

.calendar-tit-wrap{ 
  display: flex; 
  align-items: center; 
}

.month-con{ 
  width: 100%;
  text-align: center;
  margin: 24px 0;
}

.month-con select{ 
  width: 74px;
  border: 0; 
  font-size: 18px; 
  font-weight: 700;
}

.calendar-body-wrap .state-txt{ 
  display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	padding: 0 6% 0 18%;
	box-sizing: border-box;
}

.calendar-body-wrap .state-txt p{ 
  font-size: 14px;
}

.calendar-body-wrap .state-txt p::before{ 
  content: ""; 
  display: inline-block; 
  width: 10px; 
  height: 10px; 
  background-color: #006AAE;
  border-radius: 50%; 
  margin: 0 10px;
}

.calendar-body-wrap .state-txt p:nth-child(2):before{ 
  background-color: #DB9900;
}

.calendar-body-wrap .state-txt p:nth-child(3):before{ 
  background-color: #00917B;
}

.calendar-body-wrap .state-txt p:nth-child(4):before{
  background-color: #3A00AE;
}

.calendar-body-wrap .state-txt p:nth-child(5):before{
  background-color: #BA77AB;
}

.calendar-body-wrap .state-txt p:nth-child(6):before{
  background-color: #910050;
}

.calendar-body-wrap .state-txt p:nth-child(7):before{
  background-color: #E87E3C;
}

.calendar-body-wrap table{ 
  width: 100%; 
  border-collapse: collapse;
}

.calendar-body-wrap table th{ 
  padding: 10px 0; 
  text-align: center; 
  font-size: 14px; 
  font-weight: 300; 
  color: #999;
}

.calendar-body-wrap table td{ 
  width: 14%; 
  height: 88px; 
  padding: 10px 0; 
  vertical-align: top; 
  text-align: center; 
  box-sizing: border-box; 
  color: #555;
}

.calendar-body-wrap table td.empty{ 
  color: #ddd;
}

.calendar-body-wrap table td .dot{ 
  width: 10px; 
  height: 10px; 
  background-color: var(--main-color-); 
  border-radius: 50%; 
  margin: 16px auto 10px;
}

.calendar-body-wrap table td .dot.st02{ 
  background-color: var(--sub-color-);
}

.calendar-body-wrap table td .dot.st03{ 
  background-color: var(--thrd-color-);
}

.calendar-body-wrap table td span{ 
  display: block; 
  font-size: 13px; 
  font-weight: 300; 
  color: #86A1C0; 
  margin-bottom: 6px; 
}

.calendar-body-wrap table td.active{ 
  background-color: #E5F5FF; 
  border-radius: 10px;
}

.calendar-body-wrap table td.today{ 
  font-weight: 500; 
  color: var(--main-color-);
}

.calendar-details{ 
  box-shadow: 1px 1px 4px #ddd; 
  border-radius: 20px; 
  margin: 30px 4%; 
  padding: 18px; 
}

.calendar-details .details-head{ 
  display: flex;
  font-size: 15px;
  font-weight: 400;
  position: relative;
}

.calendar-details .details-head .badge{
  background-color: var(--main-color-);
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}

.calendar-details .details-tit{ 
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.calendar-details .details-body{ 
  margin-top: 10px;
}

.calendar-details .details-body div{ 
  color: #666; 
  margin: 8px 0 0;
  font-size: 14px;
}

/* 검색 */
.search-body-wrap{
  margin-top: 30px;
}

.search-body-wrap .page-tit{ 
  padding-left: 0;
}

.search-inp input{
  background: #fff url(../img/icon-search.svg) no-repeat center left 10px;
  width: 100%;
  box-shadow: 1px 1px 4px #e2e2e2;
  border: 1px solid #00709D;
  padding: 10px;
  padding-left: 36px;
  box-sizing: border-box;
  border-radius: 14px;
  outline: none;
}

.search-tab-wrap{

}

.search-tab-line{
  margin: 20px 0;
  padding: 10px 0;
  /* overflow-x: scroll; */
}

#id_div_cate_2 > div{
	display: flex;
	justify-content: space-between;
  align-items: center;
}

#id_div_cate_2 label{
	font-size: 15px;
}

.search-cate{
	overflow-x: scroll;
	padding-bottom: 10px;
}

.search-tab-label{
  font-size: 15px;
  color: #79797A;
}

.search-tab-line ul{
  display: flex;
  width: max-content;
  margin-top: 10px;
}

.search-tab-line ul li{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 6px;
  margin-right: 10px;
  font-size: 14px;
  box-sizing: border-box;
}

.search-tab-line ul li img{
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-bottom: 10px;
}

.search-tab-line ul li.on{
  background-color: var(--main-color-);
  border: 1px solid var(--main-color-);
  color: #fff;
}

.search-tab-line:last-child ul li{
  width: 100%;
  min-width: 70px;
  padding: 8px 10px;
}

.search-body-wrap .form-btn-contoller{
  width: 92%; 
  position: fixed; 
  bottom: 10px; 
  left: 50%; 
  transform: translateX(-50%);
}

.search-body-wrap .form-btn-contoller button{
  background-color: var(--sub-color-);
  padding: 12px;
  font-size: 15px;
}

.search-result-wrap .main-tab-menu{
  margin: 14px 0 4px;
  padding-bottom: 10px;
}

.search-result-wrap .main-list-wrap{
  padding: 0;
}

.search-result-wrap .result-txt{
  margin-bottom: 20px;
}

.search-result-wrap .result-txt .blue{
  color: var(--main-color-);
  font-weight: 700;
}

/* 게시판 */
.board-body-wrap{
  margin-top: 30px;
	padding-bottom: 100px;
}

.board-body-wrap .page-tit{
  padding: 0;
}

.board-tab{
  margin: 20px 0 10px;
  padding-bottom: 10px;
  overflow-x: scroll;
}

.board-tab ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
}

.board-tab ul li{
  padding: 10px 14px;
  color: #999;
}

.board-tab ul li.on{
  border-bottom: 3px solid var(--main-color-);
  font-weight: 500;
  color: var(--main-color-);
}

.board-list{
  margin-top: 20px;
}

.board-list ul li {
  padding: 10px 0;
  border-bottom: 1px solid #E2E2E2;
}

.board-list .list-date{
  margin: 0;
}

.board-list .board-bt{
  margin: 10px 0 4px;
}

.board-view-wrap{

}

.board-view-wrap .board-head{
  border-bottom: 1px solid #E2E2E2;
}

.board-view-wrap .btn-right{
  text-align: right;
  padding: 10px;
}

.board-content{
  margin-top: 16px;
}

/* 마이페이지 */
.mypage-body-wrap{

}

.mypage-body-wrap .user-con{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.mypage-body-wrap .user-con > img{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-sizing: border-box;
}

.mypage-body-wrap .myp-user{
  display: flex;
  align-items: center;
  margin: 15px;
}

.mypage-body-wrap .myp-user .c-info{
  font-size: 14px;
  color: #79797A;
}

.mypage-body-wrap .myp-user .myp-name{
  margin-left: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #49494A;
}

.mypage-body-wrap .link-profile{
  border-radius: 20px;
  border: 1px solid var(--main-color-);
  color: var(--main-color-);
  padding: 8px 45px;
}

.mypage-body-wrap .myp-list{
  margin: 30px 20px;
}

.mypage-body-wrap .myp-list li{
  border-bottom: 1px solid #f1f1f1;
}

.mypage-body-wrap .myp-list li a{
  display: block;
  font-size: 17px;
  font-weight: 500;
  padding: 12px 0;
}

.mypage-body-wrap .myp-list li a img{
  margin-right: 10px;
}

.mypage-body-wrap .terms-wrap{
  margin: 10px 20px;
}

.mypage-body-wrap .terms-wrap li{
  
}

.mypage-body-wrap .terms-wrap li a{
  display: block;
  font-size: 15px;
  color: #49494A;
  padding: 8px 0;
}

/* 프로필 정보 */

.info-body-wrap{
  padding: 20px 5% 40px;
}

.info-body-wrap .form-group{
  margin: 40px 0;
}

.info-body-wrap .form-label{
  font-size: 14px; 
  margin-bottom: 6px; 
  color: #888;
}

.info-body-wrap .field-group{
  font-size: 17px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.info-body-wrap .field-group input{
  width: 78%; 
  height: 50px; 
  padding: 14px;
  border: 1px solid #eee; 
  border-radius: 14px; 
  box-sizing: border-box; 
  outline-color: var(--main-color-);
  font-size: 15px;
}

.info-body-wrap .field-group .edit-btn{
  width: 20%;
  padding: 16px;
  border-radius: 14px;
  background-color: #fff;
  border: 1px solid var(--main-color-);
  color: var(--main-color-);
  box-sizing: border-box;
}

.info-body-wrap .form-btn-contoller {
  width: 92%;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.info-body-wrap .form-sign-out {
  position: absolute;
  bottom: 160px;
  right: 0;
}

.info-body-wrap .form-sign-out a {
  font-size: 14px;
  color: #999;
}

.info-body-wrap .form-btn-contoller .form-contoller-btn {
  height: 47px;
  padding: 6px;
  width: 100%;
  margin: 10px 0;
}

/* 프로필 입력 */
.profile_img_wrap{
	margin:30px 0;
}

.profile_img_wrap .img_upload_area{
	margin: 0 auto;
	position:relative;
	width:100px;
	height:100px;
	margin-bottom:10px;
	padding:0px;
	border-radius:50%;
}

.profile_img_wrap .img_upload {
	position: relative;
	color:#fff;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 0px;
	height:100px;
	background-image:url(../img/myp-sample.png);
	background-size:100%;
	border-radius:50%;
	padding-bottom:0;
}

.profile_img_wrap .img_upload .btn_delete {
	position: absolute;
	width: 22px;
	height: 22px;
	margin: 4px;
	top: 0;
	right: 0;
	z-index: 10;
	background-image: url(../img/close_btn.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 10;
	cursor: pointer;
}

.profile_img_wrap .img_upload input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
	opacity: 0;
	background-color: transparent;
	z-index: 10;
	cursor: pointer;
}

.profile_img_wrap .img_upload input + .prev_img .item {
	position: absolute;	
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 0px;
	text-align: center;
	z-index: 10;
	border-radius:50%;
}

.profile_img_wrap .img_upload input + .prev_img .item img {
	width: 100%;
	height: 100%;
	border-radius:50%;
}

/* 삭제버튼 */
.profile_img_wrap .img_upload .prev_img .btn_delete {
	position: absolute;
	width: 22px;
	height: 22px;
	margin: 4px;
	top: unset;
	bottom: 0px;
	right: 0px;
	z-index: 10;
	background: url(../img/close_btn.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	z-index: 10;
	cursor: pointer;
}

.camera_icon{
	position: absolute;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  z-index: 11;
  width: 26px;
  height: 26px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera_icon img{
  width: 14px;
	height: 14px;
}

.layer-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  min-width: 300px;
  min-height: 844px;
  background: rgba(0, 0, 0, .3);
  left: 0;
  top: 0;
  z-index: 11;
}

.layer-pop.sign-out-pop {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 290px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 12;
}

.layer-pop.sign-out-pop .layer-head{ padding: 20px 20px 10px; font-size: 18px; font-weight: 700;}
.layer-pop.sign-out-pop .layer-body{ padding: 10px 20px 30px; font-size: 15px; color: #797979;}

.layer-pop.sign-out-pop .layer-btn{ display: flex; flex-direction: column;}
.layer-pop.sign-out-pop .layer-btn .btn{ padding: 14px;}
.layer-pop.sign-out-pop .layer-btn .btn.btn-no{ color: #797979;}
.layer-pop.sign-out-pop .layer-btn .btn.btn-yes{ background-color: var(--main-color-); color: #fff; border-radius: 0 0 20px 20px;}


/* 영상 시청 기록 */
.history-body-wrap{
  padding: 20px 5% 40px;
}

.history-tab-wrap{
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.history-tab{
  width: 50%;
  text-align: center;
  padding-bottom: 15px;
}

.history-tab.on{
  border-bottom: 3px solid var(--main-color-);
  font-weight: 600;
  color: var(--main-color-);  
}

.history-list{
  margin-top: 20px;
}

.history-list{
  margin-top: 20px;
}

.history-list ul li{
  padding: 14px 0;
  border-bottom: 1px solid #E2E2E2;
}

.history-thum{
  height: 150px;
  margin-bottom: 20px;
}

.history-thum img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.history-list.his-ok ul li{
  display: flex;
  border-bottom: none;
  padding: 0;
  margin-bottom: 14px;
}

.history-list.his-ok .history-thum{
  width: 170px;
  height: 120px;
  margin-bottom: 0;
}

.history-list.his-ok .history-thum img{
  border-radius: 14px;
}

.history-list.his-ok .his-right{
  width: 50%;
  padding: 10px 0 10px 14px; 
}

/* 내 즐겨찾기 */
.bookmark-body-wrap{
  padding: 20px 5% 40px;
}

.bookmark-tab-wrap{
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.bookmark-tab{
  width: 50%;
  text-align: center;
  padding-bottom: 15px;
}

.bookmark-tab.on{
  border-bottom: 3px solid var(--main-color-);
  font-weight: 600;
  color: var(--main-color-);  
}

.bookmark-list{
  margin-top: 20px;
}

.bookmark-list ul li{
  padding: 14px 0;
  border-bottom: 1px solid #E2E2E2;
}

.bookmark-thum{
  height: 150px;
  margin-bottom: 20px;
}

.bookmark-thum img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.board-label{
  font-size: 14px;
  color: var(--main-color-);
  margin-bottom: 10px;
}

.board-bt{
  display: flex;
  align-items: center;
}

.board-bt .user-name{
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
}

/* 자주 묻는 질문 */

.faq-body-wrap {
  padding: 20px 5% 100px;
}

.faq-list ul li{ 
  box-shadow: 1px 1px 6px #E2E2E2;
  border-radius: 14px; 
  margin-bottom: 16px; 
  padding: 16px 12px 6px; 
  position: relative;
}

.faq-list .faq-drop-head{
  background: url(../img/icon-arrow-down.svg) no-repeat center right;
}

.faq-list .faq-drop-head.active{
  background: url(../img/icon-arrow-top.svg) no-repeat center right;
}

.faq-list .faq-drop-head .faq-tit{ 
  font-weight: 500;
  margin-bottom: 10px;
  width: 92%;
  display: flex;
  align-items: center;
}

.faq-list .faq-drop-head .faq-tit img{
  margin-right: 8px;
}

.faq-list .faq-drop-body{
  display: none;
  padding: 10px 0 10px;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1.5;
  font-weight: 300;
  border-top: 1px solid #eee;
}

.faq-list .faq-drop-body img{
  margin-right: 8px;
}

.faq-answer{
  padding: 12px 6px 0;  
}

/* 1:1 문의하기 */
.inquiry-body-wrap {
  padding: 20px 5% 100px;
}

.inquiry-list ul li{ 
  border-radius: 14px; 
  margin-bottom: 16px; 
  padding: 20px 14px 10px; 
  position: relative;
  box-shadow: 1px 1px 6px #E2E2E2;
}

.inquiry-list ul li .state{ 
  position: absolute;
  top: 0; 
  right: 0;
  border-radius: 0 14px 0 14px; 
  padding: 10px; 
  font-size: 13px; 
  width: 70px; 
  box-sizing: border-box; 
  text-align: center;
}

.inquiry-list ul li .state.st01{ 
  background-color: #F2F2F2; 
  color: #888;
}

.inquiry-list ul li .state.st02{ 
  background-color: var(--main-color-); 
  color: #fff;
}

.inquiry-list .inquiry-head .date{ 
  font-size: 13px; 
  color: #888; 
  margin-bottom: 10px;
}

.inquiry-list .inquiry-head .tit{ 
  font-weight: 500;
  margin-bottom: 10px;
}

.inquiry-list .inquiry-head .txt{ 
  color: #555; 
}

.inquiry-list .inquiry-body{ 
  display: none;
  color: var(--main-color-); 
  padding: 10px 0 10px;  
}

.inquiry-list .inquiry-body .inq-re{ 
  font-weight: 700; 
  color: var(--main-color-);   
  border-top: 1px solid #E2E2E2;
  padding: 15px 0 10px;  
  margin-top: 15px; 
  margin-bottom: 10px;
}

.inquiry-body-wrap .form-btn-contoller {
  width: 90%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.inquiry-body-wrap .form-group{ 
  margin: 10px 0 30px;
}

.inquiry-body-wrap .form-label{ 
  font-size: 14px; 
  margin-bottom: 10px; 
  color: #888;
}

.inquiry-body-wrap .form-label.img-upload{ 
  color: var(--main-color-); 
  margin-bottom: 15px;
}

.inquiry-body-wrap .field-group select{ 
  width: 100%; 
  height: 50px; 
  padding: 14px; 
  border: 1px solid #eee; 
  border-radius: 14px; 
  box-sizing: border-box; 
  outline: none;
}

.inquiry-body-wrap .field-inp{ 
  width: 100%; 
  height: 50px; 
  padding: 14px; 
  border: 1px solid #eee; 
  border-radius: 14px; 
  box-sizing: border-box; 
  outline: none;
}

.inquiry-body-wrap .field-group textarea { 
  width: 94%; 
  border: 1px solid #eee; 
  border-radius: 10px;
  padding: 12px; 
  min-height: 100px; 
  outline: none; 
  font-size: 15px;
}

.inquiry-body-wrap .file-line{ 
  display: flex; 
  align-items: center;
}

.inquiry-body-wrap .file-line .file-img{ 
  position: relative; 
  margin-left: 15px;
  width: 70px;
  height: 70px;
}

.inquiry-body-wrap .file-line .file-img img{ 
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.inquiry-body-wrap .file-line .file-img .img-del{ 
  position: absolute; 
  right: 4px; 
  top: 4px; 
  width: 18px; 
  height: 18px;
}


/* 알림 설정 */
.setting-body-wrap{ 
  background-color: #fff;
}

.setting-row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 20px;
}

.setting-row .label { 
  display: flex; 
  justify-content: flex-start; 
  align-items: center; 
  font-size: 15px; 
  font-weight: 500; 
  color: #555;
}

.switchbox { 
  position: relative; 
  display: inline-block; 
}

.switchbox input[type="checkbox"] { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  cursor: pointer; 
  z-index: 1; 
}

.switchbox input[type="checkbox"] + label { 
  display: block; 
  position: relative; 
  width: 50px; 
  height: 28px; 
  border-radius: 15px; 
  background-color: #D1D1D1; 
} 

.switchbox input[type="checkbox"] + label:before{ 
  content: ""; 
  position: absolute; 
  left: 0; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 24px; 
  height: 24px; 
  background: #fff; 
  border-radius: 50%; 
  border: 2px solid #D1D1D1; 
}

.switchbox input[type="checkbox"]:checked + label{ 
  background: var(--main-color-); 
}

.switchbox input[type="checkbox"]:checked + label:before { 
  border-color: var(--main-color-); 
  left: auto; 
  right: 0;
}

.setting-row:last-child{ 
  margin-bottom: 40px;
}

.app-setting-option{ 
  padding: 20px 5%;
}

.setting-body-wrap .form-btn-contoller{ 
  width: 92%; 
  position: fixed; 
  bottom: 20px; 
  left: 50%; 
  transform: translateX(-50%);
}

.setting-body-wrap .form-btn-contoller .btn-white{ 
  border-color: #E2E2E2;
  color: #888888;
}

/* 이용약관 개인정보처리방침 */
.terms-wrap{
  margin: 40px 0;
}