/*  search css */
.toolbar-spacer {
  position: sticky;
  top: 104px;
  height: 15px;                /* height of spacer */
  background-color: white;     /* white space */
  z-index: 1;
}
.is-ajax-search-result{
  z-index: 9 !important;
  position: fixed !important;
}
.cat-item-101 a,
.cat-item-130 a {
    visibility: hidden;
}
 
/* -----------------------fluent form start -----------------------------*/

/* --success popup start-- */
.ff-message-success{
 	width: 115% !important;
    position: absolute;
    top: -26px !important;
    left: -7% !important;
    height: 415px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 40px 20px 20px;
    width: 300px;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: visible;
    overflow: visible !important;
}
.ff-message-success h2{
	font-size: 28px;
    margin-top: 135px !important;
    margin-bottom: 7px !important;
    font-family: sans-serif !important;
    font-weight: 600 !important;
}
.ff-message-success h2 span{
	font-family:sans-serif !important;
}
.ff-message-success p:not(:last-child) {
    margin-bottom: 10px !important;
    margin-top: -3px !important;
    line-height: 1.4 !important;
    font-size: 17px !important;
    color: #2e2c2c;
}
.ff-message-success button {
    background-color: #101e69;
    color: #ffff;
    border: none;
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 6px !important;
}
.ff-message-success img {
    width: 60%;
    max-width: 333px;
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
}
#fluentform_6_success img{
	width:40%;
}
@media(max-width:768px){
.ff-message-success{
	left: -6% !important;
	width: 112% !important;
	height:424px !important;
	 }
	.ff-message-success img:not(.confirmation-msg-form7-mbl img){
		width:72% !important;
	}
	#fluentform_6_success img{
		width:47% !important;
	}
} 
/*success popup end */
form[id^="fluentform_"] input[type="text"]:focus,
form[id^="fluentform_"] input[type="email"]:focus,
form[id^="fluentform_"] input[type="password"]:focus,
form[id^="fluentform_"] input[type="phone"]:focus,
form[id^="fluentform_"] input[type="description"]:focus,
form[id^="fluentform_"] input:not([type="hidden"]):focus,
form[id^="fluentform_"] textarea:focus,
form[id^="fluentform_"] select:focus {
  outline: none !important;
  border: 1px solid rgba(0, 103, 181, 1) !important;
	box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.5); /* blue glow */
  transition: all 0.2s ease-in-out; 
} 


/* ---------------------------fluent form end ----------------------- */
/* ==============Global form default style css ==========================================
=======================================================================================*/
/* Multi-select input style */
.frm-fluent-form .choices[data-type*=select-multiple] .choices__input {
    font-size: 13.2px;
    padding: 10px 0;
}

/* ===== GLOBAL FLUENT FORM DESIGN ===== */
/* Apply styled card layout to all forms EXCEPT direct forms */
form.frm-fluent-form:not(.form-direct) {
    max-width: 400px;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0px 1px 15px 4px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}


.fluentform h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px; 
}

