/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Chrome, Safari, Edge, Opera */
.hide_arrow_number input[type=number]::-webkit-outer-spin-button,
.hide_arrow_number input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
.hide_arrow_number input[type=number] {
  -moz-appearance: textfield !important;
}

table.table_tbody_responsive tbody {
  display: block;
  max-height: 100px;
  overflow-y: scroll;
}

table.table_tbody_responsive thead, table.table_tbody_responsive tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
