.category.desktop {
	z-index: 5;
	position: sticky;
	top: 10rem;
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 2rem;
	padding: 1.6rem;
	background: #003F7E;
}

.category.desktop .ctg-btn.active {
	border-radius: .8rem;
	background: rgba(255, 255, 255, .16);
	transition: all .3s ease;
}

.category.desktop a {
	display: block;
	width: fit-content;
	height: fit-content;
	padding: .8rem 1.6rem;
}

.category.desktop span {
	font-size: 1.6rem;
	color: #fff;
}

.category.mobile {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 3.2rem 1.6rem;
	background-color: rgba(0, 0, 0, .04);
}

.category.mobile>.label {
	margin-bottom: 2rem;
	font-size: 2.4rem;
	font-weight: 600;
	color: #003F7E;
}

.category.mobile select {
	padding: 1.6rem;
	margin-bottom: 2.4rem;
	border-radius: .6rem;
	border-color: rgba(0, 0, 0, .2);
	background-color: #fff;
	background-image: url(../images/product/icon_down.svg);
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
	background-position: -webkit-calc(100% - 15px) center;
	background-position: -moz-calc(100% - 15px) center;
	font-size: 1.6rem;
}

.category.mobile .filter {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}

.category.mobile .filter-title {
	margin-bottom: 1.6rem;
	font-size: 2rem;
	font-weight: 500;
}

.category.mobile .filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.category.mobile .filter-list li {
	display: flex;
}

.category.mobile .filter-list label {
	display: flex;
	gap: .6rem;
}

.category.mobile .filter-list span {
	font-size: 1.6rem;
}

.check {
	cursor: pointer;
	position: relative;
	margin: auto;
	width: 18px;
	height: 18px;
	-webkit-tap-highlight-color: transparent;
	transform: translate3d(0, 0, 0);
}

.check:before {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(34, 50, 84, 0.03);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.check svg {
	position: relative;
	z-index: 1;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke: #c8ccd4;
	stroke-width: 1.5;
	transform: translate3d(0, 0, 0);
	transition: all 0.2s ease;
}

.check svg path {
	stroke-dasharray: 60;
	stroke-dashoffset: 0;
}

.check svg polyline {
	stroke-dasharray: 22;
	stroke-dashoffset: 66;
}

.check-container:hover .check:before {
  opacity: 1;
}

.check-container:hover .check svg {
  stroke: #4285f4;
}

input[type="checkbox"]:checked + .check-container .check svg {
  stroke: #4285f4;
}

input[type="checkbox"]:checked + .check-container .check svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

input[type="checkbox"]:checked + .check-container .check svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

.product .wrapper .filter {
	display: none;
	gap: 4rem;
	width: 24rem;
	padding: 1.6rem;
	border-radius: .8rem;
}

.product .wrapper .filter .check-container {
	display: flex;
	align-items: center;
}

.product .wrapper .filter .check {
	margin: 0;
}

.product-section:not(:last-child) {
	margin-bottom: 10rem;
}

.product-section .section-title {
	margin-bottom: 4rem;
	font-size: 4rem;
}

.product-section .section-title span {
	display: none;
	font-size: 2.4rem;
	font-weight: 400;
	color: rgba(0, 0, 0, .4);
}

.product-grid {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

.product-card {
	position: relative;
	min-height: 36rem;
	border-radius: 2rem;
	border: .1rem solid rgba(0, 0, 0, .2);
	transition: all .3s ease;
}

.product-card:hover {
	box-shadow: 0 0 .8rem 0 #0063c77d;
}

.product-card img {
	display: block;
} 

.product-card .img-box {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: fit-content;
	height: fit-content;
	margin: auto;
}

.product-card .img-box img {
	max-width: 20rem;
	max-height: 18rem;
	margin-top: 2.4rem;
	transition: all .3s ease;
}

.product-card:hover .img-box img {
	transform: scale(1.2);
}

.product-card .info-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 2rem;
}

.product-card .wifi {
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	width: 8rem;
}

.product-card .info-box .model-name p {
	margin-bottom: .8rem;
	font-size: 3.2rem;
	font-weight: 700;
}

.product-card .info-box .model-name span {
	font-size: 1.6rem;
	color: rgba(0, 0, 0, .64);
}

.product-card .info-box button {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	align-items: center;
	gap: .8rem;
	padding: 1rem;
	border-radius: 5rem;
	font-size: 1.4rem;
	color: rgba(0, 0, 0, .8);
	background-color: #ECECEC;
	transition: all .3s ease;
}

.product-card:hover .info-box button {
	background-color: #0064C7;
	color: #fff;
}

.product .wrapper .filter-title {
	margin-bottom: 1.6rem;
	font-size: 2rem;
}

.product .wrapper .filter-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.product .wrapper .filter span {
	margin-left: .8rem;
	font-size: 1.6rem;
}

.product .wrapper .page-content .no-data {
	text-align: center;
	font-size: 2rem;
}

#productModal {
	overflow-y: scroll;
	z-index: 10;
	position: fixed;
	left: 50%;
	bottom: 0;
	display: none;
	width: 100vw;
	height: calc(100vh - 6.4rem);
	background-color: #fff;
	transform: translateX(-50%);
}

