@charset "UTF-8";
/*! HTML5 Boilerplate v7.2.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.0.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.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Parisienne&display=swap");
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  height: 100vh;
}

/*
 * 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;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
  z-index: 10000;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/**
 * 1. Avoid the IE 10-11 `min-height` bug.
 * 2. Set `flex-shrink` to `0` to prevent some browsers from
 *    letting these items shrink to smaller than their content's default
 *    minimum size. See http://bit.ly/1Mn35US for details.
 * 3. Use `%` instead of `vh` since `vh` is buggy in older mobile Safari.
 */
.Site {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 1, 3 */
}

.Site-header,
.Site-footer {
  flex: none;
  /* 2 */
}

.Site-content {
  flex: 1 0 auto;
  /* 2 */
  padding: var(--space) var(--space) 0;
  width: 100%;
}
.map-page .Site-content {
  min-height: 100%;
}
.Site-content.black-bg {
  background-color: #000;
}
.Site-content.black-bg h1 {
  color: white;
}

.Site-content::after {
  content: " ";
  /* &nbsp; */
  display: block;
  margin-top: var(--space);
  height: 0px;
  visibility: hidden;
}

@media (--break-lg) {
  .Site-content {
    padding-top: var(--space-lg);
  }
  .Site-content::after {
    margin-top: var(--space-lg);
  }
}
.Site-content--full {
  padding: 0;
}

.Site-content--full::after {
  content: none;
}

/**
 * 1. Avoid the IE 10-11 `min-height` bug.
 * 2. Set `flex-shrink` to `0` to prevent some browsers from
 *    letting these items shrink to smaller than their content's default
 *    minimum size. See http://bit.ly/1Mn35US for details.
 * 3. Use `%` instead of `vh` since `vh` is buggy in older mobile Safari.
 */
#map-container img {
  max-width: none;
}

.bh-sl-container {
  min-height: 600px;
}

.loc-name {
  color: #121212;
}

#map-container {
  position: fixed;
  z-index: 2000;
  top: 100px;
  left: 0;
  margin-top: 0;
  width: 100%;
  height: 100%;
}

#bh-sl-map {
  width: 100%;
  height: 100%;
}

.bh-sl-container {
  float: none;
  margin: 0;
  width: 100%;
  color: #000;
  padding: 0;
}
.bh-sl-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#map-container {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.bh-sl-container .bh-sl-form-container {
  clear: left;
  float: none !important;
  margin-top: 0;
  width: 100%;
}

