/********************* Shopping Demo-3**********************/

/*Product Grid*/

#tab5 .sch-product-grid {
    font-family: Poppins, sans-serif;
}
#tab5 .sch-product-grid .sch-product-item{
	position:relative;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 2px 8px rgba(0,0,0,.16);
	box-shadow: 0 2px 8px rgba(0,0,0,.16);
}
#tab5 .sch-product-grid .sch-product-item:hover{
}
#tab5 .sch-product-grid .sch-product-item .sch-product-images {
    display: inline-block;
    width: 100%;
    position: relative;
    background: #fff;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-img-1{
	display:none;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-img-2{
	display: inline-block;
}
#tab5 .sch-product-grid .sch-product-item .sch-img-1 {
    width: 100%;
	height:330px;
	object-fit:contain;
}
#tab5 .sch-product-grid .sch-product-item .sch-img-2 {
	display:none;
	width: 100%;
	height:330px;
	object-fit:contain;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-product-sale-label,
#tab5 .sch-product-grid .sch-product-item:hover .sch-product-new-label{
	display:none;
}
#tab5 .sch-product-grid .sch-product-item .sch-product-sale-label, #tab5 .sch-product-grid .sch-product-item .sch-product-new-label {
    text-align: center;
    color: #fff;
    background-color: #61082b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 45px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 15px;
    transition: all .3s;
}
#tab5 .sch-product-grid .sch-product-item .sch-product-sale-label a, #tab5 .sch-product-grid .sch-product-item .sch-product-new-label a{
    color: #fff;
}
#tab5 .sch-product-grid .sch-product-item .sch-product-sale-label {
    left: auto;
    right: 10px;
    background-color: #b4d0e7;
}
#tab5 .sch-product-grid .sch-product-item .sch-product-info {
    background: #f0efef;
    padding: 20px;
    display: inline-block;
    height: 225px;
    width: 100%;
}
#tab5 .sch-product-grid .sch-product-item .sch-price {
    font-size: 25px;
    line-height: normal;
    color: #34b1da;
    position: relative;
    margin-bottom: 20px;
    font-weight: bold;
}
#tab5 .sch-product-grid .sch-product-item .sch-name-description {
    display: inline-block;
}
#tab5 .sch-product-grid .sch-product-item .sch-name {
    position: relative;
}
#tab5 .sch-product-grid .sch-product-item .sch-name a {
    font-size: 16px;
    color: #222;
    margin-left: 30px;
    font-weight: bold;
    display: inline-block;
}
#tab5 .sch-product-grid .sch-product-item .sch-name::before {
    content: '';
    height: 1px;
    width: 20px;
    background-color: rgba(0,0,0,.5);
    transform: translateY(-50%);
    position: absolute;
    top: 10px;
    left: 0;
}
#tab5 .sch-product-grid .sch-product-item .sch-description {
    margin-top: 20px;
    color: #555;
    font-size: 14px;
    line-height: normal;
    font-weight: 300;
}
#tab5 .sch-product-grid .sch-product-item .sch-social {
    margin-top: 20px;
    text-align: center;
}
#tab5 .sch-product-grid .sch-product-item .sch-social a i{
    border-radius: 50%;
    color: #222;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 16px;
    background: gainsboro;
}
#tab5 .sch-product-grid .sch-product-item .sch-social a i:hover {
    color:#fff;
    background: #34b1da;
}
#tab5 .sch-product-grid .sch-product-item .sch-star {
    width: 50%;
    float: left;
    text-align: left;
	font-size: 14px;
}
#tab5 .sch-product-grid .sch-product-item .sch-star i {
    color: #34b1da;
    z-index: 1;
	font-size:14px;
}
#tab5 .sch-product-grid .sch-product-item .sch-star i.disable {
    color: #aaa;
}
#tab5 .sch-product-grid .sch-product-item .sch-review{
	color: #34b1da;
	font-size:14px;
}

