body.cart-open {
	position:relative !important;
	max-width:100% !important;
	max-height:100% !important;
	overflow:hidden !important;
	}
.page_loader {
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	height:100vh;
	z-index:99999999;
	background:rgba(255,255,255,0.8);
	display:flex;
	align-items:center;
	}
.page_loader .page_loader_inner {
	display:block;
	width:100%;
	text-align:center;
	}
.page_loader img {
	display:block;
	width:150px;
	margin:0 auto;
	}
.page_loader svg {
	display:block;
	width:100px;
	margin:0 auto;
	-webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* =Header
----------------------------------------------- */
.upper_topbar_bg {
	background:var(--gray-color);
	padding-top:8px;
	padding-bottom:8px;
	font-size: 12px;
	color:#aaaaaa;
	overflow:hidden;
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}
body.header-fixed .upper_topbar_bg {
	padding-top:0px;
	padding-bottom:0px;
	height:0px;
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}

.upper_topbar_bg svg {
	position: relative;
    top: 2px;
	width:14px;
	vertical-align:top;
	margin-right:7px;
	}
.upper_topbar_bg svg * {
	fill:#aaaaaa;
	}
.contact-item { margin-right:22px; }

.contact-item.payfee {
	display:inline-block;
	padding:8px 20px;
	border-radius:3px;
	color:var(--white-color);
	font-size:12px;
	text-transform:uppercase;
	position:relative;
	margin-top:-6px;
	margin-bottom:-7px;
	}
.contact-item.payfee:before {
	content:"";
	display:block;
	width:100%;
	height:0px;
	border-radius:3px;
	background:#504cdc;
	position:absolute;
	left:0px;
	top:0px;
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}
.contact-item.payfee:hover:before {
	height:100%;
	}
.contact-item.payfee span {
	position:relative;
	z-index:9;
	}
.contact-item.social_media {
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}

.contact-item.social_media a { 
	display:inline-block; 
	margin-left:10px; 
	width:14px;
	height:16px;
	text-align:center;
	padding:0px;
	position:relative;
	overflow:hidden;
	}
.contact-item.social_media a:first-child { margin-left:5px; }
.contact-item.social_media a:before { 
	content:"";
	display:block; 
	width:34px;
	height:32px;
	position:absolute;
	left:0px;
	top:-36px;
	opacity:0;
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}
.contact-item.social_media a:hover:before {
	top:0px; opacity:1;
	}
.contact-item.social_media svg { width:14px; height:14px; position:relative; z-index:9; margin:0 auto; }
.contact-item.social_media svg * { fill:#aaaaaa; }
.contact-item.social_media a:hover svg * { fill:#ZZZZZZ; }
	
.header_section {
	position:relative;
	}
.inner_page .header_section.no_banner {
	/*border-bottom:2px solid #d7d7d7;*/
	background:var(--white-color);
	}
.header-wrapper {
	position:fixed; left:0px; top:0px; z-index:9999;
	width:100%;
	}
.topbar_bg {
	background:var(--white-color);
	padding:0px;
	width:100%;
	box-shadow: 0px 1px 0px rgba( 0,0,0,0.1 );
	}
body.home:not(.header-fixed) .topbar_bg,
body.page-template-blog-list-page:not(.header-fixed) .topbar_bg {
	box-shadow:none;
	background-color:var(--white-color);
	
	}
#topbar {
	height:86px;
	position:relative;
	padding-top:1px;
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}
.navigation_inner{display: flex;
	float: right;
	align-items: center;}
body.header-fixed #topbar {
	/*height:90px;*/
	}
	
.inner_page .main_banner_sep { height:80px; background:var(--white-color); }
.header_img_wrapper {
	position:relative;
	width:100%;
	overflow:hidden;
	}
#logo {
	position:absolute; left:15px;
	text-align:center;
	line-height:1;
	padding:24px 0px;
	z-index:99999;
	background:none !important;
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
	}
body.header-fixed #logo {
	/*top:16px;*/
	}
#logo a {
	display:block;
	color:var(--white-color);
	line-height: 1.2;
	white-space:nowrap;
	}

