/* Add styles for the loader overlay */
#saba_loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

/* Add styles for the loader spinner */
#saba_loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [saba-section-type] {
       display: none;
   } */

/* .saba_appLogo {
  max-height: 40px !important;
}

.saba_appLogoText {
  font-weight: 600;
  font-size: 25px;
  color: #fff;
  vertical-align: middle;
}

.navbar-brand2 .saba_appLogoText {
  color: #222 !important;
}

.m-menu-header .saba_appLogoText {
  color: #222 !important;
}

.saba_unitLogo_container {
  padding-left: 25px;
}

.saba_unitLogo {
  /* max-height: 28px !important */
  max-height: 40px !important;
}

/* .saba_html_content img {
    max-width: none !important;
       max-height: 95px !important */
/* } */

.feature-box .box-icon .icon {
  width: 35px;
  font-size: 35px;
  line-height: 35px;
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.saba_main_image {
  /* max-width: 620px;
       max-height: 550px; */
}

.saba_video_background {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  /* height: 100%; */
  zoom: 7.5;
  overflow: hidden;
}

.team-member .team-image {
  background-color: #f7f7f7 !important;
}

.banner:before {
  background: linear-gradient(
    -47deg,
    var(--primary-color-semi-light) 0%,
    var(--primary-color) 100%
  );
}

@media screen and (min-width: 769px) {
  .saba_main_menu_long .nav-item .nav-link {
    font-size: 12px;
  }
}

.fixed-menu .nav-menu li a:hover {
  color: var(--primary-color) !important;
} */

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.wa-button {
  position: fixed;
  bottom: 30px;
  right: 80px;
  z-index: 100;
  animation: slideUp 1.5s ease-out;
}

.saba_theme_appsland .wa-button {
  position: fixed;
  bottom: 30px;
  right: 80px;
  z-index: 999;
  animation: slideUp 1.5s ease-out;
}


@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.wa-button a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px !important;
  text-decoration: none;
  box-shadow: 2px 2px 3px #999;
  font-family: sans-serif;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.wa-button a.btn-only {
  padding: 10px 11px !important;
  border-radius: 50% !important;
  min-width: 40px;
  min-height: 40px;
}

.wa-button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}

.wa-button a:hover {
  background-color: #1ebe5d;
}

.wa-button i {
  font-size: 20px;
}

.wa-button span {
  font-size: 16px;
  margin-left: 10px;
}

.bounce-effect {
  position: relative;
  -webkit-animation: bounce-hero 3s infinite;
  -moz-animation: bounce-hero 3s infinite;
  animation: bounce-hero 3s infinite;
}

@keyframes bounce-hero {
  0% {
    top: 0px;
  }
  50% {
    top: 25px;
  }
  100% {
    top: 0px;
  }
}

.saba_video_background {
  filter: blur(6px);
  opacity: 0;
  transition: opacity 0.8s ease-in-out, filter 0.8s ease-in-out;
}

.saba_video_background.visible {
  filter: blur(0);
  opacity: 1;
}
