@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap");

/* ++++++++++++++++ 
27-06-2025 
calculator-sec
+++++++++++++++++ */

:root {
  --gradient: linear-gradient(0deg, #F267C3 0%, #9A5EFF 100%);
  --clr-bg-dark: #231f20;
  --clr-para-text: #fff;
  --bg-light: #ffffff;
  --ff-body:var(--e-global-typography-text-font-family), Sans-serif;
  --ff-primary: var(--e-global-typography-text-font-family), Sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}
/* 
.custom-pad {
  padding: 120px 0;
} */
/*  calculator-sec */
.calculator-sec {
  background-color: transparent;
  color: var(--bg-light);
/*   padding-left: 14px;
  padding-right: 15px; */
}
.calculator-sec .inner__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
.calculator-sec .inner__content-wrapper > div {
  flex: 1;
}
.calculator-sec .inner__content-wrapper > div.right-part {
    flex: 1.6;
}
.calculator-sec .inner__content-wrapper .left-part {
  position: relative;
  padding: 50px 55px;
  border-radius: 20px;
  z-index: 1;
}

.calculator-sec .inner__content-wrapper .left-part::before,
.calculator-sec .inner__content-wrapper .left-part::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: var(--gradient);
  pointer-events: none;
  z-index: -2;
}
.calculator-sec .inner__content-wrapper .left-part::after {
  z-index: -1;
  background: #000;
  margin: 2px;
}
.value__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-group:not(:last-child) {
  margin-bottom: 46px;
  position: relative;
}

.slider-group label {
  display: block;
     font-family: var(--e-global-typography-dc85d3c-font-family), Sans-serif;
    font-size: var(--e-global-typography-dc85d3c-font-size);
    font-weight: var(--e-global-typography-dc85d3c-font-weight);
    line-height: var(--e-global-typography-dc85d3c-line-height);
    letter-spacing: var(--e-global-typography-dc85d3c-letter-spacing);
    color: var(--e-global-color-astglobalcolor4);
	margin-bottom: 20px;
}
.value__wrapper span {
    font-family: var(--e-global-typography-dc85d3c-font-family), Sans-serif;
    font-size: var(--e-global-typography-dc85d3c-font-size);
    font-weight: var(--e-global-typography-dc85d3c-font-weight);
    line-height: var(--e-global-typography-dc85d3c-line-height);
    letter-spacing: var(--e-global-typography-dc85d3c-letter-spacing);
    color: var(--e-global-color-astglobalcolor4);
}

.slider-wrapper {
  position: relative;
  width: 100%;
}
.calculator-sec .section-title h2 {
    color: #fff;
}
.slider-group input[type="range"] {
  width: 100%;
    -webkit-appearance: none; 
  appearance: none;
  background: transparent;
  height: 8px;
 border: none;
  border-radius: 0;
  outline: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
	 background: var(--gradient); 
}
/* 
.slider-group input[type="range"]::-webkit-slider-runnable-track {
  height: 0;
 
} */

/* Chrome, Safari, Edge Chromium */
.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  background: transparent;
  border: none; /* Add if you don't want a border */
  border-radius: 50%;
  cursor: pointer;
  margin-top: -7px; /* Align with track */
  position: relative;
  z-index: 2;
}

/* Firefox */
.slider-group input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* Legacy Edge (optional) */
.slider-group input[type="range"]::-ms-thumb {
  height: 20px;
  width: 20px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  top: 0;
  background: var(--gradient);
  padding: 5px 13px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.calculator-sec .inner__content-wrapper .left-part .custom-btn {
  width: 100%;
}
.subtext {
  text-align: center;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}
.calculator-sec p {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
	margin: 0;
}
.custom-btn {
  background: var(--gradient);
  padding: 23px 30px;
  border-radius: 6px;
  text-align: center;
    font-family: var(--e-global-typography-d735a75-font-family), Sans-serif;
    font-size: var(--e-global-typography-d735a75-font-size);
    font-weight: var(--e-global-typography-d735a75-font-weight);
    line-height: var(--e-global-typography-d735a75-line-height);
    color: var(--e-global-color-astglobalcolor4);
  cursor: pointer;
  color: var(--bg-light);
  border: none;
  margin-bottom: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.custom-btn:hover {
  color: var(--clr-bg-dark);
  background: var(--bg-light);
}
.calculator-sec .inner__content-wrapper .left-part .custom-btn + p{
	font-weight: 400;
}

.custom-btn span {
  margin-left: 5px;
  transition: all 0.3s;
}
.custom-btn:hover span {
  transform: rotate(-45deg);
}
.custom-btn:hover span img {
  filter: invert(1);
}

body .section-title h2 {
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: capitalize;
    line-height: var(--e-global-typography-secondary-line-height);
    letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  margin: 25px 0 30px;
}

body .section-title h3 {
	color: var(--bg-light);
      font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
}
.calculator-sec .inner__content-wrapper .right-part .custom-btn {
  margin: 0;
  margin-top: 30px;
}

/* media  */
@media (min-width: 1200px) and (max-width: 1440px) {
  .custom-btn {
    padding: 18px 28px;
  }
}
@media (min-width: 1024px) and (max-width: 1199.98px) {

  .hex-Funded-container {
    max-width: 991px;
  }

  .section-title h2 {

    margin: 14px 0 34px;
  }
  .custom-btn {
    padding: 16px 28px;
  }
  .slider-group label {
    margin-bottom: 8px;
  }

  .calculator-sec .inner__content-wrapper .left-part {
    padding: 48px;
  }

  .calculator-sec .inner__content-wrapper .right-part .custom-btn {
    margin-top: 36px;
  }

  .calculator-sec p {
    font-size: 18px;
  }
}

@media (min-width: 992px) and (max-width: 1023.98px) {
 
  .section-title h2 {

    margin: 14px 0 34px;
  }
  .custom-btn {
    padding: 16px 28px;
  }
  .slider-group label {
    margin-bottom: 8px;
  }

  .calculator-sec .inner__content-wrapper .left-part {
    padding: 48px 55px;
  }

  .calculator-sec .inner__content-wrapper .right-part .custom-btn {
    margin-top: 36px;
  }
}
@media (max-width: 991.98px) {
  

  .section-title h2 {
    margin: 14px 0 34px;
  }
  .custom-btn {
    padding: 15px 25px;
    margin-bottom: 11px;
  }
  .slider-group label {
    margin-bottom: 8px;
  }

  .calculator-sec .inner__content-wrapper .left-part {
    padding: 48px 55px;
  }

  .calculator-sec .inner__content-wrapper .right-part .custom-btn {
    margin-top: 36px;
  }

  .calculator-sec p {
    font-size: 18px;
  }
  .slider-group:not(:last-child) {
    margin-bottom: 25px;
  }
  .calculator-sec .inner__content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 768.98px) {
  .calculator-sec .inner__content-wrapper .left-part {
    width: 100%;
  }

 
  .calculator-sec .inner__content-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 570.98px) {

  .calculator-sec .inner__content-wrapper .left-part {
    padding: 40px 50px;
  }

  .custom-btn {
    padding: 12px 25px;

  }
  .section-title h2 {
    margin: 12px 0 21px;
  }
  .calculator-sec .inner__content-wrapper .right-part .custom-btn {
    margin-top: 24px;
  }
.tooltip {
    padding: 4px 5px;
    font-size: 12px;
min-width: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
  }
	body .section-title h2 {
    margin: 13px 0;
}
}
/* ++++++++++++++++ 
27-06-2025 
calculator-sec
+++++++++++++++++ */
