*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
}
  
li{
  list-style: none;
}

a{
  text-decoration: none;
  color: #383838;
}

::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(65, 65, 65, 0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar{
	width: 7px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb{
	background-color: #F90;	
	background-image: -webkit-linear-gradient(45deg,
  rgba(255, 255, 255, .2) 25%,
  transparent 25%,
  transparent 50%,
  rgba(255, 255, 255, .2) 50%,
  rgba(255, 255, 255, .2) 75%,
  transparent 75%,
  transparent);
  border-radius: 10px;
}

/* Font Class Start */
.fs10{
  font-size: 10px;
}
.fs12{
  font-size: 12px;
}
.fs13{
  font-size: 13px;
}
.fs14{
  font-size: 14px;
}
.footer-16{
  font-size: 16px;
}
.fs17{
  font-size: 17px;
}
.fs16{
  font-size: 16px;
}
.fs19{
  font-size: 19px;
}
.fs20{
  font-size: 20px;
}
.fs24{
  font-size: 24px;
}
.fs28{
  font-size: 28px;
}
.app-label{
  font-size: 18px;
}
.unit-fs24{
  font-size: 24px;
}

.fw400{
  font-weight: 400;
}
.fw500{
  font-weight: 500;
}
.fw600{
  font-weight: 600;
}
.fw700{
  font-weight: 700;
}


.lh17{
  line-height: 17px;
}


.font-orange{
  color: #FF8C00;
}
.hover-orange:hover{
  color: #FF8C00;
}
.font-liteGray{
  color: #383838;
}
.foot-links{
  color: black;
  transition: .5s;
}
.foot-links:hover{
  color: #FF8C00;
  transition: .5s;
}

.bg-liteGray{
  background-color: #383838;
}
.bg-lt-orange{
  background-color: #FDF9F4;
}
.bg-orange{
  background-color: #FF8C00;
}
.bg-dull-gray{
  background-color: #FAFAFA;
}


.br-gray-1{
  border: 1px solid #EBEBEB;
  border-radius: 16px;
}
.borderTop1{
  border-top: 1px solid #EBEBEB;
}
.borderTop2{
  border-top: 1px solid #EDE5DC;
}
.border-top-dashed{
  border-top: 2px dashed #dddddd;
}
.border-right-dashed{
  border-right: 2px dashed #dddddd;
}
.border-bottom-dashed{
  border-bottom: 1px dashed #ffbaa1;
}

.list li{
  list-style:disc !important;
}


.cursor-pointer{
  cursor: pointer;
}

@media(max-width:600px){
  .fs16{
    font-size: 15px;
  }
  .fs20{
    font-size: 13px;
  }
  .fs24{
    font-size: 14px;
  }
  .fs28{
    font-size: 18px;
  }
  .app-label{
    font-size: 16px;
  }

  .unit-fs24{
    font-size: 20px;
  }
}
/* Font Class Close */


/* Header  Start  */

.openbtn {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.openbtn .openbtn-area{
  transition: all .5s;
  width: 50px;
  height: 50px;
}

.openbtn span {
  position: absolute;
  background:#FF8C00;
  display: inline-block;
  border-radius: 10px;
  left: 12px;
  height: 3px;
  transition: all .5s;
  width: 50%;
  &:nth-of-type(1) {
    top: 16px;
  }
  &:nth-of-type(2) {
    top: 24px;
  }
  &:nth-of-type(3) {
    top: 32px;
  }
}

.openbtn.active .openbtn-area {
  transform: rotate(360deg);
}

.openbtn.active span{
  &:nth-of-type(1) {
    width: 45%;
    top: 18px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
  }
  &:nth-of-type(2) {
    opacity: 0;
  }
  &:nth-of-type(3) {
    width: 45%;
    top: 30px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
  }
}

.drop-btn:hover{
  color: #FF8C00;
  transition: 0.3s;
}

.rotate-up {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  color: #FF8C00;
}

.dropdown-menu{
  min-width: 400px;
}

.dropdown-toggle::after{
  display: none;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  color: #FF8C00;
}

.search-btn{
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  background-color: #F9F9F9;
  font-size: 12px;
  font-family: Helvetica, 'FontAwesome', sans-serif;
}

.search-btn:focus-visible{
  border: 1px solid #FF8C00 ;
  outline: none;
  background-color: #FDF8F1;
}

.page-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.226);
  backdrop-filter: blur(15px);
  animation: slideDown 0.35s ease-out;
  z-index: 999999;
}

@-webkit-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width:1200px){
  .openbtn {
    display: inline-block !important;
  }
}

