/* ==========================================================
   AIRSA CSS ANIMATIONS 
   ========================================================== */
@media only screen and (min-width: 1200px) {
	/* Fade In */
	.airsa-fade-in{ opacity:0; }
	.airsa-animate.airsa-fade-in{ animation:airsaFadeIn .8s ease forwards; }
	@keyframes airsaFadeIn{
		from{opacity:0;}
		to{opacity:1;}
	}

	/* Fade Up */
	.airsa-fade-up{ opacity:0; transform:translateY(60px); }
	.airsa-animate.airsa-fade-up{ animation:airsaFadeUp .8s ease forwards; }
	@keyframes airsaFadeUp{
		to{ opacity:1; transform:translateY(0); }
	}

	/* Fade Down */
	.airsa-fade-down{ opacity:0; transform:translateY(-60px); }
	.airsa-animate.airsa-fade-down{ animation:airsaFadeDown .8s ease forwards; }
	@keyframes airsaFadeDown{
		to{ opacity:1; transform:translateY(0); }
	}

	/* Fade Left */
	.airsa-fade-left{ opacity:0; transform:translateX(-60px); }
	.airsa-animate.airsa-fade-left{ animation:airsaFadeLeft .8s ease forwards; }
	@keyframes airsaFadeLeft{
		to{ opacity:1; transform:translateX(0); }
	}

	/* Fade Right */
	.airsa-fade-right{ opacity:0; transform:translateX(60px); }
	.airsa-animate.airsa-fade-right{ animation:airsaFadeRight .8s ease forwards; }
	@keyframes airsaFadeRight{
		to{ opacity:1; transform:translateX(0); }
	}

	/* Zoom In */
	.airsa-zoom-in{ opacity:0; transform:scale(.5); }
	.airsa-animate.airsa-zoom-in{ animation:airsaZoomIn .8s ease forwards; }
	@keyframes airsaZoomIn{
		to{ opacity:1; transform:scale(1); }
	}

	/* Zoom Out */
	.airsa-zoom-out{ opacity:0; transform:scale(1.4); }
	.airsa-animate.airsa-zoom-out{ animation:airsaZoomOut .8s ease forwards; }
	@keyframes airsaZoomOut{
		to{ opacity:1; transform:scale(1); }
	}

	/* Bounce In */
	.airsa-bounce-in{ opacity:0; }
	.airsa-animate.airsa-bounce-in{ animation:airsaBounceIn 1s forwards; }
	@keyframes airsaBounceIn{
		0%{ opacity:0; transform:scale(.3); }
		50%{ opacity:1; transform:scale(1.08); }
		70%{ transform:scale(.9); }
		100%{ opacity:1; transform:scale(1); }
	}

	/* Slide Left */
	.airsa-slide-left{ opacity:0; transform:translateX(100%); }
	.airsa-animate.airsa-slide-left{ opacity:1; animation:airsaSlideLeft .8s forwards; }
	@keyframes airsaSlideLeft{
		to{ transform:translateX(0); }
	}

	/* Slide Right */
	.airsa-slide-right{ opacity:0; transform:translateX(-100%); }
	.airsa-animate.airsa-slide-right{ opacity:1; animation:airsaSlideRight .8s forwards; }
	@keyframes airsaSlideRight{
		to{ transform:translateX(0); }
	}

	/* Slide Up */
	.airsa-slide-up{ opacity:0; transform:translateY(80px); }
	.airsa-animate.airsa-slide-up{ opacity:1; animation:airsaSlideUp .8s forwards; }
	@keyframes airsaSlideUp{
		to{ transform:translateY(0); }
	}

	/* Slide Down */
	.airsa-slide-down{ opacity:0; transform:translateY(-80px); }
	.airsa-animate.airsa-slide-down{ opacity:1; animation:airsaSlideDown .8s forwards; }
	@keyframes airsaSlideDown{
		to{ transform:translateY(0); }
	}

	/* Rotate In */
	.airsa-rotate-in{ opacity:0; transform:rotate(-180deg) scale(.5); }
	.airsa-animate.airsa-rotate-in{ animation:airsaRotateIn .8s ease forwards; }
	@keyframes airsaRotateIn{
		to{ opacity:1; transform:rotate(0) scale(1); }
	}

	/* Flip X */
	.airsa-flip-x{ opacity:0; transform-style:preserve-3d; }
	.airsa-animate.airsa-flip-x{ animation:airsaFlipX .8s forwards; }
	@keyframes airsaFlipX{
		from{ opacity:0; transform:perspective(700px) rotateX(90deg); }
		to{ opacity:1; transform:perspective(700px) rotateX(0); }
	}

	/* Flip Y */
	.airsa-flip-y{ 
		opacity: 0;
		transform: rotateY(0);
		transform-style: preserve-3d;
	}
	.airsa-animate.airsa-flip-y{ animation:airsaFlipY .8s ease-in-out forwards; }
	@keyframes airsaFlipY{
	   from{
			opacity: 0;
			transform: rotateY(0);
		}
		to{
			opacity: 1;
			transform: rotateY(360deg);
		}
	}

	/* Shake (entrance-style trigger on scroll) */
	.airsa-shake{ opacity:0; }
	.airsa-animate.airsa-shake{ opacity:1; animation:airsaShake .7s; }
	@keyframes airsaShake{
		0%,100%{ transform:translateX(0); }
		20%{ transform:translateX(-8px); }
		40%{ transform:translateX(8px); }
		60%{ transform:translateX(-8px); }
		80%{ transform:translateX(8px); }
	}

	/* Swing */
	.airsa-swing{ opacity:0; transform-origin:top center; }
	.airsa-animate.airsa-swing{ opacity:1; animation:airsaSwing 1s; }
	@keyframes airsaSwing{
		20%{ transform:rotate(15deg); }
		40%{ transform:rotate(-10deg); }
		60%{ transform:rotate(5deg); }
		80%{ transform:rotate(-5deg); }
		100%{ transform:rotate(0); }
	}

	/* Rubber Band */
	.airsa-rubber-band{ opacity:0; }
	.airsa-animate.airsa-rubber-band{ opacity:1; animation:airsaRubberBand 1s; }
	@keyframes airsaRubberBand{
		0%{ transform:scale(1); }
		30%{ transform:scaleX(1.25) scaleY(.75); }
		40%{ transform:scaleX(.75) scaleY(1.25); }
		60%{ transform:scaleX(1.15) scaleY(.85); }
		100%{ transform:scale(1); }
	}

	/* Tada */
	.airsa-tada{ opacity:0; }
	.airsa-animate.airsa-tada{ opacity:1; animation:airsaTada 1s; }
	@keyframes airsaTada{
		0%{ transform:scale(1); }
		10%,20%{ transform:scale(.9) rotate(-3deg); }
		30%,50%,70%,90%{ transform:scale(1.1) rotate(3deg); }
		40%,60%,80%{ transform:scale(1.1) rotate(-3deg); }
		100%{ transform:scale(1) rotate(0); }
	}

	/* Wobble */
	.airsa-wobble{ opacity:0; }
	.airsa-animate.airsa-wobble{ opacity:1; animation:airsaWobble 1s; }
	@keyframes airsaWobble{
		15%{ transform:translateX(-25%) rotate(-5deg); }
		30%{ transform:translateX(20%) rotate(3deg); }
		45%{ transform:translateX(-15%) rotate(-3deg); }
		60%{ transform:translateX(10%) rotate(2deg); }
		75%{ transform:translateX(-5%) rotate(-1deg); }
		100%{ transform:none; opacity:1; }
	}

	/* ==========================================================
	   CONTINUOUS / LOOP ANIMATIONS
	   Eigula entrance animation na — page e thakle continuous
	   loop cholte thake, tai .airsa-animate er upor depend kore na.
	   ========================================================== */

	.airsa-bounce{ animation:airsaBounce 1.5s infinite; }
	@keyframes airsaBounce{
		0%,20%,50%,80%,100%{ transform:translateY(0); }
		40%{ transform:translateY(-30px); }
		60%{ transform:translateY(-15px); }
	}

	.airsa-rotate{ animation:airsaRotate 5s linear infinite; }
	@keyframes airsaRotate{
		to{ transform:rotate(360deg); }
	}

	.airsa-pulse{ animation:airsaPulse 1.5s infinite; }
	@keyframes airsaPulse{
		0%{ transform:scale(1); }
		50%{ transform:scale(1.08); }
		100%{ transform:scale(1); }
	}

	.airsa-flash{ animation:airsaFlash 1s infinite; }
	@keyframes airsaFlash{
		0%,50%,100%{ opacity:1; }
		25%,75%{ opacity:0; }
	}

	.airsa-heartbeat{ animation:airsaHeartbeat 1.4s infinite; }
	@keyframes airsaHeartbeat{
		0%{ transform:scale(1); }
		14%{ transform:scale(1.3); }
		28%{ transform:scale(1); }
		42%{ transform:scale(1.3); }
		70%{ transform:scale(1); }
	}

	.airsa-floating{ animation:airsaFloating 3s ease-in-out infinite; }
	@keyframes airsaFloating{
		0%,100%{ transform:translateY(0); }
		50%{ transform:translateY(-15px); }
	}

	.airsa-animate.airsa-delay-100  { animation-delay: .1s; }
	.airsa-animate.airsa-delay-200  { animation-delay: .2s; }
	.airsa-animate.airsa-delay-300  { animation-delay: .3s; }
	.airsa-animate.airsa-delay-400  { animation-delay: .4s; }
	.airsa-animate.airsa-delay-500  { animation-delay: .5s; }
	.airsa-animate.airsa-delay-600  { animation-delay: .6s; }
	.airsa-animate.airsa-delay-700  { animation-delay: .7s; }
	.airsa-animate.airsa-delay-800  { animation-delay: .8s; }
	.airsa-animate.airsa-delay-900  { animation-delay: .9s; }
	.airsa-animate.airsa-delay-1000 { animation-delay: 1s; }
	.airsa-animate.airsa-delay-1100 { animation-delay: 1.1s; }
	.airsa-animate.airsa-delay-1200 { animation-delay: 1.2s; }
	.airsa-animate.airsa-delay-1300 { animation-delay: 1.3s; }
	.airsa-animate.airsa-delay-1400 { animation-delay: 1.4s; }
	.airsa-animate.airsa-delay-1500 { animation-delay: 1.5s; }
	.airsa-animate.airsa-delay-1600 { animation-delay: 1.6s; }
	.airsa-animate.airsa-delay-1700 { animation-delay: 1.7s; }
	.airsa-animate.airsa-delay-1800 { animation-delay: 1.8s; }
	.airsa-animate.airsa-delay-1900 { animation-delay: 1.9s; }
	.airsa-animate.airsa-delay-2000 { animation-delay: 2s; }

	body:not(.elementor-editor-active) .missed-calls .elementor-image-box-img,
	body:not(.elementor-editor-active) .missed-calls .ha-infobox-figure {
		opacity: 0;
		transform: rotateY(0);
		transform-style: preserve-3d;
	}

	body:not(.elementor-editor-active) .airsa-animate.missed-calls .elementor-image-box-img,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls .ha-infobox-figure {
		animation: missedCallsFlipY .8s ease-in-out forwards;
	}

	@keyframes missedCallsFlipY{
		from{
			opacity: 0;
			transform: rotateY(0);
		}
		to{
			opacity: 1;
			transform: rotateY(360deg);
		}
	}

	/* Content Fade Up */
	body:not(.elementor-editor-active) .missed-calls .elementor-image-box-content,
	body:not(.elementor-editor-active) .missed-calls .ha-infobox-body {
		opacity:0;
		transform:translateY(60px);
	}
	body:not(.elementor-editor-active) .airsa-animate.missed-calls .elementor-image-box-content,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls .ha-infobox-body {
		animation: missedCallsFadeUp .8s ease forwards;
	}
	@keyframes missedCallsFadeUp{
		to{
			opacity:1;
			transform:translateY(0);
		}
	}

	/* Card 1 */
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-one .elementor-image-box-img,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-one .ha-infobox-figure {
		animation-delay: 0.3s;
	}
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-one .elementor-image-box-content,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-one .ha-infobox-body {
		animation-delay: 0.5s;
	}

	/* Card 2 */
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-two .elementor-image-box-img,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-two .ha-infobox-figure {
		animation-delay: 0.7s;
	}
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-two .elementor-image-box-content,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-two .ha-infobox-body {
		animation-delay: 0.9s;
	}

	/* Card 3 */
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-three .elementor-image-box-img,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-three .ha-infobox-figure {
		animation-delay: 1.0s;
	}
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-three .elementor-image-box-content,
	body:not(.elementor-editor-active) .airsa-animate.missed-calls-three .ha-infobox-body {
		animation-delay: 1.2s;
	}
	
	body.elementor-editor-active [class*="airsa-"] {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}


/**contact form styles*/
.ff_submit_btn_wrapper.ff-el-group{
	margin-bottom: 0px !important;
}
.fluentform .frm-fluent-form .ff-t-container{
	gap: 20px;
}
.fluentform .ff-el-input--label{
	margin-bottom: 8px !important;
}
.help-message {
	margin-bottom: 0 !important;
	position: absolute;
    right: 0;
    bottom: 14px;
	width: max-content;
}
.help-text{
	font-family: Inter;
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.44px;
	margin-bottom: 0;
}
/* Sticky Header */
.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support {
    opacity:0;
    visibility:hidden;
}

.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.header-loaded {
	opacity: 1;
    visibility: visible;
	transition: opacity 0.8s ease-in-out;
}

.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform .5s ease;
}
@media only screen and (min-width: 768px){
	.ha-template-content-header ul.menu {
		display: flex !important;
		list-style: none !important;
		padding: 0 !important;
	}
}

