/* Burger Menu */
.burger-menu {
	width: 20px;
	height: 17px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	-webkit-transition: transform 330ms ease-out;
	-moz-transition: transform 330ms ease-out;
	-o-transition: transform 330ms ease-out;
	transition: transform 330ms ease-out;
}
.burger-menu.menu-open {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.line-menu {
	background-color: #222222;
	border-radius: 2px;
	width: 100%;
	height: 3px;
}
.line-menu.line-half {
	width: 50%;
}
.line-menu.first-line {
	transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
	transform-origin: right;
}
.menu-open .line-menu.first-line {
	-webkit-transform: rotate(-90deg) translateX(3px);
	-moz-transform: rotate(-90deg) translateX(3px);
	-o-transform: rotate(-90deg) translateX(3px);
	transform: rotate(-90deg) translateX(3px);
}
.line-menu.last-line {
	align-self: flex-end;
	transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
	transform-origin: left;
}
.menu-open .line-menu.last-line {
	-webkit-transform: rotate(-90deg) translateX(-3px);
	-moz-transform: rotate(-90deg) translateX(-3px);
	-o-transform: rotate(-90deg) translateX(-3px);
	transform: rotate(-90deg) translateX(-3px);
}
.header-logo img{
	max-width: 170px;
}
/* Header Menu */
.dl-header-wrap{
	background-color: #fff;
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 999;
}
.header-inner{
	height: 80px;
}
.dl-header-wrap.header-transparent-on,
.dl-header-wrap.header-opacity-on {
	position: absolute;
	width: 100%;
	background-color: transparent;
}
.dl-header-wrap.header-opacity-on {
	background-color: rgba(0,0,0,0.3);
}
.dl-header-wrap.sticky {
	position: fixed;
	width: 100%;
	-webkit-box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: stickyTransition;
	animation-name: stickyTransition;
}
.admin-bar .no-sticky{
	margin-top: 32px!important;
}
.admin-bar .no-sticky.header-opacity-on,
.admin-bar .no-sticky.header-transparent-on {
    margin-top: 0!important;
}
.admin-bar .dl-header-wrap.header-opacity.sticky,
.admin-bar .dl-header-wrap.header-opacity-on,
.admin-bar .dl-header-wrap.header-transparent.sticky,
.admin-bar .dl-header-wrap.header-transparent-on{
	top: 32px;
}
@media (max-width: 782px){
	.admin-bar .dl-header-wrap.header-opacity.sticky,
	.admin-bar .dl-header-wrap.header-opacity-on,
	.admin-bar .dl-header-wrap.header-transparent.sticky,
	.admin-bar .dl-header-wrap.header-transparent-on{
		top: 46px;
	}
	.admin-bar .no-sticky{
		margin-top: 0!important;
	}
}
@-webkit-keyframes stickyTransition {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, -100%, 0);
	  transform: translate3d(0, -100%, 0);
	}
	to {
	  opacity: 1;
	  -webkit-transform: none;
	  transform: none;
	}
}
@keyframes stickyTransition {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, -100%, 0);
	  transform: translate3d(0, -100%, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: none;
	  transform: none;
	}
}
.viewport-lg .dl-menu-wrap{
	display: block!important;
}
.dl-menu-wrap ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.dl-menu-wrap ul li{
	display: inline-block;
	position: relative;
}
.dl-menu-wrap ul li > a{
	display: block;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	letter-spacing: 0;
	text-transform: uppercase;
	font-weight: 600;
	color: #222;
	padding: 0 15px;
	height: 80px;
	line-height: 80px;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}
.dl-menu-wrap ul li:hover > a{
	color: #444;
}
.dl-menu-wrap li ul{
	background-color: #222;
	display: block;
	width: 250px;
	padding: 30px 0;
	-webkit-box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
	position: absolute;
	left: -35px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 0;
	-webkit-transition: opacity .5s ease, visibility .5s ease;
    -o-transition: opacity .5s ease, visibility .5s ease;
    transition: opacity .5s ease, visibility .5s ease;
}
.dl-menu-wrap li:hover > ul{
	opacity: 1;
	visibility: visible;
	z-index: 99;
}
.dl-menu-wrap li li{
	display: block;
	padding: 0 35px;
	margin-bottom: 5px;
	text-align: left;
	position: relative;
}
.dl-menu-wrap li li:last-child{ margin: 0; }
.dl-menu-wrap li li > a{
	font-family: "Open Sans", sans-serif;
	display: block;
	height: auto;
	line-height: inherit;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0;
    line-height: 2.5;
    text-transform: capitalize;
    padding: 1px 7px;
	font-size: 12px;
	-webkit-font-smoothing: antialiased;
}
.dl-menu-wrap li li:hover > a{
	color: #fff;
	background-color: rgba(255,255,255,.05);
}
.dl-menu-wrap li ul li ul{
	width: 250px;
	position: absolute;
	left: 100%;
	top: 0;
}

