@charset "UTF-8";
/* 공통 : header */
.header_common_wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 30rem);
	min-width: 1200px;
	margin-left: 30rem;
	z-index: 10;
	background-color: #f8f8f8;
}

.header_common_wrap .area {
	padding: 1.8rem;
	border-bottom: 1px solid #e0e0e0;
}

.header_common_wrap .area::after {
	display: block;
	content: "";
	clear: both;
}

.header_common_wrap .page_tit_cont {
	margin-top: 1.5rem;
	float: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header_common_wrap .page_tit_cont .icon_tit {
	font-size: 2.2rem;
	font-weight: 500;
	padding-left: 4rem;
	background: url(/lib/dahae_pc/imgs/mypage/dash_icon.svg) left center no-repeat;
}

.header_common_wrap .page_tit_cont .icon_tit.calendar {
	background: url(/lib/dahae_pc/imgs/mypage/calendar.svg) left center no-repeat;
}

.header_common_wrap .page_tit_cont .icon_tit.report {
	background: url(/lib/dahae_pc/imgs/mypage/report.svg) left center no-repeat;
}

.header_common_wrap .page_tit_cont .arrow_tit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 2rem;
	font-weight: 400;
	color: #9597a6;
}

.header_common_wrap .page_tit_cont .arrow_tit.ml {
	margin-left: 4rem;
}

.header_common_wrap .page_tit_cont .arrow_tit span {
	color: #ff5a47;
}

.header_common_wrap .page_tit_cont .arrow_tit i {
	display: inline-block;
	width: 2.8rem;
	height: 2.8rem;
	background: url(/lib/dahae_pc/imgs/mypage/arrow_right.svg) center no-repeat;
}

.header_common_wrap .right_cont_area {
	float: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header_common_wrap .right_cont_area .search_cont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header_common_wrap .right_cont_area .search_cont .now_btn {
	float: left;
	width: 13rem;
	height: 4.4rem;
	line-height: 4.4rem;
	background-color: #a3a3a3;
	display: block;
	text-align: center;
	border-radius: 1rem;
	font-size: 1.6rem;
	color: #fff;
	margin-right: 1.6rem;
}

.header_common_wrap .right_cont_area .search_cont .search_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 1rem;
	width: 33.5rem;
}

.header_common_wrap .right_cont_area .search_cont .search_box .search_icon {
	width: 3rem;
	height: 3rem;
	margin-left: 1rem;
	background: url(/lib/dahae_pc/imgs/mypage/search_icon.svg) center no-repeat;
}

.header_common_wrap
	.right_cont_area
	.search_cont
	.search_box
	input[type="text"] {
	border: none;
	font-size: 1.6rem;
	width: calc(100% - 4rem);
	background: transparent;
	border-radius: 0;
}

.header_common_wrap
	.right_cont_area
	.search_cont
	.search_box
	input[type="text"]::-webkit-input-placeholder {
	color: #bfc0c9;
}

.header_common_wrap
	.right_cont_area
	.search_cont
	.search_box
	input[type="text"]:-ms-input-placeholder {
	color: #bfc0c9;
}

.header_common_wrap
	.right_cont_area
	.search_cont
	.search_box
	input[type="text"]::-ms-input-placeholder {
	color: #bfc0c9;
}

.header_common_wrap
	.right_cont_area
	.search_cont
	.search_box
	input[type="text"]::placeholder {
	color: #bfc0c9;
}

.header_common_wrap .right_cont_area .notice_icon {
	display: block;
	margin: 0 2rem;
	width: 3rem;
	height: 3rem;
	background: url(/lib/dahae_pc/imgs/mypage/notice_icon.svg) center no-repeat;
	position: relative;
}

.header_common_wrap .right_cont_area .notice_icon.off span {
	display: none;
}

.header_common_wrap .right_cont_area .notice_icon span {
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 2px;
	right: 2px;
	background-color: #ff5a47;
	border-radius: 50%;
	line-height: 12px;
	text-align: center;
	color: #fff;
}

.header_common_wrap .right_cont_area .user_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.header_common_wrap .right_cont_area .user_info .img {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	margin-right: 1.2rem;
}

.header_common_wrap .right_cont_area .user_info .desc {
	font-size: 1.4rem;
	font-weight: 500;
}

.header_common_wrap .right_cont_area .user_info .arrow_icon {
	width: 24px;
	height: 24px;
	background: url(/lib/dahae_pc/imgs/mypage/arrow_icon.svg) center no-repeat;
	margin-left: 1rem;
}

