.full-width .container {
	max-width: 100%;
	padding: 0 50px;
}

/* Top Bar */

.topbar-section {
	background-color: #fff;
	min-height: 50px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 30px;
}

.topbar-left ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 30px;
}

.topbar-left ul li, .topbar-left ul li a {
	font-family: "Jost", sans-serif;
	font-size: 15px;
	color: #0b2238;
	font-weight: 400;
	letter-spacing: -0.2px;
	display: flex;
	align-items: center;
}

.topbar-left ul li svg,
.topbar-left ul li a svg {
	width: 12px;
	margin-right: 10px;
}

.topbar-left ul li a i {
	margin-right: 10px;
}

/* Top Bar Social */

.side-menu-social, .topbar-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 15px;
}

.side-menu-social li a, .topbar-social li a {
	color: #0b2238;
	font-size: 15px;
	text-decoration: none;
}

.side-menu-social li a svg, .topbar-social li a svg {
	width: 13px;
}

.topbar-left ul li a:hover, .topbar-social li a:hover {
	opacity: 0.8;
}

@media (max-width: 767px) {
	.topbar-inner {
		column-gap: 0;
		flex-direction: column;
		row-gap: 5px;
		padding: 5px 0;
	}

	.topbar-left ul li, .topbar-left ul li a, .topbar-social li a {
		font-size: 13px;
	}
}

/* Header */
.sticky-header {
	width: 100%;
	display: none;
	position: fixed;
	top: 0;
}

@media (min-width: 992px) {
	.admin-bar .header-section {
		margin-top: 32px;
	}
}

@media (max-width: 992px) {
	.admin-bar .header-section {
		margin-top: 32px;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .header-section {
		margin-top: 46px;
	}
}

@media screen and (max-width: 600px) {
	.admin-bar .header-section {
		margin-top: 0;
		padding-top: 46px;
	}
}

.main-header {
	background-color: #fff;
	position: relative;
	width: 100%;
	min-height: 90px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eee;
}

.header-btn-wrap {
	display: flex;
	align-items: center;
}

.header-btn {
	font-family: "Work Sans", sans-serif;
	letter-spacing: 0;
	background-color: #4154f1;
	color: #fff;
	line-height: 1;
	display: inline-block;
	padding: 16px 30px;
	border-radius: 0;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
	opacity: 0.2;
	transform-origin: right center;
	transform: scale(0, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.header-btn:focus,
.header-btn:hover {
	color: #fff;
}

.header-btn:hover:before {
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

/* Shopping Cart */
.shopping-cart-inner {
	position: relative;
	display: flex;
	height: 25px;
}

.shopping-cart-inner span.count {
	width: 17px;
	height: 17px;
	background-color: #4154f1;
	color: #fff;
	font-size: 10px;
	position: absolute;
	right: -5px;
	bottom: -5px;
	border-radius: 50%;
	z-index: 1;
	line-height: 17px;
	text-align: center;
	font-weight: 500;
}

.topbar-inner ul, .main-header ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.topbar-inner a, .main-header a {
	text-decoration: none;
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-column-gap: 30px;
	align-items: center;
	line-height: 90px;
}

.site-branding {
	width: 100px;
}

@-webkit-keyframes menuSticky {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0%);
	}
}

@keyframes menuSticky {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0%);
	}
}

.dl-main-menu {
	display: flex;
	flex-direction: row;
	column-gap: 40px;
	margin: 0;
	list-style: none;
}

.dl-main-menu li {
	position: relative;
}

.dl-main-menu li a {
	font-family: "Jost", sans-serif;
	font-size: 16px;
	color: #0b2238;
	font-weight: 600;
	letter-spacing: -0.5px;
	text-decoration: none;
	position: relative;
}

.dl-main-menu li:hover a {
	color: #000;
}