body.home .ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support {
    top: 48px;
}

body.home .ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-up,
body.home .ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-down {
	top: 24px;
}

.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-down {
	top: 24px;
    transform: translateY(calc(-100% - 30px));
}

.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-up {
	top: 24px;
    transform: translateY(0);
}
.header-logo a {
	display: flex;
}

@media only screen and (min-width: 768px) {
	.ha-nav-humberger-wrapper {
		display: none !important;
	}
}


.ha-template-content-header .desktop-header-inner {
	backdrop-filter: blur(23px);
}
.ha-template-content-header.scroll-up .desktop-header-inner {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: all 0.5 ease-in-out;
}

/* Footer */
.global-cta-container,
.max-width-1200 {
	max-width: 1200px;
}
.ekit-template-content-footer ul.elementor-icon-list-items {
	list-style: none !important;
	padding: 0 !important;
}
@media only screen and (max-width: 767px) {
	.footer-bg-image {
		background: linear-gradient(180deg, #FFFFFF 0%, #C4E0F3 100%) !important;
	}
}

/**contact form styles*/
@media only screen and (max-width: 1024px) {
	.help-message {
		bottom: 0;
		right: 50%;
		transform: translateX(50%);
	}
	.help-message-inner {
		justify-content: center !important;
	}
	.help-text{
		font-size: 12px;
		line-height: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.ha-template-content-header .ha-navigation-burger-menu ul.menu {
		width: calc(100vw - 32px);
		top: 55px;
		border-radius: 4px;
	}
	.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support {
		top: 0;
	}
	
	body.home .ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support,
	body.home .ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-up,
	body.home .ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-down {
		top: 0;
	}

	.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-down {
		top: 0;
		transform: translateY(calc(-100% - 10px));
	}

	.ha-template-content-markup.ha-template-content-header.ha-template-content-theme-support.scroll-up {
		top: 0;
	}
}

/* Home Hero section */
.hero-bg-shape {
	height: 100% !important;
}

/* Rive Animation */
canvas.rive-canvas-mobile {
	width: 100%;
}

/* accordion style */
#contact-accordion .elementor-accordion .elementor-tab-title .elementor-accordion-icon svg {
    width: 18px;
    height: 18px;
}

#contact-accordion .elementor-accordion .elementor-accordion-item:not(:last-child) {
    margin-bottom: 12px;
}

