/* Form Layout Starts Here */

.ba-vo-form-next-btn,
.ba-vo-form-prev-btn {
  width: 200px !important;
}

.ba-vo-form-sidebar {
  background-color: #f9fafb;
  min-height: 90vh;
  padding: 2rem;
  border-right: 1px solid #e5e7eb;
  position: sticky;
  top: 80px; /* Adjust based on your navbar height */
  align-self: start; /* Ensures it starts at the top of its column */
  height: fit-content; /* Prevent it from stretching */
  z-index: 3;
}

.ba-vo-form-rightside {
  background: #fff;
  overflow-y: auto;
  padding-right: 15px;
  /* height:542px; */
}

.ba-vo-form-step-item {
  position: relative;
  padding: 1.2rem 0;
  padding-left: 3rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.ba-vo-form-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1rem;
  top: 3.5rem;
  width: 2px;
  height: calc(100% - 2rem);
  background-color: #e5e7eb;
  z-index: 0;
}

.ba-vo-form-step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 3.5rem;
  width: 2px;
  height: 0;
  background-color: var(--dark-blue-color);
  z-index: 1;
  transition: height 0.4s ease;
}

.ba-vo-form-step-item.completed:not(:last-child)::before {
  height: calc(100% - 2rem);
}

.ba-vo-form-step-number {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1;
}

.ba-vo-form-step-item.active .ba-vo-form-step-number {
  background-color: var(--dark-blue-color);
  color: white;
  border-color: var(--dark-blue-color);
}

.ba-vo-form-step-item.completed .ba-vo-form-step-number {
  background-color: var(--dark-blue-color);
  color: white;
  border-color: var(--dark-blue-color);
}

.ba-vo-form-step-title {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.ba-vo-form-step-description {
  font-weight: 600;
  color: var(--dark-blue-color);
  font-size: 15px;
}

.ba-vo-form-step-item.active .ba-vo-form-step-title,
.ba-vo-form-step-item.active .ba-vo-form-step-description {
  color: var(--dark-blue-color);
}

.ba-vo-form-section {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-vo-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ba-vo-form-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue-color);
  margin-bottom: 0.5rem;
  line-height: 35px;
}

.ba-vo-form-header p {
  font-size: 0.875rem;
  color: #6b7280;
}

.ba-vo-form-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.ba-vo-form-btn-secondary-custom {
  background-color: white;
  color: var(--dark-blue-color);
  border: 1px solid #e5e7eb;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ba-vo-form-btn-secondary-custom:hover {
  background-color: #f9fafb;
  border-color: var(--dark-blue-color);
}

.ba-vo-form-step-content {
  display: none;
}

.ba-vo-form-step-content.active {
  display: block;
}

.ba-vo-form-step-content.animated {
  animation: formAniamtion 0.5s ease both;
}

#custom-address-form {
  margin-top: 40px;
}

#custom-address-form small {
  text-align: center;
  display: block;
  color: var(--light-green-color);
  width: 60%;
  margin: 0 auto;
  margin-top: 10px;
}

.ba-vo-form-sidebar .sidebar-total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  background: linear-gradient(135deg, #20282d, #3a4a55);
}
.ba-vo-form-sidebar .sidebar-total-price p {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
}

.ba-vo-form-sidebar .sidebar-total-price span {
  font-weight: 800;
  color: #fff;
  font-size: 20px;
}

@keyframes formAniamtion {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#baVoForm_step-4 .ba-vo-form-btn-primary-custom,
#baVoForm_step-5 .ba-vo-form-btn-primary-custom,
#baVoForm_step-6 .ba-vo-form-btn-primary-custom {
  width: auto;
}

.common-border-form {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}
/* Form Layout Ends Here */

/* Step-1 Starts Here */
#baVoForm_payment_step_01 {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

/* Custom Address Below */

.ba-vo-form-address-preview {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(32, 40, 45, 0.1);
  width: 100%;
  position: relative;
  border: 2px solid #e5e7eb;
  text-align: center;
  background: var(--dark-blue-color);
  margin-top: 20px;
}

