/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.credit_calculator_container {
    background: #27b835;
    padding: 30px;
    border-radius: 12px !important;
    box-shadow: 0px 32px 100px 0px rgb(0 0 0 / 10%);
}

.credit_calculator_body {
    color: #fff;
}

.credit_calculator_body input,
.credit_calculator_body select {
    background: #fff !important;
    color: #000 !important;
    margin-bottom: 10px;
    border-radius: 5px;
}

.credit_calculator_footer {
    color: #fff;
}

.credit_calculator_body label {
    color: #fff;
}

.credit_calculator_description {
    margin-top: 20px;
    margin-bottom: 20px;
}

.credit_calculator_title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}

.credit_calculator_button {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #fff;
    width: 100%;
    border-radius: 8px !important;
}

.credit_calculator_total {
    font-weight: bold;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.credit_calculator_min_error,
.credit_calculator_max_error {
    display: none;
    margin-bottom: 20px;
    margin-bottom: 20px;
    background: #f44336;
    padding: 10px;
    border-radius: 5px;
}