#logo a img { display:block; max-width:100%; height:36px; }

[data-theme=dark] .show-light-theme,
[data-theme=light] .show-dark-theme {
	display: none !important;
}

body.home:not(.header-fixed) #logo img {
	/*filter: brightness(0) invert(1);*/
	}

.menu_logo {
	display: none;
}

.tbarbtn {
	background:#11338d; display:inline-block; text-align:center;
	font-size:14px; color:#FFFFFF; font-weight: 600;
	text-decoration:none !important;
	text-transform:uppercase; white-space:nowrap;
	padding:9px 20px; min-width:225px; height:38px;
	border-radius:4px; cursor:pointer;
	transition: all 0.5s ease-out 0s; -webkit-transition: all 0.5s ease-out 0s;
	}
.tbarbtn:hover { background:#fec107; }

.tbarbtn1 { float:left; margin-right:25px; }

.tbartxt {
	font-family: 'Open Sans', serif !important;
	color:#999999; font-size:15px;
	line-height:1.5; padding-top:10px;
	text-align:center;
	margin:0 auto;
	max-width:calc(100% - 630px);
	}
	
.login-btn{
	background-color: #D4393C;
	font-size: 16px;
	font-weight: 400;
	border: none;
	font-family: Noto Sans Display;
	color: #ffffff;
	border-radius: 3px;
	padding: 10px 18px; 
	cursor: pointer;
	}
.login-btn:hover{background-color: #d4393c; }

.mode_switch_wrapper {
	position: absolute;
	right:15px;
	top:25px;
	z-index: 99999;
}
.mode_switch {
	height: 40px !important;
    width: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(191, 198, 222, .5);
}
.mode_switch:hover {
    transform: scale(1.05);
}
[data-theme=dark] .mode_switch {
	border: none;
    background-color: rgb(40, 41, 41);
}
[data-theme=dark] .mode_switch.dark,
[data-theme=light] .mode_switch.light {
	display: none;
}

/*------------------------------------------------------------ */
.main_wrapper {
	background: url(images/main_bg.gif) no-repeat center top #f9edce;
	background-size: 100%, 100%;
	padding:0px 0px 0;
	}

/* =Menu
-------------------------------------------------------------- */
.nav_bg{
	width:100%;
	/*padding:0;*/
	position:relative;
	z-index:99;
	}
.nav_btn { display:none; }

@media (min-width:980px){
.nav_bg {}
.navigation_main { position:relative; }
.menu_fix.fixed .navigation_main .tbar_cart { display:block; }
#navigation { 
	display:block !important; 
	position:relative; 
	font-family: "Open Sans",serif;
	left:0px !important; 
	padding-left:200px;
	padding-right:40px;
	}
body.header-fixed #navigation { height:65px !important; }
body.menu_fixed #navigation { padding-left: 0px; }
.menu-header-menu-container {
	/*height:100px;*/
	}
.menu-pull-right { float:right; }


#navigation ul {
	font-family: Noto Sans Display;
	font-weight:600;
	font-size: 16px;
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#navigation li {
	padding: 44px 20px;
	float: left;
	position: relative;
}
#navigation li a{color:black;}
#navigation li a:hover{color: #D4393C;}
#navigation li li {
	float: none;
	padding: 0px;
}
#menu-header-menu a {
	color: #2b1149;
	display: block;
	line-height: 3.333em;
	padding: 0;
	text-decoration: none;
}
#menu-header-menu a svg {
	position: relative;
    top: 2px;
    margin-right: 5px;
}
#menu-header-menu > li {
	display: inline-block;
	position: relative;
	text-align: left;
	float: left;
	vertical-align: middle;
	line-height: 20px;
	padding: 14px 13px;
	margin: 0 0 0 1px;
	z-index: 99996;
}
/*body.header-fixed #menu-header-menu > li {
	height: 60px;
}*/
#menu-header-menu > li:first-child {
	margin-left:0px;
}
#menu-header-menu > li > a {
	font-family: 'Noto Sans Display', sans-serif; 
	font-weight:400;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	padding: 0px 0px;
	color: var(--black-color);
	line-height: 20px;
	letter-spacing: 0px;
	font-style: normal;
	font-size: 16px;
	vertical-align:top;
	text-transform: none;
	border-bottom: 2px solid rgba(0,0,0,0);
	transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-out 0s;
}
#menu-header-menu > li > a:hover {
	border-bottom-color:#d4393c;
}

