/*
 * Inline styles lifted verbatim out of desktop-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.
 */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    -webkit-locale: auto;
	}
	*:focus {
    outline: 0 !important;
	}
	ul, ol, li{
    margin: 0;
    padding: 0;
    list-style: none;
	}
	
	html{
	scroll-behavior: smooth;
	}
	
	body {
	background: #ffffff;
	font-family: 'Poppins-Regular';
	font-size: 18px;
	color: #565656;
	overflow-x: hidden;
	line-height: 26px;
	}
	
	a.logo {
    position: fixed;
    background: #fff;
    width: 200px;
    height: 200px;
    text-align: center;
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 3;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
	}
	a.logo img {
    top: calc(50% + 10px);
    position: relative;
	}
	
	
	header.sticky-header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 40px;
    z-index: 11;
    background: rgba(255,255,255,0.5);
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	transition: 1.5s;
	}
	
	.header-menu-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1230px;
	}
	ul.nav.navbar-nav {
    text-align: center;
    position: relative;
    padding-left: 120px;
	}
	
	
	
	li.nav_item_first {
    display: inline-flex;
	}
	li.nav_item_first a {
    color: #020204;
    padding: 7px 10px 5px 10px;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    font-size: 15px;
    transition: 0.5s;
	}
	li.nav_item_first a:hover {
    background: #ad0a4c;
    color: #fff;
	}
	li.nav_item_first.logo {
    position: absolute;
    left: 0;
    top: -38.5px;
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	}
	li.nav_item_first.logo a {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    top: 0px;
	}
	li.nav_item_first.logo a:hover {
    background: none;
	}
	li.nav_item_first.logo img {
    width: 100px;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
	}
	
	
	header.sticky-header.dark-bg-menu {
    background: rgb(237 15 105 / 100%);
	top: 0;
	box-shadow: rgba(99, 99, 99, 1) 0px 2px 8px 1px;
	}
	header.sticky-header.dark-bg-menu li.nav_item_first a {
    color: #fff;
	}
	li.nav_item_first.logo img {
    transition: 1.5s;
	}
	header.sticky-header.dark-bg-menu li.nav_item_first.logo img {
    top: calc(50% + 6px);
	}
	
	
	
	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;
	}
	
	.mobile-device {
	display: none;
	}
	
	
	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%;
	}
	}
