/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
    Imports
    ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,700;1,400;1,700&display=swap");
#mobile-navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-align-content: flex-end;
  -moz-align-content: flex-end;
  -ms-align-content: flex-end;
  align-content: flex-end;
  padding: 15px;
  position: fixed;
  right: 2vw;
  z-index: 1000; }
  @media screen and (max-width: 768px) {
    #mobile-navigation {
      right: 5vw; } }
  #mobile-navigation #mobile-nav {
    background: #f6f4f1;
    border: 2px solid #006735;
    bottom: 0;
    display: none;
    left: 0;
    opacity: 0;
    overflow-x: scroll;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.5s linear; }
    @media screen and (max-width: 768px) {
      #mobile-navigation #mobile-nav {
        border-width: 5vw; } }
    #mobile-navigation #mobile-nav nav {
      font-size: 0.7rem;
      width: 100%;
      text-align: center;
      transition: background 0.5s linear; }
      #mobile-navigation #mobile-nav nav.footer-info {
        padding-top: 120px; }
        #mobile-navigation #mobile-nav nav.footer-info ul li {
          font-size: 1rem;
          line-height: 3rem;
          padding-top: 0; }
      #mobile-navigation #mobile-nav nav ul {
        list-style: none;
        width: 100%;
        padding-left: 0; }
        #mobile-navigation #mobile-nav nav ul li {
          font-size: 1.5rem;
          padding-right: 5px;
          padding-top: 20px;
          text-align: left; }
          @media screen and (max-width: 768px) {
            #mobile-navigation #mobile-nav nav ul li {
              font-size: 2.5rem;
              line-height: 5rem; } }
          @media screen and (max-width: 640px) {
            #mobile-navigation #mobile-nav nav ul li {
              font-size: 1.5rem; } }
          #mobile-navigation #mobile-nav nav ul li a {
            color: #f6f4f1;
            line-height: 3rem;
            text-transform: capitalize; }
            #mobile-navigation #mobile-nav nav ul li a:after {
              -webkit-transform: scaleX(0);
              -moz-transform: scaleX(0);
              -ms-transform: scaleX(0);
              transform: scaleX(0);
              -webkit-transition: transform 250ms ease-in-out;
              -moz-transition: transform 250ms ease-in-out;
              -ms-transition: transform 250ms ease-in-out;
              -o-transition: transform 250ms ease-in-out;
              transition: transform 250ms ease-in-out;
              border-color: #f6f4f1;
              display: block;
              transform-origin: 100% 50%;
              -webkit-transform-origin: 100% 50%; }
            #mobile-navigation #mobile-nav nav ul li a:hover:after {
              -webkit-transform: scaleX(1);
              -moz-transform: scaleX(1);
              -ms-transform: scaleX(1);
              transform: scaleX(1);
              transform-origin: 0% 50%;
              -webkit-transform-origin: 0% 50%; }
            #mobile-navigation #mobile-nav nav ul li a.active:after {
              -webkit-transform: scaleX(1);
              -moz-transform: scaleX(1);
              -ms-transform: scaleX(1);
              transform: scaleX(1);
              -webkit-transition: transform 250ms ease-in-out;
              -moz-transition: transform 250ms ease-in-out;
              -ms-transition: transform 250ms ease-in-out;
              -o-transition: transform 250ms ease-in-out;
              transition: transform 250ms ease-in-out;
              transform-origin: 0% 50%; }
            #mobile-navigation #mobile-nav nav ul li a.active:hover:after {
              -webkit-transform: scaleX(0);
              -moz-transform: scaleX(0);
              -ms-transform: scaleX(0);
              transform: scaleX(0);
              transform-origin: 100% 50%; }
    #mobile-navigation #mobile-nav.open {
      display: block;
      opacity: 1;
      visibility: visible; }