body.home:not(.header-fixed) #menu-header-menu > li > a {
	
}
#menu-header-menu > li.menu-item-has-children > a {
	padding-right: 15px;
	position: relative;
}
#menu-header-menu > li.menu-item-has-children > a:before {
	content: "";
	display: block;
	width: 0px;
	height: 0px;
	border-top:5px solid var(--black-color);
	border-right:4px solid rgba(0,0,0,0);
	border-left:4px solid rgba(0,0,0,0);
	position: absolute;
	right:0px;
	top:8px;
}
#menu-header-menu > li > a.active,
#menu-header-menu > li:hover > a,
#menu-header-menu > li > a:hover,
#menu-header-menu > li.current-menu-item > a,
#menu-header-menu > li.current_page_item > a,
#menu-header-menu > li.current-menu-parent > a {
	color:#d4393c !important;
	}
#menu-header-menu > li > a.active:before,
#menu-header-menu > li:hover > a:before,
#menu-header-menu > li > a:hover:before,
#menu-header-menu > li.current-menu-item > a:before,
#menu-header-menu > li.current_page_item > a:before,
#menu-header-menu > li.current-menu-parent > a:before {
	border-top-color:#d4393c !important;
	}

#menu-header-menu .sub-menu {
	border:none;
	position:absolute; left:10px; top:calc(100% - 2px) !important;
	padding: 5px 0px;
	background: #fff;
	border-radius:5px;
	opacity:0;
	transform: translate(0,-50%) scale(1,0);
	-webkit-transform: translate(0,-50%) scale(1,0);
	border: 1px solid rgba(51,51,51,0.1);
	transition: all 0.5s ease-out 0s; -webkit-transition: all 0.5s ease-out 0s;
	}
/*body.header-fixed #menu-header-menu .sub-menu {
	top:calc(100% - 2px) !important;
	}*/
body.header-fixed #menu-header-menu .sub-menu .sub-menu,
#menu-header-menu .sub-menu .sub-menu {
	left:100%; top:0px !important;
	}
#menu-header-menu li:hover > .sub-menu {
    /*top:calc(100% + 2px) !important;*/
	opacity:1;
	transform: translate(0,0) scale(1,1);
	-webkit-transform: translate(0,0) scale(1,1);
	}
#menu-header-menu ul ul {
	display: none;
	float: left;
	margin: 0;
	position: absolute;
	top: 3.333em;
	left: 0;
	min-width: 188px;
	z-index: 99999;
}
#menu-header-menu ul ul {
	left: 100%;
	top: 0;
}
#menu-header-menu .sub-menu li { margin-top:0px; }
#menu-header-menu .sub-menu li:first-child { margin-top:0px; }
#menu-header-menu .sub-menu a {
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #000;
	font-size: 15px;
	font-weight: 400;
	height: auto;
	line-height: 1.4em;
	padding: 4px 15px;
	min-width: 145px;
	white-space:nowrap;
	background:#fff;
	border-radius: 4px;
	}
#menu-header-menu .sub-menu li:first-child > a {
	border-top:none;
	}
#menu-header-menu ul li:hover > ul {
	display: block;
	}
#menu-header-menu .sub-menu > li.current-menu-item > a,
#menu-header-menu .sub-menu > li.current_page_item > a {
	color:#d4393c;
}
#menu-header-menu .sub-menu li:hover > a,
#menu-header-menu .sub-menu a:focus,
#menu-header-menu .sub-menu .current-menu-item > a:hover,
#menu-header-menu .sub-menu .current-menu-ancestor > a:hover,
#menu-header-menu .sub-menu .current_page_item > a:hover,
#menu-header-menu .sub-menu .current_page_ancestor > a:hover {
	color: #d4393c;
	}
}