#contact-accordion .elementor-tab-content,
#contact-accordion .elementor-tab-title {
    border: none !important;
}
#contact-accordion .elementor-tab-title {
    border: none !important;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right {
    float: unset !important;
    text-align: center !important;
    width: auto;
    display: flex;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed,
.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
	line-height: 0;
}

#contact-accordion .elementor-accordion .elementor-accordion-item + .elementor-accordion-item {
    border-block-start: 1px solid var(--e-global-color-3442b30);
}

#contact-accordion .elementor-accordion-item {
    border-radius: 16px !important;
    overflow: hidden;
}

#contact-accordion .elementor-tab-title.elementor-active,
#contact-accordion .elementor-tab-content.elementor-active {
    background-color: var(--e-global-color-cf0245a) !important;
}

.calendar-iframe iframe {
	min-height: 786px !important;
}

@media only screen and (max-width: 1024px) {
	.calendar-iframe iframe {
		min-height: 710px !important;
	}
}
@media only screen and (max-width: 800px) {
	.calendar-iframe iframe {
		min-height: 900px !important;
	}
}
@media only screen and (max-width: 767px) {
	.calendar-iframe iframe {
		min-height: 710px !important;
	}
}

/* 404 page */
.error404 .page-content {
	padding-top: 120px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1250px) {
	.real-problem-image {
		flex-shrink: 1 !important;
	}
}

