.numeric-box-container {
    display: flex;
    flex-direction: row;
}

.numeric-box-input {    
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    line-height: 1.4285;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;    
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
    /*-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;*/
}

.numeric-box-input + .is-invalid {
    border: 1px solid red;
}

.up-down-arrow-container {
    display: flex;
    flex-direction: column;
}

.up-button {
    height: 15px;
}

.down-button {
    height: 15px;
}