.wdt-sc-emi-calc form {
    display: flex;
}
.wdt-sc-emi-calc form > div:first-child { 
    flex-basis: 70%;
    padding-right: 30px; 
}
.wdt-sc-emi-calc form > div:last-child { 
    flex-basis: 30%;
}
.wdt-sc-emi-calc .column {
    width: 100%;
    margin: 0;
    float: none;
    text-align: left;
}
.wdt-sc-emi-calc form div input {
    padding: 0;
    background-color: var(--wdtAccentTxtColor);
    height: 6px;
}
.wdt-sc-emi-calc .column label {
    font-size: var(--wdtFontSize_H6);
    font-weight: var(--wdtFontWeight_Alt);
    margin-bottom: 15px;
    color: var(--wdtHeadAltColor);
    display: flex;
    justify-content: space-between;
}
.wdt-sc-emi-calc .column label span {
    padding-left: 15px;
}
.wdt-sc-emi-calc form .wdt-sc-column-wrapper>div[class*="wdt-sc-"]:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.2115rem + 1.2821vw, 3.75rem);
}
.wdt-sc-emi-calc form p {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: var(--wdtFontWeight_Ext);
    color: var(--wdtHeadAltColor);
    display: flex;
    flex-direction: column-reverse;
}
.wdt-sc-emi-calc form p span {
    font-size: clamp(1.75rem, 1.5769rem + 0.7692vw, 2.5rem);
    font-weight: var(--wdtFontWeight_Alt);
    line-height: 1;
    margin: 12px 0px;
}
.progress::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -webkit-appearance: none;
    cursor: ew-resize;
    background: var(--wdtPrimaryColor);
}
.progress {
    background: linear-gradient(to right, var(--wdtPrimaryColor) 0%, var(--wdtPrimaryColor) 40%, #fff 40%, #fff 100%);    
    transition: background 450ms ease-in;
}
.wdt-sc-emi-calc .wdt-sc-payment-container{
    display: grid;
    align-items: center;
    text-align: center;
    background-color: var(--wdtAccentTxtColor);
    padding: 15px;
    border-radius: var(--wdtRadius_Part);
    border: 1px solid var(--wdtBorderColor);
}

/* Responsive */

@media screen and (max-width: 767px){
    .wdt-sc-emi-calc form {
        flex-direction: column;
    }
    .wdt-sc-emi-calc form > div:first-child {
        padding-right: 0;
        padding-bottom: 30px;
    }
    .wdt-sc-emi-calc .wdt-sc-payment-container{
        min-height: 200px;
    }
}