.ba-vo-form-address-preview h6 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    transform: scale(0.9);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
    transform: scale(1.2);
  }
}

.ba-vo-form-address-preview-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
  margin-top: 10px;
}

.ba-vo-form-address-preview-text:first-of-type {
  font-weight: 600;
  font-size: 20px;
}

.ba-vo-form-address-preview-text:last-of-type {
  margin-bottom: 0;
  border-top: 1px solid rgba(32, 40, 45, 0.1);
  font-weight: 600;
}

.ba-vo-form-address-preview-text i {
  /* color: var(--dark-blue-color); */
  margin-right: 6px;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .ba-vo-form-address-preview {
    padding: 20px;
    max-width: 100%;
  }

  .ba-vo-form-address-preview h6 {
    font-size: 13px;
  }

  .ba-vo-form-address-preview-text {
    font-size: 14px;
  }

  .ba-vo-form-address-preview-text:first-of-type {
    font-size: 15px;
  }
}

/* Step-1 Ends Here */

/* Step-2 Starts Here */
#baVoForm_step-1 #baVoForm_payment_step {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
  position: relative;
}

#baVoForm_step-2 input[type="radio"] {
  width: auto;
  margin-left: 0;
}

#baVoForm_step-2 .ba-vo-form-label {
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
}

#baVoForm_step-2 .option-radio-box p {
  color: #6b7280;
  font-size: 16px;
  padding-left: 30px;
  margin-top: 0px;
  line-height: 15px;
}
#baVoForm_step-2 .radioBtnYesNO h5 {
  font-size: 18px;
}

#baVoForm_step-2 .option-radio-box {
  padding: 20px 15px;
  border-radius: 6px;
  background: #fff;
  transition: border 0.2s ease;
  border: 2px solid #e5e7eb;
}

#baVoForm_step-2 .option-radio-box + #baVoForm_step-2 .option-radio-box {
  margin-top: 10px;
}

#baVoForm_step-2 .option-radio-box:hover {
  background-color: #f9fafb;
}

/* Step-2 Ends Here */

/* Step-3 Starts Here */

/* Step-3 Ends Here */

.ba-vo-form-service-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.ba-vo-form-service-card:hover {
  border-color: var(--light-green-color);
}

.ba-vo-form-service-card.selected {
  border-color: var(--light-green-color);
  /* background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(22, 163, 74, 0.08) 100%); */
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.2);
}

.ba-vo-form-service-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.service-content-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e0;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.ba-vo-form-service-card:hover .checkbox-custom {
  border-color: var(--dark-blue-color);
}

.ba-vo-form-service-card.selected .checkbox-custom {
  border-color: var(--dark-blue-color);
  background: var(--dark-blue-color);
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.ba-vo-form-service-card.selected .checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.ba-vo-form-service-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ba-vo-form-service-details h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue-color);
  margin-bottom: 5px;
  transition: color 0.3s ease;
  width: 80%;
}

.ba-vo-form-service-card.selected .ba-vo-form-service-details h6 {
  color: var(--dark-blue-color);
}

.ba-vo-form-service-details p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  transition: color 0.3s ease;
  width: 90%;
}

.ba-vo-form-service-card.selected .ba-vo-form-service-details p {
  color: #4a5568;
}

.ba-vo-form-service-right-section {
  display: flex;
  flex-direction: column;
}

.ba-vo-form-service-price {
  font-size: 18px;
  color: var(--dark-blue-color);
  font-weight: 800;
  transition: color 0.3s ease;
  margin-bottom: 10px;
}

.ba-vo-form-service-card.selected .ba-vo-form-service-price {
  color: var(--dark-blue-color);
}

.ba-vo-form-service-price strong {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

.ba-vo-form-service-card.selected .ba-vo-form-service-price strong {
  color: var(--dark-blue-color);
}

.ba-vo-form-more-info-btn:active {
  transform: translateY(0);
}

/* Modal Styles */
.ba-vo-form-info-section {
  margin-bottom: 20px;
}

.ba-vo-form-info-section p {
  font-size: 16px;
  margin-bottom: 8px;
}

.ba-vo-form-price-highlight {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-top: 20px;
}

.ba-vo-form-price-highlight .form-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue-color);
}

