/*  CSS FILE FOR SPECIFIC STUFF  */

span.filter-highlight {
  background-color: yellow;
}

/* Shopping cart: */

table.sc-main-table {
  border-top: thin solid black;
  /*border-bottom: thin solid black;*/
  border-collapse: collapse;
  width: 100%;
}

table.address-table{
  width: 100%;
}

table.sc-main-table th {
  text-align: left;
}

table.sc-main-table tr.splitter-row  th {
  border-top: thin solid black;
}

table.sc-main-table *.sc-prices {
  text-align: right;
  padding-right: 0em;
}

table.sc-main-table *.sc-shipping {
  text-align: right;
  padding-right: 0em;
}

table.sc-main-table *.sc-prices-subline {
  font-weight: normal;
  font-size: 80%;
}

table.sc-main-table *.sc-count-small {
  text-align: right;
}

table.sc-main-table td.sc-remove-from-cart {
  font-weight: bold;
  color: red;
  cursor: pointer;
}

table.sc-main-table span.sc-updown {
  font-weight: bold;
  font-size: 125%;
  cursor: pointer;
}

span.sc-address-form-mandatory-marker, span.sc-ccna-mandatory-marker {
  font-weight: bold;
  color: red;
  margin-left: 0.5em;
}

span.invalid-entry-message {
  color: red;
}

button:disabled {
  color: lightgrey;
  border-color: lightgrey;
}

textarea.remarks-input {
  width: 95%;
}

p.remarks-header {
  max-width: 95%;
}

/* Remove spinners from numeric input fields (https://www.w3schools.com/howto/howto_css_hide_arrow_number.asp): */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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