.fluentform .ff-el-form-control {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.fluentform .ff-el-group {
  margin-bottom: 20px;
}

.fluentform .ff-default .ff-el-form-control {
  max-width: 100% !important;
}

.fluentform .ff_submit_btn_wrapper {
  text-align: center;
}

form.frm-fluent-form:not(.form-direct) .ff-btn-submit {
/* .fluentform_wrapper:not(.form-direct) .ff-btn-submit { */
  background: linear-gradient(90deg, #d62d45, #4154ff);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px !important;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
	margin-bottom: -31px;
}

form.frm-fluent-form:not(.form-direct) .ff-btn-submit:hover{
  background: linear-gradient(90deg, #c8263f, #3e4fe4);
}

.fluentform_wrapper .ff-form-description {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-top: 15px;
}

/*-------------animation start-------------*/
.animationcard {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center;
  animation: straightCard linear both;
  animation-timeline: view(); /* works in Chrome, Edge, Safari */
  animation-range: entry 5% cover 35%;
}

@keyframes straightCard {
  from {
    transform: translate3d(0, 0, 0)
               scale3d(1, 1, 1)
               rotateX(25deg)
               rotateY(32deg)
               rotateZ(-17deg)
               skew(0deg, 0deg);
  }
  to {
    transform: translate3d(0, 0, 0)
               scale3d(1, 1, 1)
               rotateX(0deg)
               rotateY(0deg)
               rotateZ(0deg)
               skew(0deg, 0deg);
  }
}


.animationcard1 {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center;
  animation: straightCard1 linear both;
  animation-timeline: view(); /* works in Chrome, Edge, Safari */
animation-range: entry 5% cover 35%;
}

@keyframes straightCard1 {
  from {
    transform: translate3d(200px, 0px, 0px) /* start right */
               scale3d(1, 1, 1)
               rotateX(23.172deg)
               rotateY(-15.757deg)
               rotateZ(18.5376deg)
               skew(0deg, 0deg);
  }
  to {
    transform: translate3d(0px, 0px, 0px) /* move to center */
               scale3d(1, 1, 1)
               rotateX(0deg)
               rotateY(0deg)
               rotateZ(0deg)
               skew(0deg, 0deg);
  }
}

/*-------------animation end---------------*/

/* ----------- tickicon css start ------------- */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

 
main .blogpostcol ul li ul {
    list-style-type: circle !important;
    color: #6d28d2 !important;
	padding-left:10px !important;
}
 
.blogpostcol ul li ul li::before {
	margin-right: -7px !important;
}

.blogpostcol ul li ul li::marker {
	color:#6d28d2 !important;
}
ul.iconlist li {
    list-style: none; 
    position: relative;
    padding-left: 0px; 
	line-height: 1.3;
    padding-bottom: 6px;
	font-size: 17px;
	text-indent: -6px;
}
ul.iconlist li::before{
	content: "";
    background-image: url('https://blog.apps4.pro/wp-content/uploads/2025/09/blue-right-icon-1.svg') !important; 
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 17px;
    display: inline-block;
    position: absolute;
    left: -37px;
    top: 4.5px;
}
@media(max-width:768px) {
ul.iconlist li::before {
	left: -15px;
	}
ul.iconlist li {
   text-indent: 12px;
	}	
	.tag footer ul {
    padding-left: 15px !important;
}
}
.custom-hidden-item {
  display: none !important;
}
/* Styling for selected item */
.selected-highlight {
  background-color: #eef6ff !important;
  font-weight: 600;
  color: #0073aa;
  position: relative; /* required for absolute positioning inside */
  padding-right: 24px; /* create space for the check icon */
}
/* Check icon styling */
.fa-check-icon {
/*   font-family: "Font Awesome 6 Free"; */
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0073aa;
  pointer-events: none;
display: inline-block;
}
.fa-check-icon::before {
  content: "\f00c"; /* This is the Font Awesome Unicode for check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* ----------- tickicon css end ----------------*/

/* -------------top banner- kickstart css start-----------*/

p.custombuttonpricing1 {
    margin-left: 10px !important;
}
.categorybtn:hover a {
  color: #fff !important; /* white text on hover */
}
.custombuttonhvr,.custombuttonhvrpricing {
	font-size:16px !important; 
}
/* figure.wp-block-image.logoimg {
    margin-top: -19px;
	position:absolute;
} */
@media (max-width: 768px) {
.arrow-iconfoot {
	display: inline-block;
    float: right;
    padding-top: 6px;
    font-size: 15px !important;
}
}
@media only screen and (max-width: 768px) {
  
.is-form-style input.is-search-input {
margin-top: 45px !important;
   }
.is-search-icon {
      margin-top: 22px !important;
}
/* figure.wp-block-image.logoimg {
    margin-top: 30px;
			 z-index:10;
} */
.mobile-toggle-btn {
    margin-top: -98px !important;
}
	 body.banner-closed.banner-closed figure.wp-block-image.logoimg {
        margin-top: 18px !important;
    }
	body.banner-closed .mobile-toggle-btn {
	        margin-top: -130px !important;
	}
}

body:not(.banner-closed) .stickyhead.scrolled .scroll-margin {
	margin-top:6px !important;
}
.wpmm_brand_logo_wrap {
padding-top: 15px !important;
}

body .wp-megamenu-wrap .wpmm-nav-wrap > ul {
top: 10px !important;
}
.banner-closed header.stickyhead{
	margin-block-start: 0;
}
form.is-search-form.is-form-style.is-form-style-3.is-form-id-1626.is-ajax-search {
    padding-top: 33px !important;
}
 
body.banner-closed .wpmm_brand_logo_wrap {
  padding-top: 5px !important;}

body.banner-closed .wp-megamenu-wrap .wpmm-nav-wrap > ul {
  top: 5px !important;}

body.banner-closed form.is-search-form.is-form-style.is-form-style-3.is-form-id-1626.is-ajax-search {
  padding-top: 15px !important;
}
body.banner-closed figure.wp-block-image.logoimg {
    margin-top: -15px !important;
}
body.banner-closed .ourproducts {
top:-6px !important;
}
body.banner-closed .ourproducts-megamenu-wrapper {
  top: 40px !important;
}


.closeimg {
  position: absolute;
  top: 2px;       /* Adjust as needed */
  right: 45px;     /* Adjust as needed */
  max-width: 40px; /* Ensures image stays the right size */
  cursor: pointer; /* Optional: makes it look clickable */
  z-index: 1000;   /* Ensures it stays on top */
}


.topheader-text u,.topheader-text img,.topheader-text span,.topheader-text em {
	cursor: pointer;
}

.topheader-text{
	font-style:normal !important;
}
.topheader-text span {
 font-size:14px;
	font-style:italic;
}
.topbanner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 38px;
  background: linear-gradient(to right, #cc333f, #0d66db) !important;
}
.header-banner {
	padding-top:4px;
}
@media screen and (max-width: 768px) {
	.header-banner {
	padding-top:6px;
}
 form.is-search-form.is-form-style.is-form-style-3.is-form-id-1626.is-ajax-search {
    padding-top: 0px !important;
}
body.banner-closed form.is-search-form.is-form-style.is-form-style-3.is-form-id-1626.is-ajax-search  {
    padding-top: 0px !important;
}
body:not(.banner-closed) .stickyhead.scrolled .scroll-margin {
	margin-top:12px !important;
}
.topbanner {
  background: linear-gradient(to right, #e53935, #1e88e5); 
  color: white;
 padding-top: 4px;
 padding-bottom:37px;
  flex-direction: column;
  align-items: flex-start;
 max-height: 50px;	
 height:54px;
}
figure.wp-block-image.aligncenter.size-full.fireimg {
    margin-bottom: 18px !important;
}
.topheader-text span , .topheader-text p  {
 font-size:13px !important;
}
  .topbanner .closeimg {
    position: absolute;
    top: -6px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
  }
	
img.wp-image-20907 {
    max-width: 65%;
    max-height: 60%;
}
  .topbanner .topheader-text {
    flex-direction: column;
        line-height: 1.2;
	 margin-top: -8px;
	  font-size: 13px !important;
  }

  .topbanner .topheader-text .fireimg {
    margin-bottom: 5px;
    display: inline-block;
  }
.fireimg {
	margin-top:-30px !important;
	
	}

  .topbanner .topheader-text a {
    margin-top: 4px;
    text-decoration: underline;
  }
}

@media (max-width: 768px) {
  .topbanner {
    background: linear-gradient(to right, #e53935, #1e88e5) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
  /* --------- topbanner-kickstart css end ---------------*/
  
/* ------------sticky footer start ----------------*/
.blink-icon{
	width:24px !important;
	height:24px !important;
	vertical-align:middle !important;
	margin-right:6px;
}

#footer-dynamic-text {
  font-size:12px !important;
   display: inline-block;
    opacity: 0;
	transform: scale(0.6); /* was 0.9, now shrinks more */
    transition: opacity 0.5s ease, transform 0.5s ease; /* was 1s, now snappier */;
}
#footer-dynamic-text.show{
  opacity: 1;
  transform: scale(1);
}
#sticky-bar p:not(#fluentform_7_success p){
	display:none;
}
.form-blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  display: none;
  z-index: 999; 
}
 
.form-blur-overlay.active {
  display: block ;
}

.ff-message-success {
  z-index: 10001 !important; 
  background: white;
  position: absolute !important;
}

.footer-sticky-sec-grp .wp-block-columns{
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid transparent !important;
    background: linear-gradient(white,white) padding-box, linear-gradient(90.38deg, #897DF5 3.83%, #BC70DF 98.08%) border-box !important;
}


.discover-the-details{
    text-decoration: none;
    display: block;
    width: 160px;
    height: 41px;
    border: 1px solid #ffffff;
    border-radius: 7px;
    background-color: #ed3064;
    box-shadow: 1px 2px 3px 0px #000000;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 39px;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
	cursor:pointer;
}

/* body .footer-sticky-sec-grp.scrolled{ */
body .footer-sticky-sec-grp{
  position: fixed !important;
  bottom: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  display:flex;
	justify-content:center;
}
footer[data-wpr-lazyrender]{
  content-visibility: visible !important;
}

.footer-sticky-sec-grp.scrolled #fluentform_7_success{
	z-index: 10000 !important; 
}
.footer-sticky-nav-link{
	cursor:pointer;
	margin:auto !important;
	margin-top:-17px !important;
}
body .footer-sticky-nav-link a{
	font-size:13px !important;
}
.beta-spot-email-col{
	margin:auto !important;
}
.footer-sticky-background-sec::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 7px !important;
    z-index: -1;
    animation: borderMove 5s linear infinite;
}
@keyframes borderMove {
  0% {
    background:linear-gradient(0deg, rgb(147, 201, 255, 0.75) 0%, rgb(211, 185, 245,0.75) 100%);
  }
  25% {
    background:linear-gradient(90deg, rgb(147, 201, 255,0.75) 0%, rgb(211, 185, 245,0.75) 100%);
  }
  50% {
     background:linear-gradient(180deg, rgb(147, 201, 255,0.75) 0%, rgb(211, 185, 245,0.75) 100%);
  }
  75% {
    background:linear-gradient(270deg, rgb(147, 201, 255,0.75) 0%, rgb(211, 185, 245,0.75) 100%);
  }
  100% {
    background:linear-gradient(0deg, rgb(147, 201, 255,0.75) 0%, rgb(211, 185, 245,0.75) 100%);
  }
}
.footer-sticky-background-sec{
padding:6px;
}
/* dynamic show/hide start*/
.footer-sticky-sec-grp {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.footer-sticky-sec-grp.visible {
/*   opacity: 1; */
/*   visibility: visible; */
}

.footer-sticky-sec-grp.hidden {
  opacity: 0;
  visibility: hidden;
}
/*dynamic show/hide end */
.blogpostcol #fluentform_7_success p.confirmation-msg-form7-mbl{
	width:auto !important;
}
 .beta-spot-email-col #fluentform_7_success h2{
		 margin-top:71px !important;
	 }
 @media(max-width:768px){
	 .confirmation-msg-form7-mbl{
		 padding-left:10px !important;
		 padding-right:10px !important;
	 }
	 body .footer-sticky-heading{
	font-size:16px !important;
	margin-bottom:6px !important;
	}
	.footer-sticky-sec-grp{
		padding-left:15px !important;
		padding-right:15px !important;
	}
	.footer-sticky-sec-grp .wp-block-columns{
		padding-left:15px !important;
		padding-right:15px !important;
		gap:1px;
	}
	.footer-sticky-img{
	display:none;
	}
	#fluentform_7 .ff-column-container{
    display:flex;
		flex-direction:row;
	}
	.footer-sticky-sec-grp p:not(.footer-sticky-nav-link,#fluentform_7_success p){
		display:none;
	}
	.footer-sticky-nav-link{
	margin-top:0px !important;
	}
/* 	.blog-social-share-sec{
		margin-bottom: 141px !important;
	} */
	body #fluentform_7_success{
		width: 100% !important;
        top: -341% !important;
        left: 0% !important;
        height: 389px !important;
	}
	 body #fluentform_7_success h2{
		 margin-top:39px !important;
	 }
	 .beta-spot-email-col #fluentform_7_success{
		         height: 431px !important;
	 }
	 .beta-spot-email-col #fluentform_7_success h2{
		 margin-top:61px !important;
	 }
}
  
