/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  position: relative;
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Page styles */
body {
  color: #555;
  font-family: 'Libre Baskerville', Georgia, 'Times New Roman', Times, serif;
  line-height: 1.5em;
}
section,
header,
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header {
  padding: 2rem 1rem;
  margin-top: 2rem;
}
header nav {
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  display: flex;
  gap: 1rem;
  border: 1px solid #333333;
  color: #333333;
  border-left: none;
  border-right: none;
}
header svg {
  aspect-ratio: 400/150;
  width: 8rem;
  fill: #333333;
}
section.Notification {
  padding: 1rem;
  color: white;
  font-family: 'Work Sans', Arial, Helvetica, sans-serif;
  background: #333333;
}
section.Notification a {
  text-decoration: underline;
}
section.Donation {
  padding: 1rem 1rem 3rem 1rem;
  font-family: 'Work Sans', Arial, Helvetica, sans-serif;
}
section.Product {
  padding: 5rem 1rem;
  background: #fcfcfc;
}
section.Product img {
  margin-top: 2rem;
  width: 100%;
  max-width: 20rem;
  height: auto;
}
footer {
  background: #333333;
  color: #d6d6d6;
  font-family: 'Work Sans';
  padding: 3rem 1rem 10rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer svg {
  fill: white;
  aspect-ratio: 400/150;
  width: 130px;
}
footer > * {
  max-width: 600px;
}
#Products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0.5rem;
}
#Products [data-modal-product] {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.8rem;
  padding-bottom: 2rem;
}
@media (min-width: 760px) {
  #Products [data-modal-product] {
    width: calc(45%);
  }
}
@media (min-width: 1200px) {
  #Products [data-modal-product] {
    width: calc(33% - 0.16rem);
  }
}
#Products [data-modal-product] [data-modal-title] {
  color: black;
  padding: 0 1rem;
  font-weight: lighter;
}
#Products [data-modal-product] [data-modal-description] {
  padding: 0 1rem;
  overflow: hidden;
  height: 70px;
  position: relative;
  font-size: 0.8em;
}
#Products [data-modal-product] [data-modal-description]:before {
  content: " ";
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, white);
}
#Products [data-modal-product] [data-modal-open] {
  text-transform: uppercase;
  font-size: 0.8em;
  margin-left: 1.5rem;
  outline: 10px solid white;
}
#Products [data-modal-product] .CartControl {
  margin-top: -1.3rem;
  transition: all 0.4s;
}
#Products [data-modal-product] .CartControl .Price {
  font-size: 1.5em;
  letter-spacing: -0.1em;
  color: black;
}
#Products [data-modal-product] .CartControl[data-active='true'] {
  box-shadow: 0px 0px 10px #c5c5c5;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#Products [data-modal-product] .CartControl[data-active='true'] button {
  background: black;
  color: white;
}
#Products [data-modal-product] figure {
  display: block;
  width: 100%;
  position: relative;
  order: -1;
  background: #555;
  margin: 0;
}
#Products [data-modal-product] figure img {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  transition: opacity 0.5s;
}
#Products [data-modal-product] figure img[data-role='thumb_hover'] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#Products [data-modal-product] figure img[data-hover='true'] {
  opacity: 1;
}
#Products [data-modal-product] figure figcaption {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  background: white;
  padding: 0 1rem;
}
button#Capture {
  display: block;
  width: 100%;
  height: 0;
  visibility: hidden;
}
button,
.button {
  padding: 0.3rem 0.6rem;
  font-weight: 500;
  font-family: 'Work Sans', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  transition: background 0.4s, border 0.4s;
  cursor: pointer;
  border: 1px solid #ccc;
  color: black;
  text-align: center;
  background: white;
}
@media (min-width: 1200px) {
  button:hover,
  .button:hover {
    background: black;
    color: white;
    border: 1px solid black;
  }
}
.CartControl {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.8em;
  min-width: 8rem;
  background-color: white;
  padding: 0.5rem 0.5rem;
}
.CartControl .Quantity {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.CartControl .Stock {
  transform: rotate(-3deg);
  padding: 0 0.5em;
  border: 1px dashed red;
  display: inline-block;
  align-self: stretch;
  text-align: center;
  text-transform: uppercase;
  color: red;
  font-family: 'Work Sans';
  font-weight: bolder;
}
.CartControl button,
.CartControl .button {
  display: block;
  width: 100%;
}
.CartControl h3 {
  display: none;
}
.CartControl input[type='number'] {
  background: black;
  box-sizing: border-box;
  padding: 0.2rem 0.3rem;
  color: white;
  border: none;
  border-radius: 0.5rem;
  width: 3em;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}
.Modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  visibility: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
}
.Modal[data-show='true'] {
  visibility: visible;
}
.Modal[data-show='true'] .Fill {
  background: rgba(255, 255, 255, 0.8);
}
.Modal .Fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.Modal.Center .Window {
  bottom: auto;
  align-self: center;
}
.Modal.Small .Window {
  max-width: 300px;
}
.Modal .Window {
  flex: 1 1;
  position: relative;
  bottom: 1.5rem;
  max-width: 600px;
  background: white;
  overflow-y: auto;
  max-height: calc(100% - 3rem);
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.8);
  border-radius: 5px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.27);
}
.Modal .Window .Title {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  box-sizing: border-box;
  align-items: center;
  background: white;
  box-shadow: 0px 0px 10px #d9d9d9;
}
.Modal .Window .Title :first-child {
  flex: 1;
  padding-right: 1em;
}
.Modal .Window .Description {
  gap: 1em;
  flex-direction: column;
  display: flex;
  padding: 1rem;
  line-height: 1.7em;
}
.Modal .Window .Images {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0 1rem;
}
.Modal .Window .Images img {
  display: block;
  width: 100%;
  height: auto;
}
.Modal[data-show='true'] .Window {
  opacity: 1;
  transform: scale(1);
}
#Cart {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#Cart .Upper {
  pointer-events: none;
  position: relative;
  flex: 1 0 auto;
  height: 100%;
  transition: all 0.4s ease 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
#Cart .Upper[data-show='true'] {
  flex: auto;
}
#Cart .Lower {
  pointer-events: all;
  position: relative;
  flex: 1 0 auto;
  gap: 1rem;
  background: #34c98a;
  color: white;
  transition: all 0.4s ease 0.4s;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}
@media (max-width: 420px) {
  #Cart .Lower {
    gap: 0.5rem;
  }
  #Cart .Lower div {
    width: 40%;
    text-align: center;
    font-size: 14px;
  }
  #Cart .Lower button {
    width: 40%;
    order: 3;
  }
}
#Cart .Group {
  padding-bottom: 2rem;
}
#Cart .Group h3 {
  width: 100%;
  font-weight: normal;
  display: block;
}
#Cart .Group .CartControl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  padding: 0;
  margin-top: 1rem;
}
#Cart .Group .CartControl .Stock {
  align-self: start;
}
#Cart .Group .CartControl button,
#Cart .Group .CartControl .button {
  width: auto;
}


/*# sourceMappingURL=landing-quickorder.less.a43500034cee5173b707.css.map*/