@media (max-width:400px){
  .dropdown-menu{
    min-width: 310px;
  }
}

@media(min-width:1200px){
  .menu{
    display: flex !important;
  }
}

@media(max-width:768px){
  .footer-16{
    font-size: 12px;
  }
}

/* Header  Close  */

/* Finance Calc Start  */

.box{
  border-radius: 16px;
  border:1px solid #EBEBEB;
  width: 21%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box svg{
  color: #BBBBBB;
  transition: .5s ;
}

.box:hover svg {
  color:#383838;
  transition: .5s ;
}

.top-border{
  border-top: 1px solid #EBEBEB;
}

.orange-box{
  color: #383838;
  transition: .5s;
  border-radius: 0 0 16px 16px;
}

.box:hover .orange-box{
  color: white;
  background-color: #FF8C00;
  transition: .6s;
}

.orange-box i {
  font-size: 10px;
}

@media (max-width:992px){
  .box{
    width: 45%;
  }
}
@media (max-width:500px){
  .box{
    width: 92%;
    margin: auto;
  }
}
/* Finance Calc Close */


/* EMI Calc Start */

.bg-lt-orange input[type=number],
.bg-dull-gray input[type=number]{
   border: none;
   outline: none;
};

input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Other browsers */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.up-in-toggle {
  padding: 4%;
}

.up-in-toggle input {
  clip: rect(0, 0, 0, 0);
  height: 0;
  width: 0;
  border: 0;
  overflow: hidden;
}

.up-in-toggle input:checked + label {
  background: #383838;
  color: #FFFFFF;
  font-weight: 500;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.13);
}

.up-in-toggle label {
  width: 60px;
  background-color: #EBEBEB;
  color: #989595;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  padding: 6px 6px;
  float: left;
  transition: all 0.1s ease-in-out;
}

.up-in-toggle label:hover {
  cursor: pointer;
}

.up-in-toggle label:first-of-type {
  border-radius: 15.5px 0 0 15.5px;
}

.up-in-toggle label:last-of-type {
  border-radius: 0 15.5px 15.5px 0;
}

.orange-dot{
  height: 15px;
  width: 15px;
  display: inline-flex;
  background-color: orange;
  border-radius: 100%;
}

.report-table::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}

.report-table{
  height: 450px;
  overflow: auto;
  width: 100%;
}

.report-table td{
  text-align: center;
  padding:10px;
}

.report-table td{
  font-size: 18px;
  color: #383838;
}

.report-table tr:nth-child(odd) {
  background-color: #FCF8F5;
}

@media(max-width:430px){
  .up-in-toggle label {
    width: 40px;
    font-size: 9px;
  } 
}

@media (max-width:600px) {
  .report-table{
    height: 300px;
    overflow: auto;
  }

  .report-table td{
    font-size: 14px;
  }
  
}

@media (max-width:992px){
  
.bg-lt-orange input[type=number],
.bg-dull-gray input[type=number]{
   width: 70%;
};

}
@media (max-width:1400px){
  
.bg-lt-orange input[type=number],
.bg-dull-gray input[type=number]{
   width: 80%;
};

}
/* EMI Calc Close  */

/* FD Calculator Start  */

.fd input[type="radio"] {
  display: none;
}

.button {
  width: 140px; 
  height: 40px; 
  background-color: #FAFAFA; 
  font-size: 14px;
  border: none; 
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #989595;
}

.fd input[type="radio"]:checked + label {
  background-color: #FF8C00; 
  color: #fff; 
  font-size: 14px;
 
}

.fd select{
  background-color: #FAFAFA;
  border: none;
  outline: none;
}
/* FD Calculator Close  */

/* Compare Loan Start  */

.radio-selector input[type="radio"] {
  display: none;
}

.radio-selector label {
  cursor: pointer;
  padding: 0 5px;
  font-size: 14px;
  color: #C0C0C0;
}

.radio-selector input[type="radio"]:checked + label {
  color: orange;
}

.add-btn{
  background-color: #FFFFFF;
  transition: .5s;
}

