/* .calculator-section{
  padding: 3rem 0rem;
} */

.calculator-section-container{
  margin-bottom: 3rem;
}

.form-box{
  margin-top: 22px;
}

.calculator-row{
  /* border: 1px solid var(--grey-300); */
  border-radius: 12px;
  padding: 1rem 2rem 3rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.calculator-name{
  font-size: var(--font-size-36);
  font-weight: 500;
  color: var(--grey-800);
  margin-bottom: 16px;
  padding-left: 15px;
}

.calculator-section .form-control{
  font-family: manrope;
}

.calculator-section .form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgb(0 123 255 / 0%);
  background: #e7e7e7;
  border: 0;
}

.calculator-section .btn-dark-wright{
  height: 50px;
  padding: 12px;
}

.form-box label {
  font-weight: 600;
  margin-bottom:10px;
  color: var(--grey-500);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-16);
}

.form-box .form-group {
  margin-bottom: 44px;
}

.form-box .form-group select{
  font-family:manrope;
  color:var(--grey-900);
  font-weight:400;
  border: 1px solid var(--grey-200);
}



input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border: 0;
  margin: 0;
}

input[type="range"]:hover {
  opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(71, 84, 103, 1);
  cursor: pointer;
  margin: 0;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink-Dark);
  cursor: pointer;
}




.range-label {
  display: flex;
  justify-content: space-between;
}


#calculate-button{
  background-color: rgba(37, 33, 33, 1);
  box-shadow: none;
}

#calculate-button:hover{
  background-color: rgba(234, 236, 240, 1);
  box-shadow: none;
}

#reset-button{
  background-color: rgba(234, 236, 240, 1);
  box-shadow: none;
}


.last-span{
  background-color: rgba(71, 84, 103, 1);
  padding: 6px 10px;
  color: white;
  border-radius: 6px;
  width: auto;
}

.last-span span , .last-span output{
  margin-left:5px;
  margin-right:5px
}

.Result-box{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.Result-div {
  /* text-align: center; */
  /* font-family: manrope; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  gap: 5px;
}

.Result-div h3{
  font-weight:600;
  color:var(--grey-800)
}

.Result-div p{
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--grey-500);
  font-family: 'Manrope';
}


.nagivation-box{
  /* border: 1px solid var(--grey-300); */
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left: 0;
}

.nagivation-box-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  height: 100%;
  width: 100%;
  /* justify-content: center; */
}

.img-box-calculator{
  width: 250px;
  height: 200px;
  margin-top: -36px;
}

.nagivation-box-content h3{
  font-size: var(--font-size-20);
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 10px;
}

.nagivation-box-content p{
  font-family: manrope;
  margin-bottom: 0;
  font-size: var(--font-size-14);
  font-weight: 500;
  color: var(--grey-400);
}


.toc-section , .other-calculators-box {
  position: sticky;
  top: 68px;
  padding: 0;
  margin-bottom: 26px;
}

.table-Content{
  height:auto;
}

.other-calculators-box {
  margin-bottom: 44px;
  height: 290px;
  overflow-y: hidden;
}

.table-Content:hover{
  overflow-y: auto !important;
}
 .other-calculators-box:hover{
  overflow-y: auto !important;
}

.other-calculators-box::-webkit-scrollbar  , .table-Content::-webkit-scrollbar  {
  width: 8px; /* width of the vertical scrollbar */
  height: 8px; /* height of the horizontal scrollbar */
  }
  
  /* The part of the scrollbar track that is behind the scrollbar thumb */
  .other-calculators-box::-webkit-scrollbar-track , .table-Content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  /* The scrollbar thumb (the part you drag to scroll) */
  .other-calculators-box::-webkit-scrollbar-thumb , .table-Content::-webkit-scrollbar-thumb {
    background: #888;
  border-radius: 10px; /* Optional: rounds the corners */
}