.hamburger {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  height: 30px;
  position: relative;
  width: 30px;
  z-index: 10001;
  cursor: pointer; }
  .hamburger span {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #006735;
    border-radius: 9px;
    opacity: 1;
    left: 0; }
    .hamburger span:nth-child(1) {
      top: 0px; }
    .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
      top: 9px; }
    .hamburger span:nth-child(4) {
      top: 18px; }
  .hamburger:hover span {
    background-color: #006735;
    cursor: pointer; }
  .hamburger.open span {
    background: #006735; }
    .hamburger.open span:nth-child(1) {
      left: 50%;
      top: 18px;
      width: 0%; }
    .hamburger.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .hamburger.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .hamburger.open span:nth-child(4) {
      left: 50%;
      top: 18px;
      width: 0%; }

#drawer {
  background: #006735;
  border: 2px solid #efd7c7;
  bottom: 0;
  color: #f6f4f1;
  display: none;
  left: 0;
  opacity: 0;
  overflow-x: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s linear;
  z-index: 10000; }
  #drawer .allergies,
  #drawer .interests {
    display: none; }
  #drawer .hamburger {
    float: right;
    margin: 20px;
    position: absolute;
    right: 0px;
    top: 0px; }
    #drawer .hamburger span {
      background: #c76f30; }
  #drawer.allergies-open .allergies {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    min-height: 100vh; }
  #drawer.interests-open .interests {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    min-height: 100vh; }
  @media screen and (max-width: 768px) {
    #drawer {
      border-width: 5vw; } }
  #drawer.open {
    display: block;
    opacity: 1;
    visibility: visible; }

#modal-container,
.modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  #modal-container .modal-image,
  .modal-container .modal-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%; }
    #modal-container .modal-image img,
    .modal-container .modal-image img {
      width: 70%;
      height: auto; }
  #modal-container.hidden,
  .modal-container.hidden {
    display: none; }
  #modal-container.visible,
  .modal-container.visible {
    display: block; }

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
  font-family: "Asap", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #f6f4f1;
  color: #006735;
  display: inline-block;
  letter-spacing: 0.05rem;
  font-size: 16px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Asap", sans-serif;
  font-weight: 700;
  font-style: normal; }

h1 {
  font-size: 1.5rem; }

h4 {
  font-size: 1rem;
  margin-bottom: 0px;
  text-transform: uppercase; }

p {
  margin-top: 0; }

a {
  color: #000000;
  text-decoration: none; }
  a:hover {
    color: #efd7c7; }

.filter-container {
  color: #c76f30;
  font-size: 0.8rem;
  text-align: center; }

.btn-group {
  padding: 10px 0;
  margin-top: 30px;
  width: 100%; }
  .btn-group button,
  .btn-group input {
    font-family: "Asap", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f6f4f1;
    /* Green background */
    border: 2px solid #006735;
    /* Green border */
    color: #006735;
    /* White text */
    font-size: 1.2rem;
    width: 50%;
    padding: 10px 0;
    cursor: pointer;
    /* Pointer/hand icon */
    float: left;
    /* Float the buttons side by side */ }
    .btn-group button:hover,
    .btn-group input:hover {
      background-color: #006735;
      color: #f6f4f1; }
    .btn-group button:first-child,
    .btn-group input:first-child {
      border-left: none; }
    .btn-group button:last-child,
    .btn-group input:last-child {
      border-right: none; }
    .btn-group button:not(:last-child),
    .btn-group input:not(:last-child) {
      border-right: none;
      /* Prevent double borders */ }
  .btn-group:after {
    content: "";
    clear: both;
    display: table; }

.filter-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 30px;
  width: 100%; }
  .filter-form .form-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%; }

.form-interests {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.form-icon {
  margin: 0 auto;
  padding: 30px;
  width: 25vw;
  max-width: 200px;
  display: none; }
  .form-icon img {
    width: 100%;
    height: auto; }

.footer-icon {
  margin: 0 auto;
  padding: 30px;
  width: 15vw;
  max-width: 100px;
  min-width: 20px; }
  .footer-icon img {
    width: 100%;
    height: auto; }

.container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: block;
  position: relative;
  padding-left: 50px;
  margin-top: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  right: 50px;
  height: 25px;
  width: 25px;
  background-color: #006735;
  border: 2px solid #f6f4f1; }

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #006735; }

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #c76f30; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

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

#home .logo-container,
#home .title-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  width: 100%;
  padding-top: calc(20px + 5vw); }
