#ppCart, #ppCartEmpty {
	 background: #fff;
	 position: fixed;
	 top: 160px;
	 right: 30px;
	 width: 0;
	 max-height: 0;
	 z-index: 99;
	 transition: max-height 0.3s 0.1s, width 0.3s 0.1s, box-shadow 0.7s 0.5s;
	 transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
	 box-shadow: 0px 0px 40px -10px transparent;
	 -webkit-transform: translateZ(0);
	 transform: translateZ(0);
	 overflow: hidden;
}
 #ppCart.open, #ppCartEmpty.open {
	 width: 530px;
	 max-height: 800px;
	 box-shadow: 0px 0px 40px -10px rgba(0, 0, 0, 0.5);
     z-index:2000;
}

 #ppCart.open .empty .logo svg, #ppCartEmpty.open .empty .logo svg {
	 max-width: 100px;
}
 #ppCart.open .messBottom, #ppCartEmpty.open .messBottom {
	 opacity: 1;
	 transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
	 transition-delay: 0.4s;
}
 #ppCart.open .list, #ppCartEmpty.open .list {
	 opacity: 1;
	 transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
	 transition-delay: 0.4s;
}
 #ppCart.open .list .item, #ppCartEmpty.open .list .item {
	 -webkit-transform: translateX(-100%);
	 transform: translateX(-100%);
}
 #ppCart .empty p, #ppCartEmpty .empty p {
	 font-size: 13px;
	 text-align: center;
	 padding: 0 50px;
	 color: #fff;
	 font-weight: 300;
	 margin-bottom: 20px;
}
 #ppCart .empty .logo, #ppCartEmpty .empty .logo {
	 display: block;
	 margin: 0 auto;
	 text-align: center;
	 padding-top: 50px;
	 padding-bottom: 30px;
}
 #ppCart .empty .logo svg, #ppCartEmpty .empty .logo svg {
	 max-width: 0px;
	 margin: 0 auto;
}
 #ppCart .empty .logo span, #ppCartEmpty .empty .logo span {
	 display: block;
	 text-align: center;
	 text-transform: uppercase;
	 font-size: 15px;
	 margin: 10px 0 0;
}
 #ppCart .cart-summary-list, #ppCartEmpty .cart-summary-list {
	 overflow-y: auto;
	 overflow-x: hidden;
	 max-height: 400px;
	 display: block;
	 list-style: none outside;
	 padding: 0;
	 margin: 0 0 0 0;
	 font-size: 15px;
	 line-height: 20px;
}
 #ppCart .cart-summary-remove-item:hover {
	 color:#c02942;
}
.ppCartMobile{
    width: 100%!important;
    top: 0px!important;
    right: 0px!important;
}
.ppCartMobile .text15{
    font-size:15px;
}