.add-btn:hover{
  background-color: #ebebeb;
  transition: .5s;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.scroll-table td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

.scroll-table tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.scroll-table tr.bg-dull-gray td {
  background-color: #f2f2f2; 
}

.scroll-table tr.bg-dull-gray td:first-child {
  border-left: none;
}

.scroll-table tr.bg-dull-gray td:last-child {
  border-right: none;
}

.scroll-table .scroll-table {
  max-width: 100%;
  overflow-x: auto;

}

.scroll-table::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(65, 65, 65, 0.3);
	background-color: #F5F5F5;
}

.scroll-table::-webkit-scrollbar {
	width:1px ;
  height: 6px;
	background-color: #F5F5F5;
}

.scroll-table::-webkit-scrollbar-thumb {

  background-color: #1d1c1c;
  border-radius: 2px;

}
/* Compare Loan Close  */

/* Age Calculator Start  */

.age input[type="date"]{
  background-color:#FAFAFA;
  border: 1px solid rgb(209, 209, 209);
  padding: 5px;
  border-radius: 6px;
  width: 100%;
}

.age{
  border-collapse:separate;
  border-spacing:0 15px;
}

.age td{
  padding: 10px;
  white-space: nowrap;
}

.age tr{
  background-color:#f0f0f08f ;
  margin: 10px 0;
}

.total-label{
  width: 30%;
}

@media (max-width:550px){
  .total-label{
    width: 50%;
  }
}

/* Age Calculator Close  */

/* SIP Calculator Start  */

.sip-radio{
  accent-color: #ff5e38;
}

/* SIP Calculator Close  */


/* Unit Calculator Start  */

.unit::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(65, 65, 65, 0.3);
	background-color: #F5F5F5;
}

.unit::-webkit-scrollbar
{
	width: 3px;
	background-color: #F5F5F5;
}

.unit::-webkit-scrollbar-thumb
{
	background-color: rgb(51, 50, 48);	
  border-radius: 10px;
}


/* Unit Calculator Close  */


/* BMI Calculator Start */

.c-bmi fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.c-bmi__group-text {
  display: none;
  font-size: small;
  order: 2;
  padding: 1rem 0;
  text-align: left;
  width: 100%;
}
.c-bmi__groups {
  border: 0;
  flex-wrap: wrap;
  font-size: 10px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.c-bmi__groups label {

  padding: .5rem;
  position: relative;
}

[for="bmi-g0"] { background-color: #4691e2;color: #fff; }
[for="bmi-g1"] { background-color: #0cb764;color: #fff; }
[for="bmi-g3"] { background-color: #fc8711;color: #fff; }
[for="bmi-g5"] { background-color: #cc1100; color: #fff; }

.c-bmi__groups input:checked + label::before {
  background-color: inherit;
  clip-path: polygon(0% 0%,100% 0%,50% 100%);
  content: '';
  transform: translateX(-50%);
  display: inline-block;
  height: 1rem;
  position: absolute;
  left: 50%;
  top: -1rem;
  width: 1rem;
}
.c-bmi__groups input:checked + label + div {
  display: block;
  flex: 0 0 100%;
}
.c-bmi__label {
  display: block;
  font-size: medium;
  margin: 0 0 1rem 0;
  position: relative;
}

.c-bmi [type="radio"] { display: none; }


@media (min-width: 600px) {
  .c-bmi__groups { display: flex; }
  .c-bmi__groups input:checked + label::before {
    background-color: inherit;
    clip-path: polygon(0% 0%,100% 0%,50% 100%);
    left: 50%;
    top: -1rem;
    transform: translateX(-50%);
    width: 1.5rem;
  }
  .c-bmi__groups label { flex: 1; }
  [for="bmi-g0"] { border-radius: .25rem 0 0 .25rem; }
  [for="bmi-g5"] { border-radius: 0 .25rem .25rem 0; }
}

.custom-dropdown select{
  background-color: transparent;
  border: none;
  outline: none;
}


 .fraction {
            display: inline-block;
            vertical-align: middle;
            text-align: center;
        }
        .fraction .numerator {
            border-bottom: 1px solid #000;
            padding: 0 0.2em;
        }
        .fraction .denominator {
            padding: 0 0.2em;
        }
/* BMI Calculator Close */


