﻿.numericUpDownContainerEU {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
}

.NumericUpDownPlusMinusEU {
    color: white;
    width: 30px;
    height: 30px;
}

.NumericUpDownLeftRadiusEU {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.NumericUpDownRightRadiusEU {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .NumericUpDownPlusMinusEU > button {
        background-color: #44476b;
        border: none;
        color: white;
        width: 100%;
        height: 100%;
    }

.NumericUpDownPlusMinusEU:hover > button {
    background-color: #999;
    outline:none;
}

.NumericUpDownValueEU {
    width: 30px;
    height: 30px;
}

    .NumericUpDownValueEU > input {
        background-color: white;
        color: #44476b;
        width: 100%;
        height: 100%;
        text-align: center;
    }
