
.calculator .calc-steps h3 {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 24px;
  max-width: 420px;
  letter-spacing: 0.2px;
}
.calculator .calc-steps p {
  color: #A9A9A9;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.2px; 
}
.calculator .calc-steps form .form-group {
  margin: 0 0 24px 0;
}
.calculator .calc-steps form .form-group label {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  margin: 0 0 8px 0;
}
.calculator .calc-steps form .form-group .form-control {
  color: #565656;
  font-family: var(--font-family);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(169, 169, 169, 0.25);
  padding: 8px 0;
  box-shadow: none;
  outline: none;
}



.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}
.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #007bff;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

#multi-step-form {
  overflow-x: inherit;
}
.calculator_result,
.basic_fields,
.advance_fields {
  display: none;
}

.calculator_result.basic.active,
.calculator_result.advance.active,
.basic_fields.active,
.advance_fields.active {
  display: block;
}

/* Calculator */
.calculator {
  background: #0A0A0A;
}
.calculator .container {
  border-radius: 24px;
  background: #1E1E1E;
  padding: 40px 50px;
  position: relative;
}
.calculator .container:before {
  display: block;
  content: '';
  width: 160px;
  height: 160px;
  background-image: url(http://dev.digitxl.com.au/wp-content/themes/twenty-twenty-one-child/assets/images/title-after-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: -60px;
  left: -50px;
  right: auto;
  z-index: 1;
  transform: rotate(270deg);
}
.calculator .calc-left {
  max-width: 420px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}
.calculator .calc-left img {
  margin-bottom: 24px;
}
.calculator .calc-left h2 {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
  margin-bottom: 24px;
}
.calculator .calc-left p {
  color: #A9A9A9;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.2px; 
}
.calculator .calc-steps  {
  padding-left: 40px;
}
.calculator .calc-steps #container {
  padding: 0;
}
#multi-step-form .step .step_detail h2 {
    color: #FCFCFC;
    font-family: var(--font-family);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    margin: 5px 0 15px 0;
    max-width: 420px;
    letter-spacing: 0.4px;
}
#multi-step-form .step .step_detail p {
  color: #A9A9A9;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.2px; 
}
#multi-step-form .step.step-1 .step_fields {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}
#multi-step-form .step .step_fields {
  margin: 30px 0;
}
#multi-step-form .step .step_fields .form-check {
  padding: 0;
}
#multi-step-form .step .step_fields .form-check-input[type=radio]:focus {
  outline: none;
}
#multi-step-form .step .step_fields .form-check-input[type=radio] {
  background: transparent;
  border: 2px solid #ffffff;
  top: -3px;
  margin: 0;
  outline: none;
}
#multi-step-form .step .step_fields .form-check-input[type=radio]:checked {
  border: 2px solid #FFB81A;
  outline: none;
  box-shadow: none;
}
#multi-step-form .step .step_fields .form-check-input[type=radio]:checked:after {
  display: block;
  content: '';
  width: 11px;
  height: 11px;
  position: absolute;
  top: 5px;
  left: 5px;
  background: #FFB81A;
}
#multi-step-form .step .step_fields .form-check label {
  color: #FCFCFC;
  font-family: "Maison Neue";
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}
.calculator .calc-steps form .button {
  color: #8D8D8D !important;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .2px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  line-height: 50px;
  display: inline-block;
  padding: 0 16px !important;
  box-shadow: none;
  outline: none;
  border: none;
  float: none;
  margin: 0 !important;
  background: transparent !important;
}
.calculator .calc-steps form .button:after {
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  background: #FFB81A;
  background: #C5C5C5;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.36s cubic-bezier(.4, 0, 1, 1);
}
.calculator .calc-steps form .button:hover {
  color: #212529 !important;
}
.calculator .calc-steps form .button:hover:after {
  width: 100%;
  border-radius: 30px;
}
#multi-step-form .calculator_submit {
    display: flex;
    gap:15px;
}

/* Sequance For Step */
#multi-step-form .step .adv_icrb_result,
#multi-step-form .step .adv_imr_result {
  color: #030303;
  text-align: right;
  font-family: "Maison Neue";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
  letter-spacing: -0.4px;
}
#multi-step-form .step .adv_icrb_result span,
#multi-step-form .step .adv_imr_result span {
  color: #030303 !important;
}
#multi-step-form .step .step_detail span {
  color: #a6a6a6; 
  text-align: right;
  font-family: "Maison Neue";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
  letter-spacing: -0.4px;
  display: inline-block;
  margin-bottom: 0;
}
#multi-step-form .step .step_detail span .current_step {
  color: #ffffff;
  margin: 0;
}
#multi-step-form .step .step_fields .basic_fields label,
#multi-step-form .step .basic_fields label,
#multi-step-form .step .step_fields .advance_fields label,
#multi-step-form .step .advance_fields label {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
#multi-step-form .step .step_fields .basic_fields input::placeholder,
#multi-step-form .step .basic_fields input::placeholder,
#multi-step-form .step .step_fields .advance_fields input::placeholder,
#multi-step-form .step .advance_fields input::placeholder {
  color: #565656;
} 
#multi-step-form .step .step_fields .basic_fields input[type=text]:focus {
  outline-offset: 0;
  outline: none;
  border-bottom: 1px solid #FFB81A;
}