.map-submit {
  background-color: #121212;
  border-radius: 0;
  color: #fff;
  border: 0;
  font-family: "bebas-neue", sans-serif;
  font-size: 18px;
  padding: 10px 30px;
  margin-top: 10px;
  transition: all 0.5s;
}
.map-submit:hover {
  background-color: #040303;
  cursor: pointer;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

img {
  width: 100%;
}

* {
  box-sizing: border-box;
}

a {
  color: #121212;
}

p {
  line-height: 1.4em;
  font-size: 22px;
}
@media (max-width: 800px) {
  p {
    font-size: 18px;
  }
}

html,
body {
  min-height: 100%;
}

@font-face {
  font-family: "Formula Condensed Regular";
  src: url("/fonts/FormulaCondensed-Regular.woff2") format("woff2"), url("FormulaCondensed-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Formula Condensed Bold";
  src: url("/fonts/FormulaCondensed-Bold.woff2") format("woff2"), url("FormulaCondensed-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir Regular";
  src: url("/fonts/Agrandir-Regular.woff2") format("woff2"), url("Agrandir-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agrandir Bold";
  src: url("/fonts/Agrandir-TextBold.woff2") format("woff2"), url("Agrandir-TextBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Soul Signature";
  src: url("https://gflabels.s3-ap-southeast-2.amazonaws.com/SoulSignature/SoulSignature.woff2") format("woff2"), url("https://gflabels.s3-ap-southeast-2.amazonaws.com/SoulSignature/SoulSignature.woff") format("woff"), url("https://gflabels.s3-ap-southeast-2.amazonaws.com/SoulSignature/SoulSignature.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Agrandir Regular", sans-serif;
  letter-spacing: 1px;
}
body b {
  font-family: "Agrandir Bold", sans-serif;
  font-weight: 800;
}

.heading-large {
  color: #121212;
  font-size: 40px;
  line-height: 40px;
  font-family: "Formula Condensed Regular", sans-serif;
  text-align: center;
  padding: 36px 0;
  max-width: 100%;
  letter-spacing: 1px;
}

a.button {
  font-family: "Formula Condensed Regular", sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid #121212;
  background-color: #121212;
  color: #fff;
  transition: all 0.5s;
  letter-spacing: 1px;
}
a.button:hover {
  color: #121212;
  background-color: #fff;
  cursor: pointer;
  border: 2px solid #121212;
}

.bottle-art {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 85%;
}
.bottle-art:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  transform: rotate(20deg);
  opacity: 0.4;
}
.twelve .bottle-art:before {
  background: url("/img/12yo.png");
  background-size: 300px;
  background-position: 26% center;
  background-size: 400px;
  background-repeat: no-repeat;
}
.fifteen .bottle-art:before {
  background: url("/img/15yo.png");
  background-size: 300px;
  background-position: 26% center;
  background-size: 400px;
  background-repeat: no-repeat;
}
.eighteen .bottle-art:before {
  background: url("/img/18yo.png");
  background-size: 300px;
  background-position: 26% center;
  background-size: 400px;
  background-repeat: no-repeat;
}
.twentyone .bottle-art:before {
  background: url("/img/21yo.png");
  background-size: 300px;
  background-position: 26% center;
  background-size: 400px;
  background-repeat: no-repeat;
}
.projectxx .bottle-art:before {
  background: url("/img/XX.png");
  background-size: 300px;
  background-position: 26% center;
  background-size: 400px;
  background-repeat: no-repeat;
}
.projectipa .bottle-art:before {
  background: url("/img/ipa.png");
  background-size: 300px;
  background-position: 26% center;
  background-size: 400px;
  background-repeat: no-repeat;
}
@media (max-width: 750px) {
  .bottle-art:before {
    opacity: 0.1;
  }
}

.hometround {
  width: 70%;
}
@media (max-width: 1180px) {
  .hometround {
    width: 90%;
  }
}

.hometround img {
  mix-blend-mode: multiply;
}

.fullheight {
  height: 82.6vh;
}
.fullheight h1 {
  font-size: 7em !important;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1180px) {
  .fullheight h1 {
    font-size: 6em !important;
  }
}
@media (max-width: 895px) {
  .fullheight h1 {
    font-size: 5em !important;
  }
}
@media (max-width: 745px) {
  .fullheight h1 {
    font-size: 3em !important;
  }
}
@media (max-width: 650px) {
  .fullheight h1 {
    font-size: 2.5em !important;
  }
}
@media (max-width: 750px) {
  .fullheight {
    height: 100vh;
  }
}

.main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.main h1 {
  font-size: 3.5em;
}
.main.column {
  flex-direction: column;
  align-items: center;
}

.Site-content {
  overflow: hidden;
}

#smooth-wrapper {
  height: auto !important;
  inset: auto !important;
}

#bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background: url("//demosthenes.info/assets/images/polina.jpg") no-repeat;
  background-size: cover;
  transition: 1s opacity;
}

.max-width {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1500px;
  flex-direction: column;
  padding: 50px 0 20px 0;
}

.max-width-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96%;
  max-width: 780px;
  flex-direction: column;
  padding: 20px 0 0 0;
}

@media (min-width: 1023px) {
  .homepage-viveo {
    min-height: 600px;
  }
}

.top-spacer {
  height: 200px;
  display: block;
}

.crest {
  width: 80px;
  margin: 30px 0;
}

.logo {
  width: 290px;
}

.step-container {
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  color: #121212;
  font-family: "Agrandir Regular", sans-serif;
  font-size: 43px;
  line-height: 43px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 30px;
  text-align: center;
  letter-spacing: 1px;
}
.stepone .step-container {
  margin-bottom: 10px;
  margin-top: 10px;
}
.step-container.locator {
  margin-bottom: 0px;
}
@media (max-width: 750px) {
  .step-container {
    flex-direction: column;
    font-size: 25px;
    line-height: 25px;
  }
}
.step-container .step-callout {
  color: #121212;
}

.announcement {
  font-size: 14px;
  font-style: italic;
  margin: 10px 0;
}

h2 {
  color: #000;
  font-family: "Agrandir Regular", sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
  letter-spacing: 1px;
  font-size: 3em;
}
@media (max-width: 800px) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  color: #121212;
  font-family: "Agrandir Regular", sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
  letter-spacing: 1px;
}

.grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.grid.bottle-lineup {
  margin: 0px 0 50px 0;
}
@media (max-width: 750px) {
  .grid {
    flex-direction: column;
  }
  .grid.gallery-grid {
    flex-direction: row;
  }
  .grid.bottle-lineup {
    flex-direction: row;
  }
  .homepage .grid {
    align-items: center;
  }
}

form#contactform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form#entryForm {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 800px) {
  form#entryForm {
    flex-direction: column;
  }
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
.grid-item.contact-bottle {
  flex-basis: 20%;
  width: 20%;
}
.grid-item.contact-form-item {
  flex-basis: 49%;
  width: 49%;
}
@media (max-width: 750px) {
  .grid-item.contact-form-item {
    flex-basis: 100%;
    width: 100%;
  }
}
.grid-item.centered {
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.grid-item.hometrounds {
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  .grid-item.hometrounds.mobile-hide {
    display: none;
  }
}
.grid-item.home-grid {
  align-items: center;
  max-width: 100%;
}
.grid-item.gallery {
  margin-bottom: 2%;
}
.grid--2 .grid-item {
  flex-basis: 49%;
  width: 49%;
}
.grid--2 .grid-item.bottle-select {
  max-width: 250px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .grid--2 .grid-item {
    width: 100%;
  }
}
.grid--3 .grid-item {
  flex-basis: 32%;
  width: 32%;
}
@media (max-width: 750px) {
  .grid--3 .grid-item {
    width: 49%;
    flex-basis: 49%;
  }
}
@media (max-width: 750px) {
  .grid--3 .grid-item.hometrounds {
    width: 70%;
    flex-basis: 70%;
  }
}
.grid--5 .grid-item {
  flex-basis: 19%;
}
.grid--6 .grid-item {
  flex-basis: 15%;
}
@media (max-width: 750px) {
  .grid--6 .grid-item {
    flex-basis: 32%;
  }
}
.grid--7 .grid-item {
  flex-basis: 25%;
}
@media (max-width: 750px) {
  .grid--7 .grid-item {
    flex-basis: 32%;
  }
}
.bottle-lineup .grid-item {
  align-items: center;
  justify-content: space-between;
  transition: all 0.8s;
  position: relative;
  max-width: 100%;
}
.bottle-lineup .grid-item::before {
  content: "";
  background-image: url("/img/Hero-Drop-Shadow.png");
  position: absolute;
  width: 80%;
  height: 100%;
  z-index: 1;
  background-size: 80%;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: visible;
  bottom: 0;
  opacity: 0.2;
}
.bottle-lineup .grid-item:hover {
  opacity: 0.8;
}

.bottle-lineup--image {
  width: 100%;
  margin: 70px 0 0;
  position: relative;
  overflow: visible;
  z-index: 20;
}

.brown-line {
  width: 2px;
  background-color: #121212;
  margin-bottom: 40px;
}

.bottle-wrapper {
  width: 75%;
  align-self: center;
}

.bottle-wrap {
  width: 25%;
}
@media (max-width: 1200px) {
  .bottle-wrap {
    width: 33%;
  }
}
@media (max-width: 700px) {
  .bottle-wrap {
    width: 50%;
  }
}

.header {
  width: 100%;
  z-index: 100;
  background-color: #121212;
  position: relative;
  border-bottom: 1px solid #fff;
}
.header.no-top-padding {
  position: absolute;
  background-color: transparent;
}
.storefinder .header {
  background-image: url("/img/2020-bg.jpg");
  background-position: top center;
  background-size: cover;
}
.header .top-bar {
  background-color: rgba(73, 61, 60, 0.6);
  padding: 10px 0 5px;
  text-align: center;
  color: #ffffff;
  font-family: "Agrandir Regular";
  font-size: 12px;
  letter-spacing: 1px;
}
.header .top-bar a {
  color: #ffffff;
}
.header .red-bar {
  text-align: center;
  background-color: #121212;
  padding: 7px 0 6px;
  color: #ffffff;
  font-family: "Agrandir Regular";
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -5px;
}
.header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
@media (max-width: 1000px) {
  .header nav {
    display: none;
  }
}
.header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 0;
  padding: 0;
  position: relative;
  max-width: 100%;
}
.header nav ul li {
  font-family: "Formula Condensed Regular";
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  list-style-type: none;
  letter-spacing: 1px;
  padding: 0 17px 0 24px;
  position: relative;
}
.header nav ul li:first-child, .header nav ul li:nth-child(5n) {
  background-image: none;
}
.header nav ul li:nth-child(6n) {
  background-image: none;
}
.header nav ul li.home {
  width: 315px;
  margin-top: -10px;
  background-image: none;
  padding: 0;
  filter: brightness(5.5);
}
.header nav ul li.home a {
  padding: 0 0 10px 0;
  opacity: 1;
}
.header nav ul li a {
  padding: 10px 0;
  display: inline-block;
  text-decoration: none;
  font-size: 19px;
  color: #fff;
  letter-spacing: 1.2px;
  transition: opacity 0.5s;
}
.header nav ul li a:hover {
  opacity: 1;
}

