body.flatsome-plus-tilt-enabled {
	--flatsome-plus-menu-width: min(86vw, 380px);
	--flatsome-plus-tilt-backdrop: rgba(11, 18, 31, 0.48);
	--flatsome-plus-tilt-shell-entry-x: -56px;
	--flatsome-plus-tilt-shell-start-scale: 0.98;
	--flatsome-plus-tilt-shell-open-scale: 1;
	--flatsome-plus-tilt-shell-start-angle: clamp(5deg, calc(var(--flatsome-plus-tilt-angle) * 0.58), 10deg);
	--flatsome-plus-tilt-shell-open-angle: clamp(1.8deg, calc(var(--flatsome-plus-tilt-angle) * 0.28), 4deg);
	--flatsome-plus-tilt-shell-shadow: 0 34px 96px rgba(0, 0, 0, 0.34);
	--flatsome-plus-tilt-shell-radius: 0 30px 30px 0;
	--flatsome-plus-tilt-shell-left: -18px;
	--flatsome-plus-tilt-shell-right: auto;
	--flatsome-plus-tilt-shell-origin-x: left;
	--flatsome-plus-tilt-inner-padding-start: 42px;
	--flatsome-plus-tilt-inner-padding-end: 30px;
	--flatsome-plus-tilt-close-left: auto;
	--flatsome-plus-tilt-close-right: 30px;
}

body.flatsome-plus-blog-archive-width-full-width #content.blog-wrapper.blog-archive > .row {
	width: 100%;
	max-width: none;
}

body.flatsome-plus-blog-archive-width-full-width #content.blog-wrapper.blog-archive > .row > .col {
	flex-basis: 100%;
	max-width: 100%;
}

body.flatsome-plus-blog-archive-width-full-width #content.blog-wrapper.blog-archive > .archive-page-header,
body.flatsome-plus-blog-archive-width-header-full-content-centered #content.blog-wrapper.blog-archive > .archive-page-header {
	width: 100%;
	max-width: none;
}

body.flatsome-plus-blog-archive-width-full-width #content.blog-wrapper.blog-archive > .archive-page-header > .row,
body.flatsome-plus-blog-archive-width-header-full-content-centered #content.blog-wrapper.blog-archive > .archive-page-header > .row {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

body.flatsome-plus-blog-archive-width-full-width #content.blog-wrapper.blog-archive > .archive-page-header > .row > .col,
body.flatsome-plus-blog-archive-width-header-full-content-centered #content.blog-wrapper.blog-archive > .archive-page-header > .row > .col {
	flex-basis: 100%;
	max-width: 100%;
	padding-right: 0;
	padding-left: 0;
}

@media (max-width: 849px) {
	body.flatsome-plus-sticky-topbar-desktop .header-wrapper.stuck #top-bar,
	body.flatsome-plus-sticky-main-desktop .header-wrapper.stuck #masthead,
	body.flatsome-plus-sticky-bottom-desktop .header-wrapper.stuck #wide-nav {
		display: none;
	}
}

@media (min-width: 850px) {
	body.flatsome-plus-sticky-topbar-mobile .header-wrapper.stuck #top-bar,
	body.flatsome-plus-sticky-main-mobile .header-wrapper.stuck #masthead,
	body.flatsome-plus-sticky-bottom-mobile .header-wrapper.stuck #wide-nav {
		display: none;
	}
}

body.flatsome-plus-responsive-sticky-header #header.flatsome-plus-sticky-disabled-current {
	height: auto !important;
}

body.flatsome-plus-responsive-sticky-header #header.flatsome-plus-sticky-disabled-current .header-wrapper.stuck {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	left: auto !important;
	box-shadow: none;
	animation: none;
}

body.flatsome-plus-tilt-enabled {
	overflow-x: hidden;
	--flatsome-plus-tilt-rotate-sign: -1;
}

body.flatsome-plus-tilt-direction-left .flatsome-plus-paper-back {
	justify-content: flex-start;
}

body.flatsome-plus-tilt-direction-right {
	--flatsome-plus-tilt-shell-entry-x: 56px;
	--flatsome-plus-tilt-rotate-sign: 1;
	--flatsome-plus-tilt-shell-radius: 30px 0 0 30px;
	--flatsome-plus-tilt-shell-left: auto;
	--flatsome-plus-tilt-shell-right: -18px;
	--flatsome-plus-tilt-shell-origin-x: right;
	--flatsome-plus-tilt-inner-padding-start: 30px;
	--flatsome-plus-tilt-inner-padding-end: 42px;
	--flatsome-plus-tilt-close-left: 30px;
	--flatsome-plus-tilt-close-right: auto;
}

