.container_product {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px;
	display: flex;
}

/* Columns */

@media (max-width: 500px) {
	.container {
		flex-direction: column;
		margin-top: 60px;
	}

	/* Left Column */
	.left-column {
		width: 100%;
		position: static;
	}

	.left-column img {
		width: 100%;
		position: absolute;
		opacity: 0;
		transition: all 1s ease;
		margin-top: 200px;
		margin-right: 75px;
		width: 300px;
		right: 0;
		top: -65px;
		left: initial;
		width: 220px;
		top: -85px;
	}

	.right-column {
		margin-top: 200px;
		width: 100%;
		position: static;
	}
}

@media ((min-width: 501px) and (max-width: 1000px)) {
	/* Columns */
	.left-column {
		width: 40%;
		position: relative;
	}
	/* Left Column */
	.left-column img {
		width: 95%;
		position: absolute;
		left: 0;
		top: 0;
		opacity: 0;
		transition: all 1s ease;
		margin-top: 100px;
	}

	.right-column {
		width: 60%;
	}
}

@media (min-width: 1001px) {
	/* Columns */
	.left-column {
		width: 35%;
		position: relative;
	}
	/* Left Column */
	.left-column img {
		width: 95%;
		position: absolute;
		left: 0;
		top: 0;
		opacity: 0;
		transition: all 1s ease;
	}

	.right-column {
		width: 65%;
	}
}

.left-column img.active {
	opacity: 1;
}

.detail-product-active {
	z-index: 99;
	opacity: 1;
}
.detail-product-inactive {
	z-index: -99;
	opacity: 0;
}
/* Right Column */

/* Product Description */
.product-description {
	border-bottom: 1px solid #e1e8ee;
	margin-bottom: 20px;
}
.product-description span {
	font-size: 12px;
	color: #358ed7;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
}
.product-description h1 {
	font-weight: 300;
	font-size: 52px;
	color: #43484d;
	letter-spacing: -2px;
}
.product-description p {
	font-size: 16px;
	font-weight: 300;
	color: #86939e;
	line-height: 24px;
}

/* Product Configuration */
.product-color span,
.product-grade span {
	font-size: 14px;
	font-weight: 400;
	color: #86939e;
	margin-bottom: 20px;
	display: inline-block;
}

/* Product Color */
.product-color {
	margin-bottom: 30px;
}

.color-choose div {
	display: inline-block;
}

.color-choose input[type="radio"] {
	display: none;
}

.color-choose input[type="radio"] + label span {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 50%;
}

.color-choose input[type="radio"] + label span {
	border: 2px solid #ffffff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.color-choose input[type="radio"]#black + label span {
	background-color: #323232;
}
.color-choose input[type="radio"]#blue + label span {
	background-color: #314780;
}
.color-choose input[type="radio"]#red + label span {
	background-color: #c91524;
}
.color-choose input[type="radio"]#green + label span {
	background-color: #69c915;
}
.color-choose input[type="radio"]#yellow + label span {
	background-color: #f2cf1f;
}
.color-choose input[type="radio"]#white + label span {
	background-color: #ececec;
}
.color-choose input[type="radio"]#orange + label span {
	background-color: #d56407;
}
.color-choose input[type="radio"]#purple + label span {
	background-color: #9f00e4;
}
.color-choose input[type="radio"]#brown + label span {
	background-color: #9e6803;
}

.color-choose input[type="radio"]#custom + label span {
	/* background-color: #bebebe; */
	background: radial-gradient(circle at 50% 50%, #ffffff 0%, #000000 100%),
		conic-gradient(red, yellow, lime, aqua, blue, fuchsia, red);
	background-blend-mode: color-dodge, normal;
}

.color-choose input[type="radio"]#gradient1 + label span {
	background: rgb(2, 0, 36);
	background: linear-gradient(
		90deg,
		rgba(2, 0, 36, 1) 0%,
		rgba(9, 9, 121, 1) 35%,
		rgba(0, 212, 255, 1) 100%
	);
}

.color-choose input[type="radio"]#gradient2 + label span {
	background: rgb(131, 58, 180);
	background: linear-gradient(
		90deg,
		rgba(131, 58, 180, 1) 0%,
		rgba(253, 29, 29, 1) 50%,
		rgba(252, 176, 69, 1) 100%
	);
}

