﻿.filter {
  background: rgba(0, 0, 0, .4);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.thumb {
  display: inline;
  max-width: 120px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.hero {
  max-width: 100% !important;
}

.lightbox {
  display: none;
  /**sets the default display to hide the lightbox until it's the :target**/
  position: fixed;
  /**the rest of this styling makes the lightbox full screen when selected**/
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .8);
}

.lightbox img {
  /**sets the styling of the image in the lightbox**/
  max-width: 80%;
  max-height: 90%;
  text-align: center;
  margin-top: 2%;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.lightbox:target {
  /**this is where the magic happens. makes the lightbox display when it's the target of a clickable link**/
  outline: none;
  display: block;
}

.previous {
  /**styling the left arrow**/
  font-size: 4em;
  color: white;
  position: fixed;
  left: 20px;
  top: 40%;
  width: 40px;
}

.exit {
  /**styling the exit button**/
  font-size: 4em;
  color: white;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
}

.next {
  /**styling the right arrow**/
  font-size: 4em;
  color: white;
  position: fixed;
  right: 20px;
  top: 40%;
  width: 40px;
}

.navigation {
  margin-bottom: 20px;
}

.product-name {
  font-weight: bold;
}

.product-sku {
  color: #666;
  font-size: 90%;
}

.product-discount {
  margin: 10px 0;
}

.product-ppu {
  margin: 10px 0;
  font-weight: bold;
  font-size: 1.5em;
}

.product-exc-vat {
  font-size: 0.8em;
  font-weight: bold;
  margin: 10px 0;
}

.product-stock {
  font-size: 0.8em;
}

.product-max {
  font-size: 0.8em;
}

.add-product {
  margin-top: 5em;
}

.add-product select {
  margin-bottom: 16px;
}

.product-description {
  margin-top: 32px;
}

.front-thumbnail {
    padding: 5px;
}

.category-row {
    border-top: 2px solid #cccccc;
    margin-bottom: 2em;
}

.category-container {
}

.category-list {
  margin-left: 0px;
  list-style: none;
}

.category-list .active {
  font-weight: bold;
}

.category-list-item {
}

.cart-thumbnail {
  max-width: 100px;
}

.shipping-container {
  margin-top: 32px;
}

.more-info {
  margin-left: 16px;
}

.tile-form {
  display: inline;
}

.cart-container {
  padding-bottom: 16px;
}

.delivery-container ul {
  list-style-type: none;
}

.caption h3 {
  font-weight: bold;
  min-height: 69px;
}

.caption .thumbnail-description {
  min-height: 64px;
}

.caption .thumbnail-gutter {
  min-height: 36px;
}

.caption .thumbnail-gutter a {
  padding: 6px 12px;
  display: inline-block;
}

.order-table {
  font-size: 110%;
}

.order-table th:nth-last-child(1),
.order-table td:nth-last-child(1) {
  text-align: right;
  letter-spacing: 1px;
}

.invoice-info {
  margin: 1em;
  font-family: Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace;
  font-size: 120%;
  line-height: 1.2;
}
