/* RESET */
@import "lightbox.css";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, figure, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

ol, ul {
  list-style: none;
}

.clearfix {
  display: inline-block;
}

.clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.centre {
  text-align: center;
}

.hidden {
  display: none;
}

.light {
  font-weight: normal !important;
}

.uppercase {
  text-transform: uppercase;
}

.purple {
  color: #009c3f;
}

.red {
  color: #DF4A4A;
}

.green {
  color: #09c200;
}

.align-right {
  text-align: right;
}

img {
  max-width: 100%;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

input, textarea {
  font-family: "Open Sans", sans-serif;
}

::selection {
  background: #009c3f;
  color: #fff;
}

::-moz-selection {
  background: #009c3f;
  color: #fff;
}

a:link, a:visited {
  text-decoration: none;
  color: #009c3f;
}
a:link:active, a:visited:active {
  position: relative;
  top: 1px;
}
a:link.red, a:visited.red {
  color: #DF4A4A;
}

/* Typography */
h1 {
  font-size: 36px;
  font-weight: bold;
}
h1 .sub {
  font-size: 22px;
  line-height: 22px;
}

h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: bold;
}
h2 .sub {
  font-size: 20px;
  line-height: 22px;
}

section h2.pull-focus {
  text-align: center;
  color: #009c3f;
  font-weight: bold;
  margin: 4% 0;
  text-transform: none;
  line-height: 40px;
  letter-spacing: 0;
}
section h2.pull-focus a {
  padding: 0 2px 2px;
  border-bottom: 1px solid #36ff87;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}
h3 .sub {
  font-size: 16px;
  line-height: 22px;
}

h4 {
  font-weight: bold;
}

.sub {
  color: #555;
  font-size: 0.7em;
  font-weight: 400;
}

.font-fixed-width {
  font-family: Monaco, Courier, monospace;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #333;
}

p.error {
  padding: 10px 20px;
  background: #ffc7c7;
  color: #960000;
  border-radius: 3px;
  margin: 10px 0;
  box-shadow: 0 2px 3px rgba(194, 132, 132, 0.3);
  border: 1px solid #f69f9f;
  transition: 0.6s ease-out all;
}
p.error:hover {
  box-shadow: 0 2px 4px rgba(194, 132, 132, 0.5);
  background: #ffdcdc;
}

small {
  font-size: 14px;
}

.underline {
  border-bottom: 1px dotted;
  cursor: pointer;
}

.large {
  font-size: 22px;
}

.wrapper-small:empty, .wrapper:empty, .wrapper-large:empty {
  display: none;
}

.row {
  display: flex;
}
.row.hidden {
  display: none;
}
.row.space-between {
  justify-content: space-between;
}
.row.space-around {
  justify-content: space-around;
}
.row.space-evenly {
  justify-content: space-evenly;
}
.row.align-center {
  align-items: center;
}
.row.no-padding {
  padding: 0 !important;
}

.pill-list li {
  display: inline-block;
  border: 2px solid #ccc;
  padding: 20px;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
}
.pill-list li.active {
  background: #3b658a;
  border-color: #3b658a;
  color: #fff;
  font-weight: bold;
}
.pill-list li.active a:link, .pill-list li.active a:visited {
  color: #fff;
}

section {
  /*overflow:auto;*/
  margin: 0 auto 5%;
}
section.clearfix {
  display: block;
}
section.medium {
  max-width: 600px;
}
section.large {
  max-width: 800px;
}
section .row {
  width: 90%;
  padding: 0 5%;
}
section header {
  overflow: hidden;
  margin-bottom: 2%;
}
section header .price {
  font-size: 1.25em;
  padding-top: 5px;
}
section .actions {
  width: 100%;
  display: inline-block;
}
section .actions a {
  margin-right: 2%;
  font-size: 0.9375em;
  font-weight: 600;
}

.mobile-hint {
  display: none;
  color: #009c3f;
}

@media screen and (max-width: 600px) {
  .row:not(.mobile-row) {
    flex-direction: column;
  }

  .wrapper-small {
    padding: 5%;
  }

  .mobile-hint {
    display: block;
  }

  section .row {
    width: 100%;
  }
}
/* Superbar */
.superbar {
  display: flex;
  height: 30px;
  padding: 10px 20px;
  width: calc(100% - 40px);
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  background: #3b658a;
  color: #fff;
}
.superbar a:link, .superbar a:visited {
  color: #fff;
}
.superbar ul li {
  display: inline-block;
}
.superbar .right {
  justify-self: flex-end;
}
.superbar .row {
  align-items: center;
}
.superbar .row p {
  margin-right: 20px;
}
.superbar.admin {
  background-color: #333;
  font-family: Monaco;
}
.superbar.admin ul li {
  margin-right: 30px;
}

@media screen and (max-width: 800px) {
  .superbar {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .superbar ul li {
    display: block;
    margin: 10px 0;
  }
  .superbar .row {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .superbar a:link {
    color: #fff;
  }
  .superbar p {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
}
.new-booking label {
  font-weight: bold;
  margin-bottom: 20px;
}
.new-booking label input, .new-booking label select {
  margin-top: 10px;
}

.booking-times {
  display: flex;
  flex-wrap: wrap;
}
.booking-times li {
  padding: 5px;
}

@media screen and (max-width: 600px) {
  .booking-times li .button {
    width: auto;
  }
}
header#top {
  display: flex;
  justify-content: space-between;
}
header#top .logo img {
  max-height: 100px;
}

@media screen and (max-width: 400px) {
  header#top {
    flex-direction: column;
  }
  header#top .menu-toggle {
    margin: 30px 0;
  }
}
table {
  color: #333;
  background: white;
  border: 1px solid grey;
  font-size: 12pt;
  border-collapse: collapse;
}

