/* ---------------------------------------------------- */
input,
textarea,
select{
    border:1px solid #7a7a7a;
    background-color:#fff;
    border-radius: 3px;
    font-weight: 500;
    padding-left:5px;
    color:#333;
    text-align: left;
    height:30px;
    min-height: 30px;
}
/* ---------------------------------------------------- */
p{
  font-weight: 500;
  color:#333;
  display: inline;
  padding: 0px;
  margin: 0px;
}
/* ---------------------------------------------------- */
/* Input fied.type number */
/* Hide top/down arrow buttons. */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* ---------------------------------------------------- */
input:focus,
textarea:focus,
select:focus{
  outline: 2px solid royalblue;
}