/*-------------------- sticky footer end------------------ */



/*=============== new menu css start ====================*/

.collab-powerplatform{
 	display: flex;
    gap:10px;     
}
.collab-menu-left{
	flex:0 0 44%;
}
.powerplat-menu-right{
flex:0 0 56%;
}
.collab-platform-title{
 	font-size:19px;
	font-weight:600;
	font-family:-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
	margin: 0 0 5px 0; 
	display: inline-flex;
  align-items: center; /* vertical alignment */
  gap:4px; 
}   
.collab-platform-title img{
	width:19px;
	height:19px;
	margin-top:-8px;
} 
.collab-platform-text,.report-manage-sec-text{
	display:flex;
	align-items:center;
	gap:8px;
	padding:4px 5px;
} 
.collab-platform-text:hover,.report-manage-sec-text:hover{
	font-weight:bold;
	background-color:#F3EDED;
 } 
.collab-platform-text:hover span,.report-manage-sec-text:hover span{
		color:#0062D6;
} 
.collab-platform-text span,.report-manage-sec-text span{
	font-size:18px;
	font-family:sans-serif;
/* 	margin-left:7px; */
}
.collab-platform-text img{
/* 	margin-top:3px; */
}

.menu-talk-to-expert-sec{
	font-family: Sans-serif;
    font-size: 12px;
    text-align: center;
    background-color:#F8F8F8;
    padding: 10px 20px 7px 20px;
    margin-top: 17px;
    align-items: center;
/*     margin-right: 19px !important; */
	box-shadow:0 1px 3px rgba(0, 0, 0, 0.2);
    max-width:308px;
	border-radius:10px;
}
.ourproducts-megamenu-wrapper{
	max-width:1178px !important;
}
#product12 *,#product11 * ,.container-box *{
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif !important;
}

.box1-menu-right-sec{
	padding-left:30px;
}

.mblcontainer-box1.active{
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}
.mblcontainer-box2.active{
/* 	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);   */
	box-shadow:-1px 1px 16px rgba(0, 0, 0, 0.2) !important;
}


@media (max-width: 768px) {
#product12 *,#product11 * ,.container-box *{
    font-family:Sans-serif !important;
}
#product12 .fa::before,
#product11 .fa::before,
.container-box .fa::before {
    font-family: "Font Awesome 6 Free" !important;
/*     font-weight: 900; */
}
 .mbl-collab-platform-title{
	font-size:16px;
	font-weight:600;
	font-family:sans-serif;
	margin: 10px 0 0 0; 
	display: inline-flex;
    align-items: center; /* vertical alignment */
    gap:4px;	
	} 
	
 .newmblmenu1 .collab-platform-text,.newmblmenu1 .report-manage-sec-text{
		padding:0.5px 5px;
	} 
 .newmblmenu1 .collab-platform-text span,.newmblmenu1 .report-manage-sec-text span{
		font-size:17px;
	}	

	.mbl-collab-platform-title img{
		margin-top: -9px;
        width: 17px;
	}
}

/*=============== new menu css end ====================*/

 