
 
       .gradient-bg {
    background: none;
    }
    .center{
        text-align: center;
    }
    .title-calculator {
        font-size: 32px;
        /* color: black !important;
        font-family: serif !important; */
        margin-bottom: 10px !important;
    }
    label#despitLabel {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .meritrustCalc-input {
        display: inline-flex;
        justify-content: center;
        align-content: center;
        align-items: flex-start;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 12px;
    }
    .meritrustCalc-input:focus-within, .input#amountM:focus-within, span.dollarSign-cacl:focus-within { 
        border: 1px solid #cc0033;
        border-radius: 12px;
    }
    input#amountM {
        padding: 8px;
        width: 220px;
        font-size: 14px;
        border: 1px solid rgb(0 0 0 / 0%);
        border-radius: 0px 12px 12px 0px;
        touch-action: manipulation;
    }
    .meritrustCalc-input input#amountM:focus {
        outline: none;
    }
    span.dollarSign-cacl {
        background: white;
        padding: 8px;
        margin-right: 0px;
        border-radius: 12px 0px 0px 12px;
        border: 1px solid rgb(0 0 0 / 0%);
        border-right: 1px solid #ccc;
    }
    .meritrustYearTab {
        margin: 20px 10px;
        display: flex;
        justify-content: center;
    }
    .subTab{
        display: inline-block;
        padding: 10px 20px;
        margin: 0 5px;
        background-color: #f0f0f0;
        border-color: none;
        /* border-radius: 12px; */
        transition: background-color 0.3s, color 0.3s;
        border: transparent;
        color: black;
        width: 163px;
        margin: 0;
    }
    .subTab.active {
        /* background-color: #b6b5b5; */
        /* color: white; */
        background-color: #ffff;
        border-top: 1px solid crimson;
    }
    .chart-container {
        text-align: center;
        display: grid;
        place-items: center;
        height: 100%;
        max-height: 300px;
    }
    .results{
        text-align: center;
    }
    p#estimateBalance {
        font-size: 18px;
        font-weight: bold;
    }
    span#totalAmount {
        font-size: 26px;
        color: #cc0033;
        font-weight: 100;
    }
    button.subTab.outline {
    border-left: 1px solid #b9b8b8;
    border-right: 1px solid #b9b8b8;
   }
    #invalidMsg{
    display: none;
    margin-top: -14px;
    }
    .meritrustCalc-input.invalidInput {
        border: 2px solid #cc0033 !important;
        border-radius: 12px;
    }
    span.dollarSign-cacl, input#amountM {
        font-size: 16px;
    }        