#productModal .modal-content {
	max-width: 100rem;
}

#productModal .modal-close {
	z-index: 3;
	position: sticky;
	top: 0;
	width: 100%;
	height: 4.8rem;
	padding: 0 2rem;
	text-align: right;
	font-size: 3.6rem;
	background: #fff;
}

#productModal .modal-img-wrap {
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 50rem;
	margin: 0 auto 2rem;
	/* background-color: rgba(0, 0, 0, .4); */
}

#productModal .modal-img-wrap .swiper,
#productModal .modal-img-wrap .swiper-wrapper {
	height: 100%;
}

#productModal .modal-img-wrap img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: block;
	width: 60%;
	margin: auto;
}

#productModal .modal-img-wrap .swiper-button-next,
#productModal .modal-img-wrap .swiper-button-prev {
	transform: scale(.6);
}

#productModal .modal-info {
	width: 100%;
	padding: 1.6rem;
}

#productModal .modal-type {
	font-size: 1.6rem;
	color: rgba(0, 0, 0, .64);
}

#productModal .modal-name {
	margin-bottom: 2rem;
	font-size: 3.2rem;
}

#productModal .modal-spec {
	display: flex;
	flex-direction: column;
	gap: .8rem;
	padding: 2rem 0;
	border-top: .1rem solid rgba(0, 0, 0, .2);
}

#productModal .modal-spec li {
	display: flex;
	line-height: 1.3;
	font-size: 1.6rem;
}

#productModal .modal-spec li::before {
	content: "-";
	display: block;
	width: .5rem;
	height: 100%;
	margin-right: 1rem;
}

#productModal .modal-buttons {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	padding: 2rem 0;
}

#productModal .modal-buttons button {
	flex: 1;
	height: 4.8rem;
	font-size: 1.6rem;
	background-color: #ededed;
	transition: all .3s ease;
}

#productModal .modal-buttons button:hover {
	background-color: #bebebe;
}

#productModal .modal-buttons button.disabled,
#productModal .modal-buttons button.disabled:hover {
	border: .1rem solid rgba(0, 0, 0, .1);
	background-color: #fefefe;
	color: rgba(0, 0, 0, .4);
	cursor: not-allowed;
}

@media all and (min-width: 48em) {
	.sub.product .wrapper .inner {
		display: flex;
		gap: 8rem;
	}

	.product .wrapper .filter {
		flex-direction: column;
		width: 24rem;
	}

	.product .wrapper .page-content {
		width: 100%;
	}

	.product-grid {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.product-grid .product-card {
		width: calc((100% - 1.6rem) / 2);
	}

	#productModal .modal-body {
		padding: 0 6rem;
	}

	#productModal .modal-buttons {
		padding: 4rem 0 0;
	}
}

@media all and (min-width: 64em) {
	#productModal {
		height: 100vh;
		background: rgba(0, 0, 0, .4);
	}

	#productModal .modal-content {
		overflow: hidden;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		height: fit-content;
		margin: auto;
		border-radius: .8rem;
		background: #fff;
	}

	#productModal .modal-body {
		display: flex;
		margin-bottom: 4.8rem;
	}

	#productModal .modal-img-wrap {
		width: 42rem;
		margin: 0;
	}

	#productModal .modal-info {
		padding: 1.6rem 0 1.6rem 4rem;
	}
}

@media all and (min-width: 80em) {
	.category.desktop {
		top: 6.4rem;
		display: flex;
	}

	.category.mobile {
		display: none;
	}

	.product .wrapper .filter {
		position: sticky;
		top: 24rem;
		display: flex;
		height: fit-content;
	}

	#productModal .modal-content {
		top: unset;
		bottom: 0;
		height: calc(100vh - 6.4rem);
	}
}

@media all and (min-width: 96em) {
	.category.desktop {
		top: 10rem;
	}

	.product-grid .product-card {
		width: calc((100% - 3.2rem) / 3);
	}

	#productModal {
		width: 100vw;
	}

	#productModal .modal-content {
		top: 0;
		height: fit-content;
	}
}