.dl-main-menu li>ul {
	min-width: 225px;
	position: absolute;
	z-index: 5;
	background-color: #fff;
	border-radius: 0;
	border: none;
	display: block;
	text-align: left;
	left: -20px;
	padding: 25px 0;
	right: auto;
	top: 105%;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.header-height {
	display: none;
}

@media (min-width: 992px) {
	.sticky-header.fixed {
		display: block;
		background: #fff;
		animation-name: menuSticky;
		-webkit-animation-name: menuSticky;
		animation-duration: 1s;
		-webkit-animation-duration: 1s;
		animation-timing-function: ease;
		-webkit-animation-timing-function: ease;
		box-shadow: 0 0 4px 0 rgb(115 115 115 / 20%);
		z-index: 111;
	}

	.admin-bar .sticky-header.fixed {
		top: 32px;
	}

	.dl-nav-center .dl-main-menu {
		justify-content: center;
	}

	.dl-nav-right .dl-main-menu {
		justify-content: flex-end;
	}

	.dl-nav .dl-main-menu li>ul {
		opacity: 0;
		visibility: hidden;
		box-shadow: 0 3px 25px 0px rgb(43 52 59 / 10%), 0 0 0 rgb(43 52 59 / 10%) inset;
	}

	.dl-nav .dl-main-menu li li>ul {
		top: 0 !important;
		left: 100%;
	}

	.dl-nav .dl-main-menu li:hover>ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
	}

	.dl-nav .dl-main-menu>li:nth-last-child(1)>ul,
	.dl-nav .dl-main-menu>li:nth-last-child(2)>ul {
		left: auto;
		right: -20px;
	}

	.dl-nav .dl-main-menu>li:nth-last-child(1) li>ul,
	.dl-nav .dl-main-menu>li:nth-last-child(2) li>ul {
		left: auto;
		right: 100%;
	}

	.dl-main-menu li li.menu-item {
		padding: 0 25px 0 25px;
		line-height: 1;
	}

	.dl-main-menu li li.menu-item:not(:last-of-type) {
		padding-bottom: 15px;
	}

	.dl-main-menu li li.menu-item>a {
		padding: 0;
		display: block;
		width: auto;
		line-height: 1.2;
	}

	.dl-main-menu>li a:before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -2px;
		width: 0;
		height: 1.7px;
		background: #0b2238;
		transition: width .3s;
	}

	/* .dl-main-menu li li:hover > a:before, */
	.dl-main-menu>li:hover>a:before {
		width: 100%;
	}

	.dl-mm-item.dl-list-item ul li {
		line-height: 1;
	}

	.dl-mm-item.dl-list-item ul li:not(:last-of-type) {
		padding-bottom: 15px;
	}

	.dl-mm-item.dl-list-item ul li a {
		display: block;
		width: auto;
		line-height: 1.2;
	}
}

.dl-main-menu li>li {
	margin: 0 !important;
}

.dl-main-menu li li>a {
	color: #6c7a87;
	width: 100%;
	display: block;
	font-size: 16px;
	letter-spacing: -0.2px;
	font-weight: 400;
	line-height: 40px;
	padding: 0 25px 0 25px;
	text-align: inherit;
	white-space: nowrap;
	transition: all 0.3s ease-in-out;
	position: relative;
}

.dl-main-menu li:hover li>a {
	color: #6c7a87;
}

.dl-main-menu li li:hover>a {
	color: #0b2238;
}

/* Mega Menu */

.dl-main-menu li.mega-menu {
	position: static;
}

.dl-main-menu li.mega-menu>ul {
	width: 90%;
	left: 50%;
	transform: translateX(-50%);
	overflow-x: hidden;
}

.dl-mm-container {
	width: 100%;
	padding: 10px 70px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
}

.dl-mm-col-1 {
	grid-template-columns: repeat(1, 1fr);
}

.dl-mm-col-2 {
	grid-template-columns: repeat(2, 1fr);
}

.dl-mm-col-3 {
	grid-template-columns: repeat(3, 1fr);
}

.dl-mm-col-4 {
	grid-template-columns: repeat(4, 1fr);
}

.dl-mm-col-5 {
	grid-template-columns: repeat(5, 1fr);
}

.dl-mm-col-6 {
	grid-template-columns: repeat(6, 1fr);
}

.dl-mm-item {}

.dl-mm-item.dl-list-item:not(:last-of-type) {
	border-right: 1px solid #eee;
}

.dl-mm-item h3 {
	font-family: 'Jost', sans-serif;
	font-size: 18px;
	color: #0b2238;
	font-weight: 600;
	padding: 0 0 5px;
	letter-spacing: -0.5px;
}

.dl-mm-item ul li {
	display: block;
}

.dl-mm-item ul li a {
	padding: 0;
	color: #0b2238;
	display: flex;
	align-items: center;
}

.dl-mm-item ul li a svg {
	width: 12px;
	margin-right: 10px;
}

.dl-mm-item ul li a:hover i, .dl-mm-item ul li a:hover {
	color: #0b2238;
}

