﻿/*------------------------ Numeric Up Down*/
.wrpNumericUpDown {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}


.wrpNumericUpDown .btnInc {
    cursor:pointer;
    background-color:white;
    border:1px solid black;
    width :35px;
    height:35px;
    font-size:18px;
    font-weight:bold;
    color:black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrpNumericUpDown .btnInc:hover {
    background-color:#f58c0f;
    color:#fff;
}

.wrpNumericUpDown .btnInc:first-child {
    border-radius: 8px 0px 0px 8px;
}
.wrpNumericUpDown .btnInc:last-child {
    border-radius: 0px 8px 8px 0px;
}



/* Chrome, Safari, Edge, Opera */
.wrpNumericUpDown input::-webkit-outer-spin-button,
.wrpNumericUpDown input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wrpNumericUpDown input {
    -moz-appearance: textfield;
    height:35px;
    width:50px;
    border:1px solid black;
    border-left:none;
    border-right:none;
    font-size:18px;
    text-align:center;
}