/* Elementor widget custom css */
.elementor-icon-box-title {
    margin-top: 0;
}
.elementor-widget-text-editor p {
    margin-bottom: 0;
}

/* Offcanvas Toggle Menu — Styles */

.ac-offcanvas-wrapper {
	position: relative;
}

.ac-offcanvas-wrapper .ac-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ac-offcanvas-wrapper .ac-logo {
	font-weight: 700;
	font-size: 20px;
	color: #0A2540;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.ac-offcanvas-wrapper .ac-logo img {
	max-height: 36px;
	width: auto;
	display: block;
}

.ac-offcanvas-wrapper .ac-toggle {
	background: none;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	position: relative;
	padding: 0;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ac-offcanvas-wrapper .ac-bar {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #0A2540;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.ac-offcanvas-wrapper .ac-bar1 { top: 0; }
.ac-offcanvas-wrapper .ac-bar2 { top: 50%; transform: translateY(-50%); }
.ac-offcanvas-wrapper .ac-bar3 { bottom: 0; top: auto; }

.ac-offcanvas-wrapper .ac-toggle.active .ac-bar1 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.ac-offcanvas-wrapper .ac-toggle.active .ac-bar2 {
	opacity: 0;
}
.ac-offcanvas-wrapper .ac-toggle.active .ac-bar3 {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%) rotate(-45deg);
}

.ac-offcanvas-wrapper .ac-offcanvas {
	position: fixed;
	top: 0;
	width: 100%;
	max-width: 420px;
	height: 100dvh;
	background: #ffffff;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
	transition: right 0.35s ease, left 0.35s ease;
}

.ac-offcanvas-wrapper .ac-offcanvas.ac-position-right {
	right: -100%;
}
.ac-offcanvas-wrapper .ac-offcanvas.ac-position-right.open {
	right: 0;
}

.ac-offcanvas-wrapper .ac-offcanvas.ac-position-left {
	left: -100%;
	box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
}
.ac-offcanvas-wrapper .ac-offcanvas.ac-position-left.open {
	left: 0;
}

.ac-offcanvas-wrapper .ac-offcanvas-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 8px 12px 12px;
}

