* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
@page {
  size: A4;
  /* auto is the initial value */
  /* this affects the margin in the printer settings */
  margin: 0.25in 0 0.5in 0;
}
body {
  font-family: open-sans, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #484848;
  position: relative;
}
@media print {
  body {
    margin: 0;
  }
}
a {
  color: #a2120f;
  text-decoration: none;
}
a:hover {
  color: #eb2f2c;
  text-decoration: underline;
}
a h2 {
  color: black;
}
.button {
  display: inline-block;
  background: #a2120f;
  padding: 0.5rem 1rem;
  margin: 0;
  border: 0px;
  font-size: 18px;
  line-height: 1em;
  font-family: open-sans-condensed, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  -webkit-appearance: none;
  text-decoration: none !important;
}
.button:hover {
  cursor: pointer;
  color: #fff;
  background: #d11713;
}
.button.fullprofile {
  margin: 20px 0 0 0;
}
@media print {
  .button.fullprofile {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .button {
    font-size: 13px;
    font-weight: bold;
  }
}
.hero {
  width: 100%;
  height: 440px;
  background: #f2f2f2;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 420px) {
  .hero {
    height: 200px;
  }
}
.hero h1 {
  position: absolute;
  bottom: 30px;
  left: 0;
  color: #fff;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.skiplink:focus {
  text-align: center;
  position: relative;
  background-color: white;
  z-index: 999;
}
.content {
  background: #fff;
  position: relative;
  z-index: 1;
  /* Single Product Overview page*/
  /* this is actually the half-assed organization of the two columns on product detail page */
}
@media only screen and (max-width: 420px) {
  .content {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.content .wrap {
  padding: 18px 9px;
  background: #ffffff;
}
@media only screen and (max-width: 420px) {
  .content .wrap {
    padding: 18px 0;
  }
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  line-height: 1em;
}
.content h1 {
  font-family: lora, serif;
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 0.5em 0;
  position: relative;
}
@media only screen and (max-width: 420px) {
  .content h1 {
    font-size: 24px;
    margin: 0 0 12px 0;
  }
}
.content h2 {
  font-family: lora, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px 0;
}
.content h2 .inlineButton {
  bottom: 3px;
}
@media only screen and (max-width: 420px) {
  .content h2 {
    font-size: 20px;
  }
}
.content h3 {
  font-family: lora, serif;
  color: black;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 1em 0;
}
.content h3.category_title {
  font-size: 26px;
  line-height: 1em;
}
.content h3.breadcrumbs {
  font-size: 13px;
  font-family: open-sans, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 0.5em;
}
.content h4 {
  font-family: open-sans, sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 0 0;
  color: #999;
}
.content ul,
.content ol {
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 20px 0;
}
.content ul {
  list-style-type: disc;
  margin: 0 0 20px 20px;
}
.content p {
  font-weight: 300;
  margin: 0 0 20px 0;
}
.content p.note {
  font-size: 11px;
  font-style: italic;
  font-weight: bold;
}
.content p a {
  color: #a2120f;
  font-weight: 700;
}
@media print {
  .content p a {
    color: inherit;
  }
}
.content img.left {
  width: 50%;
  margin: 0 20px 10px 0;
}
.content .catalogue {
  float: right;
}
@media only screen and (max-width: 420px) {
  .content .catalogue {
    font-size: 12px;
  }
}
@media print {
  .content .catalogue {
    display: none;
  }
}
.content .catalogue i {
  margin-right: 10px;
}
.content .product-overview {
  /* How the "card" displays on the product page */
}
.content .product-overview .banner {
  position: relative;
  line-height: 0;
  min-height: 300px;
  margin: 0 0 20px 0;
  overflow: hidden;
}
@media only screen and (max-width: 420px) {
  .content .product-overview .banner {
    min-height: 0;
    position: relative;
  }
}
@media print {
  .content .product-overview .banner {
    min-height: 0;
    height: auto;
    margin: 0;
  }
}
@media only screen and (max-width: 420px) {
  .content .product-overview .banner img {
    display: none;
  }
}
@media print {
  .content .product-overview .banner img {
    display: none;
  }
}
.content .product-overview .banner .product-name {
  width: 100%;
  position: absolute;
  padding: 20px;
  left: 0px;
  bottom: 0px;
  color: #fff;
}
@media print {
  .content .product-overview .banner .product-name {
    background: none;
    position: relative;
    color: black;
    text-shadow: none;
  }
}
@media only screen and (max-width: 420px) {
  .content .product-overview .banner .product-name {
    background: none;
    position: relative;
    color: black;
    text-shadow: none;
  }
  .content .product-overview .banner .product-name h3 {
    color: black;
    text-shadow: none;
  }
}
.content .product-overview .banner .product-name h1 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  margin: 0;
  line-height: 1em;
}
@media print {
  .content .product-overview .banner .product-name h1 {
    background: none;
    position: relative;
    color: black;
    text-shadow: none;
  }
}
@media only screen and (max-width: 420px) {
  .content .product-overview .banner .product-name h1 {
    background: none;
    position: relative;
    color: black;
    text-shadow: none;
  }
}
.content .product-overview .banner .product-name h3 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  line-height: 1em;
  position: relative;
  z-index: 20;
}
.content .product-overview .banner .product-name h3 a {
  color: #fff;
}
@media print {
  .content .product-overview .banner .product-name h3 {
    background: none;
    position: relative;
    color: black;
    text-shadow: none;
  }
  .content .product-overview .banner .product-name h3 a {
    color: black;
  }
}
@media only screen and (max-width: 420px) {
  .content .product-overview .banner .product-name h3 {
    background: none;
    position: relative;
    color: black;
    text-shadow: none;
  }
  .content .product-overview .banner .product-name h3 a {
    color: black;
  }
}
.content .product-overview .nobanner {
  min-height: 0;
  position: relative;
}
.content .product-overview .nobanner .product-name {
  background: none;
  position: relative;
  color: black;
  text-shadow: none;
}
.content .product-overview .nobanner .product-name h3 {
  color: black;
  text-shadow: none;
}
@media print {
  .content .product-overview .nobanner .product-name h3 {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .content .product-overview .artwork {
    width: 100%;
    margin: 1em 0;
  }
}
.content .product-overview .artwork .columnA,
.content .product-overview .artwork .columnB {
  width: 47%;
  float: left;
}
.content .product-overview .artwork .columnB {
  float: left;
  margin-left: 1em;
}
.content .product-overview .artwork figure {
  margin: 0 1em 1em 0;
}
.content .product-overview .artwork img {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
}
.content .product-overview .products .type-product {
  padding: 0;
}
@media only screen and (max-width: 420px) {
  .content div.recipes {
    width: 100%;
    margin: 1em 0;
  }
}
.content div.recipes .columnA,
.content div.recipes .columnB {
  width: 47%;
  float: left;
}
.content div.recipes .columnB {
  float: left;
  margin-left: 1em;
}
.content div.recipes .recipe {
  background: #f3f3f3;
  padding: 0.5em;
  margin: 0 0 1em 0;
  font-size: 11px;
  vertical-align: top;
}
.content div.recipes .recipe h4 a {
  color: black;
}
.content div.recipes .recipe h4 {
  font-family: open-sans, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5em;
}
.content div.recipes .recipe p {
  font-family: open-sans, sans-serif;
  font-size: 11px;
  margin: 0 0 10px 0;
}
.content div.recipes .recipe p:last-child {
  margin: 0;
}
.content .recipeFull {
  background-color: #edece8;
  padding: 1em;
  max-width: 480px;
  line-height: 1;
  margin-bottom: 2em;
  font-size: 14px;
  font-family: open-sans, sans-serif;
}
.content .recipeFull span.recIcon {
  display: inline-block;
  float: right;
  font-size: 14px;
}
.content .recipeFull h1 {
  font-size: 27px;
  margin-bottom: 1em;
}
.content .recipeFull p {
  margin-bottom: 1em;
  line-height: 1.3;
}
.content .recipeFull img {
  margin: 0;
}
.content .recipeFull .measure {
  margin-left: 1.5em;
}
.content .recipeFull p.attribution {
  margin-top: 2em;
  margin-bottom: 0;
  font-style: italic;
}
@media only screen and (max-width: 420px) {
  .content .recipeFull h1 {
    font-size: 24px;
  }
}
.content .photoattribution {
  display: block;
  position: relative;
  font-size: 70%;
  color: #666666;
  text-align: left;
  top: -3px;
}
.content .recipePhoto {
  max-width: 480px;
  padding-left: 1em;
  float: right;
}
.content .recipePhoto img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .content .recipePhoto {
    float: none;
    padding: 0;
    margin-bottom: 0.25em;
    margin-top: 0.25em;
  }
}
.content .recipePhotoNarrow {
  width: 480px;
  height: 480px;
  padding-left: 1em;
  float: right;
  text-align: left;
}
.content .recipePhotoNarrow img {
  height: 100%;
  max-height: 460px;
  width: auto;
}
@media only screen and (max-width: 420px) {
  .content .recipePhotoNarrow {
    width: 100%;
    height: 320px;
    float: none;
    padding: 0;
    margin-bottom: 0.5em;
    margin-top: 0.25em;
  }
  .content .recipePhotoNarrow img {
    height: 300px;
    width: auto;
  }
}
.content .main {
  width: 750px;
  float: right;
  margin-left: 18px;
}
@media only screen and (max-width: 420px) {
  .content .main {
    float: none;
    width: 100%;
  }
}
@media print {
  .content .main {
    width: 100%;
  }
}
.content .main.fullwidth {
  width: 100%;
  float: none;
  margin: 0;
}
.content .main.halfwidth {
  width: 366px;
  float: left;
  margin: 0;
}
@media only screen and (max-width: 420px) {
  .content .main.halfwidth {
    width: 100%;
    padding: 2%;
  }
}
.content .main figure.right {
  width: 80%;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.content #map_canvas {
  width: 100%;
  height: 300px;
  margin: 0 0 18px 0;
  page-break-inside: avoid;
}
.content .sidebar {
  width: 174px;
  float: left;
  margin: 0 0 0 0;
}
@media only screen and (max-width: 420px) {
  .content .sidebar {
    float: none;
    width: 100%;
  }
}
.content .sidebar.halfwidth {
  width: 558px;
  float: right;
}
@media only screen and (max-width: 420px) {
  .content .sidebar.halfwidth {
    width: 100%;
    padding: 2%;
  }
}
@media print {
  .content .sidebar.product-nav {
    display: none;
  }
}
#productSummaryContainer {
  margin: 0.5em 0 0.5em 0;
  border-top: 2px solid #dddcd8;
  margin-top: 0.5em;
  padding-top: 1em;
}
section header {
  position: relative;
}
header.producerindex h1 {
  margin-bottom: 0;
}
header.producerindex p.categorization {
  margin-top: 0;
  margin-bottom: 1em;
  text-transform: uppercase;
  font-size: 90%;
}
header.producerindex .images {
  width: 500px;
  float: right;
  text-align: center;
}
header.producerindex .images img {
  width: 100%;
}
header.producerindex .images figure.logo {
  width: 100%;
  margin: 1em auto 1em auto;
}
@media only screen and (max-width: 420px) {
  header.producerindex .images figure.logo {
    line-height: 1;
  }
}
@media only screen and (max-width: 420px) {
  header.producerindex .images {
    width: 50%;
    float: right;
  }
}
.catblurb h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0.75em;
  margin-bottom: 0.25em;
}
.catblurb figure.left2 {
  width: 50%;
  float: left;
  margin-right: 1em;
  margin-bottom: 0;
}
.catblurb figure.right2 {
  width: 50%;
  float: right;
  margin-left: 1em;
  margin-bottom: 0;
}
.catblurb .images {
  width: 50%;
  float: right;
  margin-left: 0.5em;
}
.catblurb .images img {
  width: 100%;
}
.catblurb .blurb {
  width: 450px;
}
.catblurb .blurb figure img {
  width: 100%;
  height: auto;
}
.catblurb .blurb figure.left {
  width: 30%;
  float: left;
}
.catblurb .blurb figure.right {
  width: 30%;
  float: right;
}
@media only screen and (max-width: 420px) {
  .catblurb .blurb {
    width: 100%;
  }
}
.catblurb .producerTrio {
  clear: both;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.catblurb .producerTrio figure {
  display: block;
  width: 33%;
  height: 230px;
  overflow: hidden;
}
.catblurb .producerTrio figure img {
  margin: 0;
}
@media only screen and (max-width: 420px) {
  .catblurb .producerTrio figure {
    width: 49%;
    height: auto;
  }
}
.catblurb .producerTrio figure.placeImage {
  margin-right: 4px;
}
@media only screen and (max-width: 420px) {
  .catblurb .producerTrio figure.placeImage {
    margin-right: 0;
  }
}
.catblurb .producerTrio figure.processImage {
  margin-right: 4px;
}
@media only screen and (max-width: 420px) {
  .catblurb .producerTrio figure.processImage {
    float: right;
  }
}
@media only screen and (max-width: 420px) {
  .catblurb .producerTrio figure.peopleImage {
    float: right;
  }
}
.catblurb figure {
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
}
.catblurb figure img {
  width: 100%;
}
@media only screen and (max-width: 420px) {
  .catblurb figure img {
    width: 100%;
  }
}
.catblurb figure.left {
  width: 33%;
  float: left;
}
.catblurb figure.left img {
  width: 100%;
}
@media only screen and (max-width: 420px) {
  .catblurb figure.left {
    width: 100%;
  }
}
.catblurb figure.right {
  width: 33%;
  float: right;
}
.catblurb figure.right img {
  width: 100%;
}
@media only screen and (max-width: 420px) {
  .catblurb figure.right {
    width: 100%;
  }
}
.catblurb.longform {
  -moz-column-count: 2;
  column-count: 2;
  column-gap: 1.5em;
}
@media print {
  .catblurb.longform {
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (max-width: 420px) {
  .catblurb.longform {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.catblurb.longform .blurb {
  width: 100%;
}
.catblurb.longform .blurb p {
  margin-bottom: 0.5em;
}
.catblurb.longform .box {
  clear: both;
  background-color: #edece8;
  padding: 0.5em 0.75em;
}
.features figure {
  position: relative;
  width: 100%;
  border: 4px solid white;
}
.features figure img {
  width: 100%;
  height: auto;
}
.features .secondfeatures figure {
  width: 50%;
  float: left;
}
@media only screen and (max-width: 420px) {
  .features .secondfeatures figure {
    float: none;
    width: 100%;
  }
}
.features figure div.caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 20%;
  color: white;
  font-size: 240%;
  line-height: 1;
  padding: 0.5em;
  baseline: bottom;
  font-weight: bold;
}
.features .secondfeatures figure .caption {
  font-size: 125%;
  width: 100%;
}
.folded {
  display: none;
}
.expandable {
  overflow: hidden;
  max-height: 7.25em;
  border-bottom: 2px solid black;
  position: relative;
  transition: max-height 1s;
}
.morebutton {
  font-family: nav-font;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  font-size: 80%;
  border: 2px solid black;
  background-color: white;
  text-align: center;
  position: relative;
  top: -2px;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  padding: 0.25em 1em;
}
@media only screen and (max-width: 420px) {
  .morebutton {
    font-size: 12px;
  }
}
.fullsetuptable {
  font-family: open-sans-condensed, sans-serif;
  border-collapse: collapse;
}
.fullsetuptable td {
  padding-right: 0.5em;
  padding-top: 2px;
  padding-bottom: 2px;
  border-bottom: 1px solid #edece8;
}
.fullsetuptable tr.end--product td,
.fullsetuptable td.merged {
  border-bottom: 1px solid #dddcd8;
}
.fullsetuptable .product--name {
  font-weight: bold;
}
.fullsetuptable th {
  font-weight: bold;
  padding-right: 0.5em;
  background-color: #edece8;
  text-align: left;
}
.fullsetuptable .downloads {
  padding-inline: 1em;
}
.fullsetuptable .downloads .setupDownload {
  color: #a2120f;
  margin: 3px 3px;
}
.fullsetuptable .downloads .setupDownload:hover {
  color: white;
}
.producerSetup h2 {
  margin-top: 0.5em;
  margin-bottom: 0.25em;
  font-weight: bold;
}
.producerSetup h2 a {
  color: black;
}
.producerSetup h2 a:hover {
  color: #eb2f2c;
}
.producerSetup h3 {
  margin-top: 1em;
  margin-bottom: 0;
  padding: 0.5em;
  background-color: #edece8;
}
.producerSetup h3 a {
  color: black;
}
.producerSetup h3 a:hover {
  color: #eb2f2c;
}
.producerSetup p {
  margin-bottom: 0.5em;
}
.producerSetup .setup {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.producerSetup .setup2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: lora, serif;
}
.producerSetup .setup2 div {
  display: inline-block;
  margin: 1px;
  background: #edece8;
  padding: 1px 0.5em;
  font-weight: bold;
}
.producerSetup .setup2 div .fieldname {
  text-transform: uppercase;
  display: block;
  color: #000000;
  font-weight: normal;
}
.producerSetup .setup2 div.sku {
  background-color: #dddcd8;
}
.setupDownload {
  display: inline-block;
  border: 1px solid #a2120f;
  padding: 4px 9px;
  margin: 0;
  font-size: 13px;
  line-height: 1em;
  font-family: open-sans, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #a2120f;
  -webkit-appearance: none;
  text-decoration: none !important;
}
.setupDownload:hover {
  cursor: pointer;
  color: #fff;
  background: #a2120f;
}
.setupDownload.fullprofile {
  margin: 20px 0 0 0;
}
@media print {
  .setupDownload.fullprofile {
    display: none;
  }
}
#imageryReport .thumbnail img {
  height: 250px;
  float: right;
}
#imageryReport h2 {
  margin-top: 1em;
}
#imageryReport .thumbnail {
  margin-bottom: 1em;
  max-width: 800px;
}
#imageryReport .thumbnail img.wide {
  height: auto;
  width: 250px;
}
#tabularnav a {
  margin-right: 0.75em;
}
@media only screen and (max-width: 420px) {
  #tabularnav a {
    margin-right: 0.25em;
  }
}
#tabularnav a:hover {
  color: red;
}
#matchesAnnotation {
  font-weight: bold;
  margin-top: 1em;
}
.recipesConcise {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 1em;
}
@media only screen and (max-width: 420px) {
  .recipesConcise {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0.5em;
  }
}
article.product + .recipesConcise :nth-child(n+6) {
  display: none;
}
@media only screen and (max-width: 420px) {
  article.product + .recipesConcise :nth-child(6) {
    display: block;
  }
  article.product + .recipesConcise :nth-child(n+7) {
    display: none;
  }
}
.recipeConcise {
  font-family: open-sans, sans-serif;
  font-size: 12px;
  padding-bottom: 1em;
}
.recipeConcise p {
  margin-bottom: 3px;
  line-height: 1.2;
}
.recipeConcise p.measure {
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.recipeConcise h4 {
  font-family: lora, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 14px;
  margin-bottom: 0.5em;
}
.recipeConcise h4 a {
  color: black;
}
.recipeConcise .recipeThumb {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
  background-size: cover;
  background-position: top;
}
.recipeConcise .recipeThumb img {
  width: 100%;
  height: auto;
}
@media print {
  .recipeConcise .recipeThumb {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .recipeConcise .recipeThumb {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .recipeConcise .recipeThumb img {
    height: 120px;
    width: auto;
  }
}
.recipeConcise .recipeThumb a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.recipeConcise .recipeThumbNarrow {
  width: 180px;
  height: 190px;
  text-align: left;
}
.recipeConcise .recipeThumbNarrow img {
  height: 140px;
  width: auto;
}
@media print {
  .recipeConcise .recipeThumbNarrow {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .recipeConcise .recipeThumbNarrow {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .recipeConcise .recipeThumbNarrow img {
    height: 120px;
    width: auto;
  }
}
.recipeConcise .recipeThumbPlaceholder {
  width: 180px;
  height: 190px;
}
.recipeConcise .recipeThumbPlaceholder a {
  text-decoration: none;
}
.recipeConcise .recipeThumbPlaceholder .recipeThumbPlaceholderBkgd {
  width: 180px;
  height: 180px;
  background-color: #edece8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 420px) {
  .recipeConcise .recipeThumbPlaceholder .recipeThumbPlaceholderBkgd {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
@media print {
  .recipeConcise .recipeThumbPlaceholder {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .recipeConcise .recipeThumbPlaceholder {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
  }
}
.mainalt {
  width: 100%;
}
.inlineButton {
  display: inline-block;
}
.inlineButton,
#recipeFiltersMoreButton {
  text-transform: uppercase;
  font-family: open-sans, sans-serif;
  font-weight: 700;
  color: #a2120f;
  padding-left: 6px;
  padding-right: 6px;
  border: 1px solid #a2120f;
  font-size: 12px;
  line-height: 15px;
  position: relative;
  bottom: 0px;
}
@media print {
  .inlineButton,
  #recipeFiltersMoreButton {
    display: none;
  }
}
a.inlineButton:hover,
#recipeFiltersMoreButton:hover {
  color: white;
  background-color: #a2120f;
  text-decoration: none;
}
.socialIcons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.socialIcons a {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.socialIcons a:last-child {
  margin-right: 0;
}
.socialIcons > div,
span.socialButton {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  padding: 0 9px;
}
span.socialButton {
  background-color: #a2120f;
  color: white;
  font-family: open-sans, sans-serif;
  font-weight: 200;
  border-radius: 17px;
  text-transform: uppercase;
  font-size: 13px;
  height: 32px;
  margin-top: 3px;
  margin-bottom: 2px;
}
img.socialButton {
  vertical-align: bottom;
  height: 37px;
}
.generalTable {
  border-collapse: collapse;
}
.generalTable th {
  font-weight: bold;
  text-align: left;
}
.generalTable th,
.generalTable td {
  vertical-align: top;
  padding: 0.5em 1em;
}
.generalTable tr.section td {
  border-top: 1px solid #bbbbbb;
}
@media only screen and (max-width: 420px) {
  .distState {
    vertical-align: bottom;
    text-align: center;
  }
  .distState div {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }
}
.generalForm {
  display: block;
  background-color: #edece8;
  padding: 1em;
}
@media only screen and (max-width: 420px) {
  .generalForm {
    padding: 0.5em 0.5em;
  }
}
.generalForm p {
  margin-bottom: 0.5em;
}
.generalForm label {
  font-size: 11px;
  display: block;
}
.generalForm input[type=text] {
  width: 30em;
  font-size: 14px;
}
@media only screen and (max-width: 420px) {
  .generalForm input[type=text] {
    font-size: 12px;
    width: 100%;
  }
}
.info {
  margin: 0.5em 0;
}
.info .infoicon {
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: top;
}
@media only screen and (max-width: 420px) {
  .info .infoicon {
    display: block;
    float: left;
  }
}
.info .infoicon .icon {
  margin: 0;
  height: 36px;
}
.info .infotext {
  margin-left: 0.5em;
  height: 36px;
  display: inline-block;
  line-height: 36px;
  vertical-align: top;
}
@media only screen and (max-width: 420px) {
  .info .infotext {
    display: block;
    line-height: inherit;
    height: auto;
    margin-left: 45px;
  }
}
ul.originTiles {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}
ul.originTiles li {
  vertical-align: top;
  margin: 0;
  width: 150px;
  display: inline-block;
  height: 189px;
  margin-right: 6px;
  font-family: lora, serif;
}
@media only screen and (max-width: 420px) {
  ul.originTiles li {
    font-size: 80%;
    width: 120px;
    height: 160px;
  }
}
ul.originTiles li .maplet {
  position: relative;
  width: 150px;
  height: 150px;
  padding: 0.5em;
  border: 2px solid #ddd;
  margin-bottom: 0;
  vertical-align: middle;
}
ul.originTiles li .maplet img {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 420px) {
  ul.originTiles li .maplet {
    width: 120px;
    height: 120px;
  }
}
ul.originTiles li a:hover .maplet {
  border-color: #eb2f2c;
}
ul.originTiles li a:hover {
  text-decoration: none;
}
ul.producerTilesLarge {
  margin-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
ul.producerTilesLarge li {
  display: flex;
  flex-basis: 15%;
  font-family: open-sans, sans-serif;
  padding-bottom: 1em;
}
ul.producerTilesLarge li a:hover .logo {
  border-color: #eb2f2c;
}
ul.producerTilesLarge li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 420px) {
  ul.producerTilesLarge li {
    flex-basis: 32%;
  }
}
ul.producerTilesLarge li .logo {
  display: flex;
  border: 2px solid #ddd;
  padding: 0.5em;
  width: 14vw;
  height: 14vw;
  align-items: center;
}
ul.producerTilesLarge li .logo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 420px) {
  ul.producerTilesLarge li .logo {
    width: 30vw;
    height: 30vw;
  }
}
ul.producerTiles {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}
ul.producerTiles li {
  vertical-align: top;
  margin: 0;
  width: 110px;
  height: 146px;
  display: inline-block;
  margin-right: 6px;
  font-family: open-sans, sans-serif;
  font-size: 11px;
  line-height: 11px;
}
ul.producerTiles li .logo {
  position: relative;
  width: 110px;
  height: 110px;
  padding: 0.5em;
  border: 2px solid #ddd;
  margin-bottom: 0;
  vertical-align: middle;
}
ul.producerTiles li .logo img {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
ul.producerTiles li a:hover .logo {
  border-color: #eb2f2c;
}
ul.producerTiles li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 420px) {
  ul.producerTiles {
    margin-left: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  ul.producerTiles li {
    display: flex;
    flex-basis: 30%;
    font-family: lora, serif;
    margin-bottom: 1em;
    margin-right: 0;
  }
  ul.producerTiles li a:hover .logo {
    border-color: #eb2f2c;
  }
  ul.producerTiles li a:hover {
    text-decoration: none;
  }
  ul.producerTiles li .logo {
    display: flex;
    border: 2px solid #ddd;
    padding: 0.5em;
    width: 29vw;
    height: 29vw;
    align-items: center;
  }
  ul.producerTiles li .logo img {
    width: 100%;
    height: auto;
    position: inline;
    top: 0;
    transform: none;
  }
}
.country {
  clear: both;
  margin-bottom: 1em;
  min-height: 288px;
}
.country h2 {
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 420px) {
  .country .logoCorral {
    margin-left: 0;
  }
}
.mapPresentation,
.producerDetailMap,
.productDetailMasterMap {
  position: relative;
  float: right;
  margin-left: 1em;
  margin-right: 0;
}
@media only screen and (max-width: 420px) {
  .mapPresentation,
  .producerDetailMap,
  .productDetailMasterMap {
    float: none;
    margin: 0 0 0.5em 0.5em;
  }
}
.mapPresentation .mapAttribution,
.producerDetailMap .mapAttribution,
.productDetailMasterMap .mapAttribution {
  font-family: open-sans-condensed, sans-serif;
  display: block;
  position: relative;
  font-size: 70%;
  color: #666666;
  text-align: right;
  top: -3px;
}
.mapPresentation .customMap,
.producerDetailMap .customMap,
.productDetailMasterMap .customMap {
  width: 455px;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .mapPresentation .customMap,
  .producerDetailMap .customMap,
  .productDetailMasterMap .customMap {
    width: 100%;
    height: auto;
  }
}
.mapPresentation .customMapSVG,
.producerDetailMap .customMapSVG,
.productDetailMasterMap .customMapSVG {
  width: 455px;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .mapPresentation .customMapSVG,
  .producerDetailMap .customMapSVG,
  .productDetailMasterMap .customMapSVG {
    width: 100%;
    height: auto;
  }
}
figure.productDetailMasterMap {
  width: 50%;
}
@media only screen and (max-width: 420px) {
  figure.productDetailMasterMap {
    float: right;
  }
}
figure.productDetailMasterMap .customMap {
  width: 100%;
  height: auto;
}
@media print {
  figure.productDetailMasterMap {
    width: 50%;
  }
}
.originGmap,
.countryDetailGmap {
  width: 360px;
  float: right;
  position: relative;
  height: 288px;
  overflow: hidden;
  margin-right: 1em;
}
@media only screen and (max-width: 420px) {
  .originGmap,
  .countryDetailGmap {
    width: 100%;
    float: none;
  }
}
.originGmap_canvas,
.countryDetailGmap_canvas {
  height: 288px;
  margin: 0;
  box-shadow: none;
  border-bottom: 2px solid #484848;
}
@media only screen and (max-width: 420px) {
  .originGmap_canvas,
  .countryDetailGmap_canvas {
    width: 100%;
  }
}
.countryDetailGmap {
  float: none;
  margin: 0 0 1em 0;
}
.originOutline ul {
  margin-bottom: 0 !important;
}
.miniLogoTile {
  position: relative;
  width: 108px;
  height: 108px;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  vertical-align: top;
  border: 2px solid #ddd;
  padding: 3px;
}
.miniLogoTile img {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
svg .hot {
  cursor: pointer;
}
svg .hot .textoutlines {
  fill: #FFFFFF;
}
svg .hot .redhot {
  fill: #A2120F;
}
svg .hot:hover .redhot {
  fill: #eb2f2c;
  stroke: #eb2f2c;
}
dt {
  margin-bottom: 0.5em;
  font-weight: bold;
}
dd {
  padding-left: 2em;
  margin-bottom: 0.5em;
}
.contentful {
  font-family: open-sans, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
.contentful hr {
  border: 0;
  height: 2px;
  background: #dddcd8;
  margin: 0.5em 0;
}
@media only screen and (max-width: 420px) {
  .contentful {
    width: 100%;
    font-size: 16px;
  }
}
.contentful h1 {
  text-align: center;
  margin-bottom: 0.5em;
  margin-top: 1em;
}
.contentful .resourceCategory {
  margin-top: 1em;
  text-align: center;
}
.contentful .resourceCategory span {
  background-color: #484848;
  color: white;
  font-family: lora, serif;
  font-size: 15px;
  text-transform: uppercase;
  padding: 3px 9px;
  font-weight: bold;
}
@media only screen and (max-width: 420px) {
  .contentful .resourceCategory span {
    font-size: 12px;
  }
}
.contentful .byline {
  text-align: center;
  padding-bottom: 1em;
  border-bottom: 1px solid #bbbbbb;
  margin-bottom: 1em;
  font-family: open-sans, sans-serif;
  font-size: 20px;
}
@media only screen and (max-width: 420px) {
  .contentful .byline {
    font-size: 12px;
  }
}
.contentful .dingbat {
  text-align: center;
  color: #bbbbbb;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-family: open-sans, sans-serif;
  clear: both;
}
.contentful h2,
.contentful h3 {
  font-family: lora, serif;
  color: black;
  text-transform: none;
  font-weight: normal;
  line-height: 1.3;
}
.contentful h2 {
  font-size: 27px;
  font-weight: bold;
  margin-top: 1.2em;
  margin-bottom: 0.25em;
  margin-left: 170px;
  max-width: 620px;
  text-align: center;
}
@media only screen and (max-width: 420px) {
  .contentful h2 {
    margin-left: inherit;
    font-size: 24px;
  }
}
.contentful h3 {
  font-size: 22px;
  font-weight: bold;
  color: #484848;
  margin-top: 1em;
  margin-bottom: 0.25em;
  margin-left: 170px;
  max-width: 620px;
  font-style: normal;
}
@media only screen and (max-width: 420px) {
  .contentful h3 {
    margin-left: inherit;
    font-size: 18px;
  }
}
.contentful p {
  margin-left: 170px;
  max-width: 620px;
}
@media only screen and (max-width: 420px) {
  .contentful p {
    margin-left: inherit;
  }
}
.contentful figure {
  text-align: center;
  margin: 1em auto 1em auto;
  clear: both;
  width: 620px;
}
.contentful figure img {
  display: inline-block;
  width: 100%;
  margin: 0;
}
.contentful figure figcaption {
  display: block;
  clear: both;
  text-align: center;
  color: #666666;
  font-size: 90%;
  font-style: italic;
}
@media only screen and (max-width: 420px) {
  .contentful figure {
    width: 100%;
  }
}
.contentful figure.portrait {
  width: auto;
}
.contentful figure.portrait img {
  width: auto;
  height: 620px;
}
@media only screen and (max-width: 420px) {
  .contentful figure.portrait img {
    width: 100%;
    height: auto;
  }
}
.contentful figure.smaller {
  width: 480px;
}
@media only screen and (max-width: 420px) {
  .contentful figure.smaller {
    width: 100%;
    height: auto;
  }
}
.contentful figure.smaller-portrait {
  width: auto;
}
.contentful figure.smaller-portrait img {
  width: auto;
  height: 480px;
}
@media only screen and (max-width: 420px) {
  .contentful figure.smaller-portrait img {
    width: 80%;
    height: auto;
  }
}
.contentful figure.aside {
  width: 33%;
  margin: 0 0 0 1em;
  float: right;
}
.contentful figure.aside img {
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 420px) {
  .contentful figure.aside {
    width: 40%;
  }
}
.contentful figure.aside-portrait {
  width: auto;
  margin: 0 0 0 1em;
  float: right;
}
.contentful figure.aside-portrait img {
  width: auto;
  height: 480px;
  margin: 0;
}
@media only screen and (max-width: 420px) {
  .contentful figure.aside-portrait {
    width: 40%;
    margin: 0 0 0 0.5em;
  }
  .contentful figure.aside-portrait img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
.contentful figure.max {
  width: 100%;
  margin: 1em 0;
}
.contentful figure.max img {
  width: 100%;
  margin: 0;
}
.contentful div.recipeFull {
  margin-left: 170px;
  display: block;
}
.contentful div.recipeFull h1 {
  margin-top: 0;
  text-align: left;
}
.contentful div.recipeFull span.recIcon {
  display: inline-block;
  float: right;
  font-size: 14px;
}
.contentful div.recipeFull p {
  margin-left: 0;
}
@media only screen and (max-width: 420px) {
  .contentful div.recipeFull {
    margin-left: inherit;
  }
}
.contentful div.infographic {
  margin-left: 170px;
  margin-bottom: 1em;
  max-width: 470px;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
}
@media only screen and (max-width: 420px) {
  .contentful div.infographic {
    margin-left: inherit;
  }
}
.contentful.standalonearticle h3 {
  text-align: center;
  font-weight: normal;
  font-style: italic;
}
.contentful.standalonearticle figure {
  margin: 1em auto 2em auto;
}
.contentful.standalonearticle figcaption {
  max-width: 600px;
  margin: 0 auto;
}
.specialIcon h1,
.specialIcon h3 {
  margin-right: 235px;
}
@media only screen and (max-width: 420px) {
  .specialIcon h1,
  .specialIcon h3 {
    margin-right: 0;
  }
}
.specialIconProductDetail,
.specialIconCategoryIndex {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 235px;
  margin-left: 0.5em;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .specialIconProductDetail,
  .specialIconCategoryIndex {
    position: relative;
    display: block;
    margin: 0 0 3px 0;
  }
}
a.tokenlink.fullprofile {
  margin: 20px 0 0 0;
}
@media print {
  a.tokenlink.fullprofile {
    display: none;
  }
}
ul.articleCategories {
  margin: 0 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 420px) {
  ul.articleCategories {
    display: block;
  }
}
.xrefTiles {
  clear: both;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 420px) {
  .xrefTiles {
    display: block;
  }
}
@media print {
  .xrefTiles {
    display: none;
  }
}
.articlebox {
  display: flex;
  align-items: flex-start;
  margin-right: 1rem;
  margin-bottom: 1rem;
  background-color: #edece8;
  padding: 0.5rem;
}
.articlebox h2 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
}
.articlebox h2 a {
  color: #484848;
}
.articlebox h2 a:hover {
  color: #eb2f2c;
}
@media only screen and (max-width: 420px) {
  .articlebox h2 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 420px) {
  .articlebox {
    margin-right: 0;
  }
}
.articlebox .articlephoto {
  margin-right: 0.5rem;
  width: 110px;
  height: 110px;
  overflow: hidden;
}
.articlebox .articlephoto img {
  width: 100%;
  height: auto;
}
table.contentReport {
  margin-bottom: 2rem;
}
table.contentReport th,
table.contentReport td {
  text-align: center;
  padding: 1px 0.25rem;
}
table.contentReport th {
  background-color: #dddcd8;
  color: #000000;
}
table.contentReport td {
  text-align: center;
}
#productContentReport td:nth-child(6),
#productContentReport td:nth-child(7),
#productContentReport td:nth-child(8) {
  background-color: #edece8;
}
#productContentReport td:nth-child(15),
#productContentReport td:nth-child(16),
#productContentReport td:nth-child(17) {
  background-color: #edece8;
}
.contentwarning {
  color: orange;
  border: 1px solid orange;
  font-size: 65%;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
.contentwarning .tooltip {
  visibility: hidden;
  width: 300px;
  background-color: #dddcd8;
  color: black;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 100%;
  text-align: left;
  text-transform: none;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  right: 6em;
  z-index: 1;
}
.contentwarning .tooltip strong {
  font-size: 13px;
  font-weight: bold;
}
.contentwarning:hover .tooltip {
  visibility: visible;
}
.contactwell {
  width: 50%;
  float: left;
  padding-right: 1em;
}
@media only screen and (max-width: 420px) {
  .contactwell {
    width: 100%;
    float: none;
  }
}
.missionwell {
  width: 50%;
  float: right;
  background-color: #edece8;
  padding: 1rem;
}
@media only screen and (max-width: 420px) {
  .missionwell {
    width: 100%;
    float: none;
  }
}
.left {
  float: left;
}
.right {
  float: right;
}
.wrap {
  width: 978px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
}
@media only screen and (max-width: 420px) {
  .wrap {
    width: 100%;
  }
}
.wrapspecial {
  width: max-content;
  height: 100%;
  margin: 0 1em;
  position: relative;
  padding: 0;
}
header .wrapspecial {
  width: auto;
}
@media only screen and (max-width: 420px) {
  header .wrapspecial {
    width: 100%;
  }
}
.clr:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
strong,
b {
  font-weight: bold;
}
em,
i {
  font-style: italic;
}
ul.vintagePageLinks {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
}
ul.vintagePageLinks li {
  text-align: center;
  clear: both;
  font-family: lora, serif;
  font-size: 18px;
  color: #484848;
  padding: 0 0.5em;
}
ul.vintagePageLinks li:hover {
  cursor: pointer;
  color: #fff;
  background: #a2120f;
}
ul.vintagePageLinks li:hover a {
  color: #fff;
  text-decoration: none !important;
}
@media only screen and (max-width: 420px) {
  ul.vintagePageLinks li {
    font-size: 16px;
    padding: 6px 14px;
  }
}
ul.vintagePageLinks li.selected {
  color: #484848;
  text-decoration: underline;
}
ul.vintagePageLinks li.selected:hover {
  cursor: inherit;
  color: inherit;
  background: inherit;
}
td.combo,
td.protocol,
td.vessel {
  text-align: center;
  min-width: 54px;
}
td.combo {
  min-width: 108px;
}
td.ing {
  font-size: 14px;
}
@media only screen and (max-width: 420px) {
  .vintage-summary-table,
  .nonvintage-summary-table {
    width: 100%;
  }
  .vintage-summary-table .vintage-category,
  .nonvintage-summary-table .vintage-category {
    display: block;
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
  .vintage-summary-table th:not(.vintage-category),
  .nonvintage-summary-table th:not(.vintage-category) {
    display: none;
  }
  .vintage-summary-table td,
  .nonvintage-summary-table td {
    display: block;
    white-space: inherit !important;
    margin-bottom: 1em;
  }
  .vintage-summary-table td[data-cell="category"],
  .nonvintage-summary-table td[data-cell="category"] {
    display: none;
  }
  .vintage-summary-table td[data-cell="year-rep"],
  .nonvintage-summary-table td[data-cell="year-rep"] {
    display: none;
  }
  .vintage-summary-table td[data-cell="year"],
  .nonvintage-summary-table td[data-cell="year"] {
    font-weight: bold;
  }
  .vintage-summary-table td[data-cell="product"],
  .nonvintage-summary-table td[data-cell="product"] {
    line-height: 1.2;
    padding-left: 1em;
    text-wrap: pretty;
  }
}
@media only screen and (max-width: 420px) {
  .nonvintage-summary-table td[data-cell="product"] {
    padding-left: 0;
  }
}
th.vintage-category {
  padding-top: 0.5em;
}
:root {
  --accent: #007ECC;
  --accent-2: #EC2F4B;
  --text: #003f66;
  --text-hover: var(--accent);
  --text-active: #FFFFFF;
  --border-width: 0.125em;
}
.radio {
  position: relative;
  border-radius: 999em;
  display: flex;
  overflow: hidden;
  width: fit-content;
  margin-block: 1em;
  font-weight: 700;
  font-size: 14px;
}
.radio:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: var(--border-width) solid #a2120f;
  border-radius: 999em;
  pointer-events: none;
}
@media only screen and (max-width: 420px) {
  .radio {
    font-size: 12px;
  }
}
.radio__input {
  display: none;
}
.radio__input:checked + .radio__label {
  background-color: #a2120f;
  color: #fff;
}
.radio__input:checked + .radio__label:before {
  opacity: 1;
}
.radio__label {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 9px 1.5em;
  position: relative;
  cursor: pointer;
  color: #a2120f;
}
.radio__label:hover {
  color: #eb2f2c;
}
.radio__label:nth-of-type(2) {
  border-left: var(--border-width) solid #a2120f;
  border-right: var(--border-width) solid #a2120f;
}
@media only screen and (max-width: 420px) {
  .radio__label {
    padding: 0.75em 0.75em;
  }
}
.header {
  width: 100%;
  min-width: 978px;
  position: relative;
  padding: 0;
  background: #edece8;
  height: 81px;
  /* Main Menu */
}
@media only screen and (max-width: 420px) {
  .header {
    height: 40px;
    width: 100%;
    min-width: 100%;
  }
}
@media print {
  .header {
    display: none;
  }
}
@media print {
  .header {
    background: #fff;
  }
}
.header.short {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header h1,
.header .logo {
  display: block;
  width: 375px;
  height: 47px;
  line-height: 70px;
  position: absolute;
  top: 9px;
  left: 9px;
}
@media only screen and (max-width: 420px) {
  .header h1,
  .header .logo {
    position: relative;
    top: 4px;
    left: 0;
    width: 100%;
    height: 40px;
    margin: 0;
    padding-top: 10px;
  }
}
.header h1 a,
.header .logo a {
  font-size: 0;
  display: block;
  height: 100%;
  background: url('../assets/logo-wide-dev.png') no-repeat;
  background-size: 375px auto;
}
@media only screen and (max-width: 420px) {
  .header h1 a,
  .header .logo a {
    margin: 0 auto;
    width: calc(375px/2);
    background: url('../assets/logo-wide-dev.png') no-repeat;
    background-size: calc(375px / 2) auto;
  }
}
.header h1.sotolon {
  display: block;
  width: 156px;
  height: 112px;
  line-height: 70px;
  position: absolute;
  top: 3px;
  left: 8px;
}
@media only screen and (max-width: 420px) {
  .header h1.sotolon {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    margin: 0;
    padding-top: 10px;
  }
}
.header h1.sotolon a {
  font-size: 0;
  display: block;
  position: relative;
  height: 100%;
  width: 156px;
  background: url('../assets/logo-sotolon-wide.png') no-repeat;
  background-size: 156px 112px;
}
@media only screen and (max-width: 420px) {
  .header h1.sotolon a {
    background: url('../assets/logotype-sotolon.png') no-repeat;
    margin: 0 auto;
    width: 89px;
    background-size: 89px 30px;
    top: -3px;
  }
}
.header h1.dev {
  top: 9px;
  left: 9px;
}
.header h1.dev a {
  background: url('../assets/logo-wide-dev.png') no-repeat;
  background-size: 375px auto;
}
@media only screen and (max-width: 420px) {
  .header h1.dev a {
    margin: 0 auto;
    width: calc(375px/2);
    background: url('../assets/logo-wide-dev.png') no-repeat;
    background-size: calc(375px / 2) auto;
  }
}
@media only screen and (max-width: 420px) {
  .header h1.dev {
    top: 4px;
    left: 0;
  }
}
.header h1.dev.sotolon a {
  background: url('../assets/logo-sotolon-wide-dev.png') no-repeat;
  background-size: 156px 112px;
}
@media only screen and (max-width: 420px) {
  .header h1.dev.sotolon a {
    background: url('../assets/logotype-sotolon.png') no-repeat;
    margin: 0 auto;
    width: 89px;
    background-size: 89px 30px;
    top: -3px;
  }
}
.header h2 {
  float: right;
  font-size: 20px;
  font-style: italic;
}
@media only screen and (max-width: 420px) {
  .header h2 {
    display: none;
  }
}
.header .toggle__mobile__nav {
  display: none;
  position: absolute;
  top: 0px;
  left: 0;
  font-family: lora, serif;
  font-weight: bold;
  line-height: 70px;
  width: 40px;
  text-align: center;
  background: #a2120f;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 420px) {
  .header .toggle__mobile__nav {
    line-height: 36px;
    height: 40px;
    display: block;
  }
}
.header #invokeSearchOverlay {
  bottom: -4px;
}
.header #invokeSearchOverlayMobile {
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 420px) {
  .header #invokeSearchOverlayMobile {
    display: block;
    position: absolute;
    right: 8px;
    top: 11px;
  }
}
.header #headerTopLayer {
  height: 45px;
}
.header #searchDropdownNavItem,
.header #downloadCatalogItem {
  position: absolute;
  right: 0;
  top: 9px;
  font-family: open-sans, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}
.header #searchDropdownNavItem a,
.header #downloadCatalogItem a {
  display: block;
  padding: 0;
  text-decoration: none;
  position: relative;
}
.header #searchDropdownNavItem a:hover,
.header #downloadCatalogItem a:hover {
  cursor: pointer;
}
.header #searchDropdownNavItem img,
.header #downloadCatalogItem img {
  vertical-align: middle;
  margin-right: 3px;
}
@media only screen and (max-width: 420px) {
  .header #searchDropdownNavItem,
  .header #downloadCatalogItem {
    display: none;
  }
}
.header #downloadCatalogItem {
  right: 108px;
  top: 13px;
}
.header ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  padding: 0;
  width: 100%;
  font-family: open-sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}
