#value-calculator-v2 {
    max-width: 100%;    
    width: 100%;
}
#value-calculator-v2 .container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    max-width: 100%;    
}

#value-calculator-v2 article {
    width: 75%
}
#value-calculator-doughnut-chart {
	height: 700px;
}
#value-calculator-v2 aside {
    width: 25%;
}
#value-calculator-v2 aside .data-input-container {
    width: 100%;
    /* max-height: 600px; --> */
    overflow-y: hidden;
    overflow-x: hidden;  
    margin-bottom: 40px;
    padding: 30px;
}
#value-calculator-v2 aside .data-input-container .step-1 .column-header {
    font-weight: bold;
    margin-bottom: 5px;
}
#value-calculator-v2 aside .data-input-container .step-1 li {
    list-style: none;
}

#value-calculator-v2 aside .btn-grp button.btn {
    min-width: 0;
    width: 45%;
    margin-right: 2%;
}
#value-calculator-v2 aside .btn-grp .btn.secondary {
    border: 2px solid #0a214d;
    background: transparent;
    color: #0a214d;
    min-width: 0;
    width: 45%;
    margin-right: 0;
}

#value-calculator-v2 aside .data-input-container .step-2 #sliders span.tooltip-container {
    visibility: hidden;
    min-width: 100px;
    width: 200px;
    background-color: #efefef;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: -25%;
    left: 100%;
    margin-left: 10px;
    font-size: 10px;
    color: #000;
}
#value-calculator-v2 .step-2 #sliders .slider-grp .input-group {
    margin-bottom: 10px;
}
#value-calculator-v2 aside .data-input-container .step-2 #sliders .slider-grp .input-group label > img.tooltip-icon:hover ~ span.tooltip-container {
    visibility: visible;
    -webkit-animation: fadeInTooltip 1s;
    animation: fadeInTooltip 1s;
}

#value-calculator-v2 .step-2 #sliders .slider-grp .input-group label {
    position: relative;
    margin-bottom: 0;
}
#value-calculator-v2 .step-2 #sliders .slider-grp .input-group input[type="text"] {
    height: 30px;
    border-color: #0a214d;
    font-size: 1em;
    font-family: Arial,sans-serif;
}
#value-calculator-v2 .step-2 #sliders .slider-grp .input-group label > img {
    cursor: pointer;
    width: 15px;
    vertical-align: text-top;
}
#value-calculator-v2 .step-2 #sliders .slider-grp .range-aligner {
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
}
#value-calculator-v2 .step-2 #sliders .slider-grp .min-range-label, 
#value-calculator-v2 .step-2 #sliders .slider-grp .max-range-label {
    font-size: 12px;
    color: #bbb;
    margin-top: 5px;
}
#value-calculator-v2 .step-2 #sliders .slider-grp input[type="range"] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 80%; /* Specific width is required for Firefox. */
    background: transparent; /* Otherwise white in Chrome */
    padding: 0 1%;
}
#value-calculator-v2 .step-2 #sliders .slider-grp input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    border-radius: 100px;
    background: #ffffff;
    cursor: pointer;
    margin-top: -8px; 
}
#value-calculator-v2 .step-2 #sliders .slider-grp input[type="range"]::-webkit-slider-runnable-track {    
    height: 1px;
    width: 100%;
    cursor: pointer;
    background: #0A214D;
}

@media (max-width: 768px) {
	#value-calculator-doughnut-chart {
	height: 1000px !important;
	}
    #value-calculator-v2 .container {
        flex-direction: column;        
    }
    #value-calculator-v2 article,
    #value-calculator-v2 aside {
        width: 100% !important;
    }
    #value-calculator-v2 article {
        order: 2;
        height: 1000px;
        margin-top: 60px;
    }
}
#download-loader {
    display: none;
    width: 300px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: white;
    box-shadow: 1px 1px 0.5px #eee;    
    text-align: center;
    margin-left: -150px;
    margin-top: -100px;
    padding: 40px;
    border-radius: 10px;   
    z-index: 15; 
}
#loader-screen-overlay {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    top:0;
    left: 0;
    z-index: 10;
}