.cart_dropdown_link {
	font-size: 2.5rem !important;
}
.menu-item.cart_dropdown.av-display-cart-on-load {
	width: 135px;
	height: 50px;
}
.dropdown_widget.dropdown_widget_cart {
	background: #FFF;
}
#menu-item-1151 a {
	background: var(--enfold-alternate-color-button-border2);
	max-height: 30px;
	line-height: 2.3 !important;
	margin-top: 20px;
	color: #FFF;
	border-radius: 40px;
}
#menu-item-1151 {
	animation: expandUp 1s;
}

#header.header-scrolled-full #menu-item-1151 {
	display: block;
	top: -17px !important;
}
.avia-menu.av-main-nav-wrap.av_menu_icon_beside {
	margin-right: 13px;
	border-color: transparent;
}

.cart_dropdown_link {
	background: #FFF !important;
}

#socket #menu-item-1151 a {
	background: transparent !important;
	color: var(--enfold-alternate-color-button-border);
	line-height: inherit !important;
	margin-top: 0 !important;
}

/*
==============================================
expandUp
==============================================
*/


.expandUp{
	animation-name: expandUp;
	-webkit-animation-name: expandUp;

	animation-duration: 0.7s;
	-webkit-animation-duration: 0.7s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;

	visibility: visible !important;
}

@keyframes expandUp {
	0% {
		transform: translateY(100%) scale(0.6) scaleY(0.5);
	}
	60%{
		transform: translateY(-7%) scaleY(1.12);
	}
	75%{
		transform: translateY(3%);
	}
	100% {
		transform: translateY(0%) scale(1) scaleY(1);
	}
}

@-webkit-keyframes expandUp {
	0% {
		-webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
	}
	60%{
		-webkit-transform: translateY(-7%) scaleY(1.12);
	}
	75%{
		-webkit-transform: translateY(3%);
	}
	100% {
		-webkit-transform: translateY(0%) scale(1) scaleY(1);
	}
}