#home .logo,
#home .title {
  height: 15vh;
  margin: 0 auto;
  width: auto; }

.nav-container ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0; }
  .nav-container ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    padding: 1vh 0;
    width: 100%; }
    .nav-container ul li img {
      height: 13vh;
      width: auto; }

.active-filters-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 5% 5% 0 5%; }
  .active-filters-list .tag {
    margin: 0 5px 10px 0;
    padding: 5px 10px;
    background: #c76e30;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    white-space: nowrap; }

.substitutions {
  color: #c76f30; }

.restrictions {
  font-style: italic;
  font-weight: 700;
  text-transform: lowercase; }

.menu {
  padding-bottom: 60px; }
  .menu .three-fourths {
    padding-left: 20px; }
  .menu ul {
    padding: 0 0 7vw 0; }
    @media screen and (max-width: 768px) {
      .menu ul {
        padding-bottom: 10vw; } }
    .menu ul li {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .menu ul li .icon {
        padding: 20px 0 20px 20px;
        width: calc(20% - 40px); }
        .menu ul li .icon img {
          width: 100%;
          height: auto; }
      .menu ul li .price {
        padding-right: 20px;
        width: calc(20% - 20px); }

.one-half {
  width: 50%; }

.one-fourth {
  width: 25%; }

.one-fifth {
  width: 20%; }

.three-fourths {
  width: 75%; }

.description p {
  font-family: "Asap", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
  text-transform: capitalize; }
.description .notes {
  padding-top: 10px; }

.site-wrapper {
  bottom: 0;
  left: 0;
  position: fixed;
  overflow-x: scroll;
  right: 0;
  top: 0; }
  .site-wrapper.green-border {
    border: 2vw solid #006735; }
    @media screen and (max-width: 768px) {
      .site-wrapper.green-border {
        border-width: 5vw; } }
  .site-wrapper .page-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    padding-top: 40px; }
    .site-wrapper .page-header img {
      width: 80vw; }

.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 2vw 5vw 2vw 5vw; }
  @media screen and (max-width: 768px) {
    .row {
      padding: 20px 20px; } }
  .row .half {
    width: 50%; }
  .row .full {
    width: 100%; }
    .row .full.marquee {
      width: 100vw;
      margin-left: -5vw; }
      @media screen and (max-width: 768px) {
        .row .full.marquee {
          margin-left: -20px; } }
  .row .one-third {
    width: 33.333%; }
  .row .two-thirds {
    width: 66.666%; }
  .row .three-fourths {
    width: 75%; }
  .row .one-fourth {
    width: 25%; }
  .row .flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .row .justify-start {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start; }
  .row .justify-end, .row.justify-end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end; }
  .row .align-start {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start; }
  .row .align-end {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end; }
  .row .align-center {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center; }

.section-title {
  padding: 0 5%; }
  .section-title h2 {
    border-bottom: 2px solid #006735;
    font-size: 2rem;
    margin-bottom: 0; }

footer {
  bottom: 2vw;
  left: 2vw;
  position: fixed;
  right: 2vw; }
  @media screen and (max-width: 768px) {
    footer {
      bottom: 5vw;
      left: 5vw;
      right: 5vw; } }

.marquee-container {
  background: #efd7c7;
  color: #c76f30;
  overflow: hidden;
  padding: 2vw 0;
  white-space: nowrap; }

.scrolling {
  animation: marquee 15s linear infinite;
  display: inline-block;
  padding-right: 10px; }
  .scrolling h1 {
    margin: 0; }

@keyframes marquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */ }

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]::after {
    content: " (" attr(href) ")"; }

  abbr[title]::after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }

  pre {
    white-space: pre-wrap !important; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }

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