table thead th,
table tfoot th {
  color: #777;
  background: #eee;
  font-weight: bold;
  text-align: left;
}

table caption {
  padding: 0.5em;
}

table th,
table td {
  padding: 0.5em;
  border: 1px solid lightgrey;
  vertical-align: middle;
}
table th.image,
table td.image {
  text-align: center;
}

table.data img {
  max-width: 100px;
  margin: 0 auto;
}

.booking-roster {
  overflow-x: scroll;
  min-height: 400px;
  position: relative;
}
.booking-roster .time-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: red;
  z-index: 500;
}
.booking-roster ol {
  white-space: nowrap;
}
.booking-roster ol li {
  display: inline-block;
}
.booking-roster ol.header li {
  width: 50px;
  margin-bottom: 10px;
}
.booking-roster ol.header li:nth-child(4n-2) {
  font-weight: bold;
}
.booking-roster .table-row {
  position: relative;
  height: 30px;
  padding: 5px 0;
}
.booking-roster .table-row[data-enabled=False] {
  display: none;
}
.booking-roster .table-row:hover {
  background: #ccc;
}
.booking-roster .table-row:hover li {
  background: #3b658a;
  opacity: 0.8;
}
.booking-roster .table-row:hover li:first-child {
  background: #333;
  color: #fff;
}
.booking-roster .table-row li {
  background: #3b658a;
  color: #fff;
  position: absolute;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
}
.booking-roster .table-row li.ending-soon {
  background: #d85757;
}
.booking-roster .table-row li.ended {
  background: #989898;
}
.booking-roster .table-row li:first-child {
  width: 50px;
  color: #333;
  background: #fff;
  z-index: 1000;
  text-align: center;
  font-weight: bold;
  border-radius: 0;
}
.booking-roster .table-row li.width-1 {
  width: 50px;
}
.booking-roster .table-row li.width-2 {
  width: 100px;
}
.booking-roster .table-row li.width-3 {
  width: 150px;
}
.booking-roster .table-row li.width-4 {
  width: 200px;
}
.booking-roster .table-row li.width-5 {
  width: 250px;
}
.booking-roster .table-row li.width-6 {
  width: 300px;
}
.booking-roster .table-row li.width-7 {
  width: 350px;
}
.booking-roster .table-row li.width-8 {
  width: 400px;
}
.booking-roster .table-row li.width-9 {
  width: 450px;
}
.booking-roster .table-row li.width-10 {
  width: 500px;
}
.booking-roster .table-row li.width-11 {
  width: 550px;
}
.booking-roster .table-row li.width-12 {
  width: 600px;
}
.booking-roster .table-row li.width-13 {
  width: 650px;
}
.booking-roster .table-row li.width-14 {
  width: 700px;
}
.booking-roster .table-row li.width-15 {
  width: 750px;
}
.booking-roster .table-row li.width-16 {
  width: 800px;
}
.booking-roster .table-row li.width-17 {
  width: 850px;
}
.booking-roster .table-row li.width-18 {
  width: 900px;
}
.booking-roster .table-row li.width-19 {
  width: 950px;
}
.booking-roster .table-row li.width-20 {
  width: 1000px;
}
.booking-roster .table-row li.width-21 {
  width: 1050px;
}
.booking-roster .table-row li.width-22 {
  width: 1100px;
}
.booking-roster .table-row li.width-23 {
  width: 1150px;
}
.booking-roster .table-row li.width-24 {
  width: 1200px;
}
.booking-roster .table-row li.width-25 {
  width: 1250px;
}
.booking-roster .table-row li.width-26 {
  width: 1300px;
}
.booking-roster .table-row li.width-27 {
  width: 1350px;
}
.booking-roster .table-row li.start-1200 {
  left: 50px;
}
.booking-roster .table-row li.start-1215 {
  left: 100px;
}
.booking-roster .table-row li.start-1230 {
  left: 150px;
}
.booking-roster .table-row li.start-1245 {
  left: 200px;
}
.booking-roster .table-row li.start-1300 {
  left: 250px;
}
.booking-roster .table-row li.start-1315 {
  left: 300px;
}
.booking-roster .table-row li.start-1330 {
  left: 350px;
}
.booking-roster .table-row li.start-1345 {
  left: 400px;
}
.booking-roster .table-row li.start-1400 {
  left: 450px;
}
.booking-roster .table-row li.start-1415 {
  left: 500px;
}
.booking-roster .table-row li.start-1430 {
  left: 550px;
}
.booking-roster .table-row li.start-1445 {
  left: 600px;
}
.booking-roster .table-row li.start-1500 {
  left: 650px;
}
.booking-roster .table-row li.start-1515 {
  left: 700px;
}
.booking-roster .table-row li.start-1530 {
  left: 750px;
}
.booking-roster .table-row li.start-1545 {
  left: 800px;
}
.booking-roster .table-row li.start-1600 {
  left: 850px;
}
.booking-roster .table-row li.start-1615 {
  left: 900px;
}
.booking-roster .table-row li.start-1630 {
  left: 950px;
}
.booking-roster .table-row li.start-1645 {
  left: 1000px;
}
.booking-roster .table-row li.start-1700 {
  left: 1050px;
}
.booking-roster .table-row li.start-1715 {
  left: 1100px;
}
.booking-roster .table-row li.start-1730 {
  left: 1150px;
}
.booking-roster .table-row li.start-1745 {
  left: 1200px;
}
.booking-roster .table-row li.start-1800 {
  left: 1250px;
}
.booking-roster .table-row li.start-1815 {
  left: 1300px;
}
.booking-roster .table-row li.start-1830 {
  left: 1350px;
}
.booking-roster .table-row li.start-1845 {
  left: 1400px;
}
.booking-roster .table-row li.start-1900 {
  left: 1450px;
}
.booking-roster .table-row li.start-1915 {
  left: 1500px;
}
.booking-roster .table-row li.start-1930 {
  left: 1550px;
}
.booking-roster .table-row li.start-1945 {
  left: 1600px;
}
.booking-roster .table-row li.start-2000 {
  left: 1650px;
}
.booking-roster .table-row li.start-2015 {
  left: 1700px;
}
.booking-roster .table-row li.start-2030 {
  left: 1750px;
}
.booking-roster .table-row li.start-2045 {
  left: 1800px;
}
.booking-roster .table-row li.start-2100 {
  left: 1850px;
}
.booking-roster .table-row li.start-2115 {
  left: 1900px;
}
.booking-roster .table-row li.start-2130 {
  left: 1950px;
}
.booking-roster .table-row li.start-2145 {
  left: 2000px;
}

