.minto-slidecontainer {
    width: 100%; /* Width of the outside container */
}

.affordability-calculator-slider-container{
    display: inline-block; 
    line-height: 38px; 
    vertical-align: baseline;
    position: relative;
}
.affordability-calculator-slider-container .minto-slider-start-label{
    position: absolute;
    bottom: 0;
    left: 0;
}
.affordability-calculator-slider-container .minto-slider-end-label{
    position: absolute;
    bottom: 0;
    right: 0;
}

.affordability-calculator label.cta-button{
    background:#efb51c;
    border-radius:100px;
    border: none;
    color:#1a1a1a;
    display:inline-block;
    font-family:VisueltMedium, Arial, sans-serif;
    font-weight:bold;
    height:40px;
    margin: 0 0 20px;
    line-height:40px;
    padding:0 25px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
    vertical-align: bottom;
    -webkit-border-radius: 100px;
    -o-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
}

/* The slider itself */
.minto-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;  
    background: #e6b645;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

/* Mouse-over effects */
.minto-slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.minto-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%; 
    background: #0c2144;
    cursor: pointer;
}

.minto-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0c2144;
    cursor: pointer;
}