.msf-steps {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.step {
    display: none;
}

.step.active {
    display: block;
}

h3 {
    text-align: center;
    color: #0056b3;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
/*     display: block; */
    width: 100%;
/*     padding: 10px;
    margin-top: 15px;
    background-color: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px; */
}

button.prev {
    background-color: #ccc;
}

button:hover {
    opacity: 0.8;
}
.loading-spinner {
    display: none;
    text-align: center;
    padding: 10px;
}

.loading-spinner img {
    width: 50px;
    height: 50px;
}
.msf-steps .step {
    display: none;
}

.msf-steps .step.active {
    display: block;
}

#my-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: none;
}

#my-popup::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: white;
    padding: 10px;
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card img {
/*     width: 30px; */
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #1d3b8b;
}

/* Media Query for larger screens */
/* @media (min-width: 600px) {
    .card {
        width: 200px; /* Fixed width on larger screens */
    }
} */
        .vat {
            font-size: 14px;
            color: #666;
        }

.button.selected {
    background-color: black !important;
    color: white !important;
    font-weight: bold;
}
/* Base mobile view (fields stacked) */
.postcode-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
}

/* On desktop, show fields side by side */
@media (min-width: 768px) {
  .postcode-fields {
    flex-direction: row;
    gap: 2rem;
  }

  .field-group {
    flex: 1;
  }
}

.two-columns {
  display: flex;
  margin-top: 20px;
}

.left-section {
  flex: 1; /* Takes 2 parts */
/*   background-color: #f5f5f5; */
  padding: 20px;
/*   border-radius: 8px; */
}

.right-section {
  flex: 2; /* Takes 1 part */
/*   background-color: #eaeaea; */
  padding: 20px;
/*   border-radius: 8px; */
}

/* Optional: Responsive stacking on small screens */
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }
}
:root {
  --e-form-steps-indicator-active-primary-color: #FFFFFF;
	--e-form-steps-indicator-active-secondary-color : #3AB54A;
}