.mfp-wrap {
  z-index: 100000;
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  z-index: 100000;
}
.white-popup h3 {
  margin-top: 10px;
}

.popup-modal-dismiss-container {
  text-align: center;
  padding: 20px;
}
.popup-modal-dismiss-container a {
  font-size: 22px;
  text-decoration: underline;
}

.autocomplete {
  position: relative;
}
.autocomplete.has-results input {
  margin-bottom: 0 !important;
  border-radius: 5px 5px 0 0;
}
.autocomplete.has-results ul {
  height: 180px;
}
.autocomplete.loading:after {
  content: "";
  height: 26px;
  width: 26px;
  position: absolute;
  top: 10px;
  right: 15px;
  background: url(../images/loading-dark.svg) center;
  z-index: 800;
}
.autocomplete ul {
  border: 1px solid #bbb;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  overflow: auto;
  height: 0;
  transition: 0.2s linear height;
}
.autocomplete ul li {
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
.autocomplete ul li:last-child {
  border-bottom: 0;
}

.new-discount label, .new-discount input[type=text] {
  display: none;
}
.new-discount .action-add-custom-discount {
  display: block;
}
.new-discount label * {
  display: inline-block;
}

.till {
  display: flex;
  flex-direction: column;
}
.till .orders {
  flex-shrink: 50%;
}
.till .orders header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.till .orders header .timer {
  background-color: #00a508;
  padding: 5px 15px;
  color: #fff;
}
.till .orders header .timer.t-30 {
  background-color: #ad5600;
}
.till .orders header .timer.t-60 {
  background-color: #e60000;
}
.till .orders header .timer.complete {
  background-color: transparent !important;
}
.till .orders > li:not(.title) {
  padding: 20px;
  border: 1px solid #aaa;
  margin: 10px 0;
}
@keyframes pulse {
  from {
    background-color: #fff;
    transform: scale(1);
  }
  to {
    background-color: #fffc58;
    transform: scale(1.1);
  }
}
.till .orders > li:not(.title).complete {
  animation: pulse 1s alternate-reverse infinite;
}
.till .orders > li:not(.title) h3 {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
}
.till .orders > li:not(.title) ul {
  margin: 10px 0;
}
.till .orders > li:not(.title) ul li {
  margin: 5px 0;
}
.till .orders > li:not(.title) .actions {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.till .orders > li:not(.title) .actions li {
  margin-right: 40px;
}

.quick-products li {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #aaa;
}
.quick-products li:last-child {
  border-bottom: 0;
}
.quick-products li small {
  font-size: 14px;
  font-weight: normal;
}
.quick-products .sales-units {
  flex-direction: column;
  display: none;
}
.quick-products .sales-units li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 15px 40px;
}
.quick-products .sales-units li .stepper {
  margin: 0;
}
.quick-products label {
  margin: 20px 0;
}

.quick-order-summary h3 {
  margin-bottom: 10px;
}
.quick-order-summary ul li {
  padding: 10px 0;
  font-size: 18px;
}
.quick-order-summary .total {
  font-size: 20px;
  text-align: right;
}

.scroll-to-bottom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 60px;
  width: 60px;
  border-radius: 30px;
  z-index: 10000;
  background: #009c3f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
}