#tab5 .sch-product-grid .sch-product-item .sch-review {
    width: 50%;
    float: right;
    text-align: right;
}
#tab5 .sch-product-grid .sch-product-item .sch-star-review{
	display:none;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-star-review {
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 80%;
    margin: 0 auto;
    right: 0;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-price {
    margin-bottom: 10px;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-description {
    margin-top: 10px;
}
#tab5 .sch-product-grid .sch-product-item:hover .sch-social {
    margin-top: 10px;
}
a[data-tooltip] {
    position: relative;
    display: inline-block;
}

a[data-tooltip]::after {
    content: attr(data-tooltip); /* N?i dung tooltip l?y t? anchor */
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    white-space: nowrap;
    position: absolute;
    bottom: 110%;
    left: 0;
    transform: translateY(5px);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	font-size:14px;
	line-height:normal;
}

a[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateY(0);
}
@media (min-width:1024px) and (max-width:1199px){
	#tab5 .sch-product-grid .sch-product-item .sch-name a {
		font-size: 14px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-social a i {
		height: 30px;
		width: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-product-info {
		height:210px;
	}
}
@media (min-width:980px) and (max-width:1023px){
	#tab5 .sch-product-grid .sch-product-item .sch-name a,
	#tab5 .sch-product-grid .sch-product-item .sch-description,
	#tab5 .sch-product-grid .sch-product-item .sch-star i,
	#tab5 .sch-product-grid .sch-product-item .sch-star,
	#tab5 .sch-product-grid .sch-product-item .sch-review{
		font-size: 12px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-social a i {
		height: 30px;
		width: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-product-info {
		height:210px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-img-1,
	#tab5 .sch-product-grid .sch-product-item .sch-img-2{
		height:240px;
	}
}
@media (min-width:768px) and (max-width:979px){
	#tab5 .sch-product-grid .sch-product-item .sch-social a i {
		margin: 1px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-star,
	#tab5 .sch-product-grid .sch-product-item .sch-review{
		width: 100%;
		text-align: center;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-name a,
	#tab5 .sch-product-grid .sch-product-item .sch-description,
	#tab5 .sch-product-grid .sch-product-item .sch-star i,
	#tab5 .sch-product-grid .sch-product-item .sch-star,
	#tab5 .sch-product-grid .sch-product-item .sch-review{
		font-size: 12px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-social a i {
		height: 20px;
		width: 20px;
		line-height: 20px;
		font-size: 10px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-product-info {
		height: 255px;
	}
	#tab5 .sch-product-grid .sch-product-item .sch-img-1,
	#tab5 .sch-product-grid .sch-product-item .sch-img-2{
		height:240px;
	}
}
@media (min-width:640px) and (max-width:767px){
	
}
@media (min-width:480px) and (max-width:639px){

}

/*Product List*/

#tab6 .sch-product-list .sch-product-item {
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
    background: #f0efef;
	-webkit-box-shadow: 0 2px 8px rgba(0,0,0,.16);
	box-shadow: 0 2px 8px rgba(0,0,0,.16);
}
#tab6 .sch-product-list .sch-product-item .sch-product-images {
    display: inline-block;
    width: 30%;
    position: relative;
    background: #fff;
	float:left;
}
#tab6 .sch-product-list .sch-product-item:hover .sch-img-1{
	display:none;
}
#tab6 .sch-product-list .sch-product-item:hover .sch-img-2{
	display: inline-block;
}
#tab6 .sch-product-list .sch-product-item .sch-img-1 {
    width: 100%;
	height:368px;
	object-fit:contain;
}
#tab6 .sch-product-list .sch-product-item .sch-img-2 {
	display:none;
	width: 100%;
	height:368px;
	object-fit:contain;
}
#tab6 .sch-product-list .sch-product-item:hover .sch-product-sale-label,
#tab6 .sch-product-list .sch-product-item:hover .sch-product-new-label{
	display:none;
}
#tab6 .sch-product-list .sch-product-item .sch-product-sale-label, #tab6 .sch-product-list .sch-product-item .sch-product-new-label {
    text-align: center;
    color: #fff;
    background-color: #61082b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 45px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 15px;
    transition: all .3s;
}
#tab6 .sch-product-list .sch-product-item .sch-product-sale-label a, #tab6 .sch-product-list .sch-product-item .sch-product-new-label a{
    color: #fff;
}
#tab6 .sch-product-list .sch-product-item .sch-product-sale-label {
    left: auto;
    right: 10px;
    background-color: #b4d0e7;
}
#tab6 .sch-product-list .sch-product-item .sch-product-info {
    width: 70%;
    float: left;
    position: relative;
    padding: 30px;
}
#tab6 .sch-product-list .sch-product-item .sch-price {
    font-size: 25px;
    line-height: normal;
    color: #34b1da;
    position: relative;
    margin-bottom: 20px;
    font-weight: bold;
}
#tab6 .sch-product-list .sch-product-item .sch-name-description {
    display: inline-block;
}
#tab6 .sch-product-list .sch-product-item .sch-name {
    position: relative;
}
#tab6 .sch-product-list .sch-product-item .sch-name a {
    font-size: 16px;
    color: #222;
    margin-left: 30px;
    font-weight: bold;
    display: inline-block;
}
#tab6 .sch-product-list .sch-product-item .sch-name::before {
    content: '';
    height: 1px;
    width: 20px;
    background-color: rgba(0,0,0,.5);
    transform: translateY(-50%);
    position: absolute;
    top: 10px;
    left: 0;
}
#tab6 .sch-product-list .sch-product-item .sch-description {
    margin-top: 20px;
    color: #555;
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
}
#tab6 .sch-product-list .sch-product-item .sch-social {
    margin-top: 20px;
    text-align: center;
}
#tab6 .sch-product-list .sch-product-item .sch-social a i{
    border-radius: 50%;
    color: #222;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 16px;
    background: gainsboro;
	text-align:center;
}
#tab6 .sch-product-list .sch-product-item .sch-social a i:hover {
    color:#fff;
    background: #34b1da;
}
#tab6 .sch-product-list .sch-product-item .sch-star {
    width: 50%;
    float: left;
    text-align: left;
	font-size: 14px;
}
#tab6 .sch-product-list .sch-product-item .sch-star i {
    color: #34b1da;
    z-index: 1;
	font-size:14px;
}
#tab6 .sch-product-list .sch-product-item .sch-star i.disable {
    color: #aaa;
}
#tab6 .sch-product-list .sch-product-item .sch-review{
	color: #34b1da;
	font-size:14px;
}
#tab6 .sch-product-list .sch-product-item .sch-star-review {
    display: inline-block;
    width: 25%;
}
#tab6 .sch-product-list .sch-product-item .sch-review {
    width: 50%;
    float: right;
    text-align: right;
}
#tab6 .sch-product-list .sch-product-item .sch-social {
    margin: 20px 0;
    text-align: left;
}
#tab6 .sch-product-list .plus-minus-input {

    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;

}