/* Thumbnails */
.mm-img-box {
	display: block;
	text-align: center;
	background-color: #fff;
	border: 1px solid #eee;
}

.mm-img-box .mm-img {
	overflow: hidden;
	position: relative;
	display: block;
}

.mm-img-box .mm-img:before {
	background-color: rgba(35, 36, 39, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.mm-img-box .mm-img:hover:before {
	visibility: visible;
	opacity: 1;
}

.mm-img-box .mm-img img {
	width: 100%;
}

.mm-img-box:hover .mm-img img {}

.mm-img-box .mm-text {
	font-family: "Jost", sans-serif;
	font-size: 15px;
	letter-spacing: -0.5px;
	display: block;
	color: #0b2238;
	line-height: 1;
	padding: 15px 0;
}

/* Responsive Menu */
.dropdown-plus, .dl-close-menu, .dl-menu-btn {
	display: none;
}

/* Menu Arrow */

.dropdown-plus {
	width: 14px;
	height: 14px;
	position: absolute;
	right: 5px;
	top: 12px;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s linear;
}

.dropdown-plus:before,
.dropdown-plus:after {
	background-color: #0b2238;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dropdown-plus:before {
	width: 10px;
	height: 2px;
}

.dropdown-plus:after {
	width: 2px;
	height: 10px;
}

.dropdown-open.dropdown-plus:after {
	visibility: hidden;
	opacity: 0;
}

/* 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: #0b2238;
	border-radius: 2px;
	width: 100%;
	height: 2px;
}

.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-3 .line-menu {
	background-color: #fff;
}

@media (max-width: 992px) {
	.main-header {
		position: static;
	}

	.header-inner {
		grid-template-columns: auto 1fr;
	}

	.site-branding {
		text-align: center;
	}

	.dl-menu-btn {
		display: flex;
		font-size: 40px;
		color: #0b2238;
		transition: 0.3s ease transform;
		cursor: pointer;
	}

	.dl-close-menu {
		display: block;
		position: absolute;
		right: 23px;
		top: 20px;
		color: #0b2238;
		font-size: 32px;
		cursor: pointer;
		transition: color 0.3s linear;
		line-height: 1;
	}

	.admin-bar .dl-close-menu {
		right: 23px;
		top: 40px;
	}

	.dl-close-menu svg {
		width: 15px;
		height: 15px;
	}

	.dl-close-menu:hover {
		opacity: 0.8;
	}

	/* Side Menu */
	.dl-nav {
		background-color: #fff;
		width: 400px;
		height: 100vh;
		padding: 70px 20px 20px;
		position: fixed;
		left: 0;
		top: 0;
		visibility: hidden;
		transform: translateX(-100%);
		transition: all 0.3s cubic-bezier(.34, .65, .8, .68);
		z-index: 99;
		box-shadow: 0px 30px 70px 0px rgb(137 139 142 / 15%);
		overflow-y: auto;
	}

	.dl-nav.menu-open {
		visibility: visible;
		transform: translateX(0);
		transition: all 0.3s linear;
	}

	.dl-main-menu {
		flex-direction: column;
		column-gap: 0;
		width: 100%;
	}

	.dl-main-menu li.mega-menu {
		position: relative;
	}

	.dl-main-menu li a {
		line-height: 1;
		display: block;
		padding: 15px 0;
	}

	.dropdown-plus {
		display: block;
	}

	.dl-mm-item h3.active:after, .dropdown-plus.dropdown-open {
		transform: rotate(-180deg);
	}

	.dl-main-menu li>ul {
		position: static;
		display: none;
		padding: 0;
		padding-left: 0;
		transition: all 0s linear;
	}

	.dl-main-menu li.mega-menu>ul {
		width: 100%;
		transform: translateX(0);
		left: 0;
	}

	.dl-main-menu li a {
		border-top: 1px solid #F3F3F3;
	}

	.dl-main-menu li:first-child a {
		border-top: none;
	}

	.dl-main-menu li li a {
		border-top: none;
		padding-left: 0;
	}

	/* Mega Menu */
	.dl-main-menu li.mega-menu>ul {
		padding-left: 0;
	}

	.dl-mm-container {
		padding: 0;
		grid-template-columns: 1fr !important;
		grid-gap: 0;
	}

	.dl-mm-container.mm-thumbnails {
		grid-template-columns: repeat(2, 1fr) !important;
		grid-gap: 20px;
	}

	.dl-mm-item h3 {
		border-top: 1px solid #eee;
		padding: 20px 0;
		position: relative;
		font-size: 14px;
		margin: 0;
		cursor: pointer;
	}

	.dl-mm-item h3.active {
		border-bottom: 1px solid #F3F3F3;
	}

	.dl-mm-item h3:after {
		width: 8px;
		height: 8px;
		transform: rotate(45deg);
		content: "";
		position: absolute;
		right: 5px;
		top: calc(50% - 5.5px);
		border-bottom: 1px solid #0b2238;
		border-right: 1px solid #0b2238;
		transition: all 0.3s linear;
	}

	.dl-mm-item h3.active:after {
		transform: rotate(225deg);
		transition: all 0.3s linear;
	}

	.dl-mm-item ul {
		display: none;
	}

	.dl-mm-item ul li a {
		color: rgba(75, 76, 81, 0.9);
	}

	.mega-menu .mm-img-box {
		padding: 0;
	}

	.dl-main-menu li a {
		font-size: 14px;
		letter-spacing: -0.2px;
		padding: 18px 0;
	}

	.dropdown-plus {
		width: 25px;
		height: 25px;
		top: 12px;
	}

	.dl-mm-item.dl-list-item:not(:last-of-type) {
		border: none;
	}

	.dl-main-menu li li>a {
		font-size: 14px;
	}

	.top-bar-right {
		display: none;
	}

	.topbar-left {
		margin: 0 auto;
	}
}

@media (max-width: 520px) {
	.header-inner {
		grid-column-gap: 15px;
	}

	.site-branding {
		text-align: left;
	}

	.dl-nav {
		width: 80%;
	}

	.dl-mm-container.mm-thumbnails {
		grid-template-columns: repeat(1, 1fr) !important;
		grid-gap: 15px;
	}

	.topbar-left ul li, .topbar-left ul li a {
		font-size: 11px;
	}

	.header-btn {
		padding: 15px;
		font-size: 10px;
	}
}

@media (max-width: 380px) {
	.header-btn {
		font-size: 8px;
	}
}

/* Header Right */

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 15px;
}

