
.pricingSection {
  padding: 40px 20px;
  background-color: #f3f6fa;
}

.pricing-wrapper {
  max-width: 770px;
  background: #fff0b7;
  margin: 0px auto;
  display: flex;
  min-height: 500px;
  transition: background 200ms ease-out;
  flex-direction: column;
}

.right-content {
  flex: 1;
  padding: 20px;
  transition: background 200ms ease-out;
}

.pricing-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.pricing-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f37021;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.price-circle.grey {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.price-circle small {
  font-weight: normal;
  font-size: 12px;
}

.plan-label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-top: 5px;
}

.divider-line {
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.left-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.left-tabs .nav-link {
  border: none;
  padding: 10px 25px;
  font-size: 18px;
  border-radius: 9999px;
  background-color: transparent;
  cursor: pointer;
  transition: background 160ms ease-out, color 160ms ease-out, border-radius 160ms ease-out;
}

.left-tabs .nav-link:not(.active) {
  color: grey;
}

.left-tabs .nav-link:not(.active):hover {
  border-radius: 7px;
  color: black;
}

#pricing-tab:not(.active):hover {
  background-color: #fff0b7;
}

#savings-tab:not(.active):hover {
  background-color: #d4f2f4;
}

.left-tabs .nav-link.active {
  border-radius: 9999px !important;
  background-color: #ebebeb;
  color: black;
}

.tabs-header-text {
  font-size: 20px;
  text-align: center;
}

.current-provider {
  display: inline-block;
  background: #f27d2f;
  color: #fff;
  padding: 8px 12px;
  border-radius: 25px;
  font-weight: 500;
}

.current-provider input {
  width: 110px;
  margin: 0 4px;
  border-radius: 4px;
  border: 1px solid #fff;
  text-align: center;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type=range] {
  flex: 1;
}

.slider-value {
  background: #f27d2f;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  min-width: 50px;
  text-align: center;
}
.range-bar {
    background-color: #F3F6FA;
    border-radius: 15px;
    display: block;
    height: 2px !important;
    position: relative;
    /* width: 100%; */
}
@media (max-width: 575px) {
   .tab-pane#pricing {
    flex-direction: column;
    justify-content: center;   /* center whole pricing section */
    align-items: center;
  }

  .pricing-row {
    flex-direction: column;    
    justify-content: center;   
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .pricing-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pricing-wrapper {
    min-height: auto;
    flex-wrap: wrap;
  }

  .left-tabs {
    padding: 15px 0;
    transition: background 200ms ease-out;
    width: -webkit-fill-available;
  }

  .left-tabs .nav-link {
    padding: 8px 10px;
    font-size: 14px;
    margin-bottom: 10px;
    width: max-content;
  }

  .right-content {
    padding: 10px;
  }

  .calculate-section {
    width: 300px;
  }

  .current-provider input {
    width: 40px;
    border-radius: 4px;
    border: 1px solid #fff;
    text-align: center;
  }
}

#savingsVal {
  color: #000000;
  font-weight: bold;
}
.range-bar {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #ccc; /* fallback grey */
  outline: none;
}