.ba-vo-form-price-highlight .form-price span {
  font-size: 15px;
}

#additionServiceModal-8 input,
#additionServiceModal-9 input,
#additionServiceModal-10 input,
#additionServiceModal-11 input {
  width: auto;
}

#additionServiceModal-8 .ba-vo-form-control {
  width: 100%;
}

/* Animation for card selection */
@keyframes cardSelect {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.ba-vo-form-service-card.selecting {
  animation: cardSelect 0.3s ease;
}

@media (max-width: 480px) {
  .ba-vo-form-service-card {
    padding: 16px;
  }

  .service-content-wrapper {
    gap: 12px;
  }

  .ba-vo-form-service-details h6 {
    font-size: 16px;
  }

  .ba-vo-form-service-price {
    font-size: 16px;
  }
}
/* Step-4 Ends Here */

/* Step-3 Starts Here NEW */

#baVoForm_step-3 .ba-vo-form-phone-input-group {
  display: flex;
  gap: 0.5rem;
}

#baVoForm_step-3 .iti {
  width: 100%;
}
#baVoForm_step-3 .input-group {
  display: flex;
  position: relative;
}

#baVoForm_step-3 .iti__country-container {
  left: 0;
  right: unset !important;
}

#baVoForm_step-3 .iti__tel-input {
  text-indent: 20px;
}
#baVoForm_step-3 .verifyEmail:hover,
#baVoForm_step-3 .verifyOTP:hover {
  background-color: var(--dark-blue-color);
}

@media (max-width: 768px) {
  #baVoForm_step-3 .col-md-4,
  #baVoForm_step-3 .col-md-6 {
    margin-bottom: 25px;
  }

  #baVoForm_step-3 .row.mb-4 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  #baVoForm_step-3 .input-group button {
    font-size: 10px;
    width: 80px;
  }
}

/* Step-3 Ends Here NEW */

/* Step-4 Starts Here NEW */

#baVoForm_step-4 .ba-vo-form-label {
  padding-left: 5px;
}
#baVoForm_step-4 .modal-header .btn-close {
  font-size: 22px;
  background: transparent;
  border: none;
}

#baVoForm_step-4 .modal-close-btn-step-4 {
  padding: 9px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 10px;
}

#baVoForm_step-4 .modal-content {
  border-radius: 10px;
}

#baVoForm_step-4 .landline-wrapper-country label {
  font-size: 18px;
  margin-bottom: 15px;
}


@media (max-width: 768px) {
  #baVoForm_step-4 .service-content-wrapper .d-flex {
    display: block !important;
  }
  #baVoForm_step-4 .ba-vo-form-service-price {
    margin: 20px 0;
  }
  #baVoForm_step-4 .ba-vo-form-service-details h6 {
    width: 100%;
  }
  #baVoForm_step-4 .ba-vo-form-service-details p {
    width: 100%;
    margin-top: 10px;
  }
  #baVoForm_step-4 .modal-content .modal-header h5 {
    font-size: 20px;
    line-height: 35px;
  }
  
   #baVoForm_step-4 .ba-vo-form-more-info-btn
  {
    width: 60%;
    padding: 10px 0px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  #baVoForm_step-4 .ba-vo-form-service-details h6 {
    line-height: 25px;
  }
}
/* Step-4 Ends Here NEW */

/* Step-5 Starts New Here */

#baVoForm_step-5 .additional-bank-ofr {
  margin: 0 auto;
}

#baVoForm_step-5 .additional-bank-offer-card {
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background: white;
  border: 2px solid #e5e7eb;
}

#baVoForm_step-5 .additional-bank-offer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

#baVoForm_step-5 .additional-bank-offer-cash-badge {
  background: var(--dark-blue-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
}