@media only screen and (max-width: 420px) {
  .header ul {
    width: 100%;
    display: none;
    clear: both;
  }
}
.header ul li {
  position: relative;
  display: inline-block;
  list-style: none;
  text-align: center;
  padding: 0;
  line-height: 36px;
  /* Horizontal Sub Menu */
  /* If main menu is hovered, show sub menu, but not sub menu options */
}
@media only screen and (max-width: 420px) {
  .header ul li {
    width: 100%;
    display: block;
    line-height: 40px;
  }
}
.header ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  position: relative;
}
.header ul li a:hover {
  cursor: pointer;
}
.header ul li.current-menu-parent a,
.header ul li.current-menu-item a,
.header ul li:hover a {
  color: #a2120f;
}
.header ul li.menu-item-has-children:hover a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #333;
}
.header ul li.current-menu-parent ul li a,
.header ul li.current-menu-item ul li a,
.header ul li:hover ul li a {
  color: #fff;
}
.header ul li.current-menu-parent ul li a:after,
.header ul li.current-menu-item ul li a:after,
.header ul li:hover ul li a:after {
  display: none;
}
.header ul li#nav-home.here a {
  background: none !important;
}
.header ul li ul {
  float: none;
  display: none;
  margin: 0;
  top: 100%;
  left: 0;
  padding-right: 0;
  position: absolute;
  z-index: 2000;
  background: #333;
  white-space: nowrap;
  width: auto;
  min-width: 100%;
  line-height: 27px;
  text-align: center;
  font-size: 12px;
}
.header ul li ul li {
  float: none;
  display: block;
  text-align: left;
  position: relative;
  white-space: nowrap;
  line-height: 30px;
  /* Vertical Dropdown Menu */
  /* If sub menu is hovered, show options */
}
.header ul li ul li a {
  padding: 0 1em;
  color: #fff;
  white-space: nowrap;
}
.header ul li ul li a:hover {
  background: #a2120f;
}
.header ul li ul li a:after {
  display: none !important;
}
.header ul li ul li a.subcat {
  padding-left: 3em;
  font-weight: 400;
}
.header ul li ul li a.cat {
  font-weight: 700;
}
.header ul li ul li .menuitemicon {
  height: 16px;
  margin-left: 0.3em;
  margin-right: 0.3em;
  vertical-align: baseline;
  position: relative;
  bottom: -2px;
}
.header ul li ul li ul {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: auto;
  font-size: 13px;
  font-weight: 400;
  overflow: visible;
  margin: 0;
  padding: 0;
}
.header ul li ul li ul li {
  display: block;
  line-height: 30px;
  float: none;
  white-space: nowrap;
}
.header ul li ul li ul li a {
  white-space: nowrap;
  padding: 0 9px 0 18px;
}
.header ul li ul li ul li a:after {
  display: none;
}
.header ul li ul li:hover ul {
  display: block;
}
.header ul li ul li:hover ul a:after {
  display: none;
}
.header ul li ul.rightedge {
  right: 0;
  left: inherit;
}
.header ul li.current-menu-item ul ul,
.header ul li.current-menu-parent ul ul {
  display: none;
}
.header ul li:hover ul {
  display: block;
}
.header ul li:hover ul ul {
  display: none;
}
.header ul.sotolon {
  margin-top: 37px;
  margin-left: 150px;
}
.header.short {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0.95;
}
#menu-main-menu {
  padding-left: 9px;
}
.header.sotolon {
  height: 118px;
}
@media only screen and (max-width: 420px) {
  .header.sotolon {
    height: 40px;
  }
}
.navigation {
  width: 100%;
  background: #484848;
}
@media print {
  .navigation {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .navigation {
    display: none;
    width: 100%;
    position: static;
    background: #000;
    margin: 0;
  }
}
.navigation.short {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
}
.spacer {
  width: 100%;
  height: 40px;
  background: #333;
}
.spacer.short {
  position: relative;
  top: 70px;
  left: 0;
  z-index: 800;
}
.breadcrumb {
  width: 100%;
  background: #fff;
}
.breadcrumb.short {
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 500;
}
.breadcrumb p {
  color: #333;
  font-size: 11px;
  line-height: 18px;
  margin: 0 0 0 0;
  font-weight: 700;
}
.breadcrumb p a {
  color: #666;
}
.breadcrumb p a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 420px) {
  .breadcrumb p {
    font-size: 12px;
    text-align: center;
  }
}
.search {
  clear: right;
  float: right;
  margin-top: 20px;
}
@media print {
  .search {
    display: none;
  }
}
.search input {
  margin: 0;
  padding: 0;
  border: 0;
  display: inline-block;
  font-size: 12px;
  padding: 0 10px;
  line-height: 25px;
}
.search input[type='submit'] {
  background: #a2120f;
  color: #fff;
}
.footer {
  width: 100%;
  padding: 27px 0;
  background: #fafafa;
  border-top: 1px solid #e3e3e3;
  position: relative;
  font-size: 12px;
}
@media print {
  .footer {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .footer {
    padding: 1em 0 1em 3px;
  }
}
.footer .subfooter {
  border-top: 1px solid #bbbbbb;
  clear: both;
}
.footer small {
  display: block;
  float: right;
  line-height: 37px;
  color: #666666;
}
@media only screen and (max-width: 420px) {
  .footer small {
    line-height: inherit;
  }
}
.footer #buildstamp {
  color: #fafafa;
  font-size: 80%;
  position: absolute;
  bottom: 0;
  right: 9px;
}
.footer .socialIcons {
  width: 400px;
  float: left;
}
@media only screen and (max-width: 420px) {
  .footer .socialIcons {
    float: none;
    width: 100%;
  }
}
.footer .footerMenu {
  width: 530px;
  float: right;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer .footerMenu ul {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.footer .footerMenu li {
  list-style: none;
  font-weight: 100;
}
@media only screen and (max-width: 420px) {
  .footer .footerMenu li {
    line-height: 1.8;
  }
}
.footer .footerMenu h4 {
  font-family: lora, serif;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid #484848;
  margin-right: 1em;
  margin-bottom: 3px;
}
.footer .footerMenu ul.subul {
  margin-bottom: 0;
  margin-left: 1rem;
}
.footer .footerMenu .fnSec1Heading {
  grid-column: 1/3;
  grid-row: 1/2;
}
.footer .footerMenu .fnSec2Heading {
  grid-column: 3/4;
  grid-row: 1/2;
}
.footer .footerMenu .fnSec1A {
  grid-column: 1/2;
  grid-row: 2/4;
}
.footer .footerMenu .fnSec1B {
  grid-column: 2/3;
  grid-row: 2/4;
}
.footer .footerMenu .fnSec2A {
  grid-column: 3/4;
  grid-row: 2/3;
}
.footer .footerMenu .fnSec2B {
  grid-column: 3/4;
  grid-row: 3/4;
}
@media only screen and (max-width: 420px) {
  .footer .footerMenu {
    grid-template-columns: 1fr 1fr;
    float: none;
    width: 100%;
    margin-top: 1em;
  }
  .footer .footerMenu .fnSec1Heading {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .footer .footerMenu .fnSec2Heading {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .footer .footerMenu .fnSec1A {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .footer .footerMenu .fnSec1B {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .footer .footerMenu .fnSec2A {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .footer .footerMenu .fnSec2B {
    grid-column: 2/3;
    grid-row: 4/5;
  }
}
#modal__backdrop {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 80000;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
#sidebarheader {
  height: 40px;
}
#sidebarheader h1 {
  margin: 0;
  padding-top: 10px;
}
#sidebarheader h1 a {
  text-indent: -119988px;
  overflow: hidden;
  display: block;
  width: 375px;
  margin: 4px auto 0 auto;
  background: url('../assets/logo-wide-dev.png') no-repeat;
  background-size: 375px auto;
}
@media only screen and (max-width: 420px) {
  #sidebarheader h1 a {
    width: calc(375px/2);
    background-size: calc(375px / 2) auto;
  }
}
#sidebarheader h1.sotolon {
  height: 40px;
}
#sidebarheader h1.sotolon a {
  text-indent: -119988px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 420px) {
  #sidebarheader h1.sotolon a {
    background: url('../assets/logotype-sotolon.png') no-repeat;
    margin: 0 auto;
    width: 89px;
    background-size: 89px 30px;
    top: -3px;
  }
}
#sidebarlogo {
  margin-top: 0.2em;
  margin-left: 0.25em;
  height: 25px;
}
@media only screen and (max-width: 420px) {
  #sidebarlogo {
    height: 25px;
  }
}
.sidebarRow,
.sidebarRowHeader {
  border-top: 1px solid #bbbbbb;
}
.sidebarRow .sidebarsection,
.sidebarRowHeader .sidebarsection {
  text-align: center;
  color: #484848;
  text-transform: uppercase;
  font-weight: 700;
  font-family: lora, serif;
  letter-spacing: 3px;
  margin: 0.4em 0 0.5em 0;
  font-size: 100%;
  line-height: 1;
}
.sidebarRow a,
.sidebarRowHeader a {
  font-weight: 700;
  line-height: 2;
}
@media only screen and (max-width: 420px) {
  .sidebarRow a,
  .sidebarRowHeader a {
    font-size: 140%;
  }
}
.sidebarRow .fullrow,
.sidebarRowHeader .fullrow {
  margin-left: 2em;
}
.sidebarRow .half,
.sidebarRowHeader .half,
.sidebarRow .halfend,
.sidebarRowHeader .halfend {
  display: inline-block;
  text-align: center;
  width: 50%;
}
.sidebarRow .half,
.sidebarRowHeader .half {
  border-right: 1px solid #bbbbbb;
}
.sidebarRow .socialIcons,
.sidebarRowHeader .socialIcons {
  text-align: left;
  margin-left: 1.8em;
  padding: 0.25em 0;
}
.sidebarRowHeader {
  border-top: 2px solid #484848;
}
#dismissMenu {
  position: absolute;
  height: 18px;
  width: 18px;
  top: 12px;
  left: 10px;
}
.sidebar2 {
  display: none;
  position: absolute;
  z-index: 99000;
  background-color: #edece8;
  font-family: open-sans, sans-serif;
  width: 360px;
  left: 0px;
  top: 0px;
}
@media only screen and (max-width: 420px) {
  .sidebar2 {
    width: 100%;
  }
}
#sidebarAdditionalLinks {
  border-top: 1px solid black;
}
#sidebarAdditionalLinks li {
  margin-left: 0.75em;
  border-bottom: 1px solid #dddcd8;
  font-weight: 700;
  line-height: 2;
}
@media only screen and (max-width: 420px) {
  #sidebarAdditionalLinks {
    font-size: 140%;
  }
}
#sidebar-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 99999;
  font-size: 100%;
}
#sidebar-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#sidebar-menu li {
  padding-left: 24px;
  line-height: 2;
  overflow: hidden;
}
#sidebar-menu .handle {
  background: transparent url("../gfx/spacer.png");
  background-repeat: no-repeat;
  background-size: 24px 12px;
  display: inline-block;
  width: 24px;
  height: 12px;
}
#sidebar-menu .collapsed {
  background: transparent url("../gfx/plus-black.png");
  background-repeat: no-repeat;
  background-size: 24px 12px;
  cursor: pointer;
}
#sidebar-menu .expanded {
  background: transparent url("../gfx/minus-black.png");
  background-repeat: no-repeat;
  background-size: 24px 12px;
  cursor: pointer;
}
.typeBrowserSection {
  clear: both;
  margin-bottom: 1em;
  line-height: 2;
  font-weight: 700;
  border-top: 1px solid #bbbbbb;
}
.typeBrowserCat1 {
  margin-left: 2em;
  border-bottom: 1px solid #dddcd8;
}
@media only screen and (max-width: 420px) {
  .typeBrowserCat1 {
    font-size: 140%;
  }
}
.typeBrowserCat2 {
  font-weight: 400;
  margin-left: 3em;
  border-bottom: 1px solid #dddcd8;
}
@media only screen and (max-width: 420px) {
  .typeBrowserCat2 {
    font-size: 140%;
  }
}
#winestypevertical,
#spiritstypevertical {
  position: absolute;
  transform-origin: top left;
  line-height: 1;
  text-align: right;
  font-family: lora, serif;
  letter-spacing: 3px;
  color: #666666;
  text-transform: uppercase;
}
@media only screen and (max-width: 420px) {
  #winestypevertical,
  #spiritstypevertical {
    font-size: 110%;
  }
}
#winestypevertical {
  transform: translate(12px, 75px) rotate(-90deg);
}
#spiritstypevertical {
  transform: translate(12px, 89px) rotate(-90deg);
}
#shadowbox {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 899;
}
#searchOverlay {
  padding: 1em;
  background-color: #edece8;
  width: 100%;
  max-width: 640px;
  position: absolute;
  top: 27px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  z-index: 999;
}
@media only screen and (max-width: 420px) {
  #searchOverlay {
    top: 0px;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
#dismissSearchOverlay {
  cursor: pointer;
  position: absolute;
  right: 1em;
  top: 1em;
}
.searchBar {
  text-align: left;
  margin-bottom: 1em;
  margin-top: 1em;
}
#searchBox {
  width: 100%;
  font-size: 16px;
  margin-top: 3px;
}
#searchResults a {
  color: black;
}
#searchResults a:hover {
  text-decoration: none;
}
#searchResults .match {
  padding: 0.5em;
  border: 2px solid #dddcd8;
  clear: both;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#searchResults .match .icons {
  display: table-cell;
  float: right;
  text-align: right;
  flex-shrink: 0;
}
#searchResults .match .summary {
  font-size: 90%;
}
#searchResults .match .logo {
  width: 160px;
  height: auto;
}
#searchResults .match .clusterbottle2 {
  width: 90px;
  height: 160px;
}
#searchResults .match strong {
  font-weight: bold;
  font-size: 16px;
}
#searchResults .match:hover {
  border: 2px solid #a2120f;
}
@media only screen and (max-width: 420px) {
  #searchResults {
    padding: 0;
  }
}
.clusterbottle2 {
  display: block;
  float: right;
  white-space: nowrap;
  position: relative;
  width: 90px;
  height: 160px;
  text-align: center;
  background-color: white;
}
.clusterbottle2 img {
  height: 160px;
  width: auto;
  margin-right: 0;
}
#searchResults .logo {
  display: block;
  float: right;
  white-space: nowrap;
  position: relative;
  width: 160px;
  text-align: center;
  background-color: white;
}
@media only screen and (max-width: 420px) {
  #searchResults .logo {
    width: 120px;
  }
}
#searchResults .logo img {
  width: 100%;
  height: auto;
  margin-right: 0;
}
.menuitemicon {
  height: 16px;
  margin-left: 0.3em;
  margin-right: 0.3em;
  vertical-align: baseline;
  position: relative;
  bottom: -2px;
}
.specialhierarchicalmenulogotype {
  height: 25px;
  width: auto;
  vertical-align: bottom;
  position: relative;
  bottom: 5px;
}
.products {
  overflow: hidden;
  margin: 0 0 2em 0;
  list-style-type: none;
  padding: 0;
}
@media only screen and (max-width: 420px) {
  .products {
    margin: 0 0 0 0;
  }
}
.products h2 {
  letter-spacing: 0;
  color: black;
}
.products .type-product {
  padding: 0;
  list-style-type: none;
  page-break-inside: avoid;
  width: 100%;
  margin: 0 0 0 0;
  border-bottom: 1px solid #fff;
}
.products .type-product .label {
  float: left;
  position: relative;
  text-align: center;
  width: 230px;
  height: 230px;
  line-height: 230px;
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 420px) {
  .products .type-product .label {
    display: none;
  }
}
.products .type-product .label img {
  height: 230px;
  width: auto;
  vertical-align: middle;
}
.products .type-product .label img.wideimage {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.products .type-product .label a {
  display: block;
}
.products .type-product .label .quickview {
  display: none;
}
.products .type-product div.tall {
  height: 320px;
}
.products .type-product div.tall img {
  height: 320px;
  width: auto;
}
.products .type-product .product_text {
  float: left;
  padding: 0 0;
  width: 478px;
  width: 480px;
}
@media only screen and (max-width: 420px) {
  .products .type-product .product_text {
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
  }
}
.products .type-product .product_text .product_description p:last-child {
  margin-bottom: 0;
}
.products .type-product .product_text h2 {
  font-weight: bold;
  margin: 0;
}
.products .type-product .product_text h3 {
  font-size: 11px;
  color: #999;
}
.products .type-product .product_text p {
  margin-top: 0.25em;
  max-width: 360px;
  font-size: 13px;
}
.products .type-product .bottle {
  float: right;
  text-align: center;
  width: 108px;
  height: 230px;
  line-height: 230px;
  padding: 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 420px) {
  .products .type-product .bottle {
    min-width: 108px;
    width: 108px;
    float: right;
    height: auto;
  }
}
.products .type-product .bottle img {
  height: 230px;
  width: auto;
  vertical-align: middle;
}
.products .type-product .context {
  float: left;
  text-align: center;
  width: 230px;
  height: 230px;
  padding: 0 0;
  line-height: 230px;
  vertical-align: middle;
}
.products .type-product .context a {
  line-height: 0;
}
.products .type-product .context img {
  height: 230px;
  vertical-align: middle;
  width: auto;
}
.products .type-product .context img.wideimage {
  width: 100%;
  vertical-align: middle;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .products .type-product .context {
    display: none;
    float: right;
  }
}
.products .type-product p {
  width: 100%;
  margin: 10px 0 0 0;
  text-align: left;
}
.products .type-product p span {
  margin-right: 15px;
}
.products .type-product p.categorization,
.products .type-product p.abv {
  text-transform: uppercase;
  letter-spacing: 0.25px;
  color: black;
  margin-top: 0.5em;
}
.products .type-product p.categorization a,
.products .type-product p.abv a {
  font-weight: 600;
  white-space: nowrap;
}
.products .type-product p.categorization .abv,
.products .type-product p.abv .abv {
  color: #666666;
}
.products .type-product p.abv {
  display: none;
}
.products .licenses {
  display: none;
}
@media only screen and (max-width: 420px) {
  .products .licenses {
    display: none;
  }
}
.subcatMenuMobile {
  text-align: center;
  margin: 1em;
  display: none;
}
@media only screen and (max-width: 420px) {
  .subcatMenuMobile {
    display: block;
  }
}
.subcatMenuMobile a {
  margin: 0.25em;
}
.subOriginMenu {
  text-align: center;
  margin: 1em;
}
.subOriginMenu a {
  margin: 0.25em;
}
.subcatMenuDesktop {
  display: inline-block;
  width: 570px;
  vertical-align: top;
  padding-top: 4px;
}
.subcatMenuDesktop a {
  display: inline-block;
  position: relative;
  bottom: 0.25em;
  vertical-align: middle;
  margin: 0.25em;
}
.subcatMenuDesktop .button {
  font-size: 14px;
  padding: 6px 10px;
}
@media only screen and (max-width: 420px) {
  .subcatMenuDesktop {
    display: none;
  }
}
.bracket {
  display: inline-block;
  color: #bbbbbb;
  position: relative;
  font-size: 140%;
  font-weight: normal;
  margin-right: 5px;
}
@media only screen and (max-width: 420px) {
  .bracket {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .cluster {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.cluster h2 {
  margin-bottom: 0;
  font-weight: bold;
}
.groupdetail h2 {
  margin-bottom: 0;
  font-weight: bold;
}
.cluster2 {
  -moz-column-count: 2;
  column-count: 2;
}
@media only screen and (max-width: 420px) {
  .cluster2 {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.clusterentry {
  margin-top: 0.5em;
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 420px) {
  .clusterentry {
    margin-left: 0;
  }
}
.clusterbottle {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  height: 70px;
  background-color: green;
}
.clusterbottle img {
  height: 230px;
  width: auto;
  position: absolute;
  -webkit-transform: translateZ(0);
  transform: translate(83px, -72px) rotate(90deg);
}
.clusterbottle:after {
  content: "";
  float: left;
  margin-top: 100%;
}
.clusterHeading {
  margin-bottom: 1em;
}
.clusterHeadingHenriques {
  margin-bottom: 1em;
}
.clusterHeadingHenriques .product_text .product_description p {
  max-width: none !IMPORTANT;
}
.clusterHeadingHenriques .context {
  width: 452px !IMPORTANT;
  background-color: green;
}
div.grouping {
  margin: 1em 0;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
  clear: both;
}
div.grouping .bottleCorral {
  width: 600px;
  float: right;
  text-align: right;
}
@media only screen and (max-width: 420px) {
  div.grouping .bottleCorral {
    display: none;
  }
}
div.grouping .bottleCorral2 {
  margin-top: 0.5em;
}
@media only screen and (max-width: 420px) {
  div.grouping .bottleCorral2 {
    display: none;
  }
}
div.grouping .corralBottle {
  height: 230px;
  display: inline-block;
  width: 72px;
  text-align: right;
}
div.grouping .corralBottle img {
  height: 230px;
  width: auto;
}
#groupingVarietal,
#groupingCategory {
  display: none;
}
.madeiraSwitch,
.vintageSwitch,
.vintagesAgeStatementsSwitch {
  text-align: center;
  clear: both;
  margin-bottom: 1em;
  font-family: open-sans-condensed, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  color: #484848;
}
.madeiraSwitch span,
.vintageSwitch span,
.vintagesAgeStatementsSwitch span,
.madeiraSwitch span.selected,
.vintageSwitch span.selected,
.vintagesAgeStatementsSwitch span.selected {
  display: inline-block;
  padding: 8px 16px;
  margin: 0;
  font-size: 18px;
  line-height: 1em;
  font-family: open-sans-condensed, sans-serif;
  text-transform: uppercase;
  -webkit-appearance: none;
  color: #a2120f;
}
.madeiraSwitch span:hover,
.vintageSwitch span:hover,
.vintagesAgeStatementsSwitch span:hover,
.madeiraSwitch span.selected:hover,
.vintageSwitch span.selected:hover,
.vintagesAgeStatementsSwitch span.selected:hover {
  cursor: pointer;
  color: #fff;
  background: #d11713;
}
@media only screen and (max-width: 420px) {
  .madeiraSwitch span,
  .vintageSwitch span,
  .vintagesAgeStatementsSwitch span,
  .madeiraSwitch span.selected,
  .vintageSwitch span.selected,
  .vintagesAgeStatementsSwitch span.selected {
    font-size: 16px;
    padding: 6px 14px;
  }
}
.madeiraSwitch span.selected,
.vintageSwitch span.selected,
.vintagesAgeStatementsSwitch span.selected {
  color: #484848;
  text-decoration: underline;
}
.madeiraSwitch span.selected:hover,
.vintageSwitch span.selected:hover,
.vintagesAgeStatementsSwitch span.selected:hover {
  cursor: auto;
  color: inherit;
  background: inherit;
}
.vintageSwitch,
.vintagesAgeStatementsSwitch {
  border-top: 2px solid #dddcd8;
  text-align: left;
  border: 0;
  margin: 0;
}
#vintageYearJump {
  margin-top: 0.5em;
}
h5 {
  font-family: lora, serif;
  font-size: 22px;
  font-weight: bold;
  color: #adaba2;
  border-top: 2px solid #dddcd8;
  text-align: center;
  margin: 1em 0;
  line-height: 1;
  padding: 0.5em 0 0.5em 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 420px) {
  h5 {
    font-size: 18px;
  }
}
#productSummaryContainer > h5:first-of-type {
  border-top: none;
  margin-top: -0.7em;
}
#printlogotype {
  display: none;
  float: right;
  width: 15em;
}
@media print {
  #printlogotype {
    display: block;
  }
}
.vitalstable {
  display: none;
}
.vitals {
  -moz-column-count: 2;
  column-count: 2;
  column-gap: 1.5em;
}
@media print {
  .vitals {
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media only screen and (max-width: 420px) {
  .vitals {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.vitals p {
  width: 100%;
  margin: 10px 0 0 0;
  text-align: left;
}
.vitals p span {
  margin-right: 15px;
}
.vitals .description p {
  line-height: 1.3;
}
.vitals td.categorization,
.vitals th.categorization {
  margin-top: 0.25em;
  font-size: 90%;
}
.vitals th.categorization {
  padding-right: 1em;
  vertical-align: top;
}
.vitals .highlights {
  margin: 0;
  padding: 1em 1em 1em 2em;
  background-color: #edece8;
  font-size: 90%;
  margin-bottom: 1rem;
}
.vitals .highlights li {
  margin-left: 1em;
}
@media only screen and (max-width: 420px) {
  .vitals .highlights {
    padding: 1em 1em 1em 1em;
  }
}
@media print {
  .vitals .highlights {
    border: 2px solid #dddcd8;
  }
}
.vitals h3 {
  clear: all;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
#productImageryCluster,
#productImageryCluster2 {
  width: 100%;
  table-layout: fixed;
  clear: all;
  margin-top: 0.5em;
}
@media only screen and (max-width: 420px) {
  #productImageryCluster,
  #productImageryCluster2 {
    width: 100%;
    float: none;
  }
}
#productImageryCluster td,
#productImageryCluster2 td {
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  position: relative;
}
#productImageryCluster img,
#productImageryCluster2 img {
  width: 100%;
}
#productImageryCluster img.wideimage,
#productImageryCluster2 img.wideimage {
  width: 100%;
}
#productImageryCluster #picBottle,
#productImageryCluster2 #picBottle {
  border-bottom: 0.5em solid transparent;
}
#productImageryCluster #picBottle figure,
#productImageryCluster2 #picBottle figure {
  margin-left: auto;
  margin-right: auto;
}
#productImageryCluster #picBottle img,
#productImageryCluster2 #picBottle img {
  margin: 0 auto;
}
#productImageryCluster #picLabel,
#productImageryCluster2 #picLabel,
#productImageryCluster #picContext,
#productImageryCluster2 #picContext {
  width: 50%;
}
#productImageryCluster #picLabel figure,
#productImageryCluster2 #picLabel figure,
#productImageryCluster #picContext figure,
#productImageryCluster2 #picContext figure {
  width: 100%;
}
#productImageryCluster #picPeople,
#productImageryCluster2 #picPeople,
#productImageryCluster #picPlace,
#productImageryCluster2 #picPlace {
  width: 50%;
}
#productImageryCluster #picLabel,
#productImageryCluster2 #picLabel {
  border-bottom: 0.5em solid transparent;
}
#productImageryCluster #picContext,
#productImageryCluster2 #picContext {
  border-bottom: 0.5em solid transparent;
}
#productImageryCluster #picPeople,
#productImageryCluster2 #picPeople {
  border-right: 0.5em solid transparent;
}
@media print {
  #productImageryCluster {
    float: right;
    width: 60%;
    margin-left: 1em;
  }
}
#producerPics {
  width: 455px;
  float: right;
  margin-top: 1em;
  height: 162px;
}
#producerPics img {
  height: 100%;
  width: auto;
  vertical-align: middle;
}
#producerPics img.wideimage {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#producerPics .extrapic {
  width: 220px;
  display: inline-block;
}
.setup,
.vintagesummary {
  clear: both;
  overflow-x: auto;
  border-top: 2px solid #dddcd8;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-top: 0.5em;
}
.setup table,
.vintagesummary table {
  border-collapse: collapse;
  width: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  font-family: open-sans, sans-serif;
  margin-bottom: 0.5em;
}
.setup table th,
.vintagesummary table th,
.setup table td,
.vintagesummary table td {
  border-right: 1em solid #fff;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
  text-align: left;
}
.setup table th,
.vintagesummary table th {
  background: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.setup table td,
.vintagesummary table td {
  font-size: 14px;
  font-weight: 100;
}
@media only screen and (max-width: 420px) {
  .setup,
  .vintagesummary {
    overflow-x: auto;
  }
}
@media print {
  .setup,
  .vintagesummary {
    overflow-x: visible;
  }
}
.vintagesummary {
  border: none;
}
.downloadsCorral {
  line-height: 1.8;
}
@media print {
  .downloadsCorral {
    display: none;
  }
}
.artworkCorral {
  width: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
@media only screen and (max-width: 420px) {
  .artworkCorral .artwork2 {
    columns: 2;
  }
}
.artworkCorral .artwork2 figure {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  margin-top: 0;
  padding: 0;
}
.artworkCorral .artwork2 img {
  height: 200px;
  width: auto;
}
@media only screen and (max-width: 420px) {
  .artworkCorral .artwork2 img {
    width: 100%;
    height: auto;
  }
}
.recipeCorral {
  border-top: 2px solid #dddcd8;
  margin-top: 0.5em;
  padding-top: 1em;
  width: 100%;
}
.recipeCorral h2 {
  font-family: lora, serif;
  font-weight: 700;
  color: black;
}
.recipeCorral table {
  margin: 1em 0 0 0;
  width: 100%;
}
.recipeCorral td {
  vertical-align: top;
  width: 100%;
}
.recipeCorral .recipe {
  padding: 0;
  margin: 0 1em 1em 0;
  font-size: 11px;
  vertical-align: top;
  display: inline-block;
  width: 15%;
}
@media only screen and (max-width: 420px) {
  .recipeCorral .recipe {
    width: 45%;
  }
}
.recipeCorral .recipe h4 a {
  color: black;
}
.recipeCorral .recipe h4 {
  font-family: open-sans, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media print {
  .recipeCorral .recipe h4 {
    font-size: 12px;
  }
}
.recipeCorral .recipe p {
  font-family: open-sans, sans-serif;
  font-size: 11px;
  margin: 0 0 10px 0;
}
.recipeCorral .recipe p:last-child {
  margin: 0;
}
@media print {
  .recipeCorral .recipe p {
    font-size: 10px;
  }
}
.recipeInfoForPrint {
  display: none;
  font-family: open-sans, sans-serif;
  font-size: 11px;
  letter-spacing: normal;
  text-transform: none;
  font-weight: normal;
  float: right;
}
.mainalt .extendedDescription,
.mainalt .categoryDescription {
  -moz-column-count: 2;
  column-count: 2;
  margin: 1em 0;
}
@media only screen and (max-width: 420px) {
  .mainalt .extendedDescription,
  .mainalt .categoryDescription {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.mainalt .productDetailGmap {
  width: 473px;
  width: 235px;
  float: right;
  margin-left: 1em;
}
@media only screen and (max-width: 420px) {
  .mainalt .productDetailGmap {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.mainalt .productDetailGmap_canvas {
  width: 100%;
  height: 300px;
  margin: 0 0 18px 0;
  page-break-inside: avoid;
}
.mainalt #gmapmaker {
  width: 600px;
  height: 480px;
  float: right;
  margin-left: 1em;
}
@media only screen and (max-width: 420px) {
  .mainalt #gmapmaker {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
.mainalt .producerDescription {
  column-count: 1;
  margin: 1em 0;
}
.mainalt h3 {
  clear: both;
}
.infographic {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1em;
  width: 100%;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
}
.infographic .infographicSegment {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  align-items: center;
  width: 32%;
  padding: 0.5em;
  font-family: open-sans, sans-serif;
  background-color: #edece8;
}
.infographic .infographicSegment .desktopIcon {
  display: block;
}
@media only screen and (max-width: 420px) {
  .infographic .infographicSegment .desktopIcon {
    display: none;
  }
}
.infographic .infographicSegment .mobileIcon {
  display: none;
}
@media only screen and (max-width: 420px) {
  .infographic .infographicSegment .mobileIcon {
    display: block;
  }
}
@media only screen and (max-width: 420px) {
  .infographic .infographicSegment {
    padding: 1%;
  }
}
.infographic .infographicSegment .infographicSectionText {
  width: auto;
  text-align: center;
  font-size: 11px;
  flex: 1 1 auto;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
@media only screen and (max-width: 420px) {
  .infographic .infographicSegment .infographicSectionText {
    font-size: 10px;
  }
}
.infographic .infographicSegment .infographicSectionIcons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  align-items: flex-end;
  overflow: hidden;
  text-align: center;
  flex: 1 0 auto;
}
@media only screen and (max-width: 420px) {
  .infographic .infographicSegment .infographicSectionIcons {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.viticultureTable {
  border-collapse: collapse;
  font-size: 12px;
  margin-top: 0.25em;
}
.viticultureTable th {
  font-weight: bold;
  text-align: left;
}
.viticultureTable th,
.viticultureTable td {
  vertical-align: top;
  padding: 0.25em 1em 0.25em 0;
}
.viticultureTable tr.section td {
  border-top: 1px solid #bbbbbb;
}
.presslink {
  margin: 0.5em 0;
  display: flex;
  background-color: #edece8;
  padding: 0.5em;
  align-items: center;
}
.presslink img {
  width: 100px;
  height: auto;
}
.presslink .presstext {
  padding: 0 0.5em;
  font-size: 90%;
  line-height: 1.2;
}
.presslink .presstext a {
  color: #a2120f;
}
@media print {
  .presslink {
    display: none;
  }
}
.recipeSummaries {
  max-width: 600px;
}
.recipeSummaries .summaryText {
  font-weight: 100;
  font-family: open-sans, sans-serif;
}
.recipeSummaries .summaryText .recipeTitle {
  font-family: lora, serif;
  font-weight: 800;
}
@media only screen and (max-width: 420px) {
  .recipeSummaries .summaryText {
    padding-bottom: 1em;
    padding-left: 0.5em;
  }
}
@media only screen and (max-width: 420px) {
  .recipeSummaries td.thumb {
    vertical-align: top;
  }
}
.recipeSummaries td.recipeTableIcons {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 90px;
  height: 90px;
  line-height: 0;
  border-bottom: none;
  padding-bottom: 18px;
}
.recipeSummaries td.recipeTableIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 0;
  border-bottom: none;
  padding-bottom: 5px;
}
.recipeSummaries td.recipeTableIcon div {
  font-size: 85%;
}
.recipeSummaries .recipeThumb {
  width: 90px;
  height: 90px;
  background-size: cover;
  background-position: top;
  max-width: 90px;
  padding-left: 1em;
}
.recipeSummaries .recipeThumb img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .recipeSummaries .recipeThumb {
    float: none;
    padding: 0;
    margin-bottom: 0.25em;
    margin-top: 0.25em;
    width: 80px;
    height: 80px;
  }
}
.recipeSummaries .recipeThumbNarrow {
  width: 90px;
  height: 90px;
  padding-left: 1em;
  text-align: left;
}
.recipeSummaries .recipeThumbNarrow img {
  height: 100%;
  max-height: 90px;
  width: auto;
}
@media only screen and (max-width: 420px) {
  .recipeSummaries .recipeThumbNarrow {
    width: 80px;
    height: 80px;
    float: none;
    padding: 0;
    margin-bottom: 0.5em;
    margin-top: 0.25em;
  }
  .recipeSummaries .recipeThumbNarrow img {
    height: 90px;
    width: auto;
  }
}
.recipe .recipeThumbPlaceholder {
  width: 140px;
  height: 150px;
}
.recipe .recipeThumb {
  width: 140px;
  height: 150px;
}
.recipe .recipeThumb img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 420px) {
  .recipe .recipeThumb {
    float: none;
    padding: 0;
    margin-bottom: 0.25em;
    margin-top: 0.25em;
  }
}
.recipe .recipeThumbNarrow {
  width: 140px;
  height: 150px;
  text-align: left;
}
.recipe .recipeThumbNarrow img {
  width: 140px;
  height: 150px;
  width: auto;
}
@media only screen and (max-width: 420px) {
  .recipe .recipeThumbNarrow {
    float: none;
    padding: 0;
    margin-bottom: 0.5em;
    margin-top: 0.25em;
  }
  .recipe .recipeThumbNarrow img {
    height: 80px;
    width: auto;
  }
}
#recipefilters {
  background-color: #edece8;
  padding: 0.5em;
  width: 270px;
  float: left;
}
@media only screen and (max-width: 420px) {
  #recipefilters {
    display: none;
    padding: 1em;
    width: 100%;
    max-width: 640px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
#recipefilters h3 {
  margin-bottom: 0.2em;
}
#recipefilters fieldset {
  border: none;
  margin-bottom: 0.5em;
}
#recipeFiltersMoreButton {
  display: none;
}
@media only screen and (max-width: 420px) {
  #recipeFiltersMoreButton {
    display: inline-block;
    cursor: pointer;
  }
}
#recipeResultsBlock {
  margin-left: 290px;
}
@media only screen and (max-width: 420px) {
  #recipeResultsBlock {
    margin-left: 0;
  }
}
@media only screen and (max-width: 420px) {
  .recipeSummaries td.recipeTableIcons.mobilehide,
  .recipeSummaries td.thumb.mobilehide {
    display: none;
  }
  .recipeSummaries td.recipeTableIcons.mobileshow,
  .recipeSummaries td.recipeTableIcons.mobileshow {
    display: flex;
  }
}
.cgrid {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-gap: 1em;
  grid-template-rows: 420px 287px 200px;
}
@media only screen and (max-width: 420px) {
  .cgrid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 52vw) repeat(2, 32vw);
  }
}
.gridfeature {
  background-color: #999;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gridfeature .bkgd {
  position: relative;
  width: 100%;
  height: 100%;
  transition: width 0.5s, height 0.5s, left 0.5s, top 0.5s;
  top: 0;
  left: 0;
}
.gridfeature img {
  width: 100%;
  height: auto;
}
.gridfeature1,
.gridfeature1equal {
  grid-column: 1/11;
  grid-row: 1/2;
}
@media only screen and (max-width: 420px) {
  .gridfeature1,
  .gridfeature1equal {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.gridfeature1:hover .bkgd1,
.gridfeature1equal:hover .bkgd1,
.gridfeature2:hover .bkgd2,
.gridfeature2equal:hover .bkgd2,
.gridfeature3:hover .bkgd3,
.gridfeature4:hover .bkgd,
.gridfeature5:hover .bkgd,
.gridfeature6:hover .bkgd {
  top: -5%;
  width: 110%;
  height: 110%;
  left: -5%;
}
.randomRecipeFeature .bkgd {
  background-size: 100%;
  background-position: top;
  transition: background-size 0.5s;
}
.randomRecipeFeature:hover .bkgd {
  background-size: 110%;
}
.gridfeature2 {
  grid-column: 11/15;
  grid-row: 1/2;
}
@media only screen and (max-width: 420px) {
  .gridfeature2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.gridfeature1equal {
  grid-column: 1/8;
}
@media only screen and (max-width: 420px) {
  .gridfeature1equal {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.gridfeature2equal {
  grid-column: 8/15;
  grid-row: 1/2;
}
@media only screen and (max-width: 420px) {
  .gridfeature2equal {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.gridfeature3 {
  grid-column: 1/8;
  grid-row: 2/3;
}
@media only screen and (max-width: 420px) {
  .gridfeature3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.gridfeature4 {
  grid-column: 8/15;
  grid-row: 2/3;
}
@media only screen and (max-width: 420px) {
  .gridfeature4 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.gridfeature5 {
  grid-column: 1/8;
  grid-row: 3/4;
}
@media only screen and (max-width: 420px) {
  .gridfeature5 {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
.gridfeature6 {
  grid-column: 8/15;
  grid-row: 3/4;
}
@media only screen and (max-width: 420px) {
  .gridfeature6 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}
.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.overlay .title {
  text-align: center;
  font-size: 36px;
  line-height: 42px;
  padding: 0 1em;
  font-family: lora, serif;
  text-shadow: #000000 0px 0px 9px;
  font-weight: bold;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
@media only screen and (max-width: 420px) {
  .overlay .title {
    font-size: 24px;
    line-height: 24px;
  }
}
.overlayB {
  position: absolute;
  top: 9px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  background: none;
}
.overlayB .button {
  font-size: 16px;
  padding: 6px 10px;
}
.overlayB .resourceType {
  margin-top: 0.5rem;
  z-index: 999;
}
#vintageFeatures {
  display: flex;
  justify-content: space-between;
  margin: 1em 0;
}
#vintageFeatures div {
  flex: flex-grow;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  padding: 0 1em;
  font-family: lora, serif;
  text-shadow: #000000 0px 0px 9px;
  font-weight: bold;
  padding: 1em 1em;
  background: url(//images.ctfassets.net/pd1o4v2w7ato/26AnPvmdZbj46BixWRycKx/2ee7154f82a8740e84df718c24a10bb5/smithsonian-wine-cellar.jpg);
}
#vintageFeatures div a {
  color: white;
}
.resourceDownloadsCorral {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.resourceDownloadsCorral div {
  flex: none;
  width: 220px;
  margin-right: 1em;
  margin-bottom: 1em;
}
.resourceDownloadsCorral div img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-top: 1px solid lightgray;
  border-left: 1px solid lightgray;
  border-right: 2px solid gray;
  border-bottom: 2px solid gray;
}
.resourceDownloadsCorral div p {
  margin-bottom: 0;
}
@media only screen and (max-width: 420px) {
  .resourceDownloadsCorral div {
    width: 45%;
  }
}
.regform {
  background-color: #edece8;
  padding: 1em;
}
.regform input,
.regform textarea {
  font-size: 120%;
}
.regform textarea {
  width: min(60ch, 80%);
}
.regform input[type=submit] {
  padding: 0.25em 1em;
  margin-inline: auto;
  margin-block: 1em;
  color: white;
  background: #a2120f;
  border: none;
  cursor: pointer;
}
.regform input[type=submit]:hover {
  background: #eb2f2c;
}
fieldset {
  padding: 0.5em;
  margin-block: 1em;
}
.field {
  margin-block: 1em;
  display: flex;
  align-items: center;
}
.field .error-message {
  padding-inline: 0.5em;
  color: red;
  font-style: italic;
}
label {
  margin-right: 0.5em;
}
.field.radiogroup label {
  margin-right: 1em;
  margin-left: 0.25em;
}
.field.inputgroup input + label {
  margin-left: 1em;
}
.form--field--grid {
  display: grid;
}
