/*
 * Inline styles lifted verbatim out of header.blade.php by tools/blade-to-jsx.mjs.
 *
 * It lived inline in the template, so it loads after the shared stylesheets and keeps the
 * same precedence here. Edit the Blade original and re-run the port rather than editing
 * this file, or the two versions drift silently — which is the whole thing this rebuild
 * is trying to avoid.
 */
li.nav_item_first.cart-icon {
    position: absolute;
    top: 0px;
    right: 0;
}
li.nav_item_first.cart-icon a {
    margin: 0;
    padding: 3px 10px;
    line-height: 0;
}

li.nav_item_first.user-login {
    position: absolute;
    top: 0px;
    right: 40px;
    height: 100%;
}
li.nav_item_first.user-login a {
    margin: 0;
    padding: 0 10px;
    line-height: 64px;
}
li.nav_item_first.cart-icon a:hover { background: #fff;
    padding: 3px 10px;}
	
	li.nav_item_first.user-login a:hover{ background: #fff;
    padding: 0px 10px;}
	
	li.nav_item_first.user-login a img {
    position: relative;
    float: left;
    margin-top: 2px;
}

span.cart-count {
    position: absolute;
    width: 25px;
    height: 25px;
    top: -4px;
    right: 0px;
    background: #ed0f69;
    line-height: 27px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
}
	
	
	
	li.nav_item_first a.active {
	background: #ad0a4c;
	overflow: hidden;
	position:relative;
	color: #fff;
	}
	
	
	li.nav_item_first a.active:before{
	content:'';
	position: absolute;
	left: -20%;
	top:-10%;
	width: 0;
	height: 100%;
	transform: rotate(15deg) scale(1, 2);
	box-shadow: 0 0 30px 15px rgba(255, 255, 255, 0.7);
	animation: button-glow 2500ms ease-in-out infinite;
	}
	
	@keyframes button-glow {
	0% {
    left: -50%;
	}
	50% {
    left: 150%;
	}
	100% {
    left: 150%;
	}
	}
	
	
@media only screen and (max-width: 767px) {
	
	li.nav_item_first.cart-icon {
    position: relative;
}
li.nav_item_first.logo img {
    width: 80px;
}
ul.nav.navbar-nav {
    padding-left: 0;
}
	li.nav_item_first.user-login {
    position: relative;
    right: 0;
}
li.nav_item_first.user-login a {
    padding: 5px 10px;
    line-height: 0;
}

li.nav_item_first.cart-icon a img,li.nav_item_first.user-login a img {
    filter: contrast(0.5);
}
	}
