﻿.decimal-input {
    height: 35px;
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #1e8180;
    background-color: #e5fdfd;
    padding: 6px 6px 6px 6px;
    border-radius: 10px;
}

    .decimal-input-with-label {
        padding: 6px 50px 6px 6px;
    }

    .decimal-input-red {
        border: 1px solid #851212;
        background-color: #eb9c9c;
    }

    .decimal-input-green {
        border: 1px solid #1e8138;
        background-color: #a3f9ba;
    }

.decimal-input-label {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    right: 45px;
    height: 33px;
    padding-top: 7px;
    border-radius: 0px 10px 10px 0px;
}

.decimal-input:focus {
    border: 3px solid #0b2663;
    background-color: #8ec2f7;
}

.w-40 {
    width: 40%;
}