
/* mobile menu new change start only display essentaiol add see more*/

.sc-mob-see-more-content {
    max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
	will-change: max-height;
}

.sc-mob-see-more-content.active {
    max-height: 50rem; /* Adjust to your content's maximum expected height */
}

@media screen and (min-width: 992px) {
	.sc-mob-see-more-content {
		display:none;
	}
}
/* mobile menu new change end/*

/* need to change when build block this height from the src of faq block start */

.faq-ans {
	height:unset;
}
/*need to change when build block this height from the src of faq block end */

/* pricing page start  */
.sc-pp-pricing-col.active {
	display:flex !important;
}

.sc-pp-pricing-col {
	display:none !important;
}
/* pricing page end  */

.sc-search-widget {
	display:none;
}

.sc-search-widget.serch-visible {
	display:block;
}

/* mega menu hover related desk code start */

/* .mg-side.active{
background-color: red;
} */
/* mega menu hover related desk code end  */






/* mobile css for menu start */

.desk-logo.active{
	display:none;
}

.sc-header-menu.active {
	display:block;
	opacity: 1;
	transform: translateX(0%);
	transition: all 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.sc-mob-back-btn {
	visibility: hidden;
}
.sc-mob-back-btn.active {
	visibility: visible;

}
/* mobile css for menu end */


/* Loader in dowlaod */
.loading {
	position: relative;
}
.loading:before {
	content: '';
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99998;
	background: rgba(255, 255, 255, 0.7);
}
.loading:after {
	content: '';
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	transform: translate(-50%, -50%);
	z-index: 99999;
	aspect-ratio: 1;
	border-radius: 50%;
	background: 
		radial-gradient(farthest-side,var(--orange) 94%,var(--red)) top/8px 8px no-repeat,
		conic-gradient(#0000 30%,var(--orange));
	-webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
	animation: loading-animation 1s infinite linear;
}
@keyframes loading-animation{ 
	100%{ transform: translate(-50%, -50%) rotate(1turn) ;}
}
