/********************* Shopping Demo-3**********************/

/*Product Grid*/

#tab7 .sch-product-grid {
    font-family: 'Mansalva', cursive;
}
#tab7 .sch-product-grid .sch-product-item{
	position:relative;
	margin-bottom: 30px;
}
#tab7 .sch-product-grid .sch-product-item:hover{
}
#tab7 .sch-product-grid .sch-product-item .sch-product-images {
    display: inline-block;
    width: 100%;
    position: relative;
    background: #fff;
	overflow:hidden;
}
#tab7 .sch-product-grid .sch-product-item .sch-img-1 {
    width: 100%;
	height:330px;
	object-fit:contain;
}
#tab7 .sch-product-grid .sch-product-item .sch-social {
  position: absolute;
  top: 0px;
  left:0;
  display:none;
}
#tab7 .sch-product-grid .sch-product-item:hover .sch-social {
  display:block;
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul {
    padding: 0px;
    -webkit-transform: translate(-270px, 0);
    -moz-transform: translate(-270px, 0);
    -ms-transform: translate(-270px, 0);
    -o-transform: translate(-270px, 0);
    transform: translate(-270px, 0);
    margin-bottom: 0;
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul li {
  display: block;
  margin-bottom: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 300px;
  text-align: right;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  border-radius: 0 30px 30px 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.16);
	box-shadow: 0 2px 8px rgba(0,0,0,.16);
	padding:5px;
	margin-left:10px;
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul li:hover {
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 0.4);
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul li a{
	color:#222;
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul li:hover a {
  color: #000;
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul li:hover i {
  color: #fff;
  background: red;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
#tab7 .sch-product-grid .sch-product-item .sch-social ul li i {
    margin-left: 10px;
    color: #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    background: #fff;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    text-align: center;
    line-height: 30px;
}
#tab7 .sch-product-grid .sch-product-item .sch-product-info {
    padding-top: 30px;
    display: inline-block;
    position: relative;
    width: 100%;
}
#tab7 .sch-product-grid .sch-product-item .sch-price {
    font-size: 14px;
    line-height: normal;
    color: #fff;
    position: relative;
}
#tab7 .sch-product-grid .sch-product-item .sch-name-description {
    display: inline-block;
}
#tab7 .sch-product-grid .sch-product-item .sch-name {
    position: relative;
    margin-bottom: 0;
}
#tab7 .sch-product-grid .sch-product-item .sch-name a {
    font-size: 16px;
    color: #222;
    font-weight: bold;
    display: inline-block;
}
#tab7 .sch-product-grid .sch-product-item .sch-description {
    margin: 20px 0;
    color: #555;
    font-size: 16px;
    line-height: normal;
    font-weight: 300;
}
#tab7 .sch-product-grid .sch-product-item .sch-social {
    margin-top: 20px;
    text-align: center;
}
#tab7 .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;
}
#tab7 .sch-product-grid .sch-product-item .sch-social a i:hover {
    color:#fff;
    background: #8dc349;
}
#tab7 .sch-product-grid .sch-product-item .sch-star {
    font-size: 12px;
    position: absolute;
    right: 0px;
    top: 30px;
}
#tab7 .sch-product-grid .sch-product-item .sch-star i {
    color: #8dc349;
    z-index: 1;
	font-size:14px;
}
#tab7 .sch-product-grid .sch-product-item .sch-star i.disable {
    color: #aaa;
}
#tab7 .sch-product-grid .sch-product-item .sch-price-cart {
    position: relative;
    background: #8dc349;
    padding: 10px 20px;
    border-radius: 5px;
}
#tab7 .sch-product-grid .sch-product-item .sch-price-cart a {
    position: absolute;
    color: #fff;
    top: 10px;
    right: 20px;
}
#tab7 .sch-product-grid .sch-product-item .sch-sale {
    background: #8dc349;
    width: 145px;
    text-align: center;
    position: absolute;
    top: -17px;
    transform: rotate(45deg);
    right: -45px;
    color: #fff;
    height: 60px;
}
#tab7 .sch-product-grid .sch-product-item .sch-sale .sch-label {
    margin-top: 25px;
    margin-left: 20px;
}
@media (min-width:1024px) and (max-width:1199px){
	#tab7 .sch-product-grid .sch-product-item .sch-name a {
		font-size: 14px;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-social a i {
		height: 30px;
		width: 30px;
		line-height: 30px;
		font-size: 12px;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-product-info {
		height:210px;
	}
}
@media (min-width:980px) and (max-width:1023px){
	#tab7 .sch-product-grid .sch-product-item .sch-name a,
	#tab7 .sch-product-grid .sch-product-item .sch-description,
	#tab7 .sch-product-grid .sch-product-item .sch-star i,
	#tab7 .sch-product-grid .sch-product-item .sch-star{
		font-size: 12px;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-img-1 {
		height:240px;
	}
}
@media (min-width:768px) and (max-width:979px){
	#tab7 .sch-product-grid .sch-product-item .sch-star{
		width: 100%;
		text-align: left;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-name a,
	#tab7 .sch-product-grid .sch-product-item .sch-description,
	#tab7 .sch-product-grid .sch-product-item .sch-star i,
	#tab7 .sch-product-grid .sch-product-item .sch-star{
		font-size: 14px;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-star {
		width: 100%;
		text-align: left;
		position: relative;
		top: 0;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-price{
		font-size: 12px;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-price-cart {
		text-align: center;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-price-cart a {
		position: relative;
		top: 0;
		right: 0;
	}
	#tab7 .sch-product-grid .sch-product-item .sch-img-1 {
		height:240px;
	}
}

/*Product List*/
#tab8 .sch-product-list{
	font-family: 'Mansalva', cursive;
}

#tab8 .sch-product-list .sch-product-item {
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.16);
	box-shadow: 0 2px 8px rgba(0,0,0,.16);
}
#tab8 .sch-product-list .sch-product-item .sch-product-images {
    display: inline-block;
    width: 30%;
    position: relative;
    background: #fff;
	float:left;
	overflow:hidden;
}
#tab8 .sch-product-list .sch-product-item .sch-img-1 {
    width: 100%;
	height:368px;
	object-fit:contain;
}
#tab8 .sch-product-list .sch-product-item .sch-social {
  position: absolute;
  top: 0px;
  left:0;
  display:none;
}
#tab8 .sch-product-list .sch-product-item:hover .sch-social {
  display:block;
}
#tab8 .sch-product-list .sch-product-item .sch-social ul {
    padding: 0px;
    -webkit-transform: translate(-260px, 0);
    -moz-transform: translate(-260px, 0);
    -ms-transform: translate(-260px, 0);
    -o-transform: translate(-260px, 0);
    transform: translate(-260px, 0);
    margin-bottom: 0;
}
#tab8 .sch-product-list .sch-product-item .sch-social ul li {
  display: block;
  margin-bottom: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 300px;
  text-align: right;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  border-radius: 0 30px 30px 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.16);
	box-shadow: 0 2px 8px rgba(0,0,0,.16);
	padding:5px;
	margin-left:10px;
}
#tab8 .sch-product-list .sch-product-item .sch-social ul li:hover {
  -webkit-transform: translate(110px, 0);
  -moz-transform: translate(110px, 0);
  -ms-transform: translate(110px, 0);
  -o-transform: translate(110px, 0);
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 0.4);
}
#tab8 .sch-product-list .sch-product-item .sch-social ul li a{
	color:#222;
}
#tab8 .sch-product-list .sch-product-item .sch-social ul li:hover a {
  color: #000;
}
#tab8 .sch-product-list .sch-product-item .sch-social ul li:hover i {
  color: #fff;
  background: red;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