.dl-search-btn, .dl-shopping-cart-btn {
	display: flex;
	font-size: 24px;
	color: #0b2238;
	cursor: pointer;
}

.dl-search-btn svg, .dl-shopping-cart-btn svg {
	width: 25px;
}

.header-contact.fill-right {
	background-color: #4154f1;
	padding: 0 20px;
	border-radius: 3px;
}

.header-contact svg {
	width: 13px;
}

.header-contact.fill-right a {
	color: #fff;
}

.header-contact a {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: 13px;
	font-weight: 600;
	font-family: "Jost", sans-serif;
	color: #fff;
	line-height: 45px;
}

/* Header 2 */
.header-2 .header-section {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99;
}

.header-2 .header-section .topbar-section,
.header-2 .header-section .main-header {
	background-color: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-2 .page-header {
	padding-top: 92px;
}

.header-2.is-topbar .page-header {
	padding-top: 140px;
	height: 450px;
}

.header-2 .dl-menu-btn,
.header-2 .dl-search-btn, .header-2 .dl-shopping-cart-btn,
.header-2 .topbar-social li a,
.header-2 .topbar-left ul li, .header-2 .topbar-left ul li a {
	color: #fff;
}

.header-2 .sticky-header .dl-search-btn,
.header-2 .sticky-header .dl-shopping-cart-btn {
	color: #0b2238;
}

.header-2 .line-menu {
	background-color: #fff;
}

@media (min-width: 992px) {
	.header-2 .dl-main-menu li>a {
		color: #fff;
	}

	.header-2 .dl-main-menu>li>a:before {
		background-color: #fff;
	}

	.header-2 .sticky-header .dl-main-menu li>a {
		color: #0b2238;
	}

	.header-2 .sticky-header .dl-main-menu>li>a:before {
		background-color: #0b2238;
	}
}

@media(max-width: 767px) {
	.header-2 .page-header {
		padding-top: 92px;
		height: 350px;
	}

	.header-2.is-topbar .page-header {
		height: 380px;
		padding-top: 185px;
	}
}

/* Header 3 */
.mid-header {
	background-color: #fff;
	width: 100%;
	min-height: 120px;
	display: flex;
	align-items: center;
}

.mid-header .mid-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-column-gap: 30px;
	align-items: center;
}

.mid-header .mid-inner .mid-right {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 30px;
}

