.emi-calculator-container{
    background: #F9F9F9;
    border-radius: 12px;
    border-width: 1px;
    padding: 28px;
}

.emi-calculator-container .emi-calculator-row .emi-calculator-card {
    border-radius: 10px;
    padding: 16px;
    background: #FFFFFF;
    height: 100%;
    box-shadow: 0px 1px 2px 0px #0B0B0B0D;
}

.emi-calculator-container .emi-calculator-row .emi-calculator-card .emi-calculator-heading {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #168794;
}

.input-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px 12px;
    background-color: white;
    width: 100%;
}

.input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
}

.input-wrapper .input-wrapper-text {
    margin-right: 5px;
    color: gray;
}

.emi-calculator-label{
    margin-bottom: .5rem;
}

.rangeslider--horizontal .rangeslider__handle {
  top: -6px !important;
}

.rangeslider__handle {
    border: 3px solid #fff;
    height: 20px !important;
    width: 20px !important;
    border-radius: 100% !important;
    background-color: #299B9D !important;
    box-shadow: 0px 2px 4px 0px rgba(165, 163, 174, 0.3) !important;
}

.rangeslider--horizontal {
    height: 10px !important;
    background: rgba(75, 70, 92, 0.08) !important;
    box-shadow: none !important;
}

.rangeslider__fill {
    background: #33C2C4 !important;
}

.rangeslider__handle:after {
    content: none !important;
}

.result-amount-box {
    border-radius: 6px;
    padding: 12px;
    background: rgba(0, 179, 181, 0.08);
}

.total-amount-result {
    border-left: 3px solid rgba(0, 179, 181, 1);
    padding-left: 15px;
}

.total-emi {
    border-left: 3px solid rgba(243, 111, 33, 1);
    padding-left: 15px;
}

.saving-card {
    background-color: rgba(0, 179, 181, 1);
}

.result-amount-box label {
    font-size: 13px;
    line-height: normal;
    font-weight: 500;
    color: rgba(75, 70, 92, 1);
}

.progress-col .progress-svg{
    width: 10px !important;
    height: 2px;
    transition: height 0.5s ease, y 0.5s ease;
}

input[type="number"]::-webkit-inner-spin-button{
    display: none !important;
}

.result-amount {
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
}