.pDetail {
	padding: 25px 15% 25px 15%;
}

.left {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

	.left .bigPhoto {
		width: 100%;
		display: flex;
		justify-content: start;
		align-items: center;
	}

		.left .bigPhoto img {
			max-width: 100%;
		}

	.left .miniPhotos {
		width: 100%;
		display: flex;
		justify-content: start;
		align-items: start;
	}

		.left .miniPhotos img {
			width: 100px;
			height: 100%;
			padding: 5px 5px 0 0;
		}











.right .money {
	margin: 25px 0 25px 0;
}

.right .price {
	color: var(--themeColorBoom);
	font-weight: 700;
	font-size: 22px;
}

.right .oldPrice {
	position: relative;
	top: -2px;
	text-decoration: line-through;
	margin-left: 10px;
	font-size: 14px;
	color: #a5a5a5;
}

.right .miniDescription {
	font-size: 14px;
	line-height: 24px;
	color: #7a7a7a;
}

.right .orderBox .product-dtl label {
	line-height: 16px;
	font-size: 15px;
}

.right .orderBox {
	margin-top: 25px;
}

	.right .orderBox form {
		display: flex;
		justify-content: center;
	}

		.right .orderBox form label {
			display: flex;
			justify-content: center;
			align-items: center;
			margin-right: 10px;
		}

.right .product-count .qtyminus, .product-count .qtyplus {
	width: 34px;
	height: 34px;
	background: var(--themeColorDark);
	text-align: center;
	font-size: 19px;
	line-height: 36px;
	color: var(--themeWhite);
	cursor: pointer;
}

.right .product-count .qtyminus {
	border-radius: 10px 0 0 10px;
}

.right .product-count .qty {
	width: 60px;
	text-align: center;
}

.product-count .qtyplus {
	border-radius: 0 10px 10px 0;
}

.orderBox .button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.round-black-btn {
	width: 157px;
	height: 34px;
	background-color: var(--themeColorDark);
	color: var(--themeWhite);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	transition: all 0.17s ease-in-out;
}

	.round-black-btn:hover {
		background-color: var(--themeColor);
	}









.pDetail .desBox {
	margin-top: 25px;
}

	.pDetail .desBox .title {
		border-bottom: 1px solid #d8d8d8;
	}

		.pDetail .desBox .title h1 {
			width: 130px;
			border-bottom: 2px solid #d8d8d8;
			color: #444;
			padding: 5px;
		}

	.pDetail .desBox .description {
		width: 100%;
		padding: 25px;
		font-size: 15px;
		line-height: 24px;
		color: #7a7a7a;
	}










/* --- MODAL START --- */
.projectModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	width: 80%;
	height: 80%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.3s ease-in-out;
}

.close {
	display: block;
	position: absolute;
	top: 30px;
	right: 40px;
	color: white;
	font-size: 40px;
	cursor: pointer;
}
/* --- MODAL END --- */










@media all and (max-width: 850px) and (min-width: 30px) {
	.right .orderBox form label {
		display: none;
	}

	.right .orderBox .button {
		margin-top: 15px;
	}

	.left .miniPhotos img {
		width: 33.333%;
	}
	.pDetail {
		padding: 25px 5% 25px 5%;
	}
}