.header_common_wrap .right_cont_area .user_info .arrow_icon.active {
	background: url(/lib/dahae_pc/imgs/mypage/arrow_icon.svg) center no-repeat;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.header_common_wrap .right_cont_area .user_info .drop_box {
	display: none;
	width: 15rem;
	border-radius: 1rem;
	padding: 1rem 0;
	-webkit-box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
	box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
	position: absolute;
	top: 4.8rem;
	right: 0;
	background-color: #fff;
}

.header_common_wrap .right_cont_area .user_info .drop_box.show {
	display: block;
}

.header_common_wrap .right_cont_area .user_info .drop_box a {
	padding: 1rem 0;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	background: url(/lib/dahae_pc/imgs/mypage/person.svg) left 1rem center
		no-repeat;
}

.header_common_wrap .right_cont_area .user_info .drop_box a:hover {
	background: url(/lib/dahae_pc/imgs/mypage/person.svg) left 1rem center
		no-repeat #f7f8fa;
}

.header_common_wrap .right_cont_area .user_info .drop_box a.logout {
	background: url(/lib/dahae_pc/imgs/mypage/logout.svg) left 1rem center
		no-repeat;
}

.header_common_wrap .right_cont_area .user_info .drop_box a.logout:hover {
	background: url(/lib/dahae_pc/imgs/mypage/logout.svg) left 1rem center
		no-repeat #f7f8fa;
}

/* 공통 : content */
.content_layout_wrap {
	width: calc(100% - 30rem);
	background: #f8f8f8;
	min-height: 100vh;
	z-index: 9998;
	margin-left: 30rem;
}

.content_layout_wrap input[type="text"] {
	width: 100%;
	height: 4.8rem;
	line-height: 4.8rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 10px;
	font-size: 1.6rem;
	color: #000;
	background: #fff;
	border: 1px solid #eeeeee;
	border-radius: 0.8rem;
	word-break: break-all;
}

.content_layout_area .inner {
	padding: 3rem;
	margin-top: 8.1rem;
}

/* 공통 : 컨텐츠 박스 레이아웃 */
.cardbox_layout .tit {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 1.7rem;
}

.cardbox_layout .contbox {
	border-radius: 1.4rem;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
	box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
}

/* 공통 : 체크박스, 라디오 박스  */
.content_layout_wrap input[type="checkbox"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.content_layout_wrap input[type="checkbox"]:checked + label:after {
	background: url(/lib/dahae_pc/imgs/mypage/checkbox_on.svg) center/100%
		no-repeat;
}

.content_layout_wrap input[type="checkbox"] + label {
	position: relative;
	padding-left: 3rem;
	font-size: 1.6rem;
	color: #212428;
	font-weight: 400;
}

.content_layout_wrap input[type="checkbox"] + label:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 2.4rem;
	height: 2.4rem;
	background: url(/lib/dahae_pc/imgs/mypage/checkbox_off.svg) center/100%
		no-repeat;
}

.content_layout_wrap input[type="radio"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.content_layout_wrap input[type="radio"]:checked + label:after {
	background: url(/lib/dahae_pc/imgs/mypage/radio_on.svg) center/100% no-repeat;
}

.content_layout_wrap input[type="radio"] + label {
	position: relative;
	padding-left: 3rem;
	font-size: 1.6rem;
	color: #212428;
	font-weight: 400;
}

.content_layout_wrap input[type="radio"] + label:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 2.4rem;
	height: 2.4rem;
	background: url(/lib/dahae_pc/imgs/mypage/radio_off.svg) center/100% no-repeat;
}

.content_layout_wrap .base_btn {
	width: 14rem;
	height: 4.8rem;
	line-height: 4.8rem;
	color: #fff;
	text-align: center;
	background-color: #ff5a47;
	border: none;
	border-radius: 0.8rem;
	font-size: 1.6rem;
}

textarea {
	font-family: "Noto Sans KR", sans-serif;
	color: #000000;
}

/** 대시보드 영역 **/
.dash_cont_wrap::after {
	display: block;
	content: "";
	clear: both;
}

.dash_cont_wrap .left_card_cont {
	float: left;
	width: 65%;
}

.dash_cont_wrap .left_card_cont .contbox::after {
	display: block;
	content: "";
	clear: both;
}

.dash_cont_wrap .left_card_cont .full_calender_area {
	width: 65%;
	float: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.dash_cont_wrap .left_card_cont .full_calender_area .time_line {
	position: absolute;
	top: 45%;
	left: 0;
	z-index: 12;
	width: 100%;
}

.dash_cont_wrap .left_card_cont .full_calender_area .time_line::after {
	content: "";
	display: block;
	width: 90%;
	height: 2px;
	background-color: #ff5a47;
	position: absolute;
	top: 50%;
	left: 6.75rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.dash_cont_wrap .left_card_cont .full_calender_area .time_line span {
	color: #ff5a47;
	font-size: 1.4rem;
	font-weight: 400;
	padding-left: 1.5rem;
	display: inline-block;
	position: relative;
}

.dash_cont_wrap .left_card_cont .full_calender_area .time_line span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #ff5a47;
	position: absolute;
	top: 50%;
	right: -2rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
}

.dash_cont_wrap .left_card_cont .full_calender_area .full_calender {
	width: 100%;
}

.dash_cont_wrap .left_card_cont .full_calender_area .full_calender th {
	height: 6rem;
	font-size: 1.8rem;
	border-right: 1px solid #e8ebf0;
	border-bottom: 1px solid #e8ebf0;
	color: #6e768c;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	th:last-of-type {
	border-right: 0;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	th:first-of-type {
	border-bottom: 0;
}

.dash_cont_wrap .left_card_cont .full_calender_area .full_calender th.color {
	color: #ff5a47;
}

.dash_cont_wrap .left_card_cont .full_calender_area .full_calender td {
	position: relative;
	height: 9rem;
	border-right: 1px solid #e8ebf0;
	border-bottom: 1px dashed #e8ebf0;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	td:last-of-type {
	border-right: 0;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	td:first-of-type {
	border-bottom: 0;
}

.dash_cont_wrap .left_card_cont .full_calender_area .full_calender .time {
	font-size: 1.4rem;
	color: #a3a3a3;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.dash_cont_wrap .left_card_cont .full_calender_area .full_calender .list_box {
	margin: 0 auto;
	width: 90%;
	margin: auto;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	border-radius: 5px;
	height: 8rem;
	position: relative;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box::after {
	content: "";
	width: 100%;
	height: 0.5rem;
	background-color: #ff9c37;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0.5rem 0.5rem 0 0;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box.type2::after {
	background-color: #ff637f;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box.type3::after {
	background-color: #ff85c2;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box
	dl {
	padding-top: 2rem;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box
	dl
	dt {
	font-size: 1.6rem;
	font-weight: 500;
	text-indent: 2rem;
	margin-bottom: 0.5rem;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box
	dl
	dd {
	font-size: 1.2rem;
	text-indent: 2rem;
	color: #a4a4a4;
}

.dash_cont_wrap
	.left_card_cont
	.full_calender_area
	.full_calender
	.list_box
	.more_btn {
	width: 1.9rem;
	height: 1.9rem;
	background: url(/lib/dahae_pc/imgs/mypage/more.svg) center no-repeat;
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.dash_cont_wrap .left_card_cont .side_calender_area {
	border-left: 1px solid #e8ebf0;
	width: 35%;
	float: right;
}

.dash_cont_wrap .left_card_cont .side_calender_area .calender_area {
	padding: 2.4rem 2.4rem 1rem 2.4rem;
	position: relative;
	border-bottom: 1px solid #e8ebf0;
}

.dash_cont_wrap .left_card_cont .side_calender_area .calender_area .enlar_icon {
	width: 2.6rem;
	height: 2.6rem;
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: url(/lib/dahae_pc/imgs/mypage/enlar.svg) center no-repeat;
}

.dash_cont_wrap .left_card_cont .side_calender_area .calender_area .tit_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 3rem;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.tit_area
	button {
	width: 1.2rem;
	height: 1.2rem;
	background: url(/lib/dahae_pc/imgs/mypage/prev_arrow.svg) center no-repeat;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.tit_area
	button.next {
	background: url(/lib/dahae_pc/imgs/mypage/next_arrow.svg) center no-repeat;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.tit_area
	.text {
	margin: 0 1rem;
	font-size: 2rem;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.tit_area
	.text
	span {
	font-size: 2rem;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.week-box {
	font-size: 1.3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 1.6rem;
	color: #4e4e4e;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.week-box
	.sun {
	color: #dc404a;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.week-box
	.sat {
	color: #005ae2;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.week-box
	.item {
	width: calc(100% / 7);
	text-align: center;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box {
	font-size: 1.3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date {
	width: calc(100% / 7);
	text-align: center;
	height: 5rem;
	position: relative;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date
	.other {
	color: rgba(0, 0, 0, 0.2);
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date
	.today {
	color: #fff;
	border-radius: 50%;
	background-color: #ff5a47;
	padding: 0.5rem;
	width: 28px;
	display: inline-block;
	position: absolute;
	left: 7px;
	top: -5px;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date
	.dot_area {
	margin-top: 0.2rem;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date
	.dot_area
	.dot {
	display: inline-block;
	width: 0.6rem;
	height: 0.6rem;
	background-color: #ff85c2;
	border-radius: 50%;
	margin-right: 0.2rem;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date
	.dot_area
	.dot.dot2 {
	background-color: #ffcb6f;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.calender_area
	.calender_wrap
	.date-box
	.date
	.desc_dot {
	display: none;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area .tit_area {
	cursor: pointer;
	padding: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	.tit_area
	.txt {
	font-size: 1.8rem;
	padding-left: 3.4rem;
	font-weight: 500;
	background: url(/lib/dahae_pc/imgs/mypage/notice.svg) left center no-repeat;
	background-size: contain;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	.tit_area
	.msg {
	font-size: 1.6rem;
	color: #ff5a47;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area dl {
	padding: 0 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area dl dt {
	font-size: 1.6rem;
	font-weight: 400;
	position: relative;
	padding-left: 1.8rem;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area dl dt::before {
	content: "";
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	background-color: #ff85c2;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	dl
	dt.dot2::before {
	background-color: #ff637f;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	dl
	dt.dot3::before {
	background-color: #ff9c37;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	dl
	dt.dot4::before {
	background-color: #ffcb6f;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area dl dd {
	font-size: 1.6rem;
	width: 40%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: right;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area .time {
	font-size: 1.3rem;
	color: #a3a3a3;
	margin-left: 2rem;
	margin-top: 0.5em;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area .desc {
	padding-bottom: 2rem;
	border-bottom: 1px solid #e8ebf0;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	ul
	li
	.time_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 2rem;
	padding-bottom: 3rem;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	ul
	li
	.time_box
	.day {
	font-size: 1.8rem;
	font-weight: 500;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	ul
	li
	.time_box
	.date {
	font-size: 1.6rem;
	color: #a3a3a3;
}

.dash_cont_wrap .left_card_cont .side_calender_area .notice_area ul li .time {
	margin-right: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e8ebf0;
}

.dash_cont_wrap
	.left_card_cont
	.side_calender_area
	.notice_area
	ul
	li
	.time.bbnone {
	border-bottom: none;
}

.dash_cont_wrap .right_card_cont {
	float: right;
	width: calc(35% - 3rem);
}

.dash_cont_wrap .right_card_cont .profile_contbox {
	position: relative;
}

.dash_cont_wrap .right_card_cont .profile_contbox .link_box {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.2rem;
	color: #c2c7ce;
	text-decoration: underline;
}

.dash_cont_wrap .right_card_cont .profile_contbox .area {
	padding: 3rem 2.4rem;
}

.dash_cont_wrap .right_card_cont .profile_contbox .area::after {
	display: block;
	content: "";
	clear: both;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc {
	position: relative;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc .desc_tit {
	font-weight: 500;
	font-size: 2rem;
	color: #2b2b2a;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc .desc_tit span {
	font-size: 1.4rem;
	color: #fff;
	display: inline-block;
	border-radius: 6px;
	padding: 0.2rem 0.8rem;
	background: #ff4063;
	font-weight: 500;
	vertical-align: middle;
	margin-left: 24px;
}
.dash_cont_wrap
	.right_card_cont
	.profile_contbox
	.cont_desc.type_24
	.desc_tit
	span {
	background: #ffa850;
}
.dash_cont_wrap
	.right_card_cont
	.profile_contbox
	.cont_desc.type_83
	.desc_tit
	span {
	background: #ff83b0;
}
.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc .desc {
	font-size: 1.7rem;
	margin-top: 1rem;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc dl {
	margin: 1.5rem 0 2.7rem;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc dl dt {
	display: inline-block;
	font-size: 2.3rem;
	color: #2b2b2a;
	font-weight: 500;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc dl dt span {
	font-size: 1.7rem;
	color: #676767;
	font-weight: 400;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc dl dd {
	display: inline-block;
	font-size: 1.6rem;
	color: #a9adb3;
	margin-left: 1rem;
	text-decoration: line-through;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc .img_box {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 11.3rem;
	height: 11.3rem;
	border: 1px solid #ff4063;
	border-radius: 50%;
}
.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc.type_24 .img_box {
	border: 1px solid #ffa850;
}
.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc.type_83 .img_box {
	border: 1px solid #ff83b0;
}
.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc .img_box img {
	width: 100%;
}

.dash_cont_wrap .right_card_cont .profile_contbox .cont_desc .img_box .icon {
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	width: 3.6rem;
	height: 3.6rem;
	background: url(/lib/dahae_pc/imgs/mypage/counselor_icon.svg) center no-repeat
		#fff;
	border-radius: 50%;
	-webkit-box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
	box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
}

.dash_cont_wrap .right_card_cont .profile_contbox .line_desc::after {
	display: block;
	content: "";
	clear: both;
}

.dash_cont_wrap .right_card_cont .profile_contbox .line_desc ul {
	float: left;
}

.dash_cont_wrap .right_card_cont .profile_contbox .line_desc ul li {
	color: #707070;
	font-size: 1.6rem;
	display: inline-block;
	border-right: 1px solid #eeeeee;
	margin-right: 1rem;
	font-weight: 400;
	padding-right: 1rem;
}

.dash_cont_wrap
	.right_card_cont
	.profile_contbox
	.line_desc
	ul
	li:nth-of-type(1) {
	background: url(/lib/dahae_pc/imgs/mypage/star.svg) left center no-repeat;
	padding-left: 3rem;
}

.dash_cont_wrap
	.right_card_cont
	.profile_contbox
	.line_desc
	ul
	li:last-of-type {
	color: #ff5a47;
	border-right: 0;
}

.dash_cont_wrap .right_card_cont .profile_contbox .line_desc p {
	float: right;
	color: #676767;
	font-size: 1.7rem;
	background: url(/lib/dahae_pc/imgs/mypage/heart.svg) left center no-repeat;
	padding-left: 2.5rem;
}

.dash_cont_wrap .right_card_cont .num_cont_area {
	margin: 3rem 0;
}

.dash_cont_wrap .right_card_cont .num_cont_area::after {
	display: block;
	content: "";
	clear: both;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont {
	/* float: left; */
	width: 65%;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont .cardbox_layout {
	margin-bottom: 3rem;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont .contbox {
	position: relative;
	padding: 1.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont .contbox p {
	font-size: 1.6rem;
	font-weight: 500;
	margin-right: 3rem;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont .contbox dl dt {
	font-size: 1.4rem;
	color: #737373;
}

.dash_cont_wrap
	.right_card_cont
	.num_cont_area
	.num_left_cont
	.contbox
	dl
	dt
	span {
	color: #ff5a47;
	font-size: 2.4rem;
	font-weight: 500;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont .contbox dl dd {
	font-size: 1.2rem;
	color: #898989;
}

.dash_cont_wrap
	.right_card_cont
	.num_cont_area
	.num_left_cont
	.contbox
	dl
	dd.color {
	color: #ff5a47;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_left_cont .contbox a {
	position: absolute;
	top: 50%;
	right: 1.6rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;
	width: 2.3rem;
	height: 2.3rem;
	background: url(/lib/dahae_pc/imgs/mypage/link_arrow.svg) center no-repeat;
}

.dash_cont_wrap
	.right_card_cont
	.num_cont_area
	.num_left_cont
	.cardbox_layout
	+ .cardbox_layout {
	margin-bottom: 0;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_right_cont {
	float: right;
	width: calc(35% - 3rem);
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_right_cont .contbox {
	text-align: center;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_right_cont .contbox dl {
	padding: 2.1rem 2rem;
	border-bottom: 1px solid #e8ebf0;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_right_cont .contbox dl dt {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.dash_cont_wrap .right_card_cont .num_cont_area .num_right_cont .contbox dl dd {
	font-size: 1.4rem;
	color: #737373;
}

.dash_cont_wrap
	.right_card_cont
	.num_cont_area
	.num_right_cont
	.contbox
	dl
	dd
	span {
	font-size: 2.2rem;
	color: #ff5a47;
	font-weight: 500;
	margin-right: 0.5rem;
}

.dash_cont_wrap
	.right_card_cont
	.num_cont_area
	.num_right_cont
	.contbox
	dl
	+ dl {
	border-bottom: none;
}

.dash_cont_wrap .right_card_cont .memberlist_cont_area .contbox {
	padding: 2rem;
}

.dash_cont_wrap .right_card_cont .memberlist_cont_area .contbox .sec_tit {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li {
	background: #f7f8fa;
	border-radius: 0.5rem;
	padding: 1.2rem 2rem;
	position: relative;
	margin-bottom: 1.2rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 5px;
	height: 100%;
	background: #f57fba;
	border-radius: 0.5rem 0 0 0.5rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li.type2::before {
	background: #ff637f;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li.type3::before {
	background: #ff9c37;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li.type4::before {
	background: #ffcb6f;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.img_box {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.img_box
	img {
	width: 100%;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.user_info {
	margin-left: 1.4rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.user_info
	dt {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.user_info
	dd {
	display: inline-block;
	font-size: 1.2rem;
	color: #898989;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.user_info
	dd:first-of-type {
	color: #ff5a47;
	padding-right: 1rem;
	border-right: 1px solid #e0e0e0;
	margin-right: 1rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.count_info {
	margin-left: 3rem;
	min-width: 10rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.count_info
	dt {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.count_info
	dt
	.dday {
	color: #ff5a47;
	margin-left: 0.6rem;
}

.dash_cont_wrap
	.right_card_cont
	.memberlist_cont_area
	.contbox
	.number_list
	li
	.item
	.count_info
	dd {
	font-size: 1.2rem;
	color: #898989;
}

/** 캘린더 타이틀 영역 옆 link list 영역 **/
.calender_tit_cont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calender_tit_cont .calender_list {
	margin-left: 4rem;
}

.calender_tit_cont .calender_list li {
	display: inline-block;
}

.calender_tit_cont .calender_list li.on a {
	color: #ff5a47;
}

.calender_tit_cont .calender_list li a {
	font-size: 1.6rem;
	font-weight: 500;
	color: #d0d0d0;
	margin-right: 2.4rem;
}

/** 캘린더 페이지 영역 **/
.calendar_cont_wrap .common_tit_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calendar_cont_wrap .common_tit_area .tit_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calendar_cont_wrap .common_tit_area .tit_area button {
	width: 2.3rem;
	height: 2.3rem;
	background: url(/lib/dahae_pc/imgs/mypage/arrow_prev.svg) center no-repeat;
}

.calendar_cont_wrap .common_tit_area .tit_area button.next {
	background: url(/lib/dahae_pc/imgs/mypage/arrow_next.svg) center no-repeat;
}

.calendar_cont_wrap .common_tit_area .tit_area .text {
	margin: 0 1rem;
	font-size: 2.4rem;
	font-weight: 400;
}

.calendar_cont_wrap .common_tit_area .tit_area .text span {
	font-size: 2.4rem;
}

.calendar_cont_wrap .common_tit_area .right_btn_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
}

.calendar_cont_wrap .common_tit_area .right_btn_area button {
	margin-left: 1rem;
	padding: 0 1.9rem;
	height: 1.4rem;
	font-size: 1.4rem;
	color: #ff5a47;
	border: 1px solid #ff5a47;
	height: 4.2rem;
	line-height: 3.2;
	border-radius: 4.2rem;
	text-indent: 2rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_01-01.svg) left 1.5rem
		center no-repeat #fff;
}

.calendar_cont_wrap .common_tit_area .right_btn_area button:nth-of-type(2) {
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_02-01.svg) left 1.5rem
		center no-repeat #fff;
}

.calendar_cont_wrap .common_tit_area .right_btn_area button:nth-of-type(3) {
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_04-01.svg) left 1.5rem
		center no-repeat #fff;
}

.calendar_cont_wrap .common_tit_area .right_btn_area button:last-of-type.gray {
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_04-01.svg) left 1.5rem
		center no-repeat #fff;
}

.calendar_cont_wrap .common_tit_area .right_btn_area button.gray {
	color: #858c9f;
	border: 1px solid #e0e0e0;
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_03-01.svg) left 1.5rem
		center no-repeat #fff;
}

.calendar_cont_wrap .common_tit_area .right_btn_area .plus_btn {
	display: block;
	/* width: 124px; */
	padding: 0 1.8rem 0 1.2rem;
	height: 4.2rem;
	display: flex;
	border-radius: 20px;
	background: #ff5a47;
	/* background: url(/assets/image/common/plus_btn.svg) no-repeat; */
	text-align: center;
	line-height: 4.4rem;
	font-size: 1.4rem;
	color: #fff;
	margin-left: 1rem;
}

.calendar_cont_wrap .week_calender_cont {
	margin-top: 2rem;
	background: #fff;
	border-radius: 1.4rem;
	position: relative;
}

.calendar_cont_wrap .week_calender_cont .time_line {
	position: absolute;
	top: 45%;
	left: 0;
	/* z-index: 12; */
	z-index: 1;
	width: 100%;
}

.calendar_cont_wrap .week_calender_cont .time_line::after {
	content: "";
	display: block;
	width: 95%;
	height: 2px;
	background-color: #ff5a47;
	position: absolute;
	top: 50%;
	left: 8rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.calendar_cont_wrap .week_calender_cont .time_line span {
	color: #ff5a47;
	font-size: 1.4rem;
	font-weight: 400;
	padding-left: 2.1rem;
	display: inline-block;
	position: relative;
}

.calendar_cont_wrap .week_calender_cont .time_line span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #ff5a47;
	position: absolute;
	top: 50%;
	right: -2.7rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 50%;
}

.calendar_cont_wrap .week_calender_cont .full_calender {
	width: 100%;
}

.calendar_cont_wrap .week_calender_cont .full_calender th {
	height: 6rem;
	font-size: 1.8rem;
	border-right: 1px solid #e8ebf0;
	border-bottom: 1px solid #e8ebf0;
	color: #6e768c;
}

.calendar_cont_wrap .week_calender_cont .full_calender th:last-of-type {
	border-right: 0;
}

.calendar_cont_wrap .week_calender_cont .full_calender th:first-of-type {
	border-bottom: 0;
}

.calendar_cont_wrap .week_calender_cont .full_calender th.color {
	color: #ff5a47;
	/* border-bottom: 1px solid #FF5A47; */
}

.calendar_cont_wrap .week_calender_cont .full_calender td {
	position: relative;
	height: 9rem;
	border-right: 1px solid #e8ebf0;
	border-bottom: 1px dashed #e8ebf0;
}

.calendar_cont_wrap .week_calender_cont .full_calender td:last-of-type {
	border-right: 0;
}

.calendar_cont_wrap .week_calender_cont .full_calender td:first-of-type {
	border-bottom: 0;
}

.calendar_cont_wrap .week_calender_cont .full_calender .time {
	font-size: 1.4rem;
	color: #a3a3a3;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box {
	margin: 0 auto;
	width: 90%;
	margin: auto;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	border-radius: 5px;
	height: 8rem;
	position: relative;
	z-index: 1;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box::after {
	content: "";
	width: 100%;
	height: 0.5rem;
	background-color: #ff9c37;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0.5rem 0.5rem 0 0;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box.type2::after {
	background-color: #ff637f;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box.type3::after {
	background-color: #ff85c2;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box dl {
	padding-top: 2rem;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box dl dt {
	font-size: 1.6rem;
	font-weight: 500;
	text-indent: 2rem;
	margin-bottom: 0.5rem;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box dl dd {
	font-size: 1.2rem;
	text-indent: 2rem;
	color: #a4a4a4;
}

.calendar_cont_wrap .week_calender_cont .full_calender .list_box .more_btn {
	width: 1.9rem;
	height: 1.9rem;
	background: url(/lib/dahae_pc/imgs/mypage/more.svg) center no-repeat;
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.calendar_cont_wrap .week_calender_cont .full_calender .imposs {
	background-color: #f9fafb;
}

.calendar_cont_wrap .week_calender_cont .full_calender .poss {
	background-color: #fff6f5;
}

.calendar_cont_wrap .week_calender_cont .full_calender .line {
	border-left: 1px solid #ff5a47;
	border-right: 1px solid #ff5a47;
}

/** 캘린더 페이지 사이드 컨텐츠 영역 **/
.calendar_sidelayout_wrap .bg_cont {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
}

.calendar_sidelayout_wrap .sidecont_layout {
	position: fixed;
	top: 0;
	right: 0rem;
	width: 92rem;
	background: #fff;
	height: 100vh;
	overflow: hidden;
	z-index: 10001;
	-webkit-transition: all 0.5;
	transition: all 0.5;
}

.calendar_sidelayout_wrap .sidecont_layout.active {
	right: -92rem;
}

.calendar_sidelayout_wrap .tit_area {
	padding: 2.3rem 3rem 0 3rem;
	position: relative;
}

.calendar_sidelayout_wrap .tit_area p {
	font-size: 2.2rem;
	font-weight: 500;
	margin-top: 1rem;
}

.calendar_sidelayout_wrap .tit_area .close_btn {
	/* position: absolute;
	top: 2.3rem;
	right: 3rem;
	width: 3.2rem;
	height: 3.2rem; */
	background: url(/lib/dahae_pc/imgs/mypage/modal_close.svg) center no-repeat;
}

.calendar_sidelayout_wrap .user_info_area {
	margin: 5rem 0;
	padding: 0 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calendar_sidelayout_wrap .user_info_area .user_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calendar_sidelayout_wrap .user_info_area .user_info .img_box {
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	background: #f7f8fa;
}

.calendar_sidelayout_wrap .user_info_area .user_info .img_box img {
	width: 100%;
}

.calendar_sidelayout_wrap .user_info_area .user_info .desc_box {
	margin-left: 2rem;
}

.calendar_sidelayout_wrap .user_info_area .user_info .desc_box h3 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.calendar_sidelayout_wrap .user_info_area .user_info .desc_box p {
	font-size: 1.6rem;
	color: #898989;
}

.calendar_sidelayout_wrap .user_info_area .user_info .desc_box p .point {
	color: #ff5a47;
	display: inline-block;
}

.calendar_sidelayout_wrap .user_info_area .user_info .desc_box p .point::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1.8rem;
	background: #e0e0e0;
	vertical-align: -4px;
	margin: 0 1rem;
}

.calendar_sidelayout_wrap .user_info_area .right_link_box a {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	border-radius: 4.2rem;
	height: 4.2rem;
	line-height: 4.2rem;
	width: 14rem;
	text-align: center;
	text-indent: 2rem;
	font-size: 1.4rem;
	color: #858c9f;
	font-weight: 400;
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_05.svg) left 2rem center
		no-repeat #fff;
}

.calendar_sidelayout_wrap .user_info_area .right_link_box a.chg_btn {
	background: url(/lib/dahae_pc/imgs/mypage/cal_icon_06.svg) left 2rem center
		no-repeat #fff;
	margin-left: 1rem;
}

.calendar_sidelayout_wrap .tab_link_area ul {
	padding: 0 3rem;
	border-bottom: 1px solid #e0e0e0;
}

.calendar_sidelayout_wrap .tab_link_area ul li {
	display: inline-block;
	margin-right: 5rem;
}

.calendar_sidelayout_wrap .tab_link_area ul li.on a {
	color: #000000;
	border-bottom: 2px solid #ff5a47;
}

.calendar_sidelayout_wrap .tab_link_area ul li a {
	display: inline-block;
	font-size: 1.8rem;
	color: #c5c5c5;
	font-weight: 400;
	padding-bottom: 1.6rem;
}

.calendar_sidelayout_wrap .graybox_area {
	background: #f7f8fa;
	padding: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calendar_sidelayout_wrap .graybox_area dl dt {
	font-size: 1.3rem;
	color: #8d8d8d;
	margin-bottom: 0.7rem;
}

.calendar_sidelayout_wrap .graybox_area .left_area dl dd {
	display: inline-block;
	margin-right: 1rem;
	height: 3.2rem;
	line-height: 3.2rem;
	padding: 0 1.6rem;
	font-size: 1.4rem;
	color: #6c6c6c;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 3.2rem;
	font-weight: 400;
}

.calendar_sidelayout_wrap .graybox_area .right_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.calendar_sidelayout_wrap .graybox_area .right_area dl {
	min-width: 10rem;
}

.calendar_sidelayout_wrap .graybox_area .right_area dl dd {
	font-size: 1.8rem;
	font-weight: 400;
}

/** scroll 컨텐츠 공통 영역 **/
.calendar_sidelayout_wrap .scroll_cont_wrap {
	position: relative;
}

.calendar_sidelayout_wrap .scroll_cont_wrap::after {
	content: "";
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 6rem;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(white),
		to(rgba(255, 255, 255, 0))
	);
	background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 100;
}

.calendar_sidelayout_wrap .scroll_cont_wrap .scroll_arrow_area {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 101;
	width: 100%;
}

.calendar_sidelayout_wrap .scroll_cont_wrap .scroll_arrow_area p {
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	padding-top: 6rem;
	background: url(/lib/dahae_pc/imgs/mypage/top_arrow.svg) top 2rem center
		no-repeat;
}

.calendar_sidelayout_wrap .sroll_cont_common {
	position: relative;
	max-height: calc(100vh - 39rem);
	overflow-y: scroll;
}

.calendar_sidelayout_wrap .sroll_cont_common::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

.calendar_sidelayout_wrap .sroll_cont_common::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 0;
}

.calendar_sidelayout_wrap .sroll_cont_common::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 0;
}

.calendar_sidelayout_wrap .sroll_cont_common ul {
	padding: 0 5rem 0 4rem;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 5rem 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li.active::after {
	background: #ff5a47;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li.active .date_box::before {
	border: 2px solid #ff5a47;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li.point::after {
	background: #ff5a47;
	height: 50%;
	top: 0;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.calendar_sidelayout_wrap .sroll_cont_common ul li.point::before {
	position: absolute;
	top: 50%;
	left: 0.6rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: #e0e0e0;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li.point .date_box::before {
	border: 2px solid #ff5a47;
	width: 2.2rem;
	height: 2.2rem;
	left: -0.58rem;
	background: url(/lib/dahae_pc/imgs/mypage/point_round.svg) center no-repeat
		#fff;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li::after {
	position: absolute;
	top: 50%;
	left: 0.6rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: #e0e0e0;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .date_box {
	padding-right: 4rem;
	padding-left: 4.2rem;
	position: relative;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .date_box::after {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 1px;
	height: 4.5rem;
	background: #e0e0e0;
	z-index: 10;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .date_box::before {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	border: 2px solid #e0e0e0;
	background: #fff;
	z-index: 10;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .date_box .date {
	font-size: 2rem;
	font-weight: 400;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .date_box .time {
	font-size: 1.6rem;
	color: #898989;
	margin-top: 0.8rem;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .date_box .chg {
	color: #ff5a47;
	margin-left: 1rem;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .dl_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 50%;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .dl_area dl {
	min-width: 15rem;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .dl_area dl dt {
	font-size: 1.3rem;
	color: #a3a3a3;
	margin-bottom: 0.5rem;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .dl_area dl dd {
	font-size: 1.6rem;
	font-weight: 400;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .view_link {
	font-size: 1.6rem;
	color: #ff5a47;
	font-weight: 400;
}

.calendar_sidelayout_wrap .sroll_cont_common ul li .arrow_link {
	font-size: 0;
	text-indent: -999999px;
	width: 2.3rem;
	height: 2.3rem;
	background: url(/lib/dahae_pc/imgs/mypage/link_arrow.svg) center no-repeat;
	background-size: cover;
}

/*************************/
/** 새로운 상담 추가 하기 영역 **/
.sidecont_layout .step_bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	display: none;
}

.sidecont_layout .step_bg.show {
	display: block;
	z-index: 120;
}

.step_cont_area {
	max-height: calc(100vh - 35rem);
	overflow-y: scroll;
}

.step_cont_area::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

.step_cont_area::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 0;
}

.step_cont_area::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 0;
}

.step_cont_area .step_box {
	padding: 5rem 4rem;
	position: relative;
}

.step_cont_area .step_box::before {
	position: absolute;
	top: 11rem;
	left: 4.5rem;
	content: "";
	display: block;
	width: 2px;
	height: 35rem;
	background-color: #e0e0e0;
}

.step_cont_area .item_wrap {
	margin-left: 6rem;
	width: calc(100% - 6rem);
	position: relative;
	min-height: 13rem;
	margin-bottom: 3rem;
}

.step_cont_area .item_wrap .step_item {
	width: 100%;
	min-height: 13rem;
	border-radius: 1rem;
	border: 1px solid #e0e0e0;
	background-color: #fff;
	padding: 2rem;
}

.step_cont_area .item_wrap .step_item.active {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 121;
}

.step_cont_area .item_wrap .step_item.step2::before {
	content: "2";
}

.step_cont_area .item_wrap .step_item.step3::before {
	content: "3";
	background-color: #ff5a47;
}

.step_cont_area .item_wrap .step_item::before {
	position: absolute;
	top: 50%;
	left: -7rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: "1";
	display: block;
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	text-align: center;
	font-weight: 400;
	color: #fff;
	font-size: 1.8rem;
	border-radius: 50%;
	background-color: #d9d9d9;
}

.step_cont_area .item_wrap .step_item p {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 500;
}

.step_cont_area .item_wrap .step_item .plus_btn {
	text-align: center;
	height: 6rem;
	line-height: 6rem;
	border-radius: 0.5rem;
	width: 100%;
	border: 1px dashed #e0e0e0;
	background-color: #f9fafb;
	color: #7e7e7e;
	font-size: 1.6rem;
}

.step_cont_area .item_wrap .step_item .plus_btn.active {
	border: 1px solid #ff5a47;
	background-color: #fff;
	color: #363636;
}

.step_cont_area .item_wrap .step_item .plus_btn.active i {
	background: url(/lib/dahae_pc/imgs/mypage/plus_wt.svg) center no-repeat
		#ff5a47;
}

.step_cont_area .item_wrap .step_item .plus_btn i {
	display: inline-block;
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 1rem;
	background: url(/lib/dahae_pc/imgs/mypage/plus_wt.svg) center no-repeat
		#bebebf;
}

.step_cont_area .item_wrap .text_box {
	display: none;
	position: absolute;
	top: 95%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 95%;
	background-color: #fff;
	border-radius: 1rem;
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	z-index: 121;
}

.step_cont_area .item_wrap .text_box.show {
	display: block;
}

.step_cont_area .item_wrap .text_box textarea {
	height: 14rem;
	width: 100%;
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 1.6rem;
}

.step_cont_area .item_wrap .text_box textarea::-webkit-input-placeholder {
	color: #bfbfbf;
}

.step_cont_area .item_wrap .text_box textarea:-ms-input-placeholder {
	color: #bfbfbf;
}

.step_cont_area .item_wrap .text_box textarea::-ms-input-placeholder {
	color: #bfbfbf;
}

.step_cont_area .item_wrap .text_box textarea::placeholder {
	color: #bfbfbf;
}

.step_cont_area .item_wrap .text_box .com_btn_area {
	margin-top: 2rem;
	text-align: right;
}

.step_cont_area .item_wrap .text_box .com_btn_area button {
	height: 4.2rem;
	line-height: 4.2rem;
	width: 11.2rem;
	text-align: center;
	font-size: 1.6rem;
	color: #898989;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #d3dde9;
	border-radius: 1rem;
}

.step_cont_area .item_wrap .text_box .com_btn_area button.save_btn {
	border: 1px solid #ff5a47;
	background: #ff5a47;
	color: #fff;
	margin-left: 1rem;
}

.step_cont_area .item_wrap .text_box .search_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1rem;
	background: #f9fafb;
	border-radius: 0.5rem;
}

/* .step_cont_area .item_wrap .text_box .search_box .search_icon {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  background: url(/lib/dahae_pc/imgs/mypage/search_icon.svg) center no-repeat;
} */

.step_cont_area .item_wrap .text_box .search_box input[type="text"] {
	border: none;
	font-size: 1.6rem;
	width: calc(100% - 4rem);
	background: transparent;
}

.step_cont_area .item_wrap .text_box ul {
	margin-top: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.step_cont_area .item_wrap .text_box ul li {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 1.5rem;
}

.step_cont_area .item_wrap .text_box ul li .user_img {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	background: #f9fafb;
}

.step_cont_area .item_wrap .text_box ul li .user_img img {
	width: 100%;
}

.step_cont_area .item_wrap .text_box ul li .user_name {
	font-weight: 400;
	margin-left: 2rem;
}

.step_cont_area .item_wrap .desc_box {
	position: relative;
}

.step_cont_area .item_wrap .desc_box .edit_btn {
	font-size: 1.2rem;
	color: #898989;
	padding-left: 2rem;
	text-transform: uppercase;
	position: absolute;
	top: -50%;
	right: 0;
	background: url(/lib/dahae_pc/imgs/mypage/edit.svg) left center no-repeat;
}

.step_cont_area .item_wrap .desc_box .main_txt {
	font-size: 2rem;
	font-weight: 400;
	border: none;
	color: #000000;
	width: 100%;
}

.step_cont_area .item_wrap .desc_box .msg {
	font-weight: 300;
	color: #ff5a47;
	font-size: 1.4rem;
}

.step_cont_area .last_btn_area {
	text-align: right;
}

.step_cont_area .last_btn_area button {
	height: 4.8rem;
	line-height: 4.8rem;
	width: 14rem;
	text-align: center;
	font-size: 1.6rem;
	color: #898989;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #d3dde9;
	border-radius: 1rem;
}

.step_cont_area .last_btn_area button.save_btn {
	border: 1px solid #ff5a47;
	background: #ff5a47;
	color: #fff;
	margin-left: 1rem;
}

.step_cont_area .result_box::before {
	position: absolute;
	top: 11rem;
	left: 4.5rem;
	content: "";
	display: block;
	width: 2px;
	height: 37rem;
	background-color: #ff5a47;
}

.step_cont_area .result_box .step_item::before {
	background-color: #ff5a47;
}

.step_cont_area .result_box .item_wrap {
	margin-bottom: 2rem;
}

.step_cont_area .result_box .item_wrap.height {
	min-height: 5rem;
}

.step_cont_area .result_box .item_wrap.height .step_item {
	min-height: 5rem;
}

.step_cont_area .result_box .item_wrap.height .step_item .main_txt {
	margin-top: 1rem;
}

.step_cont_area .result_box .item_wrap .result_user_desc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 1rem;
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_img {
	margin-right: 3rem;
	width: 8rem;
	height: 8rem;
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_img img {
	width: 100%;
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_desc {
	width: calc(100% - 11rem);
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_desc dl {
	margin-bottom: 1rem;
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_desc dl dt {
	display: inline-block;
	font-size: 1.4rem;
	width: 15%;
	font-weight: 400;
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_desc dl dd {
	display: inline-block;
	font-size: 1.4rem;
	color: #898989;
}

.step_cont_area .result_box .item_wrap .result_user_desc .user_desc dl dd span {
	color: #ff5a47;
	display: inline-block;
}

.step_cont_area
	.result_box
	.item_wrap
	.result_user_desc
	.user_desc
	dl
	dd
	span::before {
	content: "|";
	display: inline-block;
	color: #e0e0e0;
	margin: 0 1rem;
}

.notice_window_wrap {
	position: fixed;
	top: 10rem;
	right: 3rem;
	z-index: 10000;
	-webkit-box-shadow: 6px 6px 20px rgba(33, 33, 33, 0.16);
	box-shadow: 6px 6px 20px rgba(33, 33, 33, 0.16);
	border-radius: 0.5rem;
	background-color: #fff;
}

.notice_window_wrap.hide {
	display: none;
}

.notice_window_wrap::before {
	content: "";
	display: block;
	width: 5px;
	height: 100%;
	background: #ff5a47;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0.5rem 0 0 0.5rem;
}

.notice_window_wrap .area {
	max-width: 35rem;
	padding: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.notice_window_wrap .area .icon {
	margin-right: 1.4rem;
	width: 4rem;
	height: 4rem;
	background: url(/lib/dahae_pc/imgs/mypage/chk_icon.svg) center no-repeat;
	background-size: contain;
}

.notice_window_wrap .area .text p {
	font-weight: 500;
	color: #ff5a47;
	font-size: 1.5rem;
	margin-bottom: 0.7rem;
}

.notice_window_wrap .area .text span {
	display: block;
	font-size: 1.2rem;
	color: #898989;
	line-height: 1.5;
	word-break: keep-all;
}

.month_cont_wrap {
	border-radius: 1.4rem;
	background-color: #fff;
	margin-top: 2rem;
	padding: 2rem;
	-webkit-box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
	box-shadow: 0 3px 20px rgba(0, 45, 98, 0.05);
}

.month_cont_wrap .calender_wrap .week-box {
	font-size: 1.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 1.6rem;
	color: #6e768c;
	text-indent: 1rem;
}

.month_cont_wrap .calender_wrap .week-box .sun {
	color: #ff5a47;
}

.month_cont_wrap .calender_wrap .week-box .item {
	width: calc(100% / 7);
	text-align: left;
	text-transform: capitalize;
}

.month_cont_wrap .calender_wrap .date-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 1px solid #e8ebf0;
	border-bottom: none;
}

.month_cont_wrap .calender_wrap .date-box .date {
	width: calc(100% / 7);
	font-size: 1.8rem;
	border-right: 1px solid #e8ebf0;
	border-bottom: 1px solid #e8ebf0;
	padding: 1.4rem;
	height: 15rem;
	overflow: hidden;
}

.month_cont_wrap .calender_wrap .date-box .date span {
	color: #6e768c;
}

.month_cont_wrap .calender_wrap .date-box .date:nth-of-type(7n) {
	border-right: none;
}

.month_cont_wrap .calender_wrap .date-box .date:nth-of-type(7n + 1) {
	background-color: #f9fafb;
}

.month_cont_wrap .calender_wrap .date-box .date .other {
	color: #d0d0d0;
}

.month_cont_wrap .calender_wrap .date-box .date .today {
	color: #fff;
	border-radius: 50%;
	background-color: #ff5a47;
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	display: inline-block;
	text-align: center;
}

.month_cont_wrap .calender_wrap .date-box .date .desc_dot {
	margin-top: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 6rem;
}

.month_cont_wrap .calender_wrap .date-box .date .desc_dot dt {
	font-size: 1.6rem;
	font-weight: 400;
	padding-left: 2rem;
	position: relative;
}

.month_cont_wrap .calender_wrap .date-box .date .desc_dot dt::before {
	content: "";
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: #ffcb6f;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.month_cont_wrap .calender_wrap .date-box .date .desc_dot dd {
	font-size: 1.3rem;
	color: #a3a3a3;
	margin-left: 1rem;
}