#baVoForm_step-5 .additional-bank-offer-eligibility-badge {
  background: #e8f5e8;
  color: var(--light-green-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

#baVoForm_step-5 .additional-bank-offer-bank-logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  /* background: black; */
  height: 80px;
}

#baVoForm_step-5 .additional-bank-offer-bank-logo img {
  width: 30%;
  margin: 20px auto;
}

#baVoForm_step-5 .additional-bank-offer-description {
  font-size: 16px;
  margin-bottom: 20px;
}

#baVoForm_step-5 .info-link {
  text-decoration: none;
  font-weight: 500;
}

#baVoForm_step-5 .info-link:hover {
  text-decoration: underline;
}

#baVoForm_step-5 .additional-bank-offer-selection-row {
  gap: 12px;
  display: flex;
  justify-content: center;
}

#baVoForm_step-5 .additional-bank-offer-selection-btn {
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.2s ease;
  font-size: 13px;
  position: relative;
  cursor: pointer;
  background: var(--dark-blue-color);
  color: #fff;
  width: 240px;
}

#baVoForm_step-5 .additional-bank-offer-selection-btn i
{
  padding-left: 5px;
}

#baVoForm_step-5 .additional-bank-offer-selection-btn:hover {
  transform: translateY(-2px);
}

#baVoForm_step-5 .additional-bank-offer-selection-btn.selected {
  border-color: #28a745;
  background: #d4edda;
  color: #155724;
}
#baVoForm_step-5 .additional-bank-offer-selection-btn.selectNo
{
  background-color: #e5e7eb;
    color: var(--dark-blue-color);
    font-weight: bold;
}

#baVoForm_step-5 .selection-icon {
  display: none;
  font-size: 16px;
  margin-top: 4px;
}

#baVoForm_step-5 .additional-bank-offer-selection-btn.selected .selection-icon {
  display: block;
}

/* Modal Styling */
#baVoForm_step-5 .modal-header {
  color: white;
  border-radius: 8px 8px 0 0;
  border: none;
}

#baVoForm_step-5 .modal-content {
  border-radius: 8px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

#baVoForm_step-5 .modal-body h6 {
  color: #333;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

#baVoForm_step-5 .modal-body h6:first-child {
  margin-top: 0;
}

#baVoForm_step-5 .modal-body ul {
  margin-bottom: 15px;
}

#baVoForm_step-5 .modal-body li {
  margin-bottom: 5px;
  color: #555;
}

#baVoForm_step-5 .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: white;
  padding: 1rem 1rem;
  border-radius: 8px 8px 0 0;
  position: relative;
}

#baVoForm_step-5 .modal-close-x {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: 0px;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  color: var(--dark-blue-color);
}

#baVoForm_step-5 .additional-bank-offer-terms {
  background-color: #f8f9fa;
  padding: 20px 16px;
  margin-bottom: 24px;
  border-left: 5px solid var(--dark-blue-color);
}

@media (max-width: 768px) {
  #baVoForm_step-5 .additional-bank-offer-card {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  #baVoForm_step-5 .additional-bank-offer-bank-logo img {
    width: 50%;
  }

  /* Step-5 */
  #baVoForm_step-5 .modal-close-x {
    top: -20px;
    right: -15px;
    font-size: 40px;
  }

  #baVoForm_step-5 .additional-bank-offer-eligibility-badge,
  #baVoForm_step-5 .additional-bank-offer-cash-badge {
    font-size: 13px;
    padding: 10px;
    width: 60%;
    text-align: center;
  }

  #baVoForm_step-5 .additional-bank-offer-selection-row {
    flex-direction: column;
  }

  #baVoForm_step-5 .additional-bank-offer-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 430px) {
#baVoForm_step-5 .additional-bank-offer-eligibility-badge, 
#baVoForm_step-5 .additional-bank-offer-cash-badge
{
  width: 80%;
}

}
/* Step-5 Starts Ends NEW Here */

/* CheckOut Step-6 NEW Here */
.ba-vo-form-checkout-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 0;
  padding-top: 0;
  margin-top: -16px;
}

