@charset "utf-8";

.full-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
}
.full-wrap.full-bg {
	position: relative;
	padding: 0;
	text-align: center;
	background: url('../images/main_visual_bg.png') center 66% no-repeat;
	background-size: cover;
	color: rgb(var(--color-white));
}
.full-wrap.full-bg:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	content: '';
}
.full-wrap > .wrapper {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 4rem 0 2rem;
	z-index: 1;
}
.full-wrap > .wrapper.wrapper__550 {
	max-width: 550px;
}
.full-wrap > .wrapper.wrapper__900 {
	max-width: 900px;
}
.container {
	max-width: 900px;
}


/***************************************/
/* header 영역 **************************/
.header__util .util-btn ul li {
	font-size: 1rem;
	line-height: 1rem;
}
.header__util .util-btn ul li .user-name {
	color: rgb(var(--color-main));
}
.header__util .util-btn ul li.user-name span {
	line-height: 1rem;
	vertical-align: bottom;
}
.header__util .util-btn ul li button {
	font-size: 1rem;
	line-height: 1rem;
}
/***************************************/
/* search 영역 **************************/
.search-wrap .form-wrap:not(:first-of-type) {
	margin-top: 1rem;
}
.search-wrap .form-group {
	display: inline-block;
	width: calc((100% - 250px - 1.5rem) / 2);
	margin-top: 0;
}
.search-wrap .form-group:not(:first-child){
	margin-left: 0.5rem;
}
.search-wrap .form-group .input-group {
	position: relative;
	margin-top: 0;
}
.search-wrap .form-group .label {
	display: block;
	font-size: 1.2rem;
}
.search-wrap .form-group .input {
	height: 4rem;
	line-height: 4rem;
	font-size: 1.1rem;
	font-weight: 600;
	border: 2px solid rgb(var(--color-light_grey),0);
}
.search-wrap .form-group .input::placeholder {
	font-size: 1.1rem;
	color: rgb(var(--color-light_grey));
}
.search-wrap .form-group .input:focus {
	border-color: rgb(var(--color-main));
}
.search-wrap .form-group.code {
	display: inline-block;
	width: 150px;
}
.search-wrap .form-group.code .label {
	display: block;
}
.search-wrap .form-group.code .input {
	width: 150px;
}
.search-wrap .form-group.btn-search {
	display: inline-block;
	width: 100px;
	/*padding-top: 27px;*/
}
.search-wrap .form-group.btn-search .btn{
	width: 100px;
	font-size: 1.2rem;
}



@media screen and (max-width: 768px) {
	/***************************************/
	/* search 영역 공통 **********************/
	.search-wrap .form-group,
	.search-wrap .form-group.code,
	.search-wrap .form-group:not(:first-child) {
		/*width: calc(50% - 0.5rem);*/
		width: 100%;
	}
	.search-wrap .form-group {
		/*width: calc(50% - 0.5rem);*/
		width: 100%;
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}
	.search-wrap .form-group:nth-child(even) {
		/*margin-left: 1rem;*/
		margin-left: 0;
	}

	.search-wrap .form-group:nth-child(odd) {
		margin-left: 0;
	}
	.search-wrap .form-group .label {
		display: none;
	}
	.search-wrap .form-group .input {
		height: 3rem;
		line-height: 3rem;
	}
	.search-wrap .form-group.code .label {
		display: none;
	}
	.search-wrap .form-group.code .input {
		width: 100%;
	}
	.search-wrap .form-group.btn-search {
		display: block;
		/*width: calc(50% - 0.5rem);*/
		width: 100%;
		padding-top: 0;
	}
	.search-wrap .form-group.btn-search .btn {
		width: 100%;
		font-size: 1.2rem;
		padding-top: 0.7rem;
		padding-bottom: 0.7rem;
	}

}



/***************************************/
/* Main 페이지 **************************/
/***************************************/
#main.main .container {
	position: relative;
	width: 100%;
	height: 100%;
}
#main.main .container .section__title h2 {
	margin-bottom: 1rem;
	font-size: 2rem;
	font-weight: 600;
	color: rgb(var(--color-white));
}


@media screen and (max-width: 768px) {
	#main.main .container .section__title h2 {
		font-size: 1.5rem;
	}
}