.mid-header .mid-inner .mid-right li {
	display: inline-flex;
	column-gap: 10px;
	color: #4154f1;
}

.mid-header .mid-inner .mid-right li span {
	display: block;
	font-family: "Work Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-top: 0;
	color: #0b2238;
}

.mid-header .mid-inner .mid-right li div {
	font-family: "Jost", sans-serif;
	font-size: 18px;
	line-height: 22px;
	color: #0b2238;
	font-weight: 600;
	letter-spacing: -1px;
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mid-header .mid-inner .mid-right li svg {
	width: 40px;
}

.header-3 .header-section {
	background-color: #fff;
}

.header-3 .main-header {
	background-color: transparent;
	width: 100%;
	margin-bottom: -37.5px;
	z-index: 9;
	border-bottom: none;
	position: relative;
}

.header-3 .main-header .header-inner {
	min-height: 75px;
}

.header-3 .sticky-header .main-header {
	margin: 0;
}

.header-3 .sticky-header .main-header,
.header-3 .main-header .container {
	background-color: #232427;
}

.header-3 .main-header .container {
	padding: 0 30px;
}

.header-3 .header-inner {
	grid-template-columns: auto 1fr;
}

.header-3 .dl-menu-btn,
.header-3 .dl-search-btn,
.header-3 .dl-shopping-cart-btn {
	color: #fff;
}

@media (min-width: 992px) {
	.header-3 .dl-main-menu>li>a:before {
		background-color: #fff;
	}

	.header-3 .dl-main-menu>li:hover>a,
	.header-3 .dl-main-menu>li>a {
		color: #fff;
	}
}

@media (max-width: 992px) {
	.header-3 .header-inner {
		grid-template-columns: 1fr;
		min-height: 45px;
	}

	.header-3 .header-right {
		flex-direction: row-reverse;
		justify-content: flex-start;
	}

	.header-3 .header-btn-wrap {
		margin-right: auto;
	}

	.mid-header .mid-inner .mid-right {
		column-gap: 20px;
	}

	.mid-header .mid-inner .mid-right li {
		column-gap: 0;
		flex-direction: column;
		row-gap: 10px;
	}

	.mid-header .mid-inner .mid-right li svg {
		width: 30px;
	}

	.mid-header .mid-inner .mid-right li a {
		font-size: 14px;
		line-height: 18px;
	}
}

@media (max-width: 767px) {
	.mid-header {
		min-height: 90px;
	}

	.mid-header .mid-inner .mid-right {
		display: none;
	}

	.mid-header .mid-inner {
		grid-template-columns: 1fr;
	}

	.mid-header .mid-inner .site-branding {
		margin: 0 auto;
	}

	.header-3 .main-header {
		background-color: #232427;
		margin: 0;
		min-height: 70px;
	}
}

/*-------------------------------
dl-search-overlay search
-------------------------------*/

.dl-search-popup-wrap {
	position: relative;
	z-index: 1200;
	top: 20px;
	right: 16px;
	display: block;
}

.toggle-wrap {
	position: relative;
}

.search_toggle {
	cursor: pointer;
}

.toggle-wrap.active {
	position: relative;
	z-index: 10000;
	top: 0;
	right: 0;
	cursor: pointer;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.toggle-wrap.active img {
	display: none;
}

.toggle-wrap img.search-close {
	display: none;
}

.toggle-wrap.active img.search-close {
	display: block;
}

.dl-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 0;
	-webkit-transition: opacity .35s, visibility .35s, height .4s;
	transition: opacity .35s, visibility .35s, height .4s;
	opacity: 0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: url(../img/close.png), auto;
}

.dl-search-overlay.open {
	visibility: visible;
	height: 100%;
	opacity: 1;
}

.dl-search-overlay .dl-search-form {
	position: relative;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.35s ease-in-out;
}

.dl-search-overlay.open .dl-search-form {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.dl-search-overlay .dl-search-form .dl-search-inner {
	display: block;
	width: 60%;
	margin: 0 auto;

}

.dl-search-overlay .dl-search-form input {
	font-size: 32px;
	height: auto;
	color: #0b2238;
	border: 1px solid #eee;
	background: transparent;
	padding: 15px 30px;
	line-height: 1;
	border-radius: 3px;
}

.dl-search-overlay .dl-search-form input:focus {
	box-shadow: none;
}

@media (max-width: 1366px) {
	.toggle-wrap.active {
		position: absolute;
		right: 50px;
		top: 50px;
	}
}

@media (max-width: 768px) {
	.dl-search-overlay .dl-search-form input {
		font-size: 24px;
		padding: 10 30px;
	}

}

@media (max-width: 767px) {
	.dl-search-overlay .dl-search-form input {
		font-size: 24px;
	}

	.toggle-wrap.active img.search-close {
		width: 70%;
	}

	.full-width .container {
		padding: 0 20px;
	}

	.dl-search-overlay .dl-search-form input {
		font-size: 24px;
		padding: 10 30px;
	}

	.dl-search-overlay .dl-search-form .dl-search-inner {
		width: 100%;
	}
}

/* Cart Flyout */
.cart-aside {
	position: fixed;
	top: 0;
	width: 420px;
	padding: 50px;
	min-height: 100vh;
	bottom: 0;
	right: 0;
	z-index: 121;
	visibility: hidden;
	opacity: 0;
	transition: all 250ms ease;
	box-shadow: 0 0 4px 0 rgb(115 115 115 / 20%);
	background-color: #fff;
	-webkit-transform: translate(200px, 0);
	transform: translate(200px, 0);
	max-width: 100%;
}

.open-cart-aside .cart-aside {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	transition: all 1s ease;
}

.cart-aside .cart-aside-inner {
	display: block;
	height: 100%;
	position: relative;
}

.cart-overlay-global {
	position: fixed;
	background: #232324;
	z-index: 120;
	visibility: hidden;
	opacity: 0;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	transition: all 250ms ease-out;
}

.open-cart-aside .cart-overlay-global {
	visibility: visible;
	opacity: .7;
}

.cart-aside .aside-cart-close {
	position: absolute;
	top: 0;
	right: 0;
	color: #0b2238;
	cursor: pointer;
}

.cart-aside .aside-cart-close svg {
	width: 20px;
	transition: opacity 0.35s ease-in-out;
}

.cart-aside .aside-cart-close:hover svg {
	opacity: 0.7;
}

.header-quickcart {
	padding-top: 50px;
}

.header-quickcart .widgettitle {
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: 600;
	font-family: "Jost", sans-serif;
}

.header-quickcart .widget_shopping_cart .cart_list {
	max-height: calc(100vh - 430px);
	overflow: auto;
}

.header-quickcart .widget_shopping_cart .cart_list::-webkit-scrollbar {
	display: none;
}

.header-quickcart .widget_shopping_cart .cart_list li {
	padding: 0;
	overflow: hidden;
}

.header-quickcart .widget_shopping_cart .cart_list li:not(:last-of-type) {
	margin-bottom: 10px;
}

.header-quickcart .cart_list li.mini_cart_item a.remove {
	display: block;
	font-weight: 400;
	font-size: 14px;
	height: 20px;
	line-height: 17px;
	overflow: hidden;
	right: 0;
	left: auto;
	text-align: right;
	width: 20px;
	font-family: Verdana, sans-serif;
	color: #6c7a87 !important;
}

.header-quickcart .cart_list li.mini_cart_item a.remove:hover {
	background-color: transparent;
	color: #0b2238 !important;
	text-decoration: none;
}

.header-quickcart ul.product_list_widget li img {
	float: left;
	max-width: 70px;
	width: 70px;
	margin: 0;
	margin-right: 20px;
	border: 1px solid rgba(0, 0, 0, .1);
}

.header-quickcart .cart_list li.mini_cart_item a:nth-child(2) {
	color: #0b2238;
	line-height: 22px;
}

.header-quickcart .product_list_widget li a:hover {
	text-decoration: none;
}

.header-quickcart .cart_list li.mini_cart_item .quantity,
.header-quickcart .cart_list li.mini_cart_item .quantity .amount {
	font-family: "Jost", sans-serif;
	font-size: 16px;
	color: #6c7a87;
	font-weight: 400;
	letter-spacing: -0.2px;
}

.header-quickcart .widget_shopping_cart .total {
	border-top: none;
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0;
}

.header-quickcart .widget_shopping_cart .total strong {
	color: #0b2238;
}

.header-quickcart .widget_shopping_cart .total .amount {}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
	margin: 0;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
	background-color: #232427;
	display: block;
	margin: 0;
	padding: 17px 30px;
	text-align: center;
	font-family: "Work Sans", sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	border-radius: 0;
	letter-spacing: 0;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:not(:last-of-type) {
	margin-bottom: 15px;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:hover {
	background-color: #4154f1;
}