body.flatsome-plus-tilt-direction-right .flatsome-plus-paper-back {
	justify-content: flex-end;
}

.flatsome-plus-paper-back {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--flatsome-plus-tilt-backdrop);
	backdrop-filter: blur(3px) saturate(0.92);
	color: var(--flatsome-plus-tilt-text);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--flatsome-plus-tilt-duration) ease, visibility 0s linear var(--flatsome-plus-tilt-duration);
}

.flatsome-plus-paper-shell {
	position: relative;
	left: var(--flatsome-plus-tilt-shell-left);
	right: var(--flatsome-plus-tilt-shell-right);
	display: flex;
	flex: 0 0 var(--flatsome-plus-menu-width);
	flex-direction: column;
	width: var(--flatsome-plus-menu-width);
	max-width: 100%;
	height: calc(100vh + 56px);
	padding: 0;
	overflow: hidden;
	background-color: var(--flatsome-plus-tilt-bg);
	background-image: linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.18) 100%);
	border-radius: var(--flatsome-plus-tilt-shell-radius);
	box-shadow: var(--flatsome-plus-tilt-shell-shadow);
	transform: translate3d(var(--flatsome-plus-tilt-shell-entry-x), 0, 0) rotate(calc(var(--flatsome-plus-tilt-shell-start-angle) * var(--flatsome-plus-tilt-rotate-sign))) scale(var(--flatsome-plus-tilt-shell-start-scale));
	transform-origin: var(--flatsome-plus-tilt-shell-origin-x) center;
	opacity: 0;
	will-change: transform;
	transition: transform var(--flatsome-plus-tilt-duration) cubic-bezier(0.2, 0.8, 0.2, 1), opacity var(--flatsome-plus-tilt-duration) ease;
}

.flatsome-plus-paper-inner {
	flex: 1 1 auto;
	height: 100%;
	padding: 108px var(--flatsome-plus-tilt-inner-padding-end) 42px var(--flatsome-plus-tilt-inner-padding-start);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.flatsome-plus-paper-close {
	position: absolute;
	top: 46px;
	left: var(--flatsome-plus-tilt-close-left);
	right: var(--flatsome-plus-tilt-close-right);
	z-index: 3;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
	color: var(--flatsome-plus-tilt-text);
	cursor: pointer;
}

.flatsome-plus-paper-close span {
	position: absolute;
	top: 50%;
	left: 5px;
	width: 34px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	transform-origin: center;
}

.flatsome-plus-paper-close span:first-child {
	transform: translateY(-50%) rotate(45deg);
}

.flatsome-plus-paper-close span:last-child {
	transform: translateY(-50%) rotate(-45deg);
}

body.flatsome-plus-tilt-open .flatsome-plus-paper-back {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

body.flatsome-plus-tilt-open .flatsome-plus-paper-shell {
	transform: translate3d(0, 0, 0) rotate(calc(var(--flatsome-plus-tilt-shell-open-angle) * var(--flatsome-plus-tilt-rotate-sign))) scale(var(--flatsome-plus-tilt-shell-open-scale));
	opacity: 1;
}

body.flatsome-plus-tilt-enabled #wrapper {
	position: relative;
	min-height: 100vh;
	background: #ffffff;
	transition: opacity var(--flatsome-plus-tilt-duration) ease, transform var(--flatsome-plus-tilt-duration) ease, filter var(--flatsome-plus-tilt-duration) ease;
}

body.flatsome-plus-tilt-open #wrapper {
	pointer-events: none;
	transform: scale(0.995);
	opacity: 0.84;
	filter: saturate(0.94);
}

body.flatsome-plus-tilt-open,
html.flatsome-plus-tilt-open {
	overflow: hidden;
}

.flatsome-plus-paper-back a,
.flatsome-plus-paper-back button.toggle {
	color: inherit;
}

.flatsome-plus-paper-back .sidebar-menu-top-content {
	margin-bottom: 24px;
}

