
/* prsPaymentCalculator.cshtml */
.payment-calculator {
    margin: 0;
    padding: 1.6rem;
}

.payment-calculator .alert {
    background: var(--color-grey-100);
    color: var(--white-color);
    padding: 1.2rem 2rem;
    position: relative;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    line-height: 2rem;
}

.payment-calculator .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.payment-calc.grid {
    padding: 0;
    gap: 1rem;
}

.payment-calc-field {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    overflow: visible;
}

.payment-calc-field input[type="number"] {
    border: 0.1rem solid #ced4da;
    border-radius: 0.25rem;
    box-sizing: border-box;
    height: 4.4rem;
    margin: 0;
    max-width: 100%;
    padding: 0.3rem 1rem 0 1rem;
    width: 100%;
}

.payment-calc-field select {
	border: 0.1rem solid #ced4da;
	border-radius: 0.25rem;
	box-sizing: border-box;
	cursor: pointer;
	height: 4.4rem;
	margin: 0;
	max-width: 100%;
	padding: 0 3.2rem 0 0.8rem;
	width: 100%;
}

.payment-calc-field.select {
    position: relative;
}

.payment-calc button {
    font-size: 1.6rem;
}

.calculator-clear-button {
    background: none;
    border: none;
    box-shadow: 0;
    margin: 0;
    text-decoration: underline;
    margin-top: 0.8rem;
}

.calculator-calc-button {
    margin-bottom: 0;
}

.payment-calculator-results {
    padding: 1.6rem 0;
}

.payment-calculator-results #output {
    font-size: 6rem;
    font-weight: 700;
}

.payment-calculator-results #totalAmount {
    margin: 1.6rem 0;
    font-weight: 600;
}