* {
    list-style-type: none;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}


body {
    padding: 0;
    margin: 0;
    background-color: #eeeeee;
    height: 100%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.cont {
    width: 70%;
    height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav {
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    height: 60px;
    text-align: center;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d6d6d6;
    height: 100%;
    width: 15%;
    background-color: #dedede;
}

#homeLoanTab {
    border-radius: 5px 0 0 0;
}

#carLoanTab {
    border-radius: 0 5px 0 0;
}

.nav-link {
    color: #40474e;
    font-weight: 1000px;
}

.nav-list:hover {
    cursor: pointer;
}

.active {
    background: #eee;
    border-bottom-color: transparent;
}

.loan-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #eeeeee;
    border: 1px solid #d6d6d6;
    border-top: transparent;
    border-radius: 5px;
}

.clear {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 0px;
    justify-content: flex-end;
}

.clear-line {
    margin: 0;
    padding: 0;
    width: 55%;
    height: 0px;
    border-top: 1px solid #d6d6d6;
    border-radius: 0 5px 0 0;

}

.loan-input-cont {
    height: 60%;
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
}

.loan-amt,
.intrst-rate,
.loan-tenure {
    display: flex;
    flex-direction: column;
    height: 33.3%;
    width: 100%;
}

.inputs-bx {
    display: flex;
    width: 100%;
    height: 50%;
    justify-content: center;
    align-items: flex-end;
}

.ipt-label {
    width: 30%;
    height: 50%;
    text-align: center;
    padding-top: 1%;
    padding-right: 4%;
    color: #55595b;
    font-size: larger;
}

.inpt-grp {
    width: 40%;
    height: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    border: .5px solid #cbcccd;
    border-radius: 5px;
}

.inpt-grp .inpt {
    padding: 0;
    margin: 0;
    width: 90%;
    height: 100%;
    border: transparent;
    border-radius: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    color: #55595b;
    text-align: center;
    font-size: 20px;
}

.inpt-grp .btn {
    padding: 0;
    margin: 0;
    width: 15%;
    height: 100%;
    border: transparent;
    border-left: 1px solid #cbcccd;
    border-radius: 0;
    background-color: #e9ecef;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;

}

.inpt-range {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-content: space-around;
    flex-direction: column;
    align-items: center;
}

datalist {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 20%;
}

.range {
    width: 90%;
    cursor: pointer;
    border-radius: 3px;
    height: 50%;
    accent-color: #ed8c2b;
    background: #dee1e6;
    border: transparent;
}

.loan-anly-cont {
    display: flex;
    height: 40%;
    width: 100%;
}

.loan-vals-cont {
    display: block;
    height: 100%;
    width: 50%;
    border-right: 1px solid #d6d6d6;
}

.loan-chart-cont {
    height: 100%;
    width: 50%;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-content: center;

}

.pie-chart {
    width: 70%;
    height: 70%;
}

.loan-emi {
    height: 33.3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loan-intrst {
    height: 33.3%;
    width: 100%;
    border: 2px dashed #d6d6d6;
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loan-total-amount {
    height: 33.3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loan-anly-cont p,
span {
    color: grey;
    padding: 0;
    margin: 0;
}

.chart {
    position: relative;
    width: 100%;
    height: 100%;
}

.btn-toggle:hover {
    cursor: pointer;
    color: #212529;
    background-color: #cbd3da;
    border-color: #c4ccd4
}

.btn.btn-active {
    cursor: pointer;
    color: #212529;
    background-color: #cbd3da;
    border-color: #c4ccd4
}