.floating-bar {
    display: none; 
}
@media (max-width: 992px) {
    .floating-bar {
        background-color: white;
    	border: 1px solid #e9ecef;
    	bottom: 0;
    	height: 4rem;
    	left: 0;
    	margin-left: 0;
    	opacity: 1;
    	pointer-events: auto;
    	transform: translateY(0);
    	position: fixed;
    	transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    	width: 100%;
    	z-index: 1030;
    }
    
    .floating-bar__wrapper {
        align-items: center;
    	display: flex;
    	height: 100%;
    	margin-left: auto;
    	margin-right: auto;
    	max-width: 1400px;
    	padding: 0 .5rem;
    	width: 100%; 
    }
    
    .floating-bar__actions {
        width: 100%;
    }
    
    .floating-bar__btn-add-to-cart {
        width: 100%;
    }
    
    .bar-show {
        display: block;  
    }
    
    .bar-hide {
        display: none;   
    }
    
    .site-buy .scroll-to-top-arrow {
        bottom: 4.5rem;        
    }
}