#store-locator-container {
  margin-top: 20px;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 20px 26px;
  background-color: #121212;
  color: #797979;
  display: block;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
  justify-content: center;
  font-size: 11px;
}
.footer .hrozontal-line {
  height: 2px;
  border-top: 1px solid #746766;
  margin: 10px 0;
}
@media (max-width: 800px) {
  .footer {
    padding: 20px 26px 40px;
  }
}
.footer a {
  color: #797979;
}

.foot-head {
  width: 150px;
}

.foot-blurb {
  margin-bottom: 5px;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot-left-panel {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  max-width: 1024px;
  align-items: center;
  justify-content: center;
}

.checkbox-container {
  margin-top: 20px;
}

select.picker__select--year {
  padding: 0;
}

select.picker__select--month {
  padding: 0;
}

.div-line {
  width: 100%;
  max-width: 1024px;
  height: 1px;
  background-color: #121212;
  margin: 20px 0;
}

.new-labels {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-labels.new21 .text-container {
  position: absolute;
  width: 60%;
  top: 4%;
}
.new-labels .text-container {
  position: absolute;
  width: 60%;
  bottom: 23%;
}
.new-labels .text-container.text18 {
  bottom: 28%;
}
@media (max-width: 1000px) {
  .new-labels .text-container {
    bottom: 19%;
  }
}
.new-labels .text-container .topline {
  font-family: "Parisienne";
  text-align: center;
  width: 100%;
  font-size: 40px;
  line-height: 19px;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}
.new-labels .text-container .topline.line-height {
  line-height: 26px;
}
.new-labels .text-container .topline.larger-lineheight {
  line-height: 26px;
}
@media (max-width: 1000px) {
  .new-labels .text-container .topline.larger-lineheight {
    line-height: 46px;
  }
}
.new-labels .text-container .bottomline {
  display: none;
}

.subhead {
  text-align: center;
}

div#form-input {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parchment {
  margin-top: 10px;
  position: relative;
  width: 100%;
  background-color: #fefcf5;
  font-family: "Soul Signature";
  line-height: 30px;
  text-decoration: none;
  padding: 0;
  color: #121212;
  text-align: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.parchment .text-container {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  justify-content: center;
}
.twentyone .parchment .text-container {
  margin-bottom: -40px;
}
.twentyone .parchment {
  padding: 0;
}
.parchment .container-21yo {
  position: absolute;
  width: 100%;
  margin-top: 0;
}
.exp .parchment {
  padding: 0;
  font-family: "Soul Signature";
}
.parchment .topline {
  width: 96%;
  font-size: 40px;
  margin-top: 10px;
  display: block;
  white-space: nowrap;
}
.twentyone .parchment .topline {
  width: 75%;
}
.exp .parchment .topline {
  position: absolute;
  padding: 0;
  top: 47%;
  left: 50%;
  text-align: left;
  width: 50%;
  font-size: 31px;
  line-height: 33px;
}
@media (max-width: 1000px) {
  .exp .parchment .topline {
    top: 45%;
    left: 50%;
  }
}
@media (max-width: 750px) {
  .exp .parchment .topline {
    top: 46%;
    left: 50%;
  }
}
.parchment .bottomline {
  white-space: nowrap;
  width: 96%;
  font-size: 18px;
}
.twentyone .parchment .bottomline {
  width: 72%;
}
.parchment .batch18 {
  position: absolute;
  bottom: 34px;
  left: 130px;
  font-family: "cera_compact_cyregular";
}
.parchment .batch21 {
  position: absolute;
  top: 65px;
  left: 10%;
  transform: rotate(-90deg);
}

.centered-callout {
  margin-top: -15px;
}

.unique-code {
  display: flex;
}

.code {
  width: 88%;
}

.icon {
  display: flex;
  width: 12%;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.icon a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon img {
  width: 80%;
}

.foot-right-panel {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (max-width: 750px) {
  .foot-right-panel {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.foot-right-panel ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.foot-right-panel ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 30px;
  margin-left: 10px;
}
@media (max-width: 750px) {
  .foot-right-panel ul li {
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.foot-right-panel ul li a {
  text-decoration: none;
}

.mobile-nav {
  padding: 15px 20px;
  min-height: 90px;
  display: none;
}
@media (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav .mobile-logo {
  width: 45px;
  filter: brightness(5.5);
}

menu,
menu a {
  color: #121212;
}
@media (max-width: 1000px) {
  menu,
  menu a {
    color: #ffffff;
  }
}

.menudrop {
  position: fixed;
  top: -100%;
  right: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  background-color: #121212;
  border: 0;
  color: #121212;
  z-index: 1000;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

#hamburger {
  position: fixed;
  top: 24px;
  right: 20px;
  width: 40px;
  height: 50px;
  z-index: 1010;
  cursor: pointer;
}

#hamburger:hover {
  width: 40px;
}

#hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 10px auto;
}

#hamburger {
  transition: 0.3s;
}

menu ul li {
  margin: auto;
  text-transform: uppercase;
  cursor: pointer;
}

menu {
  position: relative;
  text-align: center;
  font-family: "Formula Condensed Regular";
  display: flex;
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 0;
  margin-top: -40px;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
@media (max-width: 1000px) {
  menu {
    margin-top: 0px;
  }
}
menu ul {
  margin: 0;
  padding: 0;
}
menu ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 24px;
  line-height: 60px;
  letter-spacing: 1px;
}
menu ul li a {
  text-decoration: none;
}

.badge {
  width: 80%;
  display: none;
}

ol.about-lists {
  margin: 0 0 0 20px;
  padding: 0;
}
ol.about-lists li {
  line-height: 25px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .row {
    flex-direction: column;
  }
}
.row div:nth-child(1) {
  width: 48%;
}
.row div:nth-child(2) {
  width: 50%;
}
@media (max-width: 1200px) {
  .row div:nth-child(1), .row div:nth-child(2) {
    width: 100%;
  }
}

ul.af_list {
  display: flex;
  z-index: 500;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  margin-top: 2px;
}
ul.af_list li {
  list-style-type: none;
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
  display: block;
}
ul.af_list li:last-child {
  border-bottom: 0;
}
.form-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 800px) {
  .form {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.form-item {
  flex-basis: 100%;
  color: #000;
}
@media (max-width: 800px) {
  .form-item {
    width: 100%;
  }
}
.form-item.half {
  flex-basis: 49%;
}
@media (max-width: 800px) {
  .form-item.half {
    width: 100%;
  }
}
.form-item.third {
  flex-basis: 32%;
}
@media (max-width: 800px) {
  .form-item.third {
    width: 100%;
  }
}

#trcode {
  text-align: center;
  font-family: "Agrandir Regular", sans-serif;
  font-size: 20px;
}

.holdpage-logo {
  width: 80px;
}

.emojionearea,
input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
textarea {
  padding: 15px 20px 10px;
  border: 0px solid #000;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #121212;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 100%;
  font-size: 16px;
  border-radius: 0;
  display: inline-block;
}
.emojionearea.select,
input[type=text].select,
input[type=email].select,
input[type=password].select,
input[type=number].select,
select.select,
textarea.select {
  height: 37px !important;
  padding: 0 15px !important;
  border-radius: 0px !important;
  background-color: #fff;
  color: #121212 !important;
}
.entry-form .emojionearea,
.entry-form input[type=text],
.entry-form input[type=email],
.entry-form input[type=password],
.entry-form input[type=number],
.entry-form select,
.entry-form textarea {
  font-family: "Agrandir Regular", sans-serif;
  text-align: center;
  padding: 20px;
}
.emojionearea::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #121212;
}

input[type=checkbox] {
  box-sizing: border-box;
  margin: 5px 0;
}

.multilingual-callout {
  margin: 0 0 10px 0;
}

.info-icon {
  width: 15px;
  display: inline-block;
  margin-right: 5px;
}

.emojionearea .emojionearea-editor:empty:before {
  content: attr(placeholder);
  display: block;
  color: #121212;
}

.emojionearea.emojionearea-inline {
  height: 60px;
}

.emojionearea.emojionearea-inline > .emojionearea-editor {
  top: 12px;
}

.emojionearea.emojionearea-inline > .emojionearea-button {
  top: 16px;
}

.emojionearea .emojionearea-button.active + .emojionearea-picker-position-bottom {
  margin-top: 12px;
}

textarea {
  height: 180px;
}

input[type=submit] {
  background-color: rgba(0, 0, 0, 0);
  font-family: "Formula Condensed Regular", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  padding: 15px 50px 7px;
  border: 2px solid #121212;
  color: #121212;
  transition: all 0.5s;
  margin-top: 10px;
}
input[type=submit]:hover {
  background-color: #121212;
  color: #fff;
  cursor: pointer;
}

button {
  background-color: rgba(0, 0, 0, 0);
  font-family: "Formula Condensed Regular", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  padding: 15px 50px 7px;
  border: 2px solid #121212;
  color: #121212;
  transition: all 0.5s;
  margin-top: 10px;
}
button:hover {
  background-color: #121212;
  color: #fff;
  cursor: pointer;
}

a.btn {
  background-color: rgba(0, 0, 0, 0);
  font-family: "Formula Condensed Regular", sans-serif;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 23px;
  padding: 15px 7px 10px;
  transition: all 0.5s;
  margin-top: 10px;
  color: #000000;
  border-bottom: 1px solid;
  text-decoration: none;
}
a.btn:hover {
  cursor: pointer;
}
a.btn.white {
  color: #ffffff;
}

label.error {
  width: 100%;
  padding-bottom: 15px;
  color: #121212;
}

section.faq {
  margin-bottom: 10px;
}
section.faq .question {
  font-family: "Agrandir Regular";
  margin-bottom: 4px;
  margin-top: 6px;
}

.accordion {
  width: 100%;
  display: block;
  margin-bottom: 50px;
}
.accordion ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
.accordion ul article {
  padding: 30px;
  background-color: #ffffff;
  border-right: 1px solid #121212;
  border-left: 1px solid #121212;
  border-bottom: 1px solid #121212;
  width: 100%;
}
.accordion ul article figure {
  margin: 0;
}
.accordion ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.accordion ul li a {
  display: block;
  background-color: #121212;
  padding: 15px 30px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  font-family: "Formula Condensed Regular", sans-serif;
  font-size: 20px;
}
.accordion ul li a:hover {
  background-color: #050505;
}
.accordion ul li a.active {
  margin-bottom: 0;
  background-color: #121212;
  color: #fff;
}

.fancybox-slide {
  background-color: #121212;
}

.fancybox-content {
  width: 800px !important;
  height: 800px !important;
}

.ageGateBg {
  background-color: #121212;
  color: white;
  overflow: hidden;
}
.ageGateBg img {
  max-width: 100%;
}

input:focus {
  outline: none;
}

.ageGate2 {
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #000;
}
.ageGate2 h2 {
  color: white;
  font-size: 70px;
}
@media (max-width: 600px) {
  .ageGate2 h2 {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  .ageGate2 h2 {
    font-size: 40px;
  }
}
.ageGate2 svg.stag {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  opacity: 0.2;
}
.ageGate2 p {
  margin: 1em 0;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
@media (max-width: 600px) {
  .ageGate2 p {
    font-size: 17px;
  }
}
.ageGate2 #age-form {
  margin: 0;
  padding: 30px;
}
.ageGate2 .ccLogo {
  width: 60%;
  max-width: 250px;
  margin: 0 auto;
  padding-top: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}
.ageGate2 .drawTheLine {
  width: 40%;
  max-width: 120px;
  margin: 50px auto 0;
}
.ageGate2 div.inputs {
  display: block;
  width: 300px;
  margin: 0 auto;
  overflow: auto;
  padding: 10px 0;
}
.ageGate2 div.ageGate2 h1 {
  margin: 5px 0;
}
.ageGate2 .ageCountry {
  float: left;
}
.ageGate2 select {
  width: 186px;
  padding: 2px;
}
.ageGate2 .ageDay {
  float: left;
  width: 24%;
  display: inline-block;
  margin-right: 1%;
}
.ageGate2 .ageDay input {
  width: 100%;
}
.ageGate2 .ageDay input:focus {
  box-shadow: inset 0 0 0 1px #000;
}
.ageGate2 .ageMonth {
  float: left;
  width: 24%;
  display: inline-block;
  margin-right: 1%;
}
.ageGate2 .ageMonth input {
  width: 100%;
}
.ageGate2 .ageMonth input:focus {
  box-shadow: inset 0 0 0 1px #000;
}
.ageGate2 .ageYear {
  float: left;
  width: 50%;
  display: inline-block;
}
.ageGate2 .ageYear input {
  width: 100%;
}
.ageGate2 .ageYear input:focus {
  box-shadow: inset 0 0 0 1px #000;
}
.ageGate2 input[type=numeric] {
  font-size: 29px;
  background-position: center;
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  text-align: center;
  padding: 8px 8px 3px;
  border: none;
  border-bottom: 1px solid;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .ageGate2 input[type=numeric] {
    font-size: 24px;
  }
}
.ageGate2 input[type=submit] {
  border: 1px solid #efefef;
  display: block;
  float: left;
  margin-top: 15px;
  padding: 10px 40px;
  margin-bottom: 0;
  border: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  border-radius: 0;
  font-weight: 600;
  width: 100%;
  border-bottom: 1px solid;
}
.ageGate2 input[type=submit]:hover {
  background-color: black;
}
.ageGate2 input[type=number]::-webkit-inner-spin-button,
.ageGate2 input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ageGate2 .marBott {
  padding-bottom: 10px;
}
.ageGate2 label {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}
.ageGate2 select {
  outline: none;
  background: none repeat scroll 0 0 #fdf9e3;
  border: medium none;
  color: #4b4b45;
  height: 24px;
  padding: 2px;
  font-size: 13px;
}
.ageGate2 #hiddenDiv {
  background-color: #121212;
  color: #fff;
  padding: 10px 50px;
  margin: 3px 0;
  font-size: 14px;
}
.ageGate2 .fancybox-bg {
  background: #888;
}
.ageGate2 .fancybox-is-open .fancybox-bg {
  opacity: 1;
}
.ageGate2 .age-gate-logo {
  width: 280px;
  margin: auto;
}
.ageGate2 .right {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .ageGate2 {
    text-align: center;
    min-height: 370px;
    margin: 20px 5%;
    box-sizing: border-box;
    width: 90%;
  }
  .ageGate2 #hiddenDiv {
    padding: 8px 20px;
    margin: 3px 0;
    font-size: 12px;
  }
  .ageGate2 .ccLogo {
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
    padding-top: 0;
    margin-bottom: 20px;
  }
  .ageGate2 .drawTheLine {
    width: 40%;
    max-width: 120px;
    margin: 20px auto 0;
  }
  .ageGate2 div.inputs {
    display: block;
    width: 300px;
    margin: 0 auto;
    overflow: auto;
    padding: 10px 0;
    font-size: 18px;
  }
  .ageGate2 div.ageGate2 h1 {
    margin: 5px 0;
  }
  .ageGate2 div.inputs {
    display: block;
    width: 236px;
    margin: 0 auto;
    overflow: auto;
    padding: 10px 0;
  }
  .ageGate2 .ageDay {
    float: left;
  }
  .ageGate2 .ageDay input {
    width: 100%;
  }
  .ageGate2 .ageMonth {
    float: left;
  }
  .ageGate2 .ageMonth input {
    width: 100%;
  }
  .ageGate2 .ageYear {
    float: left;
  }
  .ageGate2 .ageYear input {
    width: 100%;
  }
}
.banner {
  height: 60vh;
  position: relative;
  background-size: cover;
  width: 100%;
  background-position: center 30%;
}
.banner h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  color: #ffffff;
  font-size: 4.5vw;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 40px BLACK;
  text-align: center;
}
@media (max-width: 1000px) {
  .banner h1 {
    font-size: 3.5em;
    text-shadow: none;
  }
}

.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  width: 100%;
  text-align: center;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 16px 20px;
  font-size: 16px;
  text-transform: uppercase;
  align-self: center;
  /* 10px 20px */
}
@media (max-width: 700px) {
  .inputfile + label {
    padding: 20px 0px;
  }
}

.no-js .inputfile + label {
  display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */
}

/* style 1 */
.inputfile-1 + label {
  color: #ffffff;
  background: #121212;
  border-radius: 2px;
  transition: all 0.3s;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background: #785138;
  cursor: pointer;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.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: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.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: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    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;
  }
}