.stock-level {
  height: 30px;
  width: 100%;
  background: #ccc;
  position: relative;
  display: block;
}
.stock-level span {
  background: #3b658a;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

header.staff {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.edit-product .row > div {
  min-width: 50%;
}
.edit-product label {
  font-weight: bold;
}
.edit-product label span {
  font-weight: normal;
  font-size: 14px;
}
.edit-product label input[type=text], .edit-product label input[type=number], .edit-product label input[type=date], .edit-product label input[type=time], .edit-product label select, .edit-product label textarea {
  margin-left: 0;
  width: calc(100% - 24px);
}
.edit-product .product-images {
  display: flex;
}
.edit-product .product-images li {
  max-width: 150px;
  padding: 10px;
  background: #eee;
  border: 1px solid #aaa;
  border-radius: 5px;
  position: relative;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.edit-product .product-images li .action-delete-image {
  position: absolute;
  height: 30px;
  width: 30px;
  top: -15px;
  right: -15px;
  border-radius: 15px;
  background: #ccc;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edit-product .product-images li .action-delete-image:hover {
  background: red;
  color: #fff;
}
.edit-product .product-images li.add {
  font-weight: bold;
  transition: 0.1s ease-out all;
  cursor: pointer;
}
.edit-product .product-images li.add input {
  display: none;
}
.edit-product .product-images li.add:hover {
  background: #ddd;
  transition: 0.1s ease-out all;
}

.reports > div {
  margin-right: 15px;
}

@media screen and (max-width: 500px) {
  select, button, textarea {
    width: 100%;
  }

  .filters {
    flex-direction: column;
  }

  header.staff {
    flex-direction: column;
  }
}
.staff-filters {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.staff-filters li {
  background: #dedede;
  border-radius: 3px;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 20px;
}
.staff-filters li.active {
  background: #3b658a;
  color: #fff;
}

.order-items {
  font-size: 20px;
  padding: 12px 0;
  border-top: 1px dashed #333;
  border-bottom: 1px dashed #333;
}

.staff-stock header {
  margin: 10px 0 20px;
}
.staff-stock header .inner {
  padding: 10px;
  border: 1px solid #ccc;
  display: flex;
}
.staff-stock header .inner .filters {
  flex: 0.6;
}
.staff-stock header .inner .filters li {
  margin: 5px 5px 5px 0;
}
.staff-stock header .inner .filters li.active a {
  background: #3b658a;
  color: #fff;
}
.staff-stock header .inner form {
  flex: 0.4;
}
.staff-stock header .inner form input[type=submit] {
  padding: 10px 20px;
}
.staff-stock .pagination {
  margin: 20px 0;
  display: flex;
  align-items: center;
}
.staff-stock .pagination .button {
  padding: 10px 20px;
  margin: 0 10px;
}

.banner {
  padding: 20px;
  background: #3b658a;
  color: #fff;
  border-radius: 3px;
  width: calc(100% - 40px);
  margin: 20px 0;
  text-align: center;
}
.hero {
  margin-top: -2%;
}
.hero .promo-banner {
  background: #eee;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  color: #222;
}
.hero .promo-banner .wrapper {
  margin: 0 auto;
}
/* Globals */
body {
  font-family: "Open Sans", sans-serif;
  color: #6B6B6B;
}

.wrapper {
  max-width: 1100px;
  width: 96%;
  display: block;
  margin: 2% auto;
}

.wrapper-large {
  max-width: 3000px;
  width: 96%;
  display: block;
  margin: 2% auto;
}

.wrapper-small {
  max-width: 600px;
  margin: 0 auto;
  display: block;
}
.wrapper-small p {
  margin-bottom: 16px;
}

p {
  line-height: 26px;
}

section p {
  margin-bottom: 4%;
}

hr {
  border: 0;
  border-bottom: 1px solid #DEDEDE;
  margin: 4% auto;
}
hr.small {
  max-width: 170px;
}

.two-thirds {
  width: 64%;
}

.third {
  width: 31%;
}

.half {
  width: 46%;
}

.focus {
  font-size: 1.2em;
}

/* Header */
#top {
  overflow: hidden;
  margin: -2% auto 5% auto;
  display: flex;
  align-items: center;
}
#top nav {
  margin-top: 20px;
  min-width: 60%;
  text-align: right;
}
#top nav li {
  display: inline;
  margin: 0 3%;
}
#top nav li.active {
  font-weight: 600;
}
#top nav li.cart a:link, #top nav li.cart a:visited {
  color: #009c3f;
  font-weight: 600;
}
#top nav li a:link, #top nav li a:visited {
  color: #474747;
}
#top .menu-toggle {
  margin: 8% auto 4% auto;
  display: block;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  display: none;
  user-select: none;
  font-size: 20px;
}
#top .menu-toggle .icon {
  background: url("../images/menu-toggle.jpg") left center no-repeat white;
  display: inline-block;
  height: 10px;
  width: 15px;
  position: relative;
  left: -10px;
  top: -1px;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  #top .menu-toggle .icon {
    background: url("../images/menu-toggle@2x.jpg") left center no-repeat white;
    background-size: 15px 10px;
  }
}

