// Table of Content
//==================================================
//	Product Styles
//	Products-list Styles
//	Checkout Styles
//  Invoice Styles
//  Quote Styles
//==================================================
// Product Styles
//==================================================
@import "../store/product";
// Products-list Styles
//==================================================
@import "../store/products-list";
// Checkout Styles
//==================================================
@import "../store/checkout";
// Post purchase OR Thank you page
//==================================================
@import "../store/post-purchase";
// Quote Styles
//==================================================
@import "../store/quote";
//user landing
@import "../store/user-landing";

.toaster-cart {
	position    : relative;
	padding     : 21px 0;
	width       : 130px;
	float       : right;
	text-align  : right;
	border-left : 1px solid #444;

	@media only screen and (max-width : @responsive-size-tablet) {
		padding : 21px;
		width   : 100%;
		float   : none;
	}

	&:before {
		content     : "\e02c";
		font-family : 'flexkit-icons';
		position    : absolute;
		left        : 18px;
		top         : 14px;
		font-size   : 24px;
	}

	.cartblock-totaltax-row {
		display : none;
	}

	> div {
		& span:first-child {
			display : none;
		}
	}

	.cart-items-count {
		&:after {
			content : " items";
		}
	}

	.dropdown-menu & {
		padding      : 20px;
		font-size    : 18px;
		border-width : 0;
		width        : 100%;
		&:before {
			left      : 18px;
			top       : 16px;
			font-size : 40px;
		}
	}
	.cartblock-gotocart-row a {
		color       : #99178c;
		font-weight : bold;
	}
}