/* Animation Keyframes */
@keyframes slideOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide class */
.wrap-txt1.hide {
  display: none;
}

/* Animation classes */
.wrap-txt1.slide-out {
  animation: slideOutUp 0.4s ease-out forwards !important;
}

.wrap-txt1.slide-in {
  animation: slideInUp 0.5s ease-out forwards;
}

/* Selected business type card styling */
.sub-wrap {
  /* margin-bottom: 20px; */
   margin-bottom: 0px;
  /* padding: 15px; */
  padding: 10px;
  /* background: #f0f0f0; */
  background: #fff;
  border-radius: 8px;
  animation: fadeIn 0.5s ease-out;
}

.sub-check-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-check {
  display: flex;
  align-items: center;
  gap: 15px;
}

.business-change .btn {
  padding: 11px 20px;
  background: #FFA500;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.business-change .btn:hover {
  background: #FFA500;
}

/* Visual feedback for selection */
.retailer-check {
  transition: all 0.3s ease;
  cursor: pointer;
}

.retailer-check:hover {
  border-color: #FFA500;
  background: #f9f9f9;
}

.retailer-check.checked {
  border-color: #FFA500;
  background: #FFF8E7;
}


@media screen and (max-width:577px){
    .mobile-show-only{
        display: block !important;
    }
}
@media screen and (min-width:577px){
    .mobile-show-only{
        display: none !important;
    }
}