/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* MENU - Add swedish label in burger menu */
.nav>li.nav-icon>a:before{
	color: #fff;
	content: "Meny";
	text-transform: uppercase;	
	padding: 0 8px 0 0;
	line-height: 1.2;
	opacity: 1 !important;
}

/* MENU - Remove built in label in burger menu */
.nav>li.nav-icon>a>span {
	display: none;
}

/* PRODUCT - Hide price when not logged in */
.price-wrapper {
	display: none !important;
}

/* PRODUCT - Hide Add to cart when not logged in */
.single_variation_wrap {
	display: none !important;
}

/* WHOLESALE - Change color of add to cart button */
.single_add_to_cart_button {
	background-color: #00718e !important;
}

/* CART - Hide cart if not logged in */
li.cart-item, li.header-divider:nth-child(2) {
	display: none !important;
}

/* CART - Show cart if logged in */
body.logged-in li.cart-item, body.logged-in li.header-divider:nth-child(2) {
	display: inherit !important;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

	/* MENU - Remove swedish label in burger menu mobile */
	.nav>li.nav-icon>a:before{
		display: none;
	}

}