/* Transparent Header */
.header-opacity-on .dl-menu-wrap ul li > a,
.header-transparent-on .dl-menu-wrap ul li > a{
	color: #ddd;
}
.header-opacity-on .dl-menu-wrap ul li:hover > a,
.header-transparent-on .dl-menu-wrap ul li:hover > a{
	color: #fff;
}
.header-opacity-on .header-right .search-icon,
.header-opacity-on .header-right .mobile-menu-icon,
.header-opacity-on .header-right .header-cart-wrap,
.header-opacity-on .header-right .sidebar-toogle-icon,
.header-transparent-on .header-right .search-icon,
.header-transparent-on .header-right .mobile-menu-icon,
.header-transparent-on .header-right .header-cart-wrap,
.header-transparent-on .header-right .sidebar-toogle-icon{
	color: #ddd;
}
.header-opacity-on .shutter-cart svg,
.header-transparent-on .shutter-cart svg{
	fill: #ddd;
}
.header-opacity-on .shutter-cart:hover svg,
.header-transparent-on .shutter-cart:hover svg{
	fill: #fff;
}

/* Header Right */
.header-right{
	margin-left: 10px;
	display: flex;
	align-items: center;
}
.header-right .search-icon,
.header-right .mobile-menu-icon,
.header-right .header-cart-wrap,
.header-right .sidebar-toogle-icon{
	display: inline-block;
	font-size: 16px;
	margin-left: 25px;
	cursor: pointer;
	color: #222;
}
.header-right .search-icon i{
	display: block;
}
.shutter-cart {
	position: relative;
	text-decoration: none;
	margin-top: 6px;
	display: block;
}
.shutter-cart svg{
	fill: #222;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}
.shutter-cart:hover svg{
	fill: #666;
}
.shutter-cart .itemCount {
	height: 20px;
	font-size: 12px;
	border-radius: 50%;
	position: absolute;
	top: -15px;
	background: #f2f2f2;
	color: #333;
	font-weight: 600;
	line-height: 20px;
	width: 20px;
	text-align: center;
	right: -12px;
}
.viewport-lg .mobile-menu-icon{
	display: none;
}
.viewport-sm .mobile-menu-icon{
	display: inline-block;
}
/* Sticky Logo */
.viewport-lg.dl-header-wrap.sticky .primary-logo,
.viewport-sm .sticky-logo,
.viewport-lg.dl-header-wrap .sticky-logo{ display: none; }
.viewport-lg.dl-header-wrap.sticky .sticky-logo{
	display: block;
}
/* .viewport-lg.dl-header-wrap.sticky .primary-logo */
/* Header 2 */
.header-2 .header-logo{
	padding: 0 45px;
}
.header-2.viewport-lg .dl-menu-wrap{
	display: flex!important;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.header-2.viewport-lg .header-logo-center{ width: 20%; }
.header-2 .header-logo{ display: none; }
.header-2 .header-logo.no-menu-set{ display: block; margin: 0 auto; }
.header-2.viewport-lg .header-logo-center .header-logo{ 
	display: block;
	text-align: center; 
}
.header-2.viewport-lg .header-logo-center .header-logo img{ margin: 0 auto; }
.header-2.viewport-lg .dl-menu-wrap .dl-menu{ width: 40%; }
.header-2.viewport-lg .dl-menu-wrap .dl-menu:first-child{
	text-align: right;
}
@media (max-width: 1500px){
	.header-2.viewport-lg .dl-menu-wrap ul li > a {
		font-size: 11px;
		font-weight: 600;
		padding: 0 10px;
	}
}
@media (max-width: 1300px){
	.header-2.viewport-lg .header-logo-center{ width: 30%; }
	.header-2.viewport-lg .dl-menu-wrap .dl-menu:first-child{
		width: 70%;
		text-align: left;
	}
	.header-2.viewport-lg .dl-menu-wrap .dl-menu:last-child{
		display: none;
	}
}
/* Header 3 */
.dl-fullscreen-menu{
	position: fixed;
	left: 0;
	right: auto;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.95);
	text-align: center;
    overflow: hidden;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.fs-bg-img{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.fs-bg-img:before{
	background-color: rgba(0,0,0,0.8);
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.dl-fullscreen-menu-inner{ margin: 0 auto; }
.fs-menu-open .dl-fullscreen-menu{
	visibility: visible;
	opacity: 1;
}
.dl-fullscreen-menu .fs-menu-toogle-icon{
	position: fixed;
	right: 50px;
	top: 50px;
}
.fs-menu-toogle-icon .line-menu {
	background-color: #fff;
}
.header-3.header-opacity-on .dl-fs-toggle-icon .line-menu,
.header-3.header-transparent-on .dl-fs-toggle-icon .line-menu {
	background-color: #ddd;
}
.fs-menu{}
.fs-menu .dropdown-plus {
	width: 28px;
	height: 28px;
	line-height: 28px;
	position: absolute;
	top: 0;
	right: -40px;
	cursor: pointer;
}
.fs-menu .dropdown-plus:before,
.fs-menu .dropdown-plus:after {
	position: absolute;
	content: '';
	top: 14px;
	right: 8px;
	width: 13px;
	height: 2px;
	background-color: #fff;
}
.fs-menu .dropdown-plus:after {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.fs-menu .dropdown-plus.dropdown-open:after {
	display: none;
}
.fs-menu ul{
	margin: 0;
	padding: 0;
}
.fs-menu ul li .fs-menu-link{
	position: relative;
	display: inline-block;
}
.fs-menu ul li{
	display: block;
	position: relative;
	padding: 15px 0;
}
.fs-menu ul li a{
	display: block;
	color: #fff;
    font-size: 28px;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: uppercase;
}
.fs-menu ul li ul{
	display: none;
	margin-top: 30px;
}
.fs-menu ul li li{
	display: inline-block;
	position: relative;
	margin-left: 42px;
	padding: 0;
}
.fs-menu ul li li:first-child{ margin-left: 0; }
.fs-menu ul li li > a{
	font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    line-height: 1;
}
.fs-menu ul li li:after{
	position: absolute;
    content: "";
    top: 1px;
    left: -23px;
    width: 1px;
    height: 16px;
    background: #d1d1d1;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
	transform: rotate(30deg);
}
.fs-menu ul li li:first-child:after{
	display: none;
}

/* Socials */
.fs-socials{
	position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}
.fs-socials ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.fs-socials ul li{
	display: inline-block;
    margin: 0 5px;
}
.fs-socials ul li a{
	width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #ddd;
    display: inline-block;
    border-radius: 50%;
    font-size: 12px;
}
.fs-socials ul li a:hover{
	background-color: rgba(255,255,255,0.2);
	color: #fff;
}

/* Media Query */
@media (min-width: 993px){
	.dl-menu-wrap li ul{
		display: block!important;
	}
}
@media (max-width: 992px){
	#page.site{ margin-top: 0!important; }
	.header-2.viewport-lg .dl-menu-wrap{
		display: block!important;
		align-items: inherit;
		justify-content: inherit;
	}
	.header-2 .header-logo{ display: block; }
	.header-2 .header-logo-center .header-logo{ display: none; }
	.header-2 .dl-menu-wrap .dl-menu:last-of-type li:first-child{
		border-top: none;
	}
	.header-2 .header-logo {
		padding: 0;
	}
	/* .header-2 .dl-menu-wrap .dl-menu:last-child{ display: block; } */
	.dropdown-plus {
		width: 49px;
		height: 49px;
		line-height: 49px;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
	}
	.dropdown-plus:before,
	.dropdown-plus:after {
		position: absolute;
		content: '';
		top: 24px;
		right: 18px;
		width: 13px;
		height: 1px;
		background-color: #222222;
	}
	.dropdown-plus:after {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.dropdown-plus.dropdown-open:after {
		display: none;
	}
	.dl-menu-wrap{
		display: none;
		background-color: #fff;
		width: 100%;
		height: auto;
		padding: 0 20px;
		position: absolute;
		left: 0;
		top: 100%;
		z-index: 999;
	}
	.admin-bar .dl-header-wrap.viewport-sm{
		padding-top: 32px;
	}
	.dl-menu-wrap ul li{
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.04);
	}
	.dl-menu-wrap ul li:first-child{
		border-top: 1px solid rgba(0,0,0,0.04);
	}
	.dl-menu-wrap ul li > a {
		padding: 10px 15px;
		height: inherit;
		line-height: inherit;
	}
	.dl-menu-wrap ul li ul li ul,
	.dl-menu-wrap ul li ul{
		background-color: transparent;
		width: 100%;
		opacity: 1;
		padding: 0;
		visibility: visible;
		position: inherit;
		display: none;
		top: inherit;
		left: inherit;
		box-shadow: none;
	}
	.dl-menu-wrap li li{
		padding-left: 11px;
	}
	.dl-menu-wrap li li:last-child{
		border-bottom: none;
	}
	.dl-menu-wrap li li > a{
		color: #222;
		font-size: 13px;
	}
	.dl-menu-wrap li li:hover > a{
		color: #666;
	}
}
@media screen and (max-width: 782px){
	.admin-bar .dl-header-wrap.viewport-sm{
		padding-top: 46px;
	}
}
/* Sidebar */
.dl-slide-sidebar{
	position: fixed;
	left: auto;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
    background: #fff;
    overflow: hidden;
    overflow-y: auto;
	z-index: 9999;
	transform: translateX(100%);
	-webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}
.sidebar-open .dl-slide-sidebar{
	transform: translateX(0);
	-webkit-box-shadow: -15px 0px 60px -5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: -15px 0px 60px -5px rgba(0, 0, 0, 0.07);
    box-shadow: -15px 0px 60px -5px rgba(0, 0, 0, 0.07);
}
.slidemenu-bg-overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
}
.fs-menu-open .slidemenu-bg-overlay,
.sidebar-open .slidemenu-bg-overlay{
	visibility: visible;
	opacity: 1;
}
.slide-close{
	position: fixed;
	right: 50px;
	top: 50px;
}
.menu-sidebar{
	padding: 80px 40px 40px;
}
.menu-sidebar .single-sidebar:not(:last-of-type){
	margin-bottom: 50px;
}

/* Search Box */
#dl-popup-search-box {
	background-color: rgba(0,0,0,0.95);
	position: fixed;
	width: 100%;
	height: 100%;
	top: -20em;
	left: 0;
	right: 0;
	white-space: nowrap;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}
#dl-popup-search-box.toggled {
	top: 0;
	opacity: 1;
	visibility: visible;
}
#dl-popup-search-box .box-inner-wrap {
	width: 100%;
	height: 100%;
}
#dl-popup-search-box .box-inner-wrap form {
	position: relative;
	margin: 0 auto;
}
#dl-popup-search-box .box-inner-wrap input::-webkit-input-placeholder { /* Edge */
	color: #444;
}
#dl-popup-search-box .box-inner-wrap input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #444;
}
#dl-popup-search-box .box-inner-wrap input::placeholder {
	color: #444;
}
#dl-popup-search-box .box-inner-wrap input {
	width: 90%;
	padding: 0 0 0.125em 0;
	background: transparent;
	border: none;
	border-bottom: 3px solid #222;
	font-size: 4em;
	color: #ddd;
}
#dl-popup-search-box .box-inner-wrap input:focus {
	outline: none;
}
#dl-popup-search-box .box-inner-wrap button {
	position: absolute;
	display: block;
	width: 10%;
	right: 0;
	top: 0;
	background: transparent;
	border: none;
	color: #444;
	font-size: 4em;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}
#dl-popup-search-box .box-inner-wrap button:hover {
	color: #ddd;
}
#dl-popup-search-box .box-inner-wrap button:focus {
	outline: none;
}
@media screen and (max-width: 600px){
	#dl-popup-search-box .box-inner-wrap form {
		width: 90%;
	}
	#dl-popup-search-box .box-inner-wrap input,
	#dl-popup-search-box .box-inner-wrap button{
		font-size: 3em;
	}
}