.custom-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1a1b1f;
  color: #fff;
  padding: 12px 42px;
  border-radius: 100px;
  font-size: 14px;
  line-height: 1;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.w-webflow-badge {
  display: none !important;
}

.app-button_block,
.features-cta {
  cursor: pointer;
}

/* FORM CSS  */
.custom-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateX(-10px);
  background-color: #4caf50;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

/* WAITLIST FORM WRAPPER */
.waitlist-hero-block {
  padding-top: 15vw;
}

@media screen and (max-width: 991px) {
  .waitlist-wrapper {
    padding-top: 90px;
  }
}

/* CHALLENGE AND SOLUTION CARD */
.solution {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateY(10px);
}

.solution.cc-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wait-form_button {
  text-align: center;
}

/* HIDING VERTICAL SCROLLBARS */
.cat-list_block,
.testimonial-slide {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  overflow-y: scroll;
  /* Or auto, depending on your needs */
}

.cat-list_block::-webkit-scrollbar,
.testimonial-slide::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}


#auto-tab-section .w-tab-link {
  transition: all 0.3s ease;
}