.create .making {
	gap: 50px;
}
.create .making .preview_box {
	position: relative;
	width: 460px;
	gap: 20px;
}
.create .making .preview_box:before {
	content: '';
	position: absolute;
	top: 40px;
	left: 40px;
	background: var(--white);
	display: block;
	width: calc(100% - 80px);
	height: 550px;
	z-index: 1;
}
.create .making .preview_box .bg {
	position: relative;
	width: 100%;
	height: 630px;
    background: var(--gray-bg);
	border-radius: 40px;
	overflow: hidden;
	box-sizing: border-box;
}
.create .making .preview_box .bg_fix {
	display: none!important;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 630px;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 1;
}
.create .making .preview_box .bg > div,
.create .making .preview_box .bg_fix > div {
	position: absolute;
}
.create .making .preview_box .bg > div img,
.create .making .preview_box .bg_fix > div img {
	width: 100%;
}
.create .making .preview_box .bg > div.cap_img,
.create .making .preview_box .bg_fix > div.cap_img {
    position: absolute;
    top: 70px;
    z-index: 3;
}
.create .making .preview_box .bg > div.cap_img.on {
	top: 0;
	z-index: 5;
}
.create .making .preview_box .bg > div.pump_img,
.create .making .preview_box .bg_fix > div.pump_img {
    top: 119px;
    z-index: 2;
}
.create .making .preview_box .bg > div.shoulder_img,
.create .making .preview_box .bg_fix > div.shoulder_img {
	top: 119px;
	z-index: 3;
}
.create .making .preview_box .bg > div.pump_img.on {
	top: 77px;
	z-index: 3;
}
.create .making .preview_box .bg > div.shoulder_img.on {
	top: 75px;
}
.create .making .preview_box .bg > div.bottle_img,
.create .making .preview_box .bg_fix > div.bottle_img {
    top: 192px;
	z-index: 1;
}
.create .making .preview_box .bg > div.bottle_img.on {
	top: 170px;
}
.create .making .preview_box .btn_area {
	gap: 10px;
}
.create .making .preview_box .btn_area button {
	flex: 1;
	height: 56px;
	border-radius: 50px;
	border: 1px solid var(--key-color);
	color: var(--key-color);
	padding: 0 10px;
	word-break: keep-all;
	box-sizing: border-box;
	transition: all .3s;
}
.create .making .preview_box .btn_area button:hover {
	background: var(--key-color);
	color: var(--white);
}
.create .making .preview_box .btn_reset {
	position: absolute;
	bottom: 95px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	padding: 10px 45px 10px 20px;
	border-radius: 100px;
	border: 1px solid var(--key-color);
	background: var(--white) url("../images/ic_reset.svg")no-repeat calc(100% - 20px) 50%;
	color: var(--key-color);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	box-sizing: border-box;
	z-index: 1;
}
.create .making .select_wrap {
	width: calc(100% - 510px);
	gap: 40px;
}
.create .making .select_wrap .filter_tab .filter_box {
	padding: 10px 40px;
}
.create .making .select_wrap .form {
    position: relative;
    display: none;
    width: calc(100% - 80px);
    margin: 0 40px;
    box-sizing: border-box;
}
.create .making .select_wrap .form .swiper {
	position: static;
}
.create .making .select_wrap .form .swiper-slide {
	width: auto;
}
.create .making .select_wrap .form .swiper-slide .item {
	position: relative;
}
.create .making .select_wrap .form .swiper-slide .item input {
	display: none;
}
.create .making .select_wrap .form .swiper-slide .item input + label {
	position: relative;
	display: block;
	width: 240px;
	text-align: center;
}
.create .making .select_wrap .form .swiper-slide .item input + label:before {
	content: '';
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 24px;
	height: 24px;
	border: 1px solid var(--black);
	border-radius: 3px;
	box-sizing: border-box;
	z-index: 1;
}
.create .making .select_wrap .form .swiper-slide .item input:checked + label:before {
	background: var(--black) url("../images/ic_check_white.svg")no-repeat 50% 50%;
}
.create .making .select_wrap .form .swiper-slide .item input + label .img {
	position: relative;
	height: 242px;
	background: var(--gray-bg);
	border-radius: 20px;
	overflow: hidden;
}
.create .making .select_wrap .form .swiper-slide .item input + label .img img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.create .making .select_wrap .form .swiper-slide .item input + label p {
	margin-top: 16px;
}
.create .making .select_wrap .form .swiper-button-prev:after,
.create .making .select_wrap .form .swiper-button-next:after {
	display: none;
}
.create .making .select_wrap .form .swiper-button-prev,
.create .making .select_wrap .form .swiper-button-next {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.50);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	margin-top: -75px;
}
.create .making .select_wrap .form .swiper-button-prev {
	left: -10px;
	background: url("../images/slide-left.svg")no-repeat 50% 50%;
}
.create .making .select_wrap .form .swiper-button-next {
	right: -10px;
	background: url("../images/slide-right.svg")no-repeat 50% 50%;
}
.create .making .select_wrap .form .swiper-button-disabled {
	display: none!important;
}
.create .making .select_wrap .form .swiper-scrollbar {
	position: static;
	height: 20px;
	background: var(--white);
	overflow: hidden;
	border-radius: 100px;
	margin-top: 40px;
}
.create .making .select_wrap .form .swiper-scrollbar .swiper-scrollbar-drag {
	background: var(--black);
	opacity: .2;
}