/***************************************/
/* sub - 공통 ***************************/
/***************************************/
#main.sub {
	min-height: calc(100% - 130px);
}
#main.sub > .inner {
	position: relative;
	padding-top: 80px;
	height: 100%;
}
.sub .visual {
	position: relative;
	text-align: center;
	color: rgb(var(--color-white));
	background-image: url('../images/main_visual_bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.sub .visual:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content:'';
	background: rgba(0,0,0,0.7);
}
.sub .visual .container {
	position: relative;
	margin: 0 auto;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.sub .content {
	padding: 4rem 0;
}
.sub .content .content__head {
	position: relative;
	padding-bottom: 2rem;
	text-align: center;
}
.sub .content .content__head h3 {
	font-size: 1.8rem;
	line-height: 1.8rem;
	font-weight: 600;
}
.sub .content .content__head h3 + p {
	margin-top: 1rem;
	font-size: 1.2rem;
	line-height: 1.2rem;
}
.sub .content .content__head:after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: 6px;
	background: rgb(245, 123, 41);
	content: '';
}
.sub .content__body .content__inner:not(:first-child) {
	border-top: 1px solid rgba(var(--color-black), 0.3);
}


/***************************************/
/* sub - 제품 목록 ***********************/
/***************************************/
.sub .search-wrap .form-group .input {
	height: 3rem;
	line-height: 3rem;
}
.sub.product-list .list-wrap .list__item {
	width: calc(33.3333% - 0.5rem);
	margin-top: 1rem;
}
.sub.product-list .list-wrap .list__item{
	margin-right: 0.75rem;
}
.sub.product-list .list-wrap .list__item:nth-child(3n) {
	margin-right: 0;
}
.sub.product-list .list-wrap .thumbnail .thumbnail__title h4 {
	color: rgb(var(--color-mid_grey));
}
.sub.product-list .list-wrap .thumbnail .thumbnail__title h3 {
	margin: 0.5rem 0;
	height: 3rem;
	font-size: 1.2rem;
	font-weight: 600;
}
.sub.product-list .list-wrap .thumbnail .thumbnail__info {
	margin-top: 0.5rem;
	color: rgb(var(--color-mid_grey));
}
.sub.product-list .list-wrap .thumbnail .thumbnail__info ul li:not(:first-child) {
	margin-top: 0.2rem;
}
.sub.product-list .list-wrap.list__row .list__item {
	width: 100%;
}
.sub.product-list .list-wrap.list__row .thumbnail .thumbnail__main {
	margin-left: 0;
	padding: 0.8rem;
}
.sub.product-list .list-wrap.list__row .thumbnail .thumbnail__title h3 {
	margin: 0;
	height: inherit;
}


@media screen and (max-width:768px) {
	.sub.product-list .list-wrap.list__col .list__item,
	.sub.product-list .list-wrap.list__col .list__item:nth-child(odd) {
		width: calc(50% - 0.5rem);
		margin-right: 1rem;
	}
	.sub.product-list .list-wrap .list__item:nth-child(even) {
		margin-right: 0;
	}


}
@media screen and (max-width:480px) {
	.sub.product-list .list-wrap .thumbnail .thumbnail__main p {
		color: rgb(var(--color-mid_grey));
	}

	.sub.product-list .list-wrap.list__col .list__item,
	.sub.product-list .list-wrap.list__col .list__item:nth-child(3n) {
		width: 100%;
		margin-right: 0;
	}
	.sub.product-list .list-wrap.list__col .list__item .thumbnail .thumbnail__img {
		padding-top: 180px;
	}
	.sub.product-list .list-wrap.list__col .list__item .thumbnail .thumbnail__img img {
		width: 200px;
		left: 50%;
		transform: translateX(-50%);
	}
	.thumbnail.thumbnail__row.thumbnail__row-sm .thumbnail__img {
		display: none;
	}
	.thumbnail.thumbnail__row.thumbnail__row-sm .thumbnail__main {
		width: 100%;
	}
}

/***************************************/
/* sub - 제품 디테일 *********************/
/***************************************/
.sub.product-detail .content .content__head .head__title {
	font-size: 1.4rem;
	font-weight: 600;
	color: rgb(var(--color-text));
}
.sub.product-detail .content .content__head .head__text {
	margin-top: 0.2rem;
	font-size: 1.2rem;
	color: rgb(var(--color-mid_grey));
}
.sub.product-detail .product-wrap .product__img .image-swiper {
	width: 500px;
}
.sub.product-detail .product-wrap .product__img .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}
.sub.product-detail .product-wrap .product__img .swiper-slide img {
	width: 90%;
	max-width: 350px;
}
.sub.product-detail .product-wrap .product__img .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}
.sub.product-detail .product-wrap .product__img .swiper-pagination .swiper-pagination-bullet-active {
	background: rgb(var(--color-main));
}
.sub.product-detail .product-wrap .product__img .swiper-button-next,
.sub.product-detail .product-wrap .product__img .swiper-button-prev {
	color: rgb(var(--color-grey));
}
.sub.product-detail .product-wrap .product__img .swiper-button-next:after,
.sub.product-detail .product-wrap .product__img .swiper-button-prev:after {
	font-size: 28px;
}
.sub.product-detail .product-wrap .product__info {
	margin-top: 2rem;
}
.sub.product-detail .product-wrap .product__info .table .no {
	width: 40px;
}
.sub.product-detail .product-wrap .product__info .table .dz-code {
	width: 80px;
}
.sub.product-detail .product-wrap .product__info .table .product-name {

}
.sub.product-detail .product-wrap .product__info .table .location-code {
	width: 214px;
}
.modal.location .modal__content {
	width: 100%;
	max-width: 700px;
}
.print-wrap .product-info ul > li {
	margin-top: 0.3rem;
}
.print-wrap .product-info ul > li h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}
.print-wrap .product-info ul > li span.badge {
	margin-right: 0.5rem;
}
.print-wrap .product-info .modal__img {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #dddddd;
	text-align: center;
}
.print-wrap .product-info .modal__img img {
	width: 400px;
	margin: 0;
	border: 1px solid rgb(var(--color-grey));
}
.print-div {
	display: none;
}

