/**
 * Public CSS.
 */
 #_abc_form{
    overflow-x: auto;
}
.calculator__total{
    float: right;
    width: auto;
    text-align: center;
    clear: both;
}
.calculator__total p{

    font-size: 12px;
}

.calculator-total_watts_hours{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex-direction: row;
    justify-content: flex-end;
}
.calculator-kWh{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: row;
    align-items: baseline;
    margin-top: 30px;
}

._kWh_title{
    font-size: 16px;
    font-weight: 600;
}

#_total_watts,#_total_watts_hours{
    background-color: #f7f7f7;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    max-width: 200px;
    margin: auto;
    width: 100%;
    text-align: center;
    padding: 5px 15px;
    font-size: 20px;
}

._totla_kWh p{
    width: 205px;
    padding: 5px;
}

#_totla_kWh{
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    max-width: 200px;
    margin: auto;
    width: 100%;
    text-align: left;
    padding: 5px 15px;
    font-size: 20px;
    color: #e05a2d;
    font-weight: 600;
}

#_totla_kWh input{
    border: 0px;
    padding: 0 5px;
    width: 100px;
    color: #208220;
    font-size: 20px;
    font-weight: 600;
    background: transparent;
}

#_totla_kWh span{
    float: right;
    line-height: 29px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    /*padding-left: 15px;*/
}

@media only screen and (max-width: 600px) {
    .calculator-kWh{
        justify-content: flex-end;
    }
    .calculator__total{
        margin-top: 30px;
    }
}