.ba-vo-form-checkout-header {
  background: var(--dark-blue-color);
  color: white;
  padding: 20px 30px;
  position: relative;
  border-radius: 8px 8px 0 0;
  /* Top-left, Top-right, Bottom-right, Bottom-left */
}

.ba-vo-form-checkout-header-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.ba-vo-form-checkout-header-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.ba-vo-form-checkout-header-text p {
  opacity: 0.8;
  font-size: 1rem;
  color: #fff;
}

.ba-vo-form-checkout-items-section {
  margin-bottom: 40px;
}

.ba-vo-form-checkout-items-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(32, 40, 45, 0.08);
  border-top: 1px solid gray;
}

.ba-vo-form-checkout-items-table thead {
  background: var(--dark-blue-color);
  color: white;
}

.ba-vo-form-checkout-items-table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.ba-vo-form-checkout-items-table th:last-child {
  text-align: right;
}

.ba-vo-form-checkout-items-table tbody tr {
  border-bottom: 1px solid #f0f2f5;
  transition: background-color 0.2s ease;
}

.ba-vo-form-checkout-items-table tbody tr:hover {
  background-color: #f8f9fa;
}

.ba-vo-form-checkout-items-table td {
  padding: 16px 20px;
  color: var(--dark-blue-color);
  line-height: 1.5;
}

.ba-vo-form-checkout-items-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--dark-blue-color);
  padding: 16px 20px;
}

.ba-vo-form-checkout-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.ba-vo-form-checkout-item-name {
  font-weight: 500;
  margin-bottom: 4px;
}

.ba-vo-form-checkout-item-description {
  font-size: 0.85rem;
  color: #666;
}

.ba-vo-form-checkout-remove-btn {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.ba-vo-form-checkout-remove-btn:hover {
  background-color: #fff5f5;
}

.ba-vo-form-checkout-free-price {
  color: #28a745;
  font-weight: 600;
}

.ba-vo-form-checkout-form-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.ba-vo-form-checkout-form-group {
  /* margin-bottom: 20px; */
}

.ba-vo-form-checkout-form-group label {
  display: block;
  color: var(--dark-blue-color);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
}

.ba-vo-form-checkout-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  margin-top: 5px;
}

.ba-vo-form-checkout-form-control:focus {
  outline: none;
  border-color: var(--dark-blue-color);
  box-shadow: 0 0 0 3px rgba(32, 40, 45, 0.1);
}

.ba-vo-form-checkout-promo-group {
  display: none;
}

.ba-vo-form-checkout-promo-group.active {
  display: flex;
  gap: 12px;
  align-items: end;
}

.ba-vo-form-checkout-promo-input {
  flex: 1;
}