#tab6 .sch-product-list .plus-minus-input .input-group-field {
    text-align: center;
    height: 32px;
    width: 70px;
    line-height: 30px;
}
#tab6 .sch-product-list .plus-minus-input .input-group-field::-webkit-inner-spin-button,
#tab6 .sch-product-list .plus-minus-input .input-group-field ::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

#tab6 .sch-product-list .plus-minus-input .input-group-button .circle {
    border-radius: 0%;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
	padding:0;
}
#tab6 .sch-product-list .plus-minus-input .input-group-button i {
	font-size:10px;
}
#tab6 .sch-product-list .input-group-button.sch-minus {
    position: absolute;
    right: -16px;
    top: 0;
}
#tab6 .sch-product-list .input-group-button.sch-plus {
    position: absolute;
    right: -16px;
    bottom: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
#tab6 .sch-product-list .sch-content-item {
    width: 33.333%;
    float: left;
}
#tab6 .sch-product-list .sch-color-title, #tab6 .sch-product-list .sch-size-title, #tab6 .sch-product-list .sch-quantity-title {
    font-size: 16px;
    color: #222;
    font-weight: bold;
    float: left;
    width: 12%;
}
#tab6 .sch-product-list .sch-color-item,#tab6 .sch-product-list .sch-size-item ,#tab6 .sch-product-list .sch-quantity-item  {
    float: left;
}
#tab6 .sch-product-list .sch-content {
    display: inline-block;
    width: 100%;
	margin-top:20px;
}
#tab6 .sch-product-list .sch-color-title, #tab6 .sch-product-list .sch-size-title, #tab6 .sch-product-list .sch-quantity-title {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}
#tab6 .sch-product-list .sch-color-item-white {
    background: #fff;
    width: 90%;
    height: 90%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin: 1px auto;
}
#tab6 .sch-product-list .sch-color-item-black {
    background: #000;
	width: 90%;
    height: 90%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin: 1px auto;
}
#tab6 .sch-product-list .sch-color-item-blue {
    background: blue;
	width: 90%;
    height: 90%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin: 1px auto;
}
#tab6 .sch-product-list .sch-color-item-purple {
    background: purple;
	width: 90%;
    height: 90%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin: 1px auto;
}
#tab6 .sch-product-list .sch-color-item-element, #tab6 .sch-product-list .sch-size-item-element {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    float: left;
    cursor: pointer;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	background:#aaa;
}
#tab6 .sch-product-list .sch-color-item-element.active,
#tab6 .sch-product-list .sch-color-item-element:hover,
#tab6 .sch-product-list .sch-size-item-element.active,
#tab6 .sch-product-list .sch-size-item-element:hover {
	background:red;
}
#tab6 .sch-product-list .sch-size-item-element {
    background: #34b1da;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    color: #fff;
}
@media (min-width:1024px) and (max-width:1199px) {
	#tab6 .sch-product-list .sch-product-item .sch-star-review {
		width: 30%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-images {
		width: 35%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-info {
		width: 65%;
	}
	#tab6 .sch-product-list .sch-content {
		display: inline-block;
		width: 100%;
		margin-top: 15px;
	}
}
@media (max-width:990px) {
   
}
@media (min-width:980px) and (max-width:1023px) {
    #tab6 .sch-product-list .sch-product-item .sch-star-review {
		width: 35%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-images {
		width: 35%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-info {
		width: 65%;
	}
	#tab6 .sch-product-list .sch-content {
		display: inline-block;
		width: 100%;
		margin-top: 15px;
	}
	#tab6 .sch-product-list .sch-product-item .sch-img-1,
	#tab6 .sch-product-list .sch-product-item .sch-img-2{
		height: 351px;
	}
}
@media (min-width:768px) and (max-width:979px) {
    #tab6 .sch-product-list .sch-product-item .sch-star-review {
		width: 45%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-images {
		width: 35%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-info {
		width: 65%;
	}
	#tab6 .sch-product-list .sch-content {
		display: inline-block;
		width: 100%;
		margin-top: 15px;
	}
	#tab6 .sch-product-list .sch-product-item .sch-product-info {
		padding: 10px 25px;
	}
	#tab6 .sch-product-list .sch-color-item-element, #tab6 .sch-product-list .sch-size-item-element {
		margin-right: 2px;
	}
	#tab6 .sch-product-list .sch-product-item .sch-img-1,
	#tab6 .sch-product-list .sch-product-item .sch-img-2{
		height: 311px;
	}
}
@media (min-width:640px) and (max-width:767px) {
	#tab6 .sch-product-list .sch-product-item .sch-product-images,
	#tab6 .sch-product-list .sch-product-item .sch-product-info{
		width: 100%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-star-review {
		width: 40%;
	}
	#tab6 .sch-product-list .sch-color-item-element, #tab6 .sch-product-list .sch-size-item-element {
		margin-right: 5px;
	}
}
@media (min-width:480px) and (max-width:639px) {
	#tab6 .sch-product-list .sch-product-item .sch-product-images,
	#tab6 .sch-product-list .sch-product-item .sch-product-info{
		width: 100%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-star-review {
		width: 50%;
	}
	#tab6 .sch-product-list .sch-content-item {
		width: 50%;
		float: left;
		margin-bottom: 20px;
	}
	#tab6 .sch-product-list .sch-content-item:last-child {
		margin-bottom: 0px;
	}
}
@media only screen and (max-width:479px) {
	#tab6 .sch-product-list .sch-product-item .sch-product-images,
	#tab6 .sch-product-list .sch-product-item .sch-product-info{
		width: 100%;
	}
	#tab6 .sch-product-list .sch-product-item .sch-star-review {
		width: 100%;
	}
	#tab6 .sch-product-list .sch-content-item {
		width: 100%;
		float: left;
		margin-bottom: 20px;
	}
	#tab6 .sch-product-list .sch-content-item:last-child {
		margin-bottom: 0px;
	}
}