/*main*/
.custom-responsive-desktop {
  display: inline-block;
}
.custom-responsive-tablet, .custom-responsive-mobile {
  display: none;
}

/*woocommerce*/
.woocommerce .cart-collaterals .cart_totals .cart-promo, .woocommerce-page .cart-collaterals .cart_totals .cart-promo {
  margin-bottom: 27px;
  text-align: center;
}

/*responsive*/
@media (max-width: 768px) {
  
  /*main*/
  .custom-responsive-desktop {
    display: none;
  }
  .custom-responsive-tablet {
    display: inline-block;
  }
  
  /*woocommerce*/
  .woocommerce .cart-collaterals .cart_totals .cart-promo, .woocommerce-page .cart-collaterals .cart_totals .cart-promo {
    margin-bottom: 22px;
    text-align: center;
  }
	
}
@media (max-width: 479px) {
  
  /*responsive*/
  .custom-responsive-desktop, .custom-responsive-tablet {
    display: none;
  }
  .custom-responsive-mobile {
    display: inline-block;
  }
	
}
@media (max-width: 375px) {
  
  /*woocommerce*/
  .woocommerce .cart-collaterals .cart_totals .cart-promo, .woocommerce-page .cart-collaterals .cart_totals .cart-promo {
    margin-bottom: 21px;
    text-align: center;
  }
	
}