.create .collection {
	gap: 50px;
}
.create .collection h4 {
	padding: 26px 40px;
	background: var(--key-color);
	color: var(--white);
	border-radius: 100px;
	font-size: 20px;
	font-weight: 600;
	box-sizing: border-box;
}
.create .collection .list {
	gap: 20px;
}
.create .collection .list .item {
	position: relative;
	width: calc(16.666% - 17px);
	background: var(--gray-bg);
	border-radius: 30px;
	padding: 20px 10px;
	box-sizing: border-box;
}
.create .collection .list .item .delete {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
	background: var(--text) url("../images/ic_close_white.svg")no-repeat 50% 50% / 9px;
	border-radius: 50%;
	z-index: 5;
}
.create .collection .list .item .thumb .swiper-slide {
	position: relative;
	width: 100%;
}
.create .collection .list .item .prd_img {
	position: relative;
	height: 236px;
    overflow: hidden;
}
.create .collection .list .item .prd_img img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
	width: auto;
}
.create .collection .list .item .prd_img img.img_bottle {
    top: 63px;
    max-height: 160px;
}
.create .collection .list .item .prd_img img.img_pump, 
.create .collection .list .item .prd_img img.img_shoulder {
    top: 23px;
    max-height: 53px;
}
.create .collection .list .item .prd_img img.img_cap {
    top: -12px;
    max-height: 82px;
}
.create .collection .list .item .thumb .swiper-pagination {
	position: static;
}
.create .collection .list .item .thumb .swiper-pagination .swiper-pagination-bullet {
	width: 17px;
	height: 17px;
	margin: 0 10px;
	opacity: 1;
	background: rgba(0, 0, 0, 0.20);
}
.create .collection .list .item .thumb .swiper-pagination .swiper-pagination-bullet-active {
	background: #000;
}
.create .collection .list .item .btn_area {
	gap: 10px;
	margin-top: 10px;
}
.create .collection .list .item .btn_area button {
	height: 32px;
	padding: 0 20px;
	border-radius: 100px;
	border: 1px solid var(--key-color);
	color: var(--key-color);
	box-sizing: border-box;
	transition: all .3s;
}
.create .collection .list .item .btn_area button:hover {
	background: var(--key-color);
	color: var(--white);
}