.color-choose input[type="radio"]:checked + label span {
	background-image: url(img/check-icn.svg);
	background-repeat: no-repeat;
	background-position: center;
}

/* Cable Configuration */
.grade-choose {
	margin-bottom: 20px;
}

.grade-choose button {
	border: 2px solid #e1e8ee;
	border-radius: 6px;
	padding: 13px 20px;
	font-size: 14px;
	color: #5e6977;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.5s;
}

.grade-choose button:hover,
.grade-choose button:active,
.grade-choose button:focus {
	border: 2px solid #86939e;
	outline: none;
}

.product-grade {
	border-bottom: 1px solid #e1e8ee;
	margin-bottom: 20px;
}

.product-grade a {
	color: #358ed7;
	text-decoration: none;
	font-size: 12px;
	position: relative;
	margin: 10px 0;
	display: inline-block;
}
.product-grade a:before {
	content: "?";
	height: 15px;
	width: 15px;
	border-radius: 50%;
	border: 2px solid rgba(53, 142, 215, 0.5);
	display: inline-block;
	text-align: center;
	line-height: 16px;
	opacity: 0.5;
	margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
a.cart-btn {
	border-radius: 0px;
}

a.cart-btn {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a.cart-btn:hover {
	background-color: #c97145;
}
a.cart-btn {
	font-family: "Poppins", sans-serif;
	display: inline-block;
	background-color: #ee7b1d;
	color: #fff;
	padding: 10px 20px;
}

a.cart-btn i {
	margin-right: 5px;
}

.single-product-form a.cart-btn {
	margin-bottom: 15px;
}

.product-filters {
	margin-bottom: 80px;
}

.product-filters ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.product-filters ul li {
	display: inline-block;
	font-weight: 700;
	font-size: 18px;
	margin: 15px;
	border: 2px solid #051922;
	color: #323232;
	cursor: pointer;
	padding: 8px 20px;
	border-radius: 25px;
}

.product-filters ul li.active {
	border: 2px solid #f28123;
	background-color: #f28123;
	color: #fff;
}

.single-product-item {
	margin-bottom: 30px;
}

.product-image {
	padding: 30px;
	padding-bottom: 0;
}

.product-image img {
	width: 90%;
	border-radius: 5px;
	margin-bottom: 20px;
}

.single-product-item h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

p.product-price {
	font-family: "Poppins", sans-serif;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}

p.product-price span {
	display: block;
	opacity: 0.8;
	font-size: 15px;
	font-weight: 400;
}

.single-product-img img {
	border-radius: 5px;
	-webkit-box-shadow: 0 0 20px #ddd;
	box-shadow: 0 0 20px #ddd;
	width: 100%;
}

.single-product-content h3 {
	font-size: 22px;
	font-weight: 600;
}

p.single-product-pricing span {
	font-size: 18px;
	display: block;
	opacity: 0.8;
	margin-bottom: 10px;
	font-weight: 400;
}

.single-product-content p {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}

.single-product-content p.single-product-pricing {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #051922;
	line-height: inherit;
}

input[type="number"] {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
	width: 100px;
	margin-bottom: 15px;
}

.single-product-content h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 35px;
}

ul.product-share {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.product-share li {
	display: inline-block;
}

ul.product-share li a {
	display: block;
	color: #051922;
	margin-right: 10px;
}

.single-product-content {
	margin-left: 30px;
}

table.cart-table {
	border: 1px solid #f9f9f9;
	width: 100%;
}

thead {
	border-bottom: 1px solid #eee;
}

tr.table-head-row th {
	border-right: 1px solid #efefef;
	padding: 15px;
	font-weight: 500;
	text-align: center;
}

tr.table-head-row th:last-child {
	border-right: none;
}

.cart-table-wrap tbody tr td {
	text-align: center;
}

td.product-image img {
	max-width: 50px;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
	border: 1px solid #efefef;
	padding: 20px 0;
	color: #051922;
}

thead.cart-table-head tr {
	background-color: #efefef;
}

td.product-quantity input {
	margin-bottom: 0;
}

td.product-remove a {
	color: #051922;
}

.total-section table.total-table {
	border: 1px solid #efefef;
	width: 100%;
}

tr.table-total-row {
	background-color: #efefef;
}

tr.table-total-row th {
	font-weight: 500;
	font-size: 15px;
	padding: 15px;
}

table.total-table tbody tr.total-data td {
	border: 1px solid #efefef;
	padding: 19px 15px;
}

tr.total-data td strong {
	margin-right: 32px;
}

.cart-buttons {
	margin-top: 30px;
}

.cart-buttons a:first-child {
	margin-right: 20px;
}

.coupon-section {
	margin-top: 50px;
}

.coupon-section h3 {
	font-size: 20px;
	font-weight: 500;
}

.coupon-form-wrap form p input[type="text"] {
	border: 1px solid #ddd;
	color: #051922;
	padding: 15px;
	width: 100%;
	border-radius: 5px;
	font-size: 15px;
}

.card.single-accordion {
	margin-bottom: 15px;
	border-bottom: 1px solid #efefef !important;
}

.card.single-accordion .card-header {
	background-color: #fff;
	border: none;
	padding: 0;
}

.card.single-accordion:last-child {
	margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
	color: #051922;
	font-size: 15px;
	display: block;
	width: 100%;
	text-align: left;
	padding: 20px;
	text-decoration: none;
	border: none;
	background-color: #efefef;
	position: relative;
	padding-left: 50px;
	font-weight: 600;
}

.card.single-accordion {
	border: 1px solid #f9f9f9;
}

.billing-address-form {
	padding: 20px;
}

.billing-address-form form p input {
	border: 1px solid #ddd;
	padding: 15px;
	width: 100%;
	border-radius: 3px;
}

.billing-address-form form p textarea {
	width: 100%;
	border-radius: 3px;
	border: 1px solid #ddd;
	padding: 15px;
	height: 120px;
	resize: none;
}

.shipping-address-form p,
.card-details p {
	margin: 0;
}

.card.single-accordion .card-header h5 button:before {
	position: absolute;
	left: 20px;
	top: 50%;
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 22px;
	margin-top: -11px;
	color: #f28123;
}

.billing-address-form form p:last-child {
	margin-bottom: 0;
}

table.order-details {
	border: 1px solid #efefef;
}

table.order-details thead tr th {
	background-color: #efefef;
	padding: 18px;
	font-size: 15px;
	font-weight: 500;
}

table.order-details tbody td {
	border: 1px solid #efefef;
	padding: 15px;
}

.order-details-wrap > a {
	margin-top: 30px;
}

.card.single-accordion {
	border: 1px solid #eeeeee;
}

.single-product-item {
	-webkit-box-shadow: 0 0 20px #e4e4e4;
	box-shadow: 0 0 20px #e4e4e4;
	padding-bottom: 50px;
	border-radius: 5px;
}

.pagination-wrap ul li a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.pagination-wrap ul li:hover a {
	background-color: #f28123;
}
.pagination-wrap {
	margin-top: 40px;
}

.pagination-wrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pagination-wrap ul li {
	display: inline-block;
}

.pagination-wrap ul li a {
	color: #6f6f6f;
	font-size: 15px;
	background-color: #f3f3f3;
	display: inline-block;
	padding: 8px 14px;
	border-radius: 5px;
	margin: 3px;
	font-weight: 600;
	border-radius: 50px;
}

.pagination-wrap ul li a.active {
	background-color: #f28123;
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.single-product-img {
		margin-bottom: 30px;
	}
	.single-product-img img {
		width: 100%;
	}
	.single-product-content h3 {
		font-size: 20px;
		font-weight: 500;
		line-height: 1.6;
	}

	.single-product-content {
		margin-left: 15px;
	}
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
	.single-product-content {
		margin-left: 0;
		margin-top: 15px;
	}

	.single-product-content h3 {
		font-size: 20px;
		line-height: 1.5;
	}

	.product-image {
		padding: 60px;
		padding-bottom: 0;
	}

	.single-product-content h3 {
		font-size: 20px;
		line-height: 1.5;
	}
}
