.calc-credius .result-value {
	display: block;
	font-size: 60px;
	color: #ffffff;
}

.calc-credius .calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.calc-credius .input-group label {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	font-size: 22px;
	font-weight: bold;
	color: #ffffff;
}

.calc-credius .slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.calc-credius .slider-element {
    flex: 1;
}

.calc-credius .minmax-labels, .update-disclaimer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: rgba(255, 255, 255, .4);
}

.calc-credius .detailed-results {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    display: none;
}


/* noUiSlider Customization */
.calc-credius .noUi-target {
    height: 10px;
    background: #E6EDEF33;
    border: none;
    border-radius: 10px;
    box-shadow: none;
}

.calc-credius .noUi-connect {
    background: #EC008C;
}

.calc-credius .noUi-handle {
    width: 25px;
    height: 25px;
    top: -8px;
    background: #EC008C;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: none;
    cursor: pointer;
}

.calc-credius .noUi-handle::before,
.calc-credius .noUi-handle::after {
    display: none;
}

@media (max-width: 768px) {
	.calc-credius .result-value {
		font-size: 36px;
	}
}