#multi-step-form .step .step_fields .basic_fields select,
#multi-step-form .step .basic_fields select,
#multi-step-form .step .step_fields .basic_fields input,
#multi-step-form .step .basic_fields input,
#multi-step-form .step .step_fields .advance_fields select,
#multi-step-form .step .advance_fields select,
#multi-step-form .step .step_fields .advance_fields input,
#multi-step-form .step .advance_fields input {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-family);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(169, 169, 169, 0.25);
  background-color: #1e1e1e !important;
  outline: none;
  box-shadow: none;
  padding: 8px 0;
  margin-bottom: 20px;
}
#multi-step-form .step .step_fields .basic_fields select,
#multi-step-form .step .basic_fields select,
#multi-step-form .step .step_fields .advance_fields select,
#multi-step-form .step .advance_fields select {
  background: url('http://dev.digitxl.com.au/wp-content/themes/twenty-twenty-one-child/assets/images/select-arrow.svg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto;
}
#multi-step-form .step .step_fields .advance_fields select,
#multi-step-form .step .advance_fields select {
  background-color: #1e1e1e;
}
#multi-step-form .step .calculator_result .result_top_header {
  border-radius: 8px;
  border: 0.85px solid rgba(143, 184, 111, 0.39);
  background: linear-gradient(132deg, rgba(253, 255, 255, 0.95) -81.65%, rgba(253, 255, 255, 0.95) 97.85%);
  padding: 20px 40px;
  border-radius: 8px;
  margin-bottom: 16px;
}
#multi-step-form .step .calculator_result .result_top_header h3 {
  color: #030303;
  text-align: center;
  font-family: var(--font-family);
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin: 0 0 4px 0;
  max-width: 100%;
  letter-spacing: 0.2px;
}
#multi-step-form .step .calculator_result .result_top_header h2 {
  margin-bottom: 20px;
  line-height: 0;
  text-align: center;
  max-width: 100%;
}
#multi-step-form .step .calculator_result .result_top_header h2 span {
  color: #160F00;
  font-family: var(--font-family);
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.2px;
  display: inline-block;
  margin: 0;
  padding: 4px 8px;
}
#multi-step-form .step .calculator_result .lightWidget .result {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
#multi-step-form .step .calculator_result .lightWidget .result p {
  color: #565656;
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; 
  letter-spacing: -0.24px;
}
#multi-step-form .step .calculator_result .lightWidget .result p span {
    font-size: 16px; 
    font-weight: 500;
    line-height: 30px;
    color: #030303;
}
#multi-step-form .step .calculator_result .lightWidget .result .aov_result,
#multi-step-form .step .calculator_result .lightWidget .result .aov_result span {
  color: #030303;
  text-align: right;
  font-family: var(--font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.4px;
  margin: 0;
}
#multi-step-form .step .calculator_result .darkWidget {
  border-radius: 8px;
  border: 0.85px solid rgba(143, 184, 111, 0.39);
  background: radial-gradient(126.74% 126.74% at 5.68% 10.8%, rgba(253, 255, 255, 0.02) 0%, rgba(253, 255, 255, 0.02) 100%);
  backdrop-filter: blur(7px);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
#multi-step-form .step .calculator_result .darkWidget h3 {
  color: #ffffff;
  text-align: center;
  font-family: var(--font-family);
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin: 0 0 16px 0;
  max-width: 100%;
  letter-spacing: 0.2px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#multi-step-form .step .calculator_result .darkWidget .result_box:nth-child(2) {
  justify-content: flex-end;
}
#multi-step-form .step .calculator_result .darkWidget .result_box h4 {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.32px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box .result_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box .result_info .before {
  color: #FCFCFC;
  font-family: "Maison Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  width: 120px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box .result_info .before span {
  color: #ffffff;
  color: #FCFCFC;
  font-family: "Maison Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.32px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box .result_info .after {
  color: #FCFCFC;
  font-family: "Maison Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1px;
  width: 120px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box .result_info .after span {
  color: #ffffff;
  color: #FCFCFC;
  font-family: "Maison Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.32px;
}
#multi-step-form .step .calculator_result .darkWidget .adv_result_tabs .tab-slider--tabs {
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(220, 207, 178, 0.71);
  margin-bottom: 15px;
}
#multi-step-form .step .calculator_result .darkWidget .adv_result_tabs .tab-slider--tabs li {
  color: #FCFCFC;
  font-family: "Maison Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.2px;
  text-align: center;
  flex: 0 0 33%;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}
#multi-step-form .step .calculator_result .darkWidget .adv_result_tabs .tab-slider--tabs li.active {
  border-bottom: 3px solid #FFB81A;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_head .roi_title {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.32px;
  flex: 0 0 33.33%;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_head .roi_title:nth-child(2) {
  text-align: center;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_head .roi_title:nth-child(3) {
  text-align: right;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_result {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_info,
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_info span {
  color: #FCFCFC;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.32px;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_info {
  flex: 0 0 33.33%;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_info:nth-child(2) {
  text-align: center;
}
#multi-step-form .step .calculator_result .darkWidget .result_box2 .roi_info:nth-child(3) {
  text-align: right;
}
/* Sequance Step End */

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .calculator .container {
    padding: 40px; 
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .calculator .container {
    padding: 40px;
  }
  .calculator .calc-steps {
    padding-left: 0;
  }
  .calculator .calc-left {
    max-width: 100%;
    padding-right: 0;
  }
  .calculator .calc-left h2 {
    font-size: 38px;
    line-height: 46px;
  }
  #multi-step-form .step .step_detail h2 {
    font-size: 30px;
    line-height: 38px;
  }
  #multi-step-form .step .step_fields {
    margin: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .calculator .container {
    padding: 20px;
  }
  .calculator .calc-left {
    max-width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .calculator .calc-left h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .calculator .calc-steps {
    padding: 0;
  }
  #multi-step-form .step .step_detail h2 {
    font-size: 26px;
    line-height: 32px;
  }
  #multi-step-form .step .step_fields {
    margin: 20px 0;
  }
  #multi-step-form .step .calculator_result .darkWidget .result_box .result_info {
      gap: 40px;
  }
  .calculator .container:before { 
    top: -60px;
    left: -60px; 
    }
}