/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 16 2023 | 04:42:46 */
.calculator_wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.calculator_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  column-gap: 30px;
  /*   max-width: 1350px; */
  /*   margin: 0 auto; */
}

.calculator_tabs_wrapper {
  box-shadow: 0 0 1px #1515151a, 0 2px 8px -1px #15151533;
  border-radius: 8px;
  flex: 1;
  background: #fff;
}

.pathfinder_savings_wrapper {
  width: 350px;
  box-shadow: 0 0 1px #1515151a, 0 2px 8px -1px #15151533;
  border-radius: 8px;
  background: #ffff;
}

ul.calculator_tabs {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  background: linear-gradient(#0b072d, #0b072d);
  border-radius: 8px 8px 0 0;
}

.calculator_tabs li {
  display: flex;
  align-items: center;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  width: 50%;
  text-align: center;
  cursor: pointer;
}

.calculator_tabs li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #151515;
  margin-right: 10px;
}

.calculator_tabs li.active-tab span {
  color: #fff;
  background: #28adbe;
}

.calculator_tabs li p {
  color: #fff;
}

.savings_heading_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  /*   background: #515260; */
  background: #0b072d;
  border-radius: 8px 8px 0 0;
}

.savings_heading_wrapper h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}

/* FIELDS STYLING */
.calculator_fields_wrapper {
  width: 100%;
}

.fields_content_wrapper {
  padding: 24px 20px;
  padding-top: 0;
}

.fields_header {
  width: 100%;
  padding: 12px;
  color: #151515;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.fields_row,
.fields_header {
  display: flex;
  column-gap: 20px;
  text-align: left;
  align-items: center;
}

.fields_row {
  padding: 12px;
}

.fields_header > div:first-child,
.fields_row label {
  flex: 1;
}

.fields_header > div:not(:first-child),
.fields_row div {
  width: 25%;
}

.fields_header div {
  text-align: center;
  line-height: 24px;
}

.calculator_step {
  margin-bottom: 40px;
}

.calculator_sub_section .calculator_step {
  margin-bottom: 40px;
}

.calculator_sub_section:last-child .calculator_step {
  margin-bottom: 0px;
}

.calculator_sub_section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #4d569b;
  font-family: 'Nunito Sans', sans-serif;
}

.fields_row label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.4px;
}

.fields_row input {
  padding: 8px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.4px;
  font-weight: 500;
  border: 0.5px solid #515260;
  border-radius: 4px;
  color: #151515;
  width: 100%;
  padding-right: 40px;
}

.fields_row p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.4px;
  text-align: center;
  position: relative;
}

.cost_values .input_box,
.percent_values .input_box {
  position: relative;
  /* background-color: #4d569b; */
}

.cost_values .input_box::before {
  content: '$';
  position: absolute;
  left: 14px;
  z-index: 1;
  top: 8.4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.4px;
  color: #000;
}

.percent_values .input_box::after {
  content: '%';
  position: absolute;
  right: 14px;
  z-index: 1;
  top: 8.4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  color: #000;
}

.sum_value label,
.sum_value p {
  font-weight: 600;
}

/* Highlighted Values */
.highlighted_values {
  padding: 24px 12px;
  position: relative;
}

.highlighted_values::after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 80%;
  margin: 0 15px;
  height: 2px;
  background: #515260;
}

.highlighted_values > div {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.highlighted_values label,
.highlighted_values span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
}

.highlighted_values > div span {
  padding-left: 10px;
  font-weight: 600;
}

.total_value_result {
  padding: 24px 12px;
  display: flex;
  justify-content: center;
  row-gap: 10px;
  flex-direction: column;
  text-align: center;
}

.total_value_result p,
.total_value_result span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
}

.total_value_result span {
  font-size: 22px;
  font-weight: 600;
}

/* Excel Button*/
.excel_button {
  padding: 24px 0;
  display: block;
  text-align: center;
}

.excel_button button,
.tabs-nav-button button {
  padding: 12px 24px;
  background: #28adbe;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16.4px;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Prev/Next */

.tabs-nav-button {
  padding: 14px 30px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.tabs-nav-button button {
  padding: 8px 16px;
}