/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/*CARRELLO*/
.woocommerce-cart .alignwide {margin-inline: auto !important;}
.woocommerce-checkout .alignwide {margin-inline: auto !important;}


.wp-block-product-new {display: none !important;}


/*TOAST*/

.wc-toast{
	position:fixed;
	bottom:50px;
	right:50px;
	z-index:9999;
	background:#111;
	color:#fff;
	padding:14px 18px;
	border-radius:8px;
	opacity:0;
	transform:translateY(-10px);
	transition:.25s ease;
	box-shadow:0 8px 25px rgba(0,0,0,.2);
	max-width:320px;
	font-size:14px;
	line-height:1.4;
	text-align:center;
}

.wc-toast.show{
	opacity:1;
	transform:translateY(0);
}

.wc-toast a{
	color:#fff;
	text-decoration:underline;
	display:block!important;
	text-align:center!important;
	margin-top:15px!important;
}


/* 📱 mobile */
@media (max-width: 789px){

	.wc-toast{
		right:auto;
		left:50%;
		bottom:20px;
		transform:translate(-50%, 10px);
		width:calc(100% - 32px);
		max-width:420px;
	}

	.wc-toast.show{
		transform:translate(-50%, 0);
	}

}