/* knockout/knockout_money_input.css */
.ko-money-input {
    display: inline-block;
    position: relative;
}

.ko-money-input__currency {
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    z-index: 1;

    /* center the text contents vertically: */
    display: flex;
    flex-flow: row;
    align-items: center;

    /* have clicks fall through to the input element: */
    pointer-events: none;
}

.ko-money-input > input {
    border: solid 1px #b8b8b8;
    padding-left: 20px;
    padding-right: 8px;
    text-align: right;
    width: 100%;
    height: 100%;
    font-size: inherit;
}

.ko-money-input > input:focus {
    box-shadow: 0 0 2px 1px #0687f5;
    border-color: #389ef5;
    outline: none; /* override safari/chrome's default outline on focus */
}

.ko-money-input.ko-money-input--error > input,
.ui-widget.nu-dialog .ko-money-input.ko-money-input--error > input {
    border-color: #e00;
}

/* hide arrow controls Chrome, Safari, Edge, Opera */
.ko-money-input > input::-webkit-outer-spin-button,
.ko-money-input > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* hide arrow controls Firefox */
.ko-money-input > input[type=number] {
  -moz-appearance: textfield;
}

.ko-money-input__value-hidden {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

