#form-calculator {
    color: #005596;
    font-size: 14px;
    max-width: 600px;
}

#form-calculator input,
#form-calculator button{
    color: #005596;
    background-color: #e8e9eb;
    border: 0 none;
    height: 35px;
    border-radius: 0 none;
}

#form-calculator h2{
    font-size: 25px!important;
    color: #005596;
}

#form-calculator .input_value{
    margin-top: 30px;
}
#form-calculator input#input_value{
    margin-top: 10px;
    margin-bottom: 30px;
}

#form-calculator .month-section{
    overflow: hidden;
}

#form-calculator .month-section span{
    padding-bottom: 10px;
    float: none;
    display: block;
}

#form-calculator .month-section button{
    float: left;
    width: 74px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 35px;
}

#form-calculator .month-section button:last-child{
    margin-right: 0;
}

#form-calculator .month-section button.active{
    background-color: #005596;
    color: #fff
}

#form-calculator .result-section{
    margin-top: 30px;
    overflow: hidden;
}

#form-calculator .percent-section{
    max-width:50%;
    padding-right: 10px;
    float: left;
    margin-top: 10px;
}

#form-calculator .value-section {
    float: left;
    max-width: 50%;
    margin-top: 10px;
}
#form-calculator .net-section {
    float: left;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
}

#form-calculator .result-section input{
    margin-top: 10px;
}

@media  (max-width: 128px) {
    #form-calculator .month-section button {
        margin-right: 1%;
        width: 19%;
        font-size: 12px;
    }

    #form-calculator .percent-section {
        max-width: 33%;
        width: auto;
        margin-right: 0;
        padding-right: 20px;
    }
    #form-calculator .net-section {
        max-width: 33%;
        width: auto;
        margin-right: 0;
    }
    #form-calculator .value-section {
        max-width: 33%;
        padding-right: 20px;
    }
}

@media  (max-width: 425px) {
    #form-calculator .percent-section {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
    #form-calculator .net-section {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
    #form-calculator .value-section {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
}