
.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  color: #032a37 ;
  opacity: 1;
}

/* Enhanced premium selection styling with colors from index.js */
.select-premium-container {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 24px 0;
}

.premium-header {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #032a37;
  margin-bottom: 24px;
}

/* Family composition section */
.family-composition {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.family-title {
  font-size: 20px;
  font-weight: 600;
  color: #032a37;
  margin-bottom: 16px;
}

.family-options {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 16px;
  gap: 16px;
  align-items: center;
  justify-content: center; /* Center the options horizontally */
}

.family-option {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.family-option.compact {
  flex: 0 1 auto;
  min-width: 180px; /* Fixed minimum width for more consistent appearance */
  margin: 0 10px; /* Add horizontal margin for spacing */
  padding: 12px 16px;
  justify-content: space-between; /* Ensure label and control are on opposite ends */
  text-align: center; /* Center text within each option */
}

.family-label {
  font-size: 16px;
  font-weight: 500;
  color: #4a5568;
  margin-right: 12px;
}

.family-included {
  font-size: 14px;
  font-weight: 600;
  color: #48bb78;
}

/* Switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 8px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #032a37;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Children counter */
.children-counter {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  margin-left: 8px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background-color: #032a37;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:disabled {
  background-color: #cbd5e0;
  cursor: not-allowed;
}

.counter-value {
  font-size: 18px;
  font-weight: 600;
  color: #4a5568;
  width: 20px;
  text-align: center;
}

.premium-options-wrapper {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 16px;
  gap: 16px;
  justify-content: center;
}

.premium-option {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(25% - 16px); /* For displaying 4 in a row */
  max-width: calc(25% - 16px); /* For displaying 4 in a row */
  padding: 24px;
  border-radius: 16px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 8px;
}

.premium-option:hover {
  transform: translateY(-6px);
  border-color: #cbd5e0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.premium-option.selected {
  border-color: orange;
  background-color: rgba(255, 165, 0, 0.05);
  box-shadow: 0 8px 16px rgba(255, 165, 0, 0.15);
}

.premium-option.best-value {
  border-color: #48bb78;
}

.best-value-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #48bb78;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-bottom-left-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.frequency-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #032a37;
}

/* Breakdown section */
.premium-breakdown {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.breakdown-name {
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
}

.breakdown-price {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
}

.premium-price {
  margin: 16px 0 20px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
}

.currency {
  font-size: 20px;
  font-weight: 500;
  color: #4a5568;
  margin-right: 4px;
}

.amount {
  font-size: 36px;
  font-weight: 700;
  color: #032a37;
}

.frequency-label {
  font-size: 14px;
  color: #718096;
  margin-left: 4px;
  align-self: flex-end;
  margin-bottom: 6px;
}

.premium-details {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #4a5568;
}

.detail-label {
  font-weight: 500;
}

.detail-value {
  font-weight: 600;
}

.detail-item.savings {
  color: #48bb78;
  font-weight: 700;
}

.detail-item.savings .detail-value {
  color: #48bb78;
  font-weight: 700;
}

.select-btn {
  margin-top: 16px;
  padding: 10px 16px;
  background-color: #032a37;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-btn:hover {
  background-color: #043e4f;
}

.selected .select-btn {
  background-color: orange;
}

.premium-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: #718096;
  margin-top: 8px;
}

/* Media queries for responsive layout - adjusted breakpoints */
@media (max-width: 1400px) {
  .premium-option {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(50% - 16px); /* For displaying 2 in a row */
    max-width: calc(90% - 16px); /* For displaying 2 in a row */
  }
}

@media (max-width: 980px) {
  .premium-option {
    flex: 1 1 100%; /* For displaying 1 in a row */
    max-width: 100%; /* For displaying 1 in a row */
  }
}

@media (max-width: 767px) {
  .select-premium-container {
    padding: 20px 15px;
  }
  
  .family-option {
    flex: 1 1 100%;
  }
  
  .premium-header {
    font-size: 24px;
  }
}

/*# sourceMappingURL=main~5e92e66a.7987da1d.chunk.css.map*/