/*==========================================================
  #Variables
==========================================================*/
/*==========================================================
  #Basic Formatting
==========================================================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

h5 {
  font-size: 1em;
}

ul, li {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

body {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  background: #fff;
}

img {
  max-width: 100%;
}

a:hover {
  text-decoration: none;
}

select {
  padding: 2px 5px;
  border: 2px solid #bbb;
}
select:first {
  color: #999;
}

input[type=number] {
  border: 2px solid #bbb;
}

input[type=number] {
  -moz-appearance: textfield;
  padding-left: 5px;
  padding-right: 5px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
button {
  max-width: 100%;
}

/*==========================================================
  #Body
==========================================================*/
div.container {
  margin-top: 30px;
}

header {
  padding: 5px 20px;
  color: #fff;
  background: #444;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

nav {
  padding: 5px 10px;
  background: #eee;
  margin-bottom: 15px;
}
nav span {
  margin-right: 10px;
}
nav > div {
  display: inline-block;
  margin-left: 30px;
}
nav > div:first-of-type {
  margin-left: 0;
}

table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 15px;
}
table thead {
  background: #eee;
}
table thead th {
  padding: 5px 0 5px 10px;
  font-weight: 400;
}
table td {
  padding: 5px;
}
table td > * {
  display: inline-block;
}
table th, table td {
  border: 1px solid #eee;
  border-right: 1px solid #bbb;
}
table th:last-of-type, table td:last-of-type {
  border-right: 1px solid #eee;
}
table th *, table td * {
  vertical-align: middle;
}
table th.product, table th.waste, table th.overlap, table th.margin, table th.contingency, table td.product, table td.waste, table td.overlap, table td.margin, table td.contingency {
  width: 16%;
}
table th.product select, table th.waste select, table th.overlap select, table th.margin select, table th.contingency select, table td.product select, table td.waste select, table td.overlap select, table td.margin select, table td.contingency select {
  width: 100%;
}
table th.product input[type=range], table th.waste input[type=range], table th.overlap input[type=range], table th.margin input[type=range], table th.contingency input[type=range], table td.product input[type=range], table td.waste input[type=range], table td.overlap input[type=range], table td.margin input[type=range], table td.contingency input[type=range] {
  width: 70%;
}
table th.product input[type=number], table th.waste input[type=number], table th.overlap input[type=number], table th.margin input[type=number], table th.contingency input[type=number], table td.product input[type=number], table td.waste input[type=number], table td.overlap input[type=number], table td.margin input[type=number], table td.contingency input[type=number] {
  width: 20%;
  text-align: center;
}
table th.depth, table th.skid, table th.quantity, table td.depth, table td.skid, table td.quantity {
  width: 8%;
}
table th.depth input[type=number], table th.skid input[type=number], table th.quantity input[type=number], table td.depth input[type=number], table td.skid input[type=number], table td.quantity input[type=number] {
  text-align: right;
}
table th.remove, table td.remove {
  width: 3%;
  text-align: center;
}

button.remove-row {
  background: #fff;
  border: none;
  font-weight: 800;
  padding: 0 20%;
}
button.remove-row:hover {
  color: #0078D7;
}

div.button-wrapper {
  text-align: right;
  width: 100%;
  padding: 10px;
}
div.button-wrapper button#submit {
  padding: 5px 30px;
  border: none;
  background: #bbb;
  text-transform: uppercase;
}
div.button-wrapper button#submit:hover {
  background: #0078D7;
  color: #fff;
}
div.button-wrapper button#add-row {
  background: #fff;
  border: none;
  padding: 0;
  text-transform: uppercase;
  color: #bbb;
}
div.button-wrapper button#add-row:hover {
  color: #0078D7;
}

/*==========================================================
  #Input Range Styling
==========================================================*/
input[type=range] {
  /*removes default webkit styles*/
  -webkit-appearance: none;
  /*fix for FF unable to apply focus style bug */
  border: 1px solid white;
  /*required for proper track sizing in FF*/
  width: 300px;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background-color: #eee;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 14px;
  width: 5px;
  border-radius: 10%;
  background: #0078D7;
  margin-top: -4px;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type=range]::-moz-range-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 14px;
  width: 5px;
  border-radius: 10%;
  background: #0078D7;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

input[type=range]::-ms-track {
  width: 300px;
  height: 5px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}

input[type=range]::-ms-thumb {
  border: none;
  height: 14px;
  width: 5px;
  border-radius: 10%;
  background: #0078D7;
  margin-top: -1px;
}

input[type=range]:focus::-ms-fill-lower {
  background: #888;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}

/*# sourceMappingURL=file:///D:/Web/dvi/xeroflor/orderform/assets/css/style.css.map */