.flatsome-plus-paper-back .sidebar-menu-top-content,
.flatsome-plus-paper-back .nav-sidebar > li > a,
.flatsome-plus-paper-back .nav-vertical > li > a {
	color: inherit;
}

.flatsome-plus-paper-back .nav-sidebar > li > a,
.flatsome-plus-paper-back .nav-vertical > li > a {
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: clamp(1rem, 0.94rem + 0.5vw, 1.3rem);
	letter-spacing: 0.02em;
}

.flatsome-plus-paper-back .nav > li > a:hover,
.flatsome-plus-paper-back .nav > li.active > a,
.flatsome-plus-paper-back .nav > li.current-menu-item > a,
.flatsome-plus-paper-back .nav > li.current-menu-ancestor > a {
	color: inherit;
	opacity: 1;
}

.flatsome-plus-paper-back .nav li > a {
	opacity: 0.82;
}

.flatsome-plus-paper-back .nav li.active > a,
.flatsome-plus-paper-back .nav li.current-menu-item > a,
.flatsome-plus-paper-back .nav li.current-menu-ancestor > a {
	opacity: 1;
}

.flatsome-plus-paper-back .sidebar-menu-tabs {
	margin-bottom: 18px;
	border-color: rgba(255, 255, 255, 0.22);
}

.flatsome-plus-paper-back .sidebar-menu-tabs__tab-link,
.flatsome-plus-paper-back .sidebar-menu-tabs__tab-text {
	color: inherit;
}

.flatsome-plus-paper-back .toggle {
	color: inherit;
	background: transparent;
}

.flatsome-plus-paper-back .nav-slide > li > ul,
.flatsome-plus-paper-back .nav-sidebar ul.children,
.flatsome-plus-paper-back .sub-menu {
	background: transparent;
}

body.flatsome-plus-mobile-nav-effect-gooey {
	--flatsome-plus-gooey-size: 72px;
	--flatsome-plus-gooey-center-x: 40px;
	--flatsome-plus-gooey-center-y: 40px;
}

body.flatsome-plus-mobile-nav-effect-gooey .mobile-nav,
body.flatsome-plus-mobile-nav-effect-gooey .mobile-nav .nav-icon,
body.flatsome-plus-mobile-nav-effect-gooey .mobile-nav .nav-icon > a.flatsome-plus-gooey-trigger {
	overflow: visible;
}

.flatsome-plus-gooey-menu {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: visible;
	pointer-events: none;
}

.flatsome-plus-gooey-stage {
	position: fixed;
	top: var(--flatsome-plus-gooey-center-y);
	left: var(--flatsome-plus-gooey-center-x);
	width: 0;
	height: 0;
	filter: url("#flatsome-plus-shadowed-goo");
	overflow: visible;
	pointer-events: none;
}

.flatsome-plus-gooey-items {
	position: relative;
	width: 0;
	height: 0;
	overflow: visible;
	pointer-events: none;
}

.flatsome-plus-gooey-item {
	position: absolute;
	top: calc(var(--flatsome-plus-gooey-size) / -2);
	left: calc(var(--flatsome-plus-gooey-size) / -2);
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--flatsome-plus-gooey-size);
	height: var(--flatsome-plus-gooey-size);
	padding: 12px;
	border-radius: 999px;
	background: var(--flatsome-plus-gooey-color);
	color: var(--flatsome-plus-gooey-text);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
	text-align: center;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 0, 0) scale(0.45);
	transform-origin: center;
	will-change: transform, opacity;
	transition: transform 280ms cubic-bezier(0.2, 0.85, 0.32, 1.28), opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.flatsome-plus-gooey-item:hover {
	background: #ffffff;
	color: var(--flatsome-plus-gooey-color);
}

.flatsome-plus-gooey-item__label {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

body.flatsome-plus-gooey-open .flatsome-plus-gooey-item {
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(var(--flatsome-plus-item-x, 0px), var(--flatsome-plus-item-y, 0px), 0) scale(1);
}

.flatsome-plus-gooey-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

body.flatsome-plus-mobile-nav-effect-cdpn {
	--flatsome-plus-cdpn-x: 40px;
	--flatsome-plus-cdpn-y: 40px;
}

.flatsome-plus-cdpn-menu {
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
}

.flatsome-plus-cdpn-menu::before {
	content: "";
	position: fixed;
	top: var(--flatsome-plus-cdpn-y);
	left: var(--flatsome-plus-cdpn-x);
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	background: var(--flatsome-plus-cdpn-bg);
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.22);
	transform-origin: center;
	transition: transform 1s cubic-bezier(0.04, -0.1, 0.29, 0.98), opacity 0.2s ease;
}