@media screen and (max-width: 1440px) {
	.create .collection .list .item {
    	width: calc(20% - 16px);
	}
}
@media screen and (max-width: 1240px) {
	.create .making .preview_box {
		width: 380px;
	}
	.create .making .preview_box:before {
		height: 440px;
	}
	.create .making .preview_box .bg,
	.create .making .preview_box .bg_fix {
		height: 520px;
	}
	.create .making .preview_box .bg > div.cap_img.on {
		top: 12px;
	}
	.create .making .preview_box .bg > div.pump_img,
	.create .making .preview_box .bg_fix > div.pump_img,
	.create .making .preview_box .bg > div.shoulder_img,
	.create .making .preview_box .bg_fix > div.shoulder_img {
		top: 110px;
	}
	.create .making .preview_box .bg > div.bottle_img,
	.create .making .preview_box .bg_fix > div.bottle_img {
		top: 170px;
	}
	.create .making .preview_box .bg > div.bottle_img.on {
		top: 153px;
	}
	.create .making .select_wrap {
		gap: 0px;
		width: calc(100% - 430px);
	}
	.create .making .select_wrap .form .scroll {
		padding-bottom: 20px;
	}
	.create .making .select_wrap .form .swiper-slide .item input + label {
		width: 180px;
	}
	.create .making .select_wrap .form .swiper-slide .item input + label .img {
		height: 180px;
	}
	.create .making .select_wrap .form .swiper-button-prev, 
	.create .making .select_wrap .form .swiper-button-next {
		width: 50px;
		height: 50px;
	}

	.create .collection .list .item {
    	width: calc(25% - 15px);
	}
}
@media screen and (max-width: 1024px) {
	.create .making {
		gap: 20px;
	}
	.create .making .preview_box {
        width: 280px;
    }
	.create .making .preview_box:before {
		top: 20px;
		left: 20px;
		width: calc(100% - 40px);
		height: 360px;
	}
	.create .making .preview_box .bg,
	.create .making .preview_box .bg_fix {
        height: 400px;
		border-radius: 20px;
    }
	.create .making .preview_box .bg > div.cap_img,
	.create .making .preview_box .bg_fix > div.cap_img {
		top: 55px;
	}
	.create .making .preview_box .bg > div.pump_img,
	.create .making .preview_box .bg_fix > div.pump_img,
	.create .making .preview_box .bg > div.shoulder_img,
	.create .making .preview_box .bg_fix > div.shoulder_img {
        top: 85px;
    }
	.create .making .preview_box .bg > div.pump_img.on,
	.create .making .preview_box .bg > div.shoulder_img.on {
		top: 60px;
	}
	.create .making .preview_box .bg > div.bottle_img,
	.create .making .preview_box .bg_fix > div.bottle_img {
        top: 129px;
    }
	.create .making .preview_box .bg > div.bottle_img.on {
        top: 115px;
    }
	.create .making .preview_box .btn_area button {
		font-size: 14px;
		height: 44px;
		padding: 0;
	}
	.create .making .preview_box .btn_reset {
		font-size: 14px;
		padding: 5px 45px 5px 20px;
	}
	.create .making .select_wrap {
        width: calc(100% - 300px);
    }
	.create .making .select_wrap .form {
		width: calc(100% - 40px);
		margin: 0 20px;
	}
	.create .making .select_wrap .form .swiper-button-prev, 
	.create .making .select_wrap .form .swiper-button-next {
		width: 40px;
		height: 40px;
		margin-top: -50px;
	}
	.create .making .select_wrap .form .swiper-scrollbar {
		height: 10px;
		margin-top: 20px;
	}


	.create .collection .list .item {
        width: calc(33.333% - 14px);
    }
	.create .collection .list .item .btn_area button {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.create .making > form {
		order: 1;
		width: 100%;
	}
	.create .making .preview_box {
		width: 100%;
	}
	.create .making .preview_box:before {
		height: 290px;
	}
	.create .making .preview_box .bg,
	.create .making .preview_box .bg_fix {
        height: 330px;
	}
	.create .making .preview_box .bg > div,
	.create .making .preview_box .bg_fix > div {
		width: 250px;
		left: 50%;
		transform: translateX(-50%);
	}
	.create .making .preview_box .bg > div.cap_img,
	.create .making .preview_box .bg_fix > div.cap_img {
        top: 20px;
    }
	.create .making .preview_box .bg > div.cap_img.on {
        top: -18px;
    }
	.create .making .preview_box .bg > div.pump_img,
	.create .making .preview_box .bg_fix > div.pump_img,
	.create .making .preview_box .bg > div.shoulder_img,
	.create .making .preview_box .bg_fix > div.shoulder_img {
        top: 46px;
    }
	.create .making .preview_box .bg > div.pump_img.on,
	.create .making .preview_box .bg > div.shoulder_img.on {
        top: 24px;
    }
	.create .making .preview_box .bg > div.bottle_img,
	.create .making .preview_box .bg_fix > div.bottle_img {
        top: 86px;
    }
	.create .making .preview_box .bg > div.bottle_img.on {
        top: 73px;
    }
	.create .making .preview_box .btn_reset {
		bottom: 125px;
	}
	.create .making .select_wrap .form .swiper-slide .item input + label {
        width: 130px;
    }
	.create .making .select_wrap .form .swiper-slide .item input + label:before {
		top: 15px;
		right: 15px;
		width: 18px;
		height: 18px;
	}
	.create .making .select_wrap .form .swiper-slide .item input + label .img {
		height: 130px;
		border-radius: 15px;
	}
	.create .making .select_wrap {
		order: 0;
		width: 100%;
	}
	.create .making .select_wrap .form {
		font-size: 14px;
	}
	.create .making .preview_box .btn_area button.cart_btn {
		flex: none;
		width: 100%;
	}



	.create .collection h4 {
		padding: 18px 22px;
		font-size: 16px;
	}
	.create .collection {
		gap: 25px;
	}
	.create .collection .list {
		gap: 10px;
	}
	.create .collection .list .item {
        width: calc(50% - 5px);
		border-radius: 20px;
    }
	.create .collection .list .item .delete {
		top: 12px;
		right: 12px;
		width: 20px;
		height: 20px;
		background-size: 8px!important;
	}
}
@media screen and (max-width: 480px) {
	.create .collection .list .item {
        width: 100%;
	}
}
@media screen and (max-width: 380px) {
}