body {
  background-color: #333333;
  color: white;
}

#hero {
  height: 80vh;
  background: #333333;
  display: block;
}
#hero h1 {
  position: absolute;
  opacity: 0;
}
#hero img.bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center 25%;
}
#hero img#logo {
  max-width: 500px;
  height: auto;
  display: block;
  position: absolute;
  padding: 32px;
}
#hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(239, 239, 239, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(239, 239, 239, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#efefef",GradientType=1);
}

figure {
  width: 100%;
  height: 290px;
  margin: 0;
  padding: 1rem 1.5rem;
  background: white;
  box-sizing: border-box;
}
figure img {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  max-width: 290px;
  max-height: 290px;
  margin: 0 auto;
  display: block;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media all and (max-width: 1200px) {
  .store-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media all and (max-width: 1000px) {
  .store-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (max-width: 750px) {
  .store-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 550px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}
.store-grid article {
  cursor: pointer;
  overflow: hidden;
}

article {
  padding-bottom: 2rem;
  border-right: 1px dotted;
  border-bottom: 1px solid white;
  background-color: #ffd004;
  color: #333333;
}
article a {
  text-decoration: none;
  color: #333333;
}
article .title {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #333333;
  text-decoration: none;
  padding: 1rem 1.5rem;
}

.lilita-one-regular {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body.locked {
  overflow: hidden;
}

dl dt {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 40%;
  display: inline-block;
  text-align: right;
  padding: 4px 8px 4px 0;
}
dl dd {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  clear: both;
  margin: 0;
  width: 40%;
  display: inline-block;
  padding: 4px 0 4px 8px;
}

.twocols {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
}
.twocols .col {
  padding: 16px;
  border-radius: 12px;
}
.twocols .col:last-child {
  max-height: 400px;
  overflow-y: auto;
  background-color: #f9f9f9;
}
@media all and (max-width: 600px) {
  .twocols .col:last-child {
    overflow-y: inherit;
  }
}
@media all and (max-width: 600px) {
  .twocols {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw; /* Full width */
  height: 100vh; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}
.modal .panel {
  background: white;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #ffd004;
  margin: 100px auto;
  z-index: 2;
  max-width: 900px;
  width: 85%;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}
.modal .panel .content {
  overflow: hidden;
  height: 100%;
  position: relative;
  width: 100%;
  border-radius: 12px;
}
@media all and (max-width: 600px) {
  .modal .panel .content .inn {
    overflow-y: auto;
    height: 100%;
  }
}
.modal .panel .title {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #333333;
  text-decoration: none;
  padding: 1rem 1.5rem;
}
.modal .panel table {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
}
.modal .panel table tr {
  background-color: white;
}
.modal .panel table tr:hover {
  background-color: #dfdfdf;
}
.modal .panel table td {
  border-bottom: #cccccc;
  padding: 8px 12px;
  font-size: 14px;
}
.modal .panel table td p {
  margin: 0;
  padding: 0;
}
.modal .panel .link {
  display: block;
  text-align: center;
  position: absolute;
  bottom: -20px;
  width: 100%;
}
.modal .panel .link a {
  font-family: "Lilita One", sans-serif;
  color: #333333;
  background-color: #ffd004;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 12px 0 0 0;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  text-align: center;
  margin: 0 auto;
  width: 350px;
}
@media all and (max-width: 600px) {
  .modal .panel {
    height: calc(100vh - 100px);
    margin: 50px auto;
  }
}
.modal .panel .close {
  position: absolute;
  right: 10px;
  height: 10px;
  z-index: 2;
}

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