.flatsome-plus-cdpn-menu__container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: min(16vh, 120px) 0 40px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.flatsome-plus-cdpn-menu__close {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.12);
	color: var(--flatsome-plus-cdpn-text);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.flatsome-plus-cdpn-menu__close:hover,
.flatsome-plus-cdpn-menu__close:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.42);
	transform: scale(1.04);
}

.flatsome-plus-cdpn-menu__close span {
	position: absolute;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.flatsome-plus-cdpn-menu__close span:first-child {
	transform: rotate(45deg);
}

.flatsome-plus-cdpn-menu__close span:last-child {
	transform: rotate(-45deg);
}

.flatsome-plus-cdpn-menu__list {
	width: min(100%, 680px);
	max-height: 100%;
	margin: 0 auto;
	padding: 0 32px;
	list-style: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.flatsome-plus-cdpn-menu__item + .flatsome-plus-cdpn-menu__item {
	margin-top: 0.6rem;
}

.flatsome-plus-cdpn-menu__link {
	display: flex;
	align-items: center;
	padding: 0.55rem 0;
	color: var(--flatsome-plus-cdpn-text);
	font-size: clamp(1.45rem, 3vw, 2.3rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(22px);
	transition: transform 0.45s ease, opacity 0.35s ease, letter-spacing 0.35s ease;
}

.flatsome-plus-cdpn-menu__link:hover,
.flatsome-plus-cdpn-menu__link:focus-visible {
	color: #ffffff;
	letter-spacing: 0.1em;
}

body.flatsome-plus-cdpn-open,
html.flatsome-plus-cdpn-open {
	overflow: hidden;
}

body.flatsome-plus-cdpn-open .flatsome-plus-cdpn-menu {
	pointer-events: auto;
}

body.flatsome-plus-cdpn-open .flatsome-plus-cdpn-menu::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(30);
}

body.flatsome-plus-cdpn-open .flatsome-plus-cdpn-menu__container {
	opacity: 1;
	transition-delay: 0.22s;
}

body.flatsome-plus-cdpn-open .flatsome-plus-cdpn-menu__link {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 549px) {
	.flatsome-plus-paper-inner {
		padding-right: 24px;
		padding-left: 24px;
	}

	body.flatsome-plus-tilt-enabled {
		--flatsome-plus-menu-width: min(90vw, 340px);
		--flatsome-plus-tilt-shell-left: -14px;
		--flatsome-plus-tilt-shell-right: auto;
		--flatsome-plus-tilt-inner-padding-start: 36px;
		--flatsome-plus-tilt-inner-padding-end: 24px;
	}

	body.flatsome-plus-tilt-direction-right {
		--flatsome-plus-tilt-shell-right: -14px;
		--flatsome-plus-tilt-inner-padding-start: 24px;
		--flatsome-plus-tilt-inner-padding-end: 36px;
	}

	body.flatsome-plus-mobile-nav-effect-gooey {
		--flatsome-plus-gooey-size: 64px;
	}

	.flatsome-plus-gooey-item__label {
		font-size: 10px;
	}

	.flatsome-plus-cdpn-menu__container {
		align-items: flex-end;
		padding-bottom: 32px;
	}

	.flatsome-plus-cdpn-menu__list {
		padding-right: 24px;
		padding-left: 24px;
	}

	.flatsome-plus-cdpn-menu__close {
		top: 16px;
		right: 16px;
		width: 48px;
		height: 48px;
	}

	.flatsome-plus-cdpn-menu__link {
		font-size: clamp(1.2rem, 6vw, 1.7rem);
	}
}

@media (min-width: 850px) {
	.flatsome-plus-paper-back,
	.flatsome-plus-gooey-menu,
	.flatsome-plus-cdpn-menu {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.flatsome-plus-paper-back,
	.flatsome-plus-paper-shell,
	body.flatsome-plus-tilt-enabled #wrapper,
	.flatsome-plus-gooey-item,
	.flatsome-plus-cdpn-menu::before,
	.flatsome-plus-cdpn-menu__container,
	.flatsome-plus-cdpn-menu__link {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
