@charset "UTF-8";

/* 퀵배너 */
/* .quick {
	position: fixed;
	z-index: 9999;
	top: 230px;
	right: -120px;
	transition: all 0.3s linear;
}
.quick_hov {
	right: 0;
	transition: all 0.3s linear;
}
.quick ul {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
    background-color: #fff;
}
.quick ul li {
	display: flex;
	align-items: center;
	height: 60px;
	transition: all 0.2s linear;
}
.quick ul li:hover { background-color: #e43d49; }
.quick ul li:hover i, .quick ul li:hover a { color: #fff; }
.quick ul li:hover a { text-decoration: underline; }
.quick ul li i {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	color: #000;
}
.quick ul li a {
	display: block;
	width: 120px;
	height: auto;
	text-align: left;
	line-height: 20px;
	color: #000;
}
.quick ul li:not(:first-child) { border-top: 2px solid #000; }


@media all and (max-width: 768px) { .quick {display: none;} } */