@media screen and (max-width: 768px) {
	.sub.product-detail .product-wrap .product__img .image-swiper {
		width: 100%;
	}
	.sub.product-detail .product-wrap .product__img .swiper-slide img {
		width: 90%;
	}
	.modal.location .modal__content {
		width: 90%;
		min-width: inherit;
	}
	.print-wrap .product-info .modal__img img {
		width: 100%;
	}
}
@page {
	size: A4 portrait;
	size: A5 portrait;
	margin: 10mm 5mm;
}
/***** detail 인쇄 설정 *****/
@media print {
	html, body {
		width: 210mm;
		height: 297mm;
		width: 148mm;
		height: 210mm;
		width: 100%;
		height: 100%;
		-webkit-text-size-adjust: none;
		letter-spacing: -1px;
		font-family: 'Pretendard', sans-serif, 'Malgun Gothic', Dotum, '돋움', Gulim, Helvetica;
	}
	a {
		color: #444444;
		text-decoration: none;
	}
	@page {
		margin: 10mm 5mm !important;
		/*border: initial;*/
		/*border-radius: initial;*/
		width: 210mm;
		height: 297mm;
		width: 148mm;
		height: 210mm;
		/*min-height: initial;*/
		/*box-shadow: initial;*/
		/*background: initial;*/
		/*page-break-after: always;*/
		padding-top: 1rem;
		margin-top: 1rem;
	}
	.print-div {
		display: block;
		width: 148mm;
		height: calc(210mm - 2rem);
	}
	#header, #footer, #gnb {
		display:none;
	}
	.print-wrap {
		display: block;
		width: 100%;
		height: 100%;
		max-height: 100%;
		padding: 0;
		box-sizing: border-box;
	}
	.modal__body.print-wrap {
		overflow-y: hidden;
	}
	.print-wrap .product-info ul > li,
	.print-wrap .product-info ul > li h3 {
		font-size: 1rem;
	}
	.print-wrap .product-info .modal__img {
		width: auto;
		height: 100%;
		box-sizing: border-box;
		/*border: 1px solid blue;*/
	}
	.print-wrap .product-info .modal__img img {
		width: 80%;
		/*border: 1px solid red;*/
	}
	/*.modal.location .modal__body h3 {*/
	/*	font-size: 1rem;*/
	/*	font-weight: 600;*/
	/*}*/
}



.sub.measurement-detail .detail-info .table-wrap > .table tr td {
	padding: 1.5rem 0.5rem;
}



.bg-full .wrapper {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.page-auth .wrapper header h1 {
	font-size: 1.7rem;
	font-weight: 600;
}

.page-auth .wrapper .header .header__under-bar {
	position: relative;
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
}
.page-auth .wrapper .header .header__under-bar:after {
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 30px;
	height: 5px;
	background: rgb(var(--color-main));
	content: '';
}
.bg-full.auth .wrapper > .container {
	max-width: 530px;
}
.page-auth .wrapper .footer {
	margin-top: 2rem;
}
.page-auth .wrapper .footer .footer__logo img {
	height: 40px;
}




.landing .landing-icon {
	font-size: 3rem;
	color: rgb(var(--color-main));
}
.landing .landing-title {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0px;
	color: rgb(var(--color-main));
}
.landing .landing-text {
	margin-top: 2rem;
	font-size: 1.2rem;
	letter-spacing: 0px;
}
.landing .admin-info {
	display: inline-block;
	width: 100%;
	max-width: 400px;
	margin-top: 2rem;
	padding: 1rem 2rem;
	background: rgb(var(--color-white),0.15);
	border-radius: 50px;
	letter-spacing: 0px;
}
.landing .admin-info .call {
	margin-top: 0.5rem;
	font-size: 1.2rem;
	font-weight: 600;
}
.landing .shortcut-list {
	margin-top: 2rem;
}
.landing .shortcut-list li {
	position: relative;
}
.landing .shortcut-list li:not(:first-child) {
	margin-left: 1rem;
	padding-left: 1rem;
}
.landing .shortcut-list li:not(:first-child):before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 1rem;
	background: rgba(var(--color-white), 0.8);
	content: '';
}