.ac-offcanvas-wrapper .ac-close {
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #0A2540;
	width: 40px;
	height: 40px;
	padding: 0;
}

.ac-toggle:hover, .ac-close:hover{
	background-color: transparent !important;
}

.ac-offcanvas-wrapper .ac-nav {
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding: 24px 16px;
}

.ac-offcanvas-wrapper .ac-nav a {
	font-size: 24px;
	font-weight: 600;
	color: #0A2540;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ac-offcanvas-wrapper .ac-nav a.ac-nav-depth-1 {
	font-size: 18px;
	font-weight: 500;
	opacity: 0.8;
	margin-left: 16px;
}
.ac-offcanvas-wrapper .ac-nav a.ac-nav-depth-2 {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.65;
	margin-left: 32px;
}

.ac-offcanvas-wrapper .ac-offcanvas-bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 16px;
	margin-top: auto;
	margin-bottom: 10px;
}

.ac-offcanvas-wrapper .ac-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px;
	border-radius: 8px;
	font-family: Inter;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	text-decoration: none;
	border: 1px solid transparent;
	transition: all 0.3s ease-in-out;
}

.ac-offcanvas-wrapper .ac-btn-primary {
	background-color: #0049A8;
	color: #ffffff;
}

.ac-offcanvas-wrapper .ac-btn-outline {
	background-color: #ffffff;
	color: #000;
	border-color: #000;
}
.ac-offcanvas-wrapper .ac-btn.ac-btn-primary:hover, .ac-offcanvas-wrapper .ac-btn.ac-btn-outline:hover {
	background-color: #1570EF !important;
	color: #fff !important;
	border-color: #1570EF !important;
}

.ac-offcanvas-wrapper .ac-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease;
}

.ac-offcanvas-wrapper .ac-overlay.open {
	opacity: 1;
	visibility: visible;
}

body.ac-noscroll {
	overflow: hidden;
}

.elementor-widget-empty-icon, .ui-resizable-handle{
	display: none !important;
}
            