.ba-vo-form-checkout-apply-btn {
  padding: 16px 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ba-vo-form-checkout-summary-section {
  background: linear-gradient(135deg, var(--dark-blue-color) 0%, #2a3339 100%);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.ba-vo-form-checkout-summary-section h3 {
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-vo-form-checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-vo-form-checkout-summary-row:last-child {
  border-bottom: none;
  padding-top: 20px;
  font-size: 1.2rem;
  font-weight: 700;
}

.ba-vo-form-checkout-summary-label {
  opacity: 0.9;
}

.ba-vo-form-checkout-summary-value {
  font-weight: 600;
}

.ba-vo-form-checkout-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.ba-vo-form-checkout-checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  transform: scale(1.2);
  accent-color: var(--dark-blue-color);
  width: auto;
}

.ba-vo-form-checkout-checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
  font-size: 13px;
  margin-top: -5px;
}

.ba-vo-form-checkout-btn {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ba-vo-form-checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ba-vo-form-checkout-discount-value {
  color: #28a745 !important;
}

/* Toggle COde */
.vo-checkout-toggle-frequency-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vo-checkout-toggle-frequency-section {
  margin-bottom: 24px;
}

.vo-checkout-toggle-frequency-package-selected {
  text-align: center;
  margin-bottom: 20px;
}

.vo-checkout-toggle-frequency-package-selected-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 4px;
}

.vo-checkout-toggle-frequency-package-selected-name {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.vo-checkout-toggle-frequency-payment-section {
  text-align: center;
}

.vo-checkout-toggle-frequency-label {
  font-size: 16px;
  color: #495057;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.vo-checkout-toggle-frequency-toggle-container {
  position: relative;
  display: inline-flex;
  /* background-color: #f8f9fa; */
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #dee2e6;
  margin-bottom: 12px;
}

.vo-checkout-toggle-frequency-option {
  position: relative;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 13px;
  z-index: 2;
  min-width: 100px;
  text-align: center;
  line-height: 14px;
}

.vo-checkout-toggle-frequency-option.vo-checkout-toggle-frequency-monthly {
  color: white;
}

.vo-checkout-toggle-frequency-option.vo-checkout-toggle-frequency-annually {
  color: #6c757d;
  position: relative;
}

.vo-checkout-toggle-frequency-option.vo-checkout-toggle-frequency-annually::after {
  content: "Save 15%";
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: var(--light-green-color);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.vo-checkout-toggle-frequency-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100px;
  height: 40px;
  border-radius: 50px;
  transition: transform 0.3s ease;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background: var(--dark-blue-color);
}

.vo-checkout-toggle-frequency-toggle-container.vo-checkout-toggle-frequency-annually
  .vo-checkout-toggle-frequency-slider {
  transform: translateX(100px);
}

.vo-checkout-toggle-frequency-toggle-container.vo-checkout-toggle-frequency-annually
  .vo-checkout-toggle-frequency-option.vo-checkout-toggle-frequency-monthly {
  color: #6c757d;
}

.vo-checkout-toggle-frequency-toggle-container.vo-checkout-toggle-frequency-annually
  .vo-checkout-toggle-frequency-option.vo-checkout-toggle-frequency-annually {
  color: white;
}

.vo-checkout-toggle-frequency-discount-hint {
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
}

.ba-vo-form-checkout-item-name {
  font-size: 16px;
  color: #495057;
  font-weight: 500;
  margin-bottom: 4px;
}

.ba-vo-form-checkout-item-description {
  font-size: 14px;
  color: #6c757d;
}

.ba-vo-form-checkout-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ba-vo-form-checkout-price {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

.ba-vo-form-checkout-remove-btn {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
  padding: 8px;
  margin-left: 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.ba-vo-form-checkout-remove-btn:hover {
  background-color: #f8d7da;
}

.ba-vo-form-checkout-content .d-none {
  display: none;
}

.ba-vo-form-checkout-content .checkout-row-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ba-vo-form-checkout-content .checkout-left {
  flex: 1; /* take space on left */
  text-align: left;
}

.ba-vo-form-checkout-content .checkout-center {
  flex: 0; /* only as wide as toggle */
  text-align: center;
}

.ba-vo-form-checkout-content .checkout-right {
  flex: 1; /* take space on right */
  text-align: right;
}

#payment-frequency-mobile
{
  display: none;
    text-align: center;
}

.ba-vo-form-checkout-content .checkout-center {
  flex: 0; /* only as wide as toggle */
  text-align: center;
}


/* Responsive rules */
@media (max-width: 1200px) {
  #payment-frequency-mobile {
    display: table-row; /* show as table row */
  }
  #payment-frequency-desktop {
    display: none; /* hide desktop version */
  }
}


@media (max-width: 768px) {
  .ba-vo-form-checkout-summary-section h3 {
    font-size: 20px;
  }

  .ba-vo-form-checkout-container {
    padding: 10px;
  }

  .ba-vo-form-checkout-header-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .ba-vo-form-checkout-header {
    padding: 20px;
  }

  .ba-vo-form-checkout-header h3 {
    font-size: 1.5rem;
    text-align: left;
  }

  .ba-vo-form-checkout-items-table th,
  .ba-vo-form-checkout-items-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .ba-vo-form-checkout-promo-group {
    flex-direction: column;
    align-items: stretch;
  }

  .ba-vo-form-checkout-form-section {
    padding: 20px;
  }

  .ba-vo-form-checkout-summary-section {
    padding: 20px;
  }

  .ba-vo-form-checkout-promo-group.active {
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .ba-vo-form-checkout-items-table th:first-child,
  .ba-vo-form-checkout-items-table td:first-child {
    width: 60%;
  }

  .ba-vo-form-checkout-items-table th:last-child,
  .ba-vo-form-checkout-items-table td:last-child {
    width: 40%;
  }

  .ba-vo-form-checkout-header h3 {
    font-size: 1.3rem;
  }
}
/* CheckOut Step-6 New Ends Here */

/* Responsive */

/* Step-6 Ends Here */

/* Responsvie Form CSS Starts Here */

@media (max-width: 1350px) {
  #baVoForm_step-2 .radioBtnYesNO h5 {
    line-height: 30px;
  }
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
  /* Sidebar */
  .ba-vo-form-sidebar {
    padding-bottom: 40px;
    padding-top: 20px;
    min-height: auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  .ba-vo-form-sidebar .sidebar-total-price {
    margin-bottom: 20px;
  }

  .ba-vo-form-step-item:not(:last-child)::after {
    top: 101%;
    left: 66%;
    transform: translateY(-21%);
    width: calc(100% - 2rem);
    height: 5px;
    z-index: 0;
    width: 145px;
    /* display: none; */
  }
  .ba-vo-form-step-item.completed:not(:last-child)::before {
    display: none;
  }

  .ba-vo-form-step-title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
  }
  .ba-vo-form-step-description {
    display: none;
  }

  /* Whole Wrapper */
  .ba-vo-form-section {
    padding: 2rem 0;
  }

  /* Step-1 CSS Starts Here */
  .ba-vo-form-steps-container {
    display: flex;
    justify-content: space-between;
  }

  #baVoForm_step-1 .ba-vo-form-choice-btn {
    padding: 20px;
  }
  .ba-vo-form-header h2 {
    font-size: 24px;
  }
  /* Step-1 CSS Ends Here */
}

@media (max-width: 768px) {
  #baVoForm_step-1 #custom-address-form .col-md-4,
  #baVoForm_step-1 #custom-address-form .col-md-2 {
    margin-bottom: 20px;
  }

  #custom-address-form small {
    width: 90%;
  }
  #baVoForm_payment_step .totalAmountTxt p {
    margin-top: 10px;
  }

  /* Sidebar */
  .ba-vo-form-step-item:not(:last-child)::after {
    width: 110px;
  }
  .ba-vo-form-checkout-header h3
  {
    text-align: center;
  }
}

