.shopping-cart  .btn.btn-shopping{
color:white !important;
background: linear-gradient(129.1deg, #00B0E6 -17.84%, #08E68D 83.84%) !important;
}

.shopping-cart  .btn.btn-shopping:hover{
background: #05D4AB !important;
}

.shopping-cart li:nth-child(2) .text-left{
    text-align: right !important;
}
.shopping-cart .btn.btn-checkout{
display:none !important;
}
.price-old{
   display:none !important;
}
span.price-new {
    color: red;
}

@media(max-width:998px){
.banner-blocks-container,.box-banner-container{
display:none !important;
}
}
/* Pulse cart icon */
.cart .btn-general {

	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}