#nav-demo-1 {
    text-align: center;
}
.sch-shopping-cart-1 {
  width: 750px;
  height: auto;
  margin: 10px auto;
  background: #FFFFFF;
  box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sch-shopping-cart-1 .sch-title {

    height: 60px;
    border-bottom: 1px solid #E1E8EE;
    padding: 20px 30px;
    color: #5E6977;
    font-size: 20px;
    font-weight: bold;

}
.sch-shopping-cart-1 .sch-total {
    width: 100%;
    background: red;
    text-align: right;
    padding: 10px 60px;
}

#sch-cart-content-full .sch-effect {
    color: rgba(255,255,255,1);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
}
#sch-cart-content-full .sch-update,#sch-cart-content-full .sch-checkout {
    line-height: 50px;
    height: 50px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width:100px;
    cursor: pointer;
	border-radius:5px;
}
#sch-cart-content-full .sch-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: red;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
	border-radius:5px;
}
#sch-cart-content-full .sch-effect span {
    z-index: 2;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
#sch-cart-content-full .sch-effect:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

#sch-cart-content-full .sch-shopping-cart-1 .sch-item {
  padding: 20px 10px;
  height: 120px;
  display: flex;
  transition: transform .2s; 
}
#sch-cart-content-full .sch-shopping-cart-1 .sch-item:hover {
  transform: scale(1.2);
  background:#fff;
}
#sch-cart-content-full .sch-shopping-cart-1 .sch-item:nth-child(2) {
  border-top:  1px solid #E1E8EE;
  border-bottom:  1px solid #E1E8EE;
}
#sch-cart-content-full .sch-update-checkout {
    display: flex;
    width: 20%;
    margin: 0 auto;
}
/* Buttons -  Delete and Like */
.sch-shopping-cart-1 .sch-buttons {
  position: relative;
  padding-top: 30px;
  margin-right: 60px;
}

.sch-shopping-cart-1 .sch-buttons .sch-delete-btn {
  display: inline-block;
  cursor: pointer;
  width: 18px;
  height: 17px;
  margin-right: 20px;
}

.sch-shopping-cart-1 .sch-buttons .sch-like-btn {
  position: absolute;
  top: auto;
  left: 35px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: 2900%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0%   { background-position: left;  }
  50%  { background-position: right; }
  100% { background-position: right; }
}

/* Product Image */
.sch-shopping-cart-1 .sch-image {
  margin-right: 50px;
}

/* Product Description */
.sch-shopping-cart-1 .sch-description {
  padding-top: 10px;
  margin-right: 60px;
  width: 115px;
}

.sch-shopping-cart-1 .sch-description span {
  display: block;
  font-size: 14px;
  color: #43484D;
  font-weight: 400;
}

.sch-shopping-cart-1 .sch-description span:first-child {
  margin-bottom: 5px;
}
.sch-shopping-cart-1 .sch-description span:last-child {
  font-weight: 300;
  margin-top: 8px;
  color: #86939E;
}

/* Product Quantity */
.sch-shopping-cart-1 .sch-quantity {
  padding-top: 20px;
  margin-right: 60px;
}
.sch-shopping-cart-1 .sch-quantity input {
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: #43484D;
  font-weight: bold;
}

.sch-shopping-cart-1 .sch-buttons .sch-delete-btn,.sch-shopping-cart-1 .sch-buttons .sch-like-btn,
.sch-shopping-cart-1 .sch-quantity .sch-plus-btn,.sch-shopping-cart-1 .sch-quantity .sch-minus-btn{
  width: 30px;
  height: 30px;
  background-color: #E1E8EE;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size:12px;
  color:#aaa;
  
}
.sch-shopping-cart-1 .sch-buttons .sch-delete-btn:hover,.sch-shopping-cart-1 .sch-buttons .sch-like-btn:hover,
.sch-shopping-cart-1 .sch-quantity .sch-plus-btn:hover,.sch-shopping-cart-1 .sch-quantity .sch-minus-btn:hover{
  background-color: red;
  color:#fff;
  
}
button:focus,
input:focus {
  outline:0;
}
.sch-cart-button1 {

    background: url(../images/cart.png) no-repeat;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    margin-top: 20px!important;
	margin:0 auto;

}
.sch-number-item {

    background: red;
    position: absolute;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
    width: 25px;
    border-radius: 50%;
    height: 25px;
    top: -15px;

}
.sch-shopping-cart-1 .sch-arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
/* Total Price */
.sch-shopping-cart-1 .sch-total-price {
  width: 83px;
  padding-top: 27px;
  text-align: center;
  font-size: 18px;
  color: #43484D;
  font-weight: bold;
}

/* Responsive */
@media (min-width: 1024px) and (max-width: 1199px){
	#sch-cart-content-full .sch-update-checkout {

		width: 25%;

	}
}
@media (min-width: 980px) and (max-width: 1023px){
	#sch-cart-content-full .sch-update-checkout {

		width: 25%;

	}
}
@media (min-width: 641px) and (max-width: 979px){
	.sch-shopping-cart-1 {
		width: 100%;
	}
	.sch-shopping-cart-1 .sch-quantity {

		display: flex;

	}
	.sch-shopping-cart-1 .sch-quantity input {

		height: 30px;

	}
	.sch-shopping-cart-1 .sch-item div {

		flex-basis: 20%;
		margin-right: 10px;

	}
	.sch-shopping-cart-1 .sch-item .sch-buttons {

		display: flex;

	}
	.sch-shopping-cart-1 .sch-description span {

		font-size: 10px;

	}
	#sch-cart-content-full .sch-update-checkout {
		width: 40%;

	}
}
@media (max-width: 640px) {
  .sch-shopping-cart-1 {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .sch-shopping-cart-1 .sch-item {
    height: auto!important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sch-shopping-cart-1 .sch-image img {
    width: 50%;
  }
  .sch-shopping-cart-1 .sch-image,
  .sch-shopping-cart-1 .sch-quantity,
  .sch-shopping-cart-1 .sch-description {
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }
  .sch-shopping-cart-1 .sch-buttons {
    margin-right: 20px;
  }
  .sch-shopping-cart-1 .sch-total {
		text-align: center;
}
	#sch-cart-content-full .sch-shopping-cart-1 .sch-item:hover {
	  transform: scale(1);
	  background:#fff;
	}
	#sch-cart-content-full .sch-update-checkout {
		width:100%;

	}
  
}
