.card-wrappers{
    max-width: 1100px;
    margin: 0 auto;

	margin-top: 50px;
}

.product-content{
    padding: 2rem 1rem;
}
.product-title{
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    color: #fff;
    margin: 1rem 0;
}
.product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}
.product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.product-link:hover{
    opacity: 0.9;
}
.product-rating{
    color: #ffc107;
	margin-bottom: 6px;

}
.product-rating span{
    font-weight: 600;
    color: #b6b6b6;
}
.product-price{
    margin: 1rem 0;
    font-size: 1rem;
    /* font-weight: 700; */
	color: #fff;
}
.product-price span{
    font-weight: 400;
}
.last-price span{
    color: #f64749;
    text-decoration: line-through;
}
.new-price span{
    color: #27ff25;
}
.product-detail h2{
    text-transform: capitalize;
    color: #b6b6b6;
    padding-bottom: 0.6rem;
}
.product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.9;
	color: #fff;
}
.product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(https://fadzrinmadu.github.io/hosted-assets/product-detail-page-design-with-image-slider-html-css-and-javascript/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    /* font-weight: 600; */
    opacity: 0.9;
	color: #fff;
}
.product-detail ul li span{
    font-weight: 400;
	color: #f7971d;
}
.purchase-info{
    margin: 1.5rem 0;
	display: flex;
    align-items: baseline;
}
.purchase-info input,
.purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
	padding: 5px 14px;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}
.purchase-info input{
    width: 60px;
}
.purchase-info .btn{
    cursor: pointer;
    color: #fff;
	font-size: 14px;
}
.purchase-info .btn:first-of-type{
    background: #00cd00;
	border: none;
}
.purchase-info .btn:last-of-type{
    background: #00cd00;
	border: none;
}
.purchase-info .btn:hover{
    opacity: 0.9;
}
.social-links{
    display: flex;
    align-items: center;
}
.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
.social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}

@media screen and (min-width: 992px){
    .product-gallery{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;

		width: 100%;
    }
    .card-wrappers{
        /* height: 100vh; */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: start;
    	margin-top: 2rem;
    }
    .product-content{
        padding-top: 0;
    }
}

.large-image {
  width: 100%;
  /* height: 400px; */
}

.large-image img{
	height: 400px;
    width: 100%;
    object-fit: cover;
	border-radius: 16px;
}

.small-img {
  width: 100%;
  height: 70px;
  margin-top: 10px;
  position: relative;
  /* left: 25px; */

}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 97;
}

.small-img .icon-left { transform: rotate(180deg) }

.small-img .icon-right { right: 0; }

.small-img .icon-left:hover, .small-img .icon-right:hover { opacity: .5; }

.small-container {
  width: 380px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}

@media (max-width: 600px) {
.small-container {
	width: 300px;
}
}

.small-container div {
  width: 800%;
  position: relative;
}

.small-container .show-small-img {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
  object-fit: cover;
  border-radius: 8px;
}

.small-container .show-small-img:last-of-type { margin-right: 0; }

.sign__input{
	width: 100px;
	height: 30px;
	border: 1px solid #f7971d;
	font-size: 12px;
	border-radius: unset;
}

.btn-bid{
	color: white;
    background: #00cd00;
    padding: 5px 14px;
	border-radius: 25px;
    font-size: 14px;
}

.btn-bid:hover{
	opacity: 0.8;
}

.btn-bid svg{
width: 20px;
}

@media (max-width: 500px) {
  .card__list{
    display: grid !important;
  }

  .card-li{
	margin-bottom: 4px;
  }

.bid-place{
	display: grid !important;
}

}

.bid-place{
	display: flex; 
	align-items: baseline;
}

.parsley-errors-list{
	font-size: 12px;
	line-height: 2em;
	
}

@media (max-width: 768px) {
	.card-wrappers{
		margin-top: 10px !important;
	}
}

.section__carousel .owl-dots{
	justify-content: center !important;

}
.wishlist_btn{
	color: #fff;
	font-size: 14px;
	margin-left: 8px;
}

.card__list li{
  display: flex !important;
}
 
.card__list li svg{
margin-right: 2px;
}


.plyr__menu{
	display: none !important;
}

@media (min-width: 1200px){
.plyr {
    margin-right: 0;
}
}

.plyr__poster{
	width: 0 !important;
}

.plyr audio, .plyr iframe, .plyr video{
	height: 400px;
    object-fit: cover;
}

.plyr__poster{
	height: 400px;
	filter: brightness(60%);
}

.large-image-hide{
	display: none;;
}

@media (min-width: 768px){
.plyr {
    margin-top: 0px;
}
}