@media (max-width: 576px) {
  /* Sidebar */
  .ba-vo-form-step-item:not(:last-child)::after {
    width: 60px;
  }

  /* Step-1 */
  #baVoForm_step-1 .ba-vo-form-choice-btn span {
    font-size: 16px;
  }

  #baVoForm_step-2 .radioBtnYesNO h5 {
    font-size: 18px;
  }
  .ba-vo-form-next-btn,
  .ba-vo-form-prev-btn {
    width: 170px !important;
  }
  #baVoForm_step-2 .option-radio-box p
  {
    line-height: 20px;
    font-size: 14px;
  }
  .ba-vo-form-header h2
  {
    width: 90%;
    margin: 0 auto;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .ba-vo-form-header p
  {
    width: 90%;
    margin: 0 auto;
    line-height: 20px;
  }
  #baVoForm_step-5 .additional-bank-offer-terms
  {
    border:none;
    font-size: 14px;
  }
  #baVoForm_step-5 .additional-bank-offer-selection-btn
  {
    margin: 0 auto;
    width: 80%;
  }
}

 

@media (max-width: 390px) {
.ba-vo-form-next-btn,
  .ba-vo-form-prev-btn {
    width: 150px !important;
    font-size: 10px;
  }
 #baVoForm_step-5 .additional-bank-offer-selection-btn
  {
    margin: 0 auto;
    width: 95%;
  }

}
/* Responsvie Form CSS Ends Here */
