#informer-cart { 
position: fixed;  
height:0;  
right: 0;  
top:3%;  
opacity: 0;   
transition:all 0.5s ease;  
}
#informer-cart.show {
height:auto;    
display: flex;
position: fixed;
right: 5%;
opacity: 1; 
transition:all 0.5s ease; 	
z-index:9999;  
}
.informer-block {  
display:none;
}

.show .informer-block {  
	width: 240px;
	height:60px;
    color:#fff;
	background:#13d154;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;

}
.title-price {
	font-size: 2rem;
	margin-right: 10px;
}
@media (max-width:700px) {
#informer-cart{   
left:0;
right:0;    
top:3%;  
}
#informer-cart.show {  
right:0;  
justify-content: center;  
}
}
@media (max-width:500px) {
.cart-amount.js-amount-input {
	max-width: 100px;
}
}