#tab8 .sch-product-list .sch-product-item .sch-social ul li i {
    margin-left: 10px;
    color: #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    background: #fff;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    text-align: center;
    line-height: 30px;
}
#tab8 .sch-product-list .sch-product-item .sch-product-info {
    width: 70%;
    float: left;
    position: relative;
    padding: 50px 30px;
}
#tab8 .sch-product-list .sch-product-item .sch-price {
    font-size: 16px;
    line-height: normal;
    color: #fff;
    position: relative;
    margin-bottom: 0;
    padding: 5px 20px;
}
#tab8 .sch-product-list .sch-product-item .sch-price-cart a {
    position: absolute;
    color: #fff;
    top: 10px;
    right: 20px;
}
#tab8 .sch-product-list .sch-product-item .sch-name-description {
    display: inline-block;
}
#tab8 .sch-product-list .sch-product-name {
    position: relative;
}
#tab8 .sch-product-list .sch-product-item .sch-name {
    position: relative;
}
#tab8 .sch-product-list .sch-product-item .sch-name a {
    font-size: 20px;
    color: #222;
    margin-left: 0px;
    font-weight: bold;
    display: inline-block;
}
#tab8 .sch-product-list .sch-product-item .sch-description {
    margin-top: 20px;
    color: #222;
    font-size: 16px;
    line-height: normal;
    font-weight: 300;
}
#tab8 .sch-product-list .sch-product-item .sch-reason {
    margin: 20px 0;
    color: #777;
}
#tab8 .sch-product-list .sch-product-item .sch-social {
    margin-top: 20px;
    text-align: center;
}
#tab8 .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;
	text-align:center;
}
#tab8 .sch-product-list .sch-product-item .sch-star {
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
}
#tab8 .sch-product-list .sch-product-item .sch-star i {
    color: #8dc349;
    z-index: 1;
	font-size:16px;
}
#tab8 .sch-product-list .sch-product-item .sch-star i.disable {
    color: #aaa;
}
#tab8 .sch-product-list .sch-product-item .sch-social {
    margin: 20px 0;
    text-align: left;
}
#tab8 .sch-product-list .sch-content-item {
    width: 33.333%;
    float: left;
}
#tab8 .sch-product-list .sch-color-title, #tab8 .sch-product-list .sch-size-title, #tab8 .sch-product-list .sch-price-title {
    font-size: 16px;
    color: #222;
    font-weight: bold;
    float: left;
    width: 100%;
}
#tab8 .sch-product-list .sch-color-item,#tab8 .sch-product-list .sch-size-item ,#tab8 .sch-product-list .sch-price-item  {
    float: left;
}
#tab8 .sch-product-list .sch-content {
    display: inline-block;
    width: 100%;
	margin-top:0px;
}
#tab8 .sch-product-list .sch-color-title, #tab8 .sch-product-list .sch-size-title, #tab8 .sch-product-list .sch-price-title {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}
#tab8 .sch-product-list .sch-price-cart {
    display: inline-block;
    width: 100%;
    background: #8dc349;
    border-radius: 5px;
    position: relative;
}
#tab8 .sch-product-list .sch-color-item-white {
    background: #fff;
    width: 90%;
    height: 90%;
    margin: 1px auto;
}
#tab8 .sch-product-list .sch-color-item-black {
    background: #000;
	width: 90%;
    height: 90%;
    margin: 1px auto;
}
#tab8 .sch-product-list .sch-color-item-blue {
    background: blue;
	width: 90%;
    height: 90%;
    margin: 1px auto;
}
#tab8 .sch-product-list .sch-color-item-purple {
    background: purple;
	width: 90%;
    height: 90%;
    margin: 1px auto;
}
#tab8 .sch-product-list .sch-color-item-element, #tab8 .sch-product-list .sch-size-item-element {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    float: left;
    cursor: pointer;
	border:2px solid transparent;
	border-radius:5px;
}
#tab8 .sch-product-list .sch-color-item-element.active, #tab8 .sch-product-list .sch-color-item-element:hover, #tab8 .sch-product-list .sch-size-item-element.active, #tab8 .sch-product-list .sch-size-item-element:hover {
    border: 2px solid brown;
}
#tab8 .sch-product-list .sch-size-item-element {
    background: #8dc349;
    text-align: center;
    font-size: 12px;
    line-height: 26px;
    color: #fff;
}
#tab8 .sch-product-list .sch-product-item .sch-sale {
    background: #8dc349;
    width: 145px;
    text-align: center;
    position: absolute;
    top: -17px;
    transform: rotate(45deg);
    right: -45px;
    color: #fff;
    height: 60px;
}
#tab8 .sch-product-list .sch-product-item .sch-sale .sch-label {
    margin-top: 25px;
    margin-left: 20px;
}
@media (min-width:1024px) and (max-width:1199px) {
	#tab8 .sch-product-list .sch-product-item .sch-product-images {
		width: 35%;
	}
	#tab8 .sch-product-list .sch-product-item .sch-product-info {
		width: 65%;
	}
	#tab8 .sch-product-list .sch-product-item .sch-reason {
		margin: 17px 0;
		color: #777;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price {
		font-size: 14px;
		padding: 5px 15px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price-cart a {
		top: 5px;
		right: 15px;
	}
}
@media (max-width:990px) {
   
}
@media (min-width:980px) and (max-width:1023px) {
    #tab8 .sch-product-list .sch-product-item .sch-product-images {
		width: 35%;
	}
	#tab8 .sch-product-list .sch-product-item .sch-product-info {
		width: 65%;
	}
	#tab8 .sch-product-list .sch-product-item .sch-reason {
		margin: 10px 0;
		color: #777;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price {
		font-size: 12px;
		padding: 7px 15px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price-cart a {
		top: 5px;
		right: 15px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-img-1 {
		height: 350px;
	}
}
@media (min-width:768px) and (max-width:979px) {
    #tab8 .sch-product-list .sch-product-item .sch-product-info {
		padding:30px;
	}
	#tab8 .sch-product-list .sch-color-item-element, #tab8 .sch-product-list .sch-size-item-element {
		width: 25px;
		height: 25px;
		margin-right: 5px;
	}
	#tab8 .sch-product-list .sch-size-item-element {
		line-height: 22px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price {
		font-size: 12px;
		padding: 5px 10px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price-cart a {
		top: 7px;
		right: 10px;
		font-size: 12px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-reason {
		margin: 10px 0;
	}
	#tab8 .sch-product-list .sch-product-item .sch-reason {
		font-size: 14px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-img-1 {
		height: 291px;
	}
}
@media (min-width:640px) and (max-width:767px) {
	#tab8 .sch-product-list .sch-product-item .sch-product-images,
	#tab8 .sch-product-list .sch-product-item .sch-product-info{
		width: 100%;
	}
	#tab8 .sch-product-list .sch-color-item-element, #tab8 .sch-product-list .sch-size-item-element {
		margin-right: 5px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price {
		font-size: 14px;
		padding: 6px 5px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-price-cart a {
		top: 9px;
		right: 5px;
		font-size: 12px;
	}
}
@media (min-width:480px) and (max-width:639px) {
	#tab8 .sch-product-list .sch-product-item .sch-product-images,
	#tab8 .sch-product-list .sch-product-item .sch-product-info{
		width: 100%;
	}
	#tab8 .sch-product-list .sch-content-item {
		width: 50%;
		float: left;
		margin-bottom: 20px;
	}
	#tab8 .sch-product-list .sch-content-item:last-child {
		width: 100%;
		margin-bottom: 0px;
	}
}
@media only screen and (max-width:479px) {
	#tab8 .sch-product-list .sch-product-item .sch-product-images,
	#tab8 .sch-product-list .sch-product-item .sch-product-info{
		width: 100%;
	}
	#tab8 .sch-product-list .sch-content-item {
		width: 100%;
		float: left;
		margin-bottom: 20px;
	}
	#tab8 .sch-product-list .sch-content-item:last-child {
		margin-bottom: 0px;
	}
	#tab8 .sch-product-list .sch-product-item .sch-star {
		position: relative;
	}
	#tab8 .sch-product-list .sch-product-item .sch-reason {
		font-size: 14px;
		padding-left: 10px;
	}
}