/* The scrollbar thumb when you hover over it */
.other-calculators-box::-webkit-scrollbar-thumb:hover , .table-Content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#article-heading{
  margin-bottom: 0% !important;
}

.toc-section li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  z-index: 1;
  margin-left: 20px;
}

.toc-section a {
  color: var(--grey-500, #667085);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 7px;
}

.toc-Link a {
  color: var(--Pink-Dark, #D57BC8);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.toc-Link::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 0px;
  background-image: url(/static/img/landing-page-img/arrow-right.svg);
  z-index: 10;
  width: 27px;
  height: 27px;
}



.other-calculators h3, .in-this-article h3{
  font-weight: 600;
  font-size: var(--font-size-14);
  margin-bottom: 1rem;
  margin-top: 0px;
  color: var(--grey-700);
}


.in-this-article h3{
  margin-left: 0px;
}

.other-calculators p{
  font-family: manrope;
  margin-bottom: 00px;
  position:relative;
}

.other-calculators p::after{
  content:"";
  position:absolute;
  left:0;
  bottom: 0px;
  background:#f3f3f3;
  width:100%;
  height:1px;
  z-index:1;
}

.other-calculators p a{
  font-size: var(--font-size-14);
  color: var(--grey-500);
  display: block;
  padding: 10px 0px;
}



.article-post h2  , .article-post h2 span{
  color: var(--Grey-800, #1D2939);
  font-family: Manrope  !important;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
  scroll-margin-top: 70px;
  margin-top: 1px !important;
}

.article-post h3 , .article-post h3 span {
  color: var(--Grey-800, #1D2939);
  font-family: Manrope !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
  scroll-margin-top: 70px;
}


.article-post p , .article-post p span {
  line-height: 43px;
  color: var(--grey-700, #344054) !important;
  font-family: Manrope !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px !important;
  text-align: left;
  margin: 0 0 10px 0px !important;
}

.article-post ol li , .article-post ul li
.article-post ol li p span , .article-post ul li p span,
.article-post ol li p  , .article-post ul li p{
  color:  var(--grey-700, #344054) !important;
}

.in-this-article .card{
  border: 0;
}

.in-this-article .card-header{
  background-color: white;
  padding-bottom: 0;
  border-bottom: 0;
  padding-top: 0;
}

.in-this-article .card-body{
  padding: 0px;
}

.in-this-article .card-body{
  padding: 0px;
} 

#resultDiv {
  background-color: #f8f9fb;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  box-shadow: none;
  font-family: 'Inter', sans-serif;
}

#resultDiv h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

#resultDiv p {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}

#resultDiv>div {
  margin-bottom: 25px;
}

#resultDiv .date p {
  font-size: 11px;
  color: #6b7280;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: -20px;
}





.faq_section{
  padding-top: 72px;
  padding-bottom: 80px;
  padding-left: 140px;
  padding-right: 140px;
}

.faq_section .faq-heading{
  color: var(--Grey-900, #101828);
  font-family: Manrope;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.faq_section .card{
  margin-bottom: 16px;
  border: 0;
  border-radius: 16px;
  background: var(--Gradient-Purple-pink-gradient, linear-gradient(92deg, #FFEBFC 0%, #D6CBFE 100%));
}


.faq_section .card-header{
  background-color: rgba(109, 98, 98, 0);
  border: 0;
  padding: 24px 24px 16px;
}



.faq_section .card-body{
  padding: 0px 24px 24px;
}

.faq_section .btn-link{
  padding: 0;
  color: var(--Grey-900, #101828);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.faq_section .accordion .card:last-of-type {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 16px;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 16px;
}

.faq_section .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 16px;
}

.accordion-heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq_section .card-header[aria-expanded=true] .minus-risk {
  display: block;
  border-radius: 32px;
  background: var(--Grey-700, #344054);
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
}

.faq_section .card-header[aria-expanded=true] .minus-risk img{
  transform: none;
  filter: invert(1);
}

.faq_section .card-header[aria-expanded=true] .plus-risk {
  display: none;
  transform: none;

}


.faq_section .card-header[aria-expanded=false] .minus-risk {
  display: none;
}

.faq_section .card-header[aria-expanded=false] .plus-risk {
  display: block;
  border-radius: 32px;
  background: var(--Purple-medium, #D9D0FC);
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
}

.faq_section .card-header[aria-expanded=false] {
  background-color: white;
}


.faq_section .card-body p{
  color: var(--Grey-700, #344054);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px
}


.socual-share-link{
  position: relative;
  margin-top: 12px;
}

.socual-share-link::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--grey-300);
  left: 0;
  top: -12px;
}




.accordion-button {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  background-color: white; /* Default button background */
  color: #444; /* Default text color */
  cursor: pointer;
  padding: 10px 24px 0px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}


.plus-risk {
  display: block;
  border-radius: 32px;
  background: #F0F0F0;
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 8px;
  height: 40px;
  width: 40px;
}

.minus-risk {
  display: block;
  border-radius: 32px;
  background: var(--grey-700, #344054);
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
}

.minus-risk img{
  filter: invert(1);
}

.accordion-button span:last-child{
  font-family: manrope;
  font-weight: 400;
  color: var(--grey-900) !important;
  font-size: 20px !important
}




.accordion-button:not(:first-child){
  margin-top: 32px;
}

.accordion-button.active {
  background-color: #d9d0fc; /* Button background when active */
  color: #000; /* Text color when active */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .panel {
    padding: 0 24px;
    background-color: white;
    display: none;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  
  .panel.active-panel {
  background-color: #d9d0fc; /* Panel background when active */
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.panel p , .panel p span{
  font-family: manrope !important;
  color: var(--grey-700) !important;
}

.faq-body-cal{
  margin-bottom: 44px;
}

.faq-body-cal button:focus {
  outline: 1px dotted;
  outline: 0px auto -webkit-focus-ring-color;
}


.calculator-list-section{
  padding: 20px 100px 0 0;
}

.calculator-list-section .col-md-3{
  margin-bottom: 36px;
}

.calculator-list-section-mobile{
  padding: 20px 30px;
}

.calculator-list-section-mobile .col-md-6{
  margin-bottom: 20px;
  position: relative;
  width: 50%;
  padding-right: 10px;
  padding-left: 5px;
}


.calculator-box h4{
  font-family: manrope;
  font-weight: 600;
  color: var(--grey-700);
  font-size: var(--font-size-20);
  margin-bottom: 10px;
}

.calculator-box p{
  font-family: manrope;
  font-size: var(--font-size-14);
  margin-bottom: 0;
  color: var(--grey-400);
}

.calculator-box div{
  border: 1px solid var(--grey-200);
  padding: 16px;
  border-radius:8px;

}

.truncate {
  width:100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  background:#fff;
}

.truncate-mobile {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  background:#fff;
}

.calculator-box div:hover {
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06);
}

.input-group-text{
  border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}


@media(max-width: 767px){

  .calculator-box div{
    padding: 16px 10px;
  
  }
  .calculator-name {
    font-size: var(--font-size-22);
    font-weight: 500;
    color: var(--grey-800);
    margin-left: 10px;
}

  .calculator-row  ,.nagivation-box{
    border: 0 !important;
  }

  .calculator-row {
    padding: 0px 20px 48px;
}
.Result-box {
  display: flex;
  /* justify-content: flex-start; */
  align-items: center;
  margin-top: 29px;
}

.Result-box div{
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  width: 360px;
}

#resultDiv .date p{
  width: 100%;
}

#resultDiv{
  width: 100%;
}

.nagivation-box-content{
  border: 1px solid var(--grey-300);
  padding-bottom: 24px;
  border-radius: 12px;
}

.img-box-calculator {
  margin-top: 0px;
}
.invest-box-button{
  margin-bottom: 20px;
}

.Result-div {
  justify-content: flex-start;
  text-align: initial;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.Result-div h3 {
  font-size: var(--font-size-14);
}

.Result-div p {
  font-size: var(--font-size-12);
  margin-bottom: 0;
  width: 115px;
}

  .article-post h2 {
    color: var(--Grey-800, #1D2939);
    font-family: Manrope;
    font-size: 20px;
    margin-top: 40px;
    scroll-margin-top: 100px;
  }

  .article-post p, .article-post blockquote {
    margin: 0 0 1rem 0;
}
  .article-post p {
    font: 14px / 25px Manrope;
    line-height: 22px;
}

.article-post ol li, .article-post ul li .article-post ol li p span,
 .article-post ul li p span, .article-post ol li p, .article-post ul li p {
  color: var(--grey-700, #344054) !important;
  line-height: 24px !important;
  text-align: justify;
}

.article-post ol , .article-post ul{
  padding-inline-start: 22px !important
}

  .Toc-box{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1060;
    background: white;
    padding: 0rem;
    box-shadow: 0 2px 9px -2px rgb(0 0 0 / 30%);
    transition: .3s ease-in;
  }
  .toc-inner{
    border-bottom: 1px solid var(--Grey-200, #EAECF0);
    background: #F9FAFB;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.04);
  }

  .toc-inner-Box {
    margin-left: 32px;
    padding: 24px 20px;
    max-height: 300px;
    overflow: auto;
    list-style:none
}

.Toc-box li {
  list-style: none;
  margin-bottom: 20px;
}

  .Toc-box a {
    color: var(--Grey-500, #667085);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 12px;
  }

  .toc-Link{
    position: relative;
  }

  .toc-Link a {
    color: var(--Pink-Dark, #D57BC8);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.overlay-color {
  opacity: 0.6;
  background: var(--Grey-800, #1D2939);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.toc-Link::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 0px;
  background-image: url(/static/img/landing-page-img/arrow-right.svg);
  z-index: 10;
  width: 27px;
  height: 27px;
}

  .toc-heading-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    color: var(--Grey-900, #101828);
    font-family: Manrope;
    font-size: var(--font-size-16);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

  .socual-share-link {
    padding: 24px 20px;
    position: relative;
}

.socual-share-link::after {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  background: #D0D5DD;
}

.table-Content, .other-calculators-box {
  height: auto;
  overflow-y: hidden;
  margin-bottom: 36px;
  display: none;
}


.faq_section {
  padding-top: 72px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
}

.faq_section .btn-link {
  font-size: 16px;
}
.faq_section .card-body p {
  font-size: 14px;
}

.calculator-mobile-result{
  font-weight: 600;
  }

.faq_section .accordion-button p , .faq_section .accordion-button p span,
.faq_section .accordion-button span , .faq_section .accordion-button span span{
  font-size: var(--font-size-14) !important;
}
}



@media(min-width:768px){
  .Toc-box {
    display: none;
  }
  .calculator-mobile-result{
    display: none;
  }
}



@media (min-width:768px) and (max-width:1200px) {
  .calculator-section .btn-dark-wright {
    height: 42px;
    padding: 12px;
    font-size: 10px;
}
.calculator-section .btn-grey-wright{
  height: 42px;
  font-size: 10px;
}
.in-this-article {
  display: block;
}
.faq_section {
  padding-top: 72px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
}


}

@media (min-width:768px) and (max-width:1100px){
  .nagivation-box-content {
    border: 0;
}

   .nagivation-box-content img{
    width: 100px !important;
}
.Result-div h3 {
  font-size: var(--font-size-18);
}
.Result-div p {
  font-size: var(--font-size-14);
}
.form-box label {

  font-size: var(--font-size-14);
}

}



@media (min-width:768px){
  .article-post p span{
    font-size: var(--font-size-18) !important;
  }
}