@charset "utf-8";

/* 빠른상담 */
.quickForm{
	position: fixed;
	bottom: 30px;
	right: 30px;
	transform: translate(0%,0%);
	z-index: 9999;
	width: auto;
	max-width: 1000px;
	box-sizing: border-box;
	padding: 0px;
	transition: all 0.4s;
	background: transparent;
	box-shadow: none;
	border-radius: 100px;
}

.quickForm.on{
	border-radius: 20px;
	background: url(/include/img/quickBg.png) center / cover;
	transform: translate(0%,-0%);
	box-shadow: rgba(0,0,0,0.2) 2px 2px 5px;
	padding: 50px 30px 10px;
}

.quickOpen{
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	cursor: pointer;
	box-shadow: rgba(0,0,0,0.2) -3px -3px 5px;
	border-radius: 100px;
	z-index: 2;
}

.quickForm.on .quickOpen{
	display: none;
}

.quickForm form{
	background: #f9f9f9;
	border-radius: 20px;
	position: relative;
	padding: 40px 15px 15px;
	width: 200px;
	display: block;
	height: 0;
	/* transition: all 0.3s; */
	opacity: 0;
	box-shadow: none;
}

.quickForm.on form{
	display: block;
	box-shadow: rgba(0,0,0,0.2) 2px 2px 5px;
	height: auto;
	opacity: 1;
}

.quickForm form h2{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	width: 25%;
	max-width: 57px;
	border-radius: 50%;
	box-shadow: rgba(0,0,0,0.2) 2px 2px 5px;
}

.quickForm form h2 br{
	display: none;
}

.quickForm form h2 img{
	display: block;
	width: 100%;
}

.quickForm form ul{
	width: 100%;
	display: block;
	box-sizing: border-box;
}

.quickForm form ul li{
	width: 100%;
	margin-bottom: 10px;
}

.quickForm form ul li input,
.quickForm form ul li select{
	width: 100%;
	box-sizing: border-box;
	box-shadow: none;
	border: 0;
	height: 30px;
	line-height: 30px;
	padding-left: 8px;
	border-radius: 5px;
	box-shadow: rgba(0,0,0,0.2) 2px 2px 5px;
}

.quickForm form ul li input::placeholder{
	font-style: normal;
}

.quickForm form div{
	width: 100%;
}

.quickForm form div label{
	color: #333;
	display: block;
	font-size: 12px;
	margin-bottom: 5px;
	height: 20px;
	line-height: 20px;
}

.quickForm form div label input{
	display: none;
}

.quickForm form div label span{
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	vertical-align: middle;
	margin-top: -3px;
	position: relative;
	border: 1px solid #999;
}

.quickForm form div label span::after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #004a5f;
	width: 50%;
	height: 50%;
	border-radius: 50%;
	opacity: 0;
}

.quickForm form div label input:checked + span::after{
	opacity: 1;
}

.quickForm form div a{
	display: block;
	height: 40px;
	line-height: 40px;
	background: #78b1e3;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 2px;
	text-align: center;
	box-shadow: rgba(0,0,0,0.2) 3px 3px 5px;
	border-radius: 10px;
}

.quickForm form .formTel{
	display: block;
	text-align: center;
	margin-top: 5px;
	color: #78b1e3;
	font-family: "g_bold";
	font-weight: 600;
}

.quickFormClose{
	display: none;
	position: absolute;
	top: 15px;
	right: 15px;
	border-radius: 50%;
	border: 1px solid #fff;
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	cursor: pointer;
}

.quickForm.on .quickFormClose{
	display: block;
}

.quickFormClose::before,
.quickFormClose::after{
	content: '';
	display: block;
	width: 1px;
	height: 70%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}

.quickFormClose::before{
	transform: translate(-50%,-50%) rotate(45deg);
}

.quickFormClose::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

.siteUrl{
	color: #fff;
	font-size: 9px;
	text-align: center;
	display: none;
}

.quickForm.on .siteUrl{
	display: block;
}


/* 퀵메뉴 */
.quickMenu{
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 10;
	background: rgba(255,255,255,1);
	border-radius: 100px;
	box-sizing: border-box;
	width: 100px;
	padding: 15px 0px 0;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.quickMenu h5{
	margin: 0 15px 20px;
}

.quickMenu h5 img{
	width: 100%;
}

.quickMenu ul{
	width: 80%;
	margin: auto;
}

.quickMenu ul li{
	margin-bottom: 10px;
	padding-bottom: 10px;
	text-align: center;
	border-bottom: 1px dashed #999;
}

.quickMenu ul li:last-child{
	border-bottom: 0;
	margin-bottom: 0;
}

.quickMenu ul li a{
	display: block;
	width: 100%;
	transition: all 0.3s;
}

.quickMenu ul li a:hover{
	color: #555;
}

.quickMenu ul li p{
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.quickMenu ul li a img{
	margin: 0 auto 5px;
}

.quickMenu ul li a:hover img{
	animation: quickMenu infinite 2s;
}

@keyframes quickMenu{
	0%{transform: rotate(0deg)}
	5%{transform: rotate(5deg)}
	15%{transform: rotate(-5deg)}
	20%{transform: rotate(0deg)}
}

.quickMenu .topBtn{
	display: block;
	text-align: center;
	line-height: 55px;
	height: 65px;
	background: #59c4b8;
	color: #2f2f2f;
	font-size: 14px;
}


@media screen and (max-width: 768px){
	.quickMenu{
		width: 75px;
		top: 62%;
	}
	.quickMenu h5{
		margin: 0 11px 20px;
	}
	.quickOpen{
		width: 70%;
	}
	.quickOpen img{
		width: 100%;
	}
}
@media screen and (max-width: 720px){

/* quickMenu */
.quickMenu{
	right: auto;
	top: auto;
	left: 0px;
	bottom: 0px;
	transform: none;
	width: 100%;
	background: none;
	box-shadow: rgba(0,0,0,0.2) 0px 0px 4px;
	border-radius: 10px 10px 0 0;
	padding: 8px 0;
	background: #59c4b8;
}

.quickMenu h5{
	display: none;
}

.quickMenu ul{
	display: flex;
	width: 100%;
}

.quickMenu ul li{
	width: calc(100%/3);
	height: 40px;
	border-radius: 0%;
	margin-bottom: 0;
	margin-right: 0px;
	border-bottom: 0;
	border-right: 1px dashed #fff;
	padding: 5px 0;
}

.quickMenu ul li:last-child{
	border-right: 0;
}

.quickMenu ul li a img.mb{
	width: auto;
	height: 25px;
	display: inline-block !important;
	margin: auto;
}

.quickMenu ul li p{
	font-size: 10px;
	color: #fff;
	display: inline-block;
}

.quickMenu .topBtn{
	display: none;
}

/* quickForm */
.quickForm{
	right: 5px;
	bottom: 70px;
	overflow-y: hidden;
	border-radius: 0;
}

.quickOpen{
	width: 120px;
}

.quickOpen img{
	width: 100%;
}


}