/*Product CSS*/
.box-products {
    padding: var(--range-xxl) 0;
}

.box-products .products .row > div {
    margin-bottom: 30px;
}

.box-detail-product {
    padding: var(--range-xxl) 0;
}

.box-detail-product .detail-head {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 40px;
}

.box-detail-product .detail-body {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.detail-body .tab-content {
    padding-top: 15px;
}

.detail-body .nav-tabs {
    border-bottom: 4px solid var(--main-color);
}

.detail-body .nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--second-color);
    border: 0;
}

.detail-body .nav-tabs .nav-link {
    position: relative;
}

.detail-body .nav-tabs .nav-link:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--main-color);
    visibility: hidden;
}

.detail-body .nav-tabs .nav-link.active:before {
    visibility: visible;
}

.detail-body .nav-tabs .nav-item.show .nav-link, 
.detail-body .nav-tabs .nav-link.active {
    border: 0;
    color: var(--main-color);
    background-color: transparent;
}

.detail-body .nav-tabs .nav-link:focus, 
.detail-body .nav-tabs .nav-link:hover {
    border: 0;
}

.related-products-slide {
    margin-bottom: 25px;
}

.related-products-slide .owl-dots {
    bottom: -25px;
}

.product-item .product__img img {
    border-radius: 10px;
    height: 215px;
}
/*Responsive CSS*/

@media (max-width: 1199px) {
	
}

@media (max-width: 991px) {
   
}

@media (max-width: 767px) {
	.box-products .products .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .box-products .products .row > div {
        padding: 0 5px;
        margin-bottom: 15px;
    }
}
@media (max-width: 320px) {
	
}

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 768px) and (max-width: 991px) {
	
}

@media (min-width: 1024px){
	
}

@media (min-width: 1200px){
	
}