/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.columned {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
}
.columned a,
.columned span {
  display: block;
  width: 33%;
  min-width: 200px;
  flex-grow: 0;
  flex-shrink: 1;
}

.wastetype .columned a, .wastetype .columned span {
  width: 18%;
}

@media all and (min-width: 600px) {
  .pricetable {
    display: flex;
  }
  .pricetable.packed {
    display: block;
  }
  .pricetable .column {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}

.pricetable p {
  font-weight: bold;
  margin: 0 0 0.5em 0;
}

.pricetable .column .type {
  align-self: stretch;
}

.pricetable table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #007878;
  margin-bottom: 1em;
}
.pricetable table th {
  width: 50%;
  padding: 5px 10px;
  vertical-align: top;
  background: #007878;
  color: white;
  border: 1px solid #007878;
  border-bottom-color: white;
  font-weight: 600;
}
.pricetable table td {
  width: 50%;
}
.pricetable table tr:last-child th {
  border-bottom-color: #007878;
}

.pricetable table td {
  padding: 5px 10px;
  vertical-align: top;
  border: 1px solid #007878;
}

.pricetable table td span,
table.single-price td span,
.pricetable_per_waste td span {
  font-weight: bold;
}

.pricetable_per_waste {
  width: 99%;
  display: flex;
  flex-direction: row;
  border: 1px solid #007878;
  margin: 1em 0;
  flex-wrap: wrap;
}
.pricetable_per_waste .titlerow {
  padding: 5px 10px;
  vertical-align: top;
  background: #007878;
  color: white;
  border: 1px solid #007878;
  border-bottom-color: white;
  font-weight: 600;
}

.pricetable_per_waste .titlerow.fullwidth {
  width: 100%;
  border-bottom: 1px solid white;
}

.pricetable_per_waste .col:last-child {
  border-left: 1px solid #007878;
}

.pricetable_per_waste .contentrow {
  padding: 5px 10px;
}

.pricetable_per_waste .pricecol {
  width: 200px;
}
.pricetable_per_waste .infocol {
  width: calc( 100% - 200px );
}

.pricetable_per_waste span {
  font-weight: bold;
}

@media screen and ( max-width: 830px ) {
  .pricetable_per_waste .pricecol,
  .pricetable_per_waste .infocol {
    width: 100%;
  }
  .pricetable_per_waste .col:last-child {
    border-left: none;
  }
}