/* Footer */
#bottom {
  text-align: center;
  color: #aaa;
  font-size: 0.9375em;
}
#bottom a:link, #bottom a:visited {
  color: #aaa;
}

/* Products */
.filters {
  padding: 10px;
  display: flex;
}
.filters li {
  padding: 5px 20px;
  border: 2px solid #ccc;
  border-radius: 20px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.filters li.active {
  color: #fff;
  background: #3b658a;
  border-color: #3b658a;
}

.action-toggle-filters {
  display: none;
  padding: 20px;
  border: 2px solid #ccc;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

.catalog .products {
  padding: 10px 20px;
  flex: 3 1 auto;
}

.products {
  margin: 0 auto;
  display: block;
}
.products li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products li:last-child {
  border-bottom: 0;
}
.products li h3 small {
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
}
.products li img {
  margin-right: 3%;
  max-width: 150px;
}
.products li .inner {
  padding: 2%;
}
.products li .inner header {
  color: #474747;
}
.products li .inner p {
  color: #6B6B6B;
}

.grid {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.grid li {
  position: relative;
  text-align: center;
  margin: 2.5%;
  flex: 20%;
}
.grid li a:link, .grid li a:visited {
  color: #474747;
}
.grid li figure {
  max-width: 200px;
}
.grid li img {
  max-width: 200px;
  max-height: 200px;
}

input[name=search][type=text] {
  border-radius: 20px;
  width: calc(100% - 50px);
  padding: 10px 25px;
  margin-bottom: 20px;
}

.side-scroller.product-list {
  display: flex;
  overflow-x: auto;
  margin-bottom: 20px;
  padding: 20px;
}
.side-scroller.product-list li {
  display: inline;
  margin-right: 20px;
  min-width: 10vw;
  text-align: center;
}
.side-scroller.product-list li figure {
  height: 130px;
  width: 130px;
  padding-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-scroller.product-list li figure img {
  max-height: 100%;
}
.side-scroller.product-list li a:link, .side-scroller.product-list li a:visited {
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.side-scroller.product-list li.view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
}
.side-scroller.product-list li.view-all a:link, .side-scroller.product-list li.view-all a:visited {
  color: #009c3f;
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: 20px;
}
.group-header p {
  margin-bottom: 0;
}

.side-scoller-hint {
  text-align: right;
  font-weight: bold;
}

.product-list img[src=""], .product-list img[src=None] {
  display: none;
}
.product-list h3 span span:last-child {
  display: none;
}

@media screen and (max-width: 600px) {
  .filters {
    flex-direction: column;
    display: none;
  }
  .filters li {
    margin: 10px 0;
    padding: 10px 10px;
    text-align: center;
  }

  .action-toggle-filters {
    display: block;
  }

  .side-scroller.product-list li {
    min-width: 40vw;
  }

  .catalog {
    margin-left: -7%;
    margin-right: -7%;
  }
  .catalog > h3 {
    text-align: center;
    font-size: 20px;
  }
  .catalog .products {
    padding: 20px;
  }
  .catalog .products li a {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
  }
  .catalog .products li a figure {
    margin-right: 40px;
  }

  .grid li {
    width: 46%;
    padding: 2%;
  }
  .grid li figure, .grid li figure img {
    width: auto;
    height: auto;
  }
  .grid li img {
    margin: 0 auto;
    max-width: 100%;
  }
}
/* Cart */
.cart header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart header div {
  display: flex;
  align-items: center;
}
.cart header h3 {
  margin-right: 15px;
}
.cart .cart-details {
  padding: 30px 0;
}
.cart .cart-details ul li {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.cart .cart-details ul li div {
  display: flex;
  align-items: center;
}
.cart .cart-details ul li img {
  max-width: 100px;
  margin-right: 15px;
}
.cart .cart-details ul li p {
  margin-right: 15px;
}
.cart .cart-details ul li p strong {
  font-size: 20px;
}
.cart .cart-details ul li .quantity-picker {
  flex-direction: column;
  align-items: center;
}
.cart .cart-details ul li .quantity-picker input {
  max-width: 50px;
  text-align: center;
}
.cart .cart-details ul li .quantity-picker a {
  text-decoration: underline;
}
.cart .cart-details ul li .quantity-picker, .cart .cart-details ul li .price, .cart .cart-details ul li a.action-remove {
  padding: 0 10px;
}
.cart .cart-details ul li a.action-remove {
  margin-left: 20px;
}
.cart .cart-details ul li.disabled {
  opacity: 0.7;
  background: #eee;
  border: 1px solid #aaa;
  border-top: 0;
  padding: 20px 10px;
}
.cart .cart-details ul li.disabled img {
  filter: none;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
.cart .cart-details ul li.disabled a.action-remove.red {
  color: #888;
}
.cart .out-of-stock {
  border: 1px solid #aaa;
  border-bottom: 0;
  padding: 10px !important;
}
.cart .row {
  justify-content: flex-end;
}
.cart .row .cart-summary .inner {
  background-color: #eee;
  padding: 20px;
  margin: 10px 0;
}
.cart .row .cart-summary .inner p {
  margin: 15px;
}

/* Checkout */
.checkout-wrap .steps li {
  display: inline;
  margin-right: 20px;
  color: #aaa;
  font-weight: bold;
  font-size: 13px;
}
.checkout-wrap .steps li.active {
  color: #333;
}

.checkout {
  display: flex;
  justify-content: space-between;
}
.checkout header {
  margin-top: 10%;
}
.checkout .order-summary {
  margin-top: 2%;
  font-size: 1.125em;
}
.checkout .quantity {
  margin-top: 11%;
}
.checkout .payment-info {
  margin: 20px 0;
}
.checkout .cart-details {
  background: #eee;
  padding: 20px;
  border-radius: 5px;
  min-width: 300px;
}
.checkout .cart .quantity, .checkout .thanks .quantity {
  font-size: 1.25em;
  font-weight: 600;
  margin-right: 4%;
  color: #474747;
}
.checkout .customer-details {
  flex: 50%;
}
.checkout .customer-details form > div {
  margin: 20px 0;
  border-bottom: 1px solid #ccc;
}
.checkout #card-element {
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #ccc;
}
.checkout footer {
  justify-content: space-between;
  align-items: center;
}

.existing-user-details, .pill {
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  border: 2px solid #ddd;
  display: inline-block;
}

#payment-request-button {
  margin: 20px 0;
}

.product-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.product-list li > div {
  display: flex;
  justify-content: space-between;
}

.customer-details {
  padding: 20px;
}

.cart .cart-details ul.promotions li {
  text-align: right;
  background: #d2f2dc;
  color: #327243;
  border: 1px solid rgba(66, 163, 92, 0.3);
  box-shadow: 0 2px 3px rgba(151, 194, 132, 0.3);
  padding: 10px 20px;
  border-radius: 3px;
  display: flex;
  margin: 10px 0;
}
.cart .cart-details ul.promotions li span {
  font-size: 18px;
  font-weight: normal;
}

.half-and-half > * {
  flex: 0.5;
}
.half-and-half > * .error {
  color: #DF4A4A;
}

.voucher-message {
  color: #009c3f;
  font-weight: bold;
}

.align-self-right {
  font-weight: bold;
  justify-content: flex-end !important;
}
.align-self-right span {
  font-weight: normal;
  margin-left: 15px;
}

.total-line-item {
  border-top: 1px dashed #ccc;
}
.total-line-item strong {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.total-line-item strong span {
  padding-left: 15px;
}

.cart .cart-details ul li div.hidden {
  display: none;
}

@media screen and (max-width: 800px) {
  .checkout {
    flex-direction: column-reverse;
  }
  .checkout > div {
    margin: 20px 0;
  }
  .checkout .customer-details {
    padding: 0;
  }

  .steps {
    display: none;
  }

  .cart header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart header div {
    display: block;
    width: 96%;
  }
  .cart header div h3 {
    margin: 20px 0;
  }
  .cart .cart-details li {
    flex-direction: column;
  }
  .cart .cart-details li div {
    justify-content: space-evenly;
  }
  .cart .row {
    display: block;
  }
  .cart .row .cart-summary .inner {
    padding: 0;
    background: none;
  }
  .cart .row .cart-summary .inner .button {
    width: 85%;
  }
}
/* Single product page */
.single-product input[type=submit] {
  margin: 10px auto;
}

.product-info {
  width: 56%;
  padding: 0 2%;
}

.product-image {
  width: 40%;
}
.product-image p {
  margin: 2%;
  text-align: center;
}
.product-image a, .product-image img {
  display: block;
  margin: 0 auto;
}

.sales-units, .fancy-select {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.sales-units label, .fancy-select label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: #eee;
  box-shadow: 0 2px 3px rgba(191, 191, 191, 0.3);
  border: 1px solid #d0d0d0;
  transition: 0.2s ease-out all;
  padding: 15px;
  border-radius: 5px;
}
.sales-units label.active, .fancy-select label.active {
  background: #3b658a;
  box-shadow: 0 2px 3px rgba(117, 134, 176, 0.3);
  border: 1px solid #063157;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 400px) {
  .sales-units {
    flex-direction: column;
  }

  .addons {
    margin: 30px 0;
  }
}
/* Forms */
label {
  margin: 10px;
  display: block;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=time],
select,
textarea {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
  color: #474747;
  margin: 10px 10px 10px 0;
  display: block;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.05);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=time]:focus,
select:focus,
textarea:focus {
  border: 1px solid #009c3f;
}
input[type=text].large,
input[type=email].large,
input[type=number].large,
input[type=password].large,
input[type=date].large,
input[type=time].large,
select.large,
textarea.large {
  margin: 10px 0;
  width: calc(100% - 38px);
  padding: 12px 18px;
}

input[type=submit] {
  background: transparent;
}

.errorlist {
  color: #DF4A4A;
}

select {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
}
select.medium {
  -webkit-appearance: none;
  appearance: none;
  min-width: 300px;
  background-position: right 0.7em top 50%, 0 0;
  background-repeat: no-repeat;
  background-size: 0.65em auto;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23888888%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
}

/* Buttons */
.button,
a.button:link,
a.button:visited,
input[type=submit],
button {
  border: 0;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 600;
  background: #409c65;
  color: #fff;
  padding: 15px 25px;
  display: block;
  text-align: center;
  margin: 1% 0;
  transition: all 0.1s linear;
  position: relative;
  -webkit-appearance: none;
  cursor: pointer;
}
.button:hover,
a.button:link:hover,
a.button:visited:hover,
input[type=submit]:hover,
button:hover {
  background-color: #31784e;
  transition: all 0.1s ease;
}
.button.disabled, .button[disabled],
a.button:link.disabled,
a.button:link[disabled],
a.button:visited.disabled,
a.button:visited[disabled],
input[type=submit].disabled,
input[type=submit][disabled],
button.disabled,
button[disabled] {
  background-color: #999;
  cursor: not-allowed;
}
.button.secondary,
a.button:link.secondary,
a.button:visited.secondary,
input[type=submit].secondary,
button.secondary {
  background: #eee;
  color: #666;
  border-width: 0;
  padding: 12px 30px;
}
.button.secondary:hover,
a.button:link.secondary:hover,
a.button:visited.secondary:hover,
input[type=submit].secondary:hover,
button.secondary:hover {
  background: #ddd;
}
.button.large,
a.button:link.large,
a.button:visited.large,
input[type=submit].large,
button.large {
  padding: 15px 35px;
}
.button.danger,
a.button:link.danger,
a.button:visited.danger,
input[type=submit].danger,
button.danger {
  background: #DF4A4A;
}
.button.slight-danger,
a.button:link.slight-danger,
a.button:visited.slight-danger,
input[type=submit].slight-danger,
button.slight-danger {
  background: #fff;
  color: #DF4A4A;
  border: 2px solid #DF4A4A;
}

.button-inline.white, a.button-inline.white:link, a.button-inline.white:visited {
  background: #fff;
  color: #333;
  padding: 2px 15px;
  border-radius: 3px;
  margin: 0 10px;
  display: inline-block;
}

.stepper {
  display: flex;
  justify-content: center;
  margin: 1% auto;
}
.stepper button {
  background: transparent;
  border: 1px solid #bbb;
  color: #333;
  margin: 0;
}
.stepper button.action-decrement {
  border-radius: 5px 0 0 5px;
  border-right: 0;
}
.stepper button.action-increment {
  border-radius: 0 5px 5px 0;
  border-left: 0;
}
.stepper input {
  margin: 0;
  border-radius: 0;
  width: 50px;
  text-align: center;
}

input[type=checkbox] {
  height: 20px;
  width: 20px;
}

.large-checkbox {
  padding: 20px 10px;
  border-radius: 3px;
  border: 2px solid #ccc;
  font-size: 18px;
  display: flex;
  font-weight: bold;
}
.large-checkbox input {
  margin-right: 10px;
}

label ul {
  list-style-type: circle;
  padding-left: 50px;
  margin: 10px 0;
}
label ul li {
  margin: 10px 0;
}

@media screen and (max-width: 600px) {
  input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=time],
select,
textarea {
    margin: 10px 0;
  }

  label {
    margin: 0;
  }
}
/* Thanks */
.thanks header {
  margin: 6% 0 0 2%;
  width: 58%;
}
.thanks h2 {
  font-size: 1.5em;
  text-align: center;
  margin-top: 2%;
}
.thanks .quantity {
  margin: 7% 0 0 2%;
}

/* Home */
.home p {
  font-size: 1.125em;
  line-height: 35px;
}
.home .joe-and-noel {
  margin: -1% -20% 0% 5%;
}
.home .half img {
  margin: 0 auto;
  display: block;
}

.slider {
  width: 100%;
  position: relative;
}
.slider li {
  display: none;
}
.slider li.active {
  display: block;
}
.slider li img {
  width: 100%;
}

.instagram, .twitter {
  width: 30%;
  padding: 1% 2% 1% 5%;
  text-indent: 5%;
  transition: all 0.1s, color 0 linear;
  -webkit-transition: all 0.1s, color 0 linear;
  -moz-transition: all 0.1s, color 0 linear;
  -ms-transition: all 0.1s, color 0 linear;
  -o-transition: all 0.1s, color 0 linear;
  position: relative;
}
.instagram:hover, .twitter:hover {
  color: #009c73;
  border-color: #009c73;
  padding: 1% 4% 1% 7%;
}
.instagram.left:hover, .twitter.left:hover {
  left: -1%;
}
.instagram.right:hover, .twitter.right:hover {
  right: -1%;
}

.instagram {
  background: url("../images/instagram.jpg") 15% center no-repeat white;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .instagram {
    background: url("../images/instagram@2x.jpg") 15% center no-repeat white;
    background-size: 38px 37px;
  }
}

.twitter {
  background: url("../images/twitter.jpg") 15% center no-repeat white;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .twitter {
    background: url("../images/twitter@2x.jpg") 15% center no-repeat white;
    background-size: 36px 28px;
  }
}

@media screen and (max-width: 700px), (max-device-width: 700px) {
  body {
    font-size: 0.9375em;
  }

  #top {
    margin-top: 10%;
  }
  #top .logo {
    float: none;
    display: block;
  }
  #top .logo img {
    margin: 0 auto;
    display: block;
  }
  #top nav {
    float: none;
    text-align: center;
    display: none;
    overflow: hidden;
  }
  #top nav li {
    display: list-item;
    margin: 8%;
    font-size: 1.125em;
  }
  #top .menu-toggle {
    display: block;
  }

  .wrapper {
    width: 88%;
  }

  .home .joe-and-noel {
    margin: 4% auto;
    display: block;
    width: 100%;
  }
  .home .instagram, .home .twitter {
    width: 80%;
    float: none;
    margin: 10% auto;
    display: block;
  }

  .half, .two-thirds, .third {
    width: 100%;
    margin: 4% 0;
  }

  section img, .home img {
    display: block;
    margin: 4% auto;
  }

  .product-image {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10%;
  }
  .product-image p {
    display: none;
  }

  .product-info {
    float: none;
    width: 100%;
  }
  .product-info .button {
    width: 100%;
    margin: 10% auto;
    float: none;
  }

  h2 {
    text-align: center;
  }

  section h2.pull-focus {
    margin: 8% 0;
  }
  section h2.pull-focus a {
    display: inline-block;
    padding-bottom: 0;
  }

  /* FAQs */
  .medium h3 {
    margin-top: 8%;
  }

  /* Contact */
  .button {
    width: 100%;
    display: block;
    margin: 8% auto;
  }

  .products img, .cart img {
    float: none;
  }
  .products header, .cart header {
    overflow: initial;
    float: none;
    width: auto;
  }
  .products header .actions a, .cart header .actions a {
    margin: 5% 12% 0;
    display: inline-block;
  }
  .products header h3, .cart header h3 {
    float: none;
  }
  .products header .price, .cart header .price {
    margin: 2% 0 0 12%;
    float: none;
    display: block;
  }

  .order-summary {
    text-align: left;
  }

  .thanks .products header h3 {
    margin: 0% 0 0 12%;
    float: none;
  }
}
.lightbox, .modal-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.lightbox {
  background: rgba(0, 0, 0, 0.4);
  transition: 0.1s linear all;
  z-index: 1000;
}

.modal-container {
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container.hidden {
  display: none;
}
.modal-container .modal {
  z-index: 3000;
  background: #fff;
  padding: 30px;
  border-radius: 3px;
  width: 250px;
}

/*# sourceMappingURL=style-main.css.map */
