.product__container {
    padding-bottom: 20px;
}
.product-page-top {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 30px;
}
.product-right {
    flex: 1;
}
.product-gallery {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    height: 500px;
	width: 610px;
    min-width: 610px;
}
.product-images-wrapper {
	height: 100%;
	width: 100px;
	min-width: 100px;
	position: relative;
}
.product-images {
    overflow-y: auto;
    height: 100%;
	width: 100%;
}
.product-images::-webkit-scrollbar {
	width: 0;
	height: 0;
}
.product-images::-webkit-scrollbar-thumb {
	width: 0;
	height: 0;
	background-color: transparent;
}
.product-images::-webkit-scrollbar-track {
	background-color: transparent;
}
.product-images div {
	width: 100%;
	height: 100px;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 5px;
	border-radius: 15px;
	border: 1px solid #bbb;
	transition: 0.2s;
}
.product-images div:last-child {
	margin-bottom: 0;
}
.product-images div.pi-select{
	border: 1px solid #00A651;
}
@media(any-hover: hover){
	.product-images div:hover {
		border: 1px solid #00A651;
	}
}
.product-images img {
    width: 100%;
	height: 100%;
    object-fit: cover;
}
.product-images-wrapper span {
	position: absolute;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #fff;
    background: #00a65173;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: none;
	left: 50%;
	cursor: pointer;
	transition: 0.2s;
	justify-content: center;
	align-items: center;
	transform: translateX(-50%);
}
.product-images-wrapper span:hover {
	background: #00000070;
}
.product-images-wrapper span:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
}
.product-images-wrapper span.btn-pi-prev {
	top: 10px;
}
.product-images-wrapper span.btn-pi-next {
	bottom: 10px;
}
.product-images-wrapper span.btn-pi-prev:before {
	margin-top: 2px;
	transform: rotate(135deg);
}
.product-images-wrapper span.btn-pi-next:before {
	margin-bottom: 2px;
	transform: rotate(-45deg);
}
.product-images-wrapper:hover span {
	display: flex;
}
.product-images-wrapper span.hidden,
.product-images-wrapper:hover span.hidden {
	display: none;
}
.product-thumb {
	flex: 1;
	border-radius: 15px;
	overflow: hidden;
}
.product-thumb a {
	width: 100%;
    height: 100%;
    display: block;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.page .product-page-top h1 {
	padding: 0 0 20px;
}
.product-row-1 {
    display: flex;
	color: #777;
    font-weight: 600;
}
.product-count-reviews {
	padding: 0 20px;
}
.product-buy-count,
.product-count-reviews a {
    display: flex;
    align-items: center;
}
.product-buy-count img,
.product-count-reviews img {
    height: 16px;
    width: auto;
    margin-right: 3px;
}
@media(any-hover: hover){
	.product-count-reviews a:hover{
		color: #333;
	}
}
.product-price {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.product-price .price {
	color: #00a651;
    font-size: 36px;
    font-weight: 700;
}
.product-price .old-price {
	color: #ffac0c;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    text-decoration: line-through;
	margin-left: 20px;
}
.product-row-2{
	display: flex;
	margin-top: 20px;
}
.product-like svg{
    height: 35px;
    width: max-content;
    cursor: pointer;
    margin-left: 20px;
}
.product-like.added svg{
	fill: #FFAC0C;
}
.product-options > div {
	margin-top: 20px;
}
.product-options .option-name{
    color: #3d3d3d;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
}
.product-options .option-name span {
    margin-left: 5px;
    font-weight: normal;
}
.product-option-items {
    margin-top: 10px;
}
.product-option-items > div {
	display: inline-block;
	border-radius: 5px;
	color: #c4c4c4;
	border: 1px solid #c4c4c4;
	cursor: pointer;
	font-size: 14px;
    font-style: normal;
    font-weight: 700;
	margin-right: 5px;
	margin-bottom: 10px;
    padding: 8px 10px;
	transition: 0.2s;
}
.product-option-items > div.selected {
	color: #00a651;
	cursor: default;
	border: 1px solid #00a651;
}
.product-row-item {
    margin-top: 15px;
    font-size: 14px;
    color: #727272;
	display: flex;
	flex-wrap: wrap;
	column-gap: 5px;
	row-gap: 5px;
}
.product-row-item > div:last-child,
.product-row-item > div:last-child a{
	font-weight: 700;
}
.product-shop-count a{
	color: #00a651;
}
.product-categories a,
.product-manufacturer a{
	color: #727272;
}
.product-categories a {
    margin-bottom: 5px;
}
.btn-detailed a {
	color: #00a651;
}
@media(any-hover: hover){
	.product-option-items > div:hover {
		color: #00a651;
		border: 1px solid #00a651;
	}
	.btn-detailed a:hover,
	.product-shop-count a:hover {
		color: #727272;
	}
	.product-categories a:hover,
	.product-manufacturer a:hover {
		color: #00a651;
	}
}
.product-page-midle {
    margin-top: 50px;
}
.product-tabs {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
}
.product-btn-tab {
	order: 1;
    font-size: 18px;
	padding: 5px 0 10px;
}
.product-btn-tab.selected {
	color: #00a651;
	cursor: default;
	border-bottom: 3px solid #00a651;
}
.product-block-tab {
	display: none;
	order: 2;
	width: 100%;
	margin-top: 20px;
}
.product-page-bottom {
    margin-top: 30px;
}
.product-page-bottom > div {
    margin-top: 20px;
}

/** REVIEWS **/
.review-items {
    line-height: normal;
}
.review-items .item {
    background: #F7F7F7;
    border-radius: 10px;
    padding: 15px;
}
.review-items .item:not(:first-of-type) {
	margin-top: 10px;
}
.review-items .review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.review-items .rating {
    margin-right: 5px;
}
.review-items .author {
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}
.review-items .date-added {
    font-size: 15px;
}
.review-items .text {
    color: #777;
    margin-top: 5px;
}
.btn-more-reviews {
    height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #f6f6f6;
    margin-top: 20px;
	grid-column: 1/6;
}
.review-add {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f7f7f7;
}
.review-add textarea {
	height: 100px;
	width: 100%;
	border-radius: 10px;
    border: 1px solid #c4c4c4;
    resize: none;
    padding: 10px 15px;
}
.review-add button {
	margin-top: 20px;
}
.review-rating {
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    column-gap: 4px;
    width: max-content;
}
.review-rating label:nth-of-type(1) {
	order: 5;
}
.review-rating label:nth-of-type(2) {
	order: 4;
}
.review-rating label:nth-of-type(3) {
	order: 3;
}
.review-rating label:nth-of-type(4) {
	order: 2;
}
.review-rating label:nth-of-type(5) {
	order: 1;
}
.review-rating svg {
	fill: #C4C4C4;
	cursor: pointer;
	height: 24px;
    width: auto;
}
.review-rating label:hover svg,
.review-rating label:hover ~ label svg,
.review-rating input:checked ~ label svg {
	fill: #FFAC0C;
}
.review-rating input {
	display: none;
}
.review-add .captcha {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
	margin-top: 10px;
}
.review-add .captcha input {
    height: 35px;
    width: 150px;
    padding: 0 20px;
    border: 1px solid #c4c4c4;
}
.review-items .action {
    margin-top: 5px;
    display: flex;
    column-gap: 10px;
}
.review-items .action svg {
    height: 16px;
    width: auto;
    cursor: pointer;
}
.review-items .action span {
	margin-left: 5px;
	font-size: 14px;
}
.review-items .action .yes svg {
    transform: translateY(1px);
}
.review-items .action .yes.selected svg path{
    stroke: #00a651;
    fill: #00a651;
}
.review-items .action .no svg {
    transform: rotate(180deg) translateY(-5px);
}
.review-items .action .no.selected svg path{
    stroke: #ff5353;
    fill: #ff5353;
}
/** REVIEWS (END) **/


@media(max-width: 1100px){
	.product-gallery {
		height: 400px;
		width: 490px;
		min-width: 490px;
	}
	.product-images-wrapper {
		width: 80px;
		min-width: 80px;
	}
	.product-images div {
		height: 80px;
		border-radius: 10px;
	}
	.product-thumb {
		border-radius: 10px;
	}
}
@media(max-width: 1000px){
	.product-gallery {
		flex-direction: column;
		height: max-content;
		width: 50%;
		min-width: 50%;
	}
	.product-images-wrapper {
		order: 2;
		height: 80px;
		width: 100%;
	}
	.product-images-wrapper span {
		width: 30px;
		height: 30px;
		display: flex;
		top: 50%;
		left: unset;
		transform: translateY(-50%);
	}
	.product-images-wrapper span:before {
		width: 7px;
		height: 7px;
	}
	.product-images-wrapper span.btn-pi-prev {
		top: 50%;
		left: 10px;
	}
	.product-images-wrapper span.btn-pi-next {
		bottom: unset;
		right: 10px;
	}
	.product-images-wrapper span.btn-pi-prev:before {
		margin-top: 0;
		margin-left: 2px;
		transform: rotate(45deg);
	}
	.product-images-wrapper span.btn-pi-next:before {
		margin-bottom: 0;
		margin-right: 2px;
		transform: rotate(-135deg);
	}
	.product-images {
		display: flex;
		overflow-y: hidden;
		overflow-x: auto;
	}
	.product-images div {
		width: 80px;
		min-width: 80px;
		height: 100%;
		margin-left: 5px;
		margin-bottom: 0;
	}
	.product-images div:first-child {
		margin-left: 0;
	}
	.product-images img {
		width: auto;
	}
	.product-thumb img {
		height: auto;
	}
}
@media(max-width: 800px){
	.product-gallery {
		width: 40%;
		min-width: 40%;
	}
	.product-images-wrapper {
		height: 60px;
	}
	.product-images div {
		width: 60px;
		min-width: 60px;
	}
}
@media(max-width: 600px){
	.product-page-top {
		flex-wrap: wrap;
	}
	.product-gallery {
		width: 100%;
		min-width: 100%;
	}
	.product-images-wrapper {
		height: 100px;
	}
	.product-images div {
		width: 100px;
		min-width: 100px;
	}
}
@media(max-width: 500px){
	.product__container {
		padding-bottom: 30px;
	}
	.product-images-wrapper {
		height: 80px;
	}
	.product-images div {
		width: 80px;
		min-width: 80px;
	}
	.product-page-midle {
		margin-top: 20px;
	}
	.product-btn-tab {
		width: 100%;
		order: unset;
		font-size: 16px;
		padding: 15px 0 15px;
		position: relative;
		border-bottom: 1px solid #bbb;
	}
	.product-btn-tab:before, 
	.product-btn-tab:after {
		content: '';
		top: 17px;
		right: 10px;
		position: absolute;
		display: block;
		width: 2px;
		height: 12px;
		background: #727272;
		transition: 0.3s;
		transform: rotate(0deg);
	}
	.product-btn-tab:after {
		transform: rotate(90deg);
	}
	.product-btn-tab.selected:after {
		opacity: 0;
		transform: rotate(360deg);
	}
	.product-btn-tab.selected:before{
		transform: rotate(270deg);
	}
	.product-btn-tab:last-of-type {
		border-bottom: 0;
	}
	.product-block-tab {
		order: unset;
	}
	.product-btn-tab:not(:last-of-type).selected {
		color: #00a651;
		cursor: default;
		border-bottom: 1px solid #00a651;
	}
}
@media(max-width: 400px){
	.product__container {
		padding-bottom: 30px;
	}
	.product-images-wrapper {
		height: 60px;
	}
	.product-images div {
		width: 60px;
		min-width: 60px;
	}
}


#product-description {
	color: #727272;
    line-height: 1.5;
}
#product-description img {
	display: block;
	max-width: 100%;
	height: auto!important;
}
#product-description ol,
#product-description ul {
	padding: 10px 0px 10px 20px;
}
#product-description p {
	margin-bottom: 10px;
}
#product-description a {
	text-decoration: underline;
}
@media(any-hover: hover){
	#product-description a:hover {
		text-decoration: none;
	}
}