.calculatorSection {
  padding: 60px 0;
}

.calculatorSection__heading {
    margin: 40px 0 30px;
}

.calculatorSection__heading h1 {
  font-size: 32px;
  line-height: 30px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  margin: 0 0 20px;
}

.formHolder > label,
.dealSummryBox > label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  margin: 0 0 8px 0;
}

.formHolder {
  margin: 0 0 32px 0;
}

.formHolder .formControl {
  width: 100%;
  box-shadow: none;
  border: 2px solid #bebebe;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  height: 48px;
  outline: 0;
  padding: 0 16px;
  transition: border-color 0.15s ease;
}

.formHolder .formControl:focus {
  border-color: #ddcc53;
}

.haveIcon .formControl {
  padding-left: 37px;
}

.haveIcon {
  position: relative;
}

.haveIcon::before {
  content: "$";
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 16px;
  top: 15px;
  font-family: "Montserrat", sans-serif;
  z-index: 1;
}

.formHolder__tooltip {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.formHolder__tooltip img {
  width: 18px;
}

.formHolder__tooltip span {
  background: #1f3d54;
  color: #fff;
  width: 210px;
  padding: 15px;
  position: absolute;
  border-radius: 5px;
  font-size: 12px;
  line-height: 18px;
  -webkit-box-shadow: 0px 5px 10px 0 rgb(0 0 0 / 43%);
  box-shadow: 0px 5px 10px 0 rgb(0 0 0 / 43%);
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}

.formHolder__tooltip:hover span {
  position: absolute;
  left: 18px;
  top: 0px;
  z-index: 99;
  opacity: 1;
  pointer-events: all;
}

/* range slider */
.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.rangeslider {
  background: #e6e6e6;
  position: relative;
}

.rangeslider--horizontal {
  height: 6px;
  width: 100%; 
  margin: 20px auto;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  background: #dbcc53;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: #1f3d54;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  -moz-box-shadow: 0 0 20px rgb(0 0 0 / 14%);
  -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 14%);
  box-shadow: 0 0 20px rgb(0 0 0 / 14%);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.rangeslider__handle:active,
.rangeslider--active .rangeslider__handle {
  background: #1f3d54;
}
.rangeslider--horizontal .rangeslider__handle {
  top: -3px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

.rangeslider__handle:after {
  background: 0;
}
/*  */

/* range slider ends here */

.formHolder__inner.rangeSliderHolder {
  position: relative; 
  padding: 10px 0 36px;
}

.rangeSliderHolder .rangeSlider__left,
.rangeSliderHolder .rangeSlider__Right {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  position: absolute;
  font-weight: 500;
  top: 0;
}

.rangeSliderHolder .rangeSlider__left {
  left: 2px;
}
.rangeSliderHolder .rangeSlider__Right {
  right: 0;
}

.rangeslider__handle {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
}
.rangeslider__handle::after {
  display: none;
}
.rangeslider__handle:hover,
.rangeslider__handle:active {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
  transition: transform 0.1s ease-in-out;
  -moz-transition: transform 0.1s ease-in-out;
  -webkit-transition: transform 0.1s ease-in-out;
}

.rangeslider__value-bubble {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  text-align: center;
  background-color: #1f3d54;
  padding: 1rem;
  color: #fff;
  width: auto;
  margin: 0;
  white-space: nowrap;
  border-radius: 6px;
}

.rangeslider__value-bubble::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid #1f3d54;
  position: absolute;
  top: -1rem;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -45%);
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
}

.calculatoSubmitBtn {
  display: inline-block;
  border: 2px solid #232323;
  white-space: pre-wrap;
  letter-spacing: 0.5px;
  line-height: inherit;
  border-radius: 0;
  text-transform: uppercase;
  width: auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  outline: none !important;
  background: transparent;
  color: #232323;
  font-size: 13px;
  padding: 9px 34px;
  line-height: 25px;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.calculatoSubmitBtn:hover {
  background: #232323;
  border-color: #232323;
  color: #ffffff;
}

.dealSummaryHolder__heading h2 {
  font-size: 28px;
  line-height: 30px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  margin: 0 0 20px;
}

.dealSummaryHolder {
  padding: 20px;
  background: #f6f6f6;
  -webkit-box-shadow: 3px 10px 20px 0 rgb(0 0 0 / 8%);
  box-shadow: 3px 10px 20px 0 rgb(0 0 0 / 8%);
}

.dealSummryBox {
  margin-bottom: 20px;
}

.dealSummryBox__cnttnt {
  font-weight: 600;
  font-size: 18px;
}

.moreLoneDetail__box h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    margin: 0;
}

.chartHolder h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  margin: 0 0 30px;
}

.dealSummaryHolder__topCntnt {
  margin-bottom: 20px;
}

.moreLoneDetail__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*border-bottom: 1px solid #eaeaea;*/
  padding: 12px 0;
  cursor: pointer;
}
.moreLoneDetail {
    border: 1px solid #eaeaea;
    border-width: 1px 0;
}
.moreLoneDetail__box span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25px;
  flex: 0 0 25px;
}

.moreLoneDetail__box span svg {
  width: 12px;
  max-height: 12px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.moreLoneDetail__slideCntnt {
  display: none;
  padding: 20px 0 0 0;
}

.moreLoneDetail__box.active span svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
 
@media only screen and (max-width: 991px) {
  .dealSummaryHolder {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .formHolder__tooltip span {
    width: 120px;
    font-size: 10px;
    left: auto;
    right: -20px;
  }
  .formHolder__tooltip:hover span {
    left: -120px;
    top: 20px;
  }
  .formHolder > label,
  .dealSummryBox > label {
    font-size: 12px;
    font-weight: 600;
  }

  .calculatorSection__heading h1 {
    font-size: 28px;
  }

  .dealSummaryHolder__heading h2 {
    font-size: 25px;
  }

  .moreLoneDetail__box h3 {
    font-size: 19px;
  }
}

.dealSummaryHolder .text-right {
    padding: 20px 0 0;
}
 



.chartHolder  canvas {
    width: 100%;
    height: auto;
}
 
 


@media only screen and (max-width: 767px) {
	.page-id-23616 section.vc_row.wpb_row.vc_row-fluid.vc_custom_1625886767957.cover-background.wow.fadeIn.vc_row-has-fill.pofo-stretch-content.pofo-stretch-row-container.vc_row-o-full-height.vc_row-o-columns-middle.vc_row-o-content-middle.vc_row-flex.animated.vc_hidden {
    height: 480px !important;
    min-height: 480px !important;
}
	.page-id-23616 h2.text-extra-dark-gray.margin-20px-bottom.font-weight-600.display-inline-block.alt-font.text-uppercase.heading-style2.vc_custom_1625886845824.heading-1 {
    font-size: 11vw !important;
    font-weight: 800 !important;
    line-height: normal !important;
}
}