@charset "UTF-8";
:root {
  --primary-text-color: #919292;
  --link-color: #919292;
  --link-color-hover: #fff;
  --background-color: #232323;
  --footer-background-color: #2A2A2A;
  --blackout-background-color: rgb(from #232323 r g b / 0.75);
  --serif: "Cardo", serif;
  --sans: "Montserrat", sans-serif;
  --padding: 1.5rem;
  --text-max-width: 42rem;
  --full-width-max-width: 50rem;
  --mobile-vertical-padding: 4rem;
  --desktop-vertical-padding: 10rem;
  --desktop-menu-height: 4.4rem;
  --mobile-menu-height: 2.7rem;
  --speed: 0.5s;
  --menu-z-index: 201;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ir {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.font-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.undo-font-smoothing {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-smoothing: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background-color);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@media (max-width: 919px) {
  body {
    padding-top: var(--mobile-menu-height);
  }
}
@media (min-width: 920px) {
  body {
    padding-top: var(--desktop-menu-height);
  }
}

.site-content {
  flex-grow: 1;
}

img {
  max-width: 100%;
  height: auto;
}

.header-logo-container {
  position: relative;
}
.header-logo-container .header-logo {
  width: 236px;
  height: 28px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -118px;
  margin-top: -14px;
}
@media (min-width: 920px) {
  .header-logo-container .header-logo {
    width: 472px;
    height: 56px;
    margin-left: -236px;
    margin-top: -28px;
  }
}

.center-align {
  display: flex;
  align-items: center;
}

.center-justify {
  display: flex;
  justify-content: center;
}

.reverse {
  flex-direction: row-reverse;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

@media (min-width: 920px) {
  .flexbox-columns {
    display: flex;
  }
  .flexbox-columns .flexbox-column {
    flex: 1 1 auto;
  }
  .flexbox-columns .flexbox-column + .flexbox-column {
    padding-left: 1rem;
  }
}

html {
  font-size: 20px;
  color: var(--primary-text-color);
  font-family: var(--serif);
  font-optical-sizing: auto;
  line-height: 1.4;
}
@media (min-width: 920px) and (max-width: 1199px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}

body {
  font-size: 0.8rem;
}

a {
  cursor: pointer;
  color: var(--link-color);
}
a:hover, a.active, a.parent {
  color: var(--link-color-hover);
}

p, ul, ol, blockquote, h2 {
  margin: 1em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1.8rem;
}

h4 {
  font-size: 0.8rem;
}

@media (max-width: 919px) {
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
img {
  display: block;
}

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

.big-text {
  font-size: 1.4rem;
}
@media (max-width: 919px) {
  .big-text {
    text-align: center;
    font-size: 0.9rem;
  }
}

.sans, .chunk-blockquote > p, .chunk-mobile-details-list, .chunk-icon-link, .chunk-small-list, .panel-text-by-photo p, .site-footer, .desktop-menu, .underlined-title, .modal h4, .chunk-big-list h4, h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.underlined-title, .modal h4, .chunk-big-list h4 {
  font-size: 0.8rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0 0 0.35rem;
}
.underlined-title a, .modal h4 a, .chunk-big-list h4 a {
  color: inherit;
  text-decoration: none;
}

button, .button {
  cursor: pointer;
}

.row {
  margin: 0 -0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  padding: 0 0.5rem;
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (max-width: 919px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
.desktop-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  height: var(--desktop-menu-height);
  z-index: var(--menu-z-index);
}
.desktop-menu a {
  text-decoration: none;
}
.desktop-menu ul {
  display: flex;
  flex: 1 0 0;
  max-width: 35%;
  margin: 0 auto;
  list-style: none;
  justify-content: center;
}
.desktop-menu li {
  flex: 1 0 0;
  margin: 0;
  white-space: nowrap;
}
.desktop-menu .center {
  font-family: var(--serif);
  font-size: 1.5rem;
}
.desktop-menu .center a {
  color: #fff;
}
.desktop-menu:after {
  content: "";
  display: block;
  background: #000;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-left: -0.875rem;
  margin-bottom: -0.875rem;
  transform: rotate(45deg);
}
@media (max-width: 919px) {
  .desktop-menu {
    display: none;
  }
}

.mobile-menu {
  background: #000;
  height: var(--mobile-menu-height);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 201;
}
@media (min-width: 920px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu ul {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  height: auto;
  min-height: 100vh;
  overflow: auto;
  opacity: 0;
  transition: opacity var(--speed);
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  list-style: none;
}
.mobile-menu li {
  margin: 0.75rem 0;
  padding: 0;
}
.mobile-menu a {
  text-decoration: none;
}

.toggle-mobile-menu {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0.65rem;
  right: var(--padding);
  z-index: 1;
}
.toggle-mobile-menu span:not(.visually-hidden), .toggle-mobile-menu:before, .toggle-mobile-menu:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all var(--speed);
}
.toggle-mobile-menu:before {
  top: 15%;
}
.toggle-mobile-menu span {
  top: 50%;
}
.toggle-mobile-menu:after {
  top: 85%;
}

@media (max-width: 1199px) {
  body.show-mobile-menu {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  body.show-mobile-menu .mobile-menu ul {
    display: flex;
  }
  body.fade-in-mobile-menu .mobile-menu .toggle-mobile-menu span {
    opacity: 0;
  }
  body.fade-in-mobile-menu .mobile-menu .toggle-mobile-menu:before {
    top: 50%;
    transform: rotate(45deg);
  }
  body.fade-in-mobile-menu .mobile-menu .toggle-mobile-menu:after {
    top: 50%;
    transform: rotate(-45deg);
  }
  body.fade-in-mobile-menu .mobile-menu ul {
    opacity: 1;
  }
}
.site-footer {
  background-color: var(--footer-background-color);
  padding: 1.25rem var(--padding) 2rem;
  font-size: 0.6rem;
  color: #976E40;
}
.site-footer a {
  text-decoration: none;
  color: inherit;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.site-footer li {
  margin: 0;
  padding: 0;
}
.site-footer .wrapper {
  max-width: 80rem;
  margin: 0 auto;
}
.site-footer .social-menu {
  margin-bottom: 1rem;
}
.site-footer .social-menu li {
  margin-left: 1rem;
}
.site-footer .bottom {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 920px) {
  .site-footer .bottom li + li:before {
    content: "  |  ";
  }
}
.site-footer .footer-logo {
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--primary-text-color);
  font-family: var(--serif);
}
@media (max-width: 919px) {
  .site-footer {
    padding: var(--mobile-vertical-padding) var(--padding);
    text-align: center;
  }
  .site-footer .social-menu {
    justify-content: center;
  }
  .site-footer .footer-logo {
    display: none;
  }
  .site-footer .bottom {
    display: block;
  }
  .site-footer .bottom ul {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  .site-footer .bottom li {
    margin-bottom: 1rem;
  }
}

.panel-header-image img {
  width: 100%;
  height: calc(100vh - var(--desktop-menu-height));
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 919px) {
  .panel-header-image img {
    height: calc(100vh - var(--mobile-menu-height));
  }
}

.panel-text {
  margin: var(--desktop-vertical-padding) var(--padding);
}
.panel-text p, .panel-text .chunk-big-list, .panel-text .chunk-big-text-with-header {
  max-width: var(--text-max-width);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 919px) {
  .panel-text {
    margin: var(--mobile-vertical-padding) var(--padding);
  }
}

.panel-plain-text {
  padding: var(--desktop-vertical-padding) var(--padding);
  margin: 0 auto;
  max-width: var(--text-max-width);
  font-size: 1rem;
}
.panel-plain-text h2 {
  margin-bottom: 0;
}

.panel-text-by-photo {
  text-align: center;
  line-height: 1.8;
}
.panel-text-by-photo img {
  width: 100%;
}
.panel-text-by-photo .text {
  padding: var(--mobile-vertical-padding) var(--padding);
}
.panel-text-by-photo .text > * {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 920px) {
  .panel-text-by-photo {
    display: flex;
    align-items: center;
  }
  .panel-text-by-photo > * {
    flex: 1 1 0;
  }
}

.panel-wine-list {
  padding: 0 var(--padding) var(--desktop-vertical-padding);
}
.panel-wine-list img {
  margin-bottom: var(--desktop-vertical-padding);
}
.panel-wine-list .inner {
  max-width: var(--text-max-width);
  margin: 0 auto;
}
@media (max-width: 919px) {
  .panel-wine-list {
    text-align: center;
    padding-bottom: var(--mobile-vertical-padding);
  }
  .panel-wine-list img {
    margin: 0 auto var(--mobile-vertical-padding);
    max-width: 80%;
  }
}

.panel-wine-detail {
  padding: var(--desktop-vertical-padding) var(--padding);
}
.panel-wine-detail .bottle {
  margin-bottom: var(--desktop-vertical-padding);
}
.panel-wine-detail .inner {
  max-width: var(--text-max-width);
  margin: 0 auto;
}
.panel-wine-detail .chunk-icon-link,
.panel-wine-detail .details-lists {
  margin-top: var(--mobile-vertical-padding);
}
@media (max-width: 919px) {
  .panel-wine-detail {
    text-align: center;
    padding: var(--mobile-vertical-padding) var(--padding);
  }
  .panel-wine-detail .bottle {
    margin: 0 auto var(--mobile-vertical-padding);
    max-width: 70%;
  }
  .panel-wine-detail .chunk-small-list + .chunk-small-list {
    margin-top: 1.5rem;
  }
}

.panel-gallery img {
  width: 100%;
}

.chunk-big-list h4 {
  margin: 0;
}
.chunk-big-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
}
.chunk-big-list ul + h4,
.chunk-big-list p + h4 {
  margin-top: 5rem;
}
.chunk-big-list li {
  margin: 1rem 0 0 0;
  padding: 0;
}
.chunk-big-list p {
  font-size: 1.4rem;
  margin: 1.5rem 0;
}
.chunk-big-list a {
  text-decoration: none;
}
@media (max-width: 919px) {
  .chunk-big-list {
    text-align: center;
  }
  .chunk-big-list ul {
    font-size: 1.2rem;
  }
  .chunk-big-list ul + h4 {
    margin-top: 4rem;
  }
  .chunk-big-list li {
    margin-top: 1.5rem;
  }
  .chunk-big-list p {
    font-size: 0.9rem;
  }
}

.chunk-small-list {
  color: #fff;
  font-size: 0.7rem;
}
.chunk-small-list h4 {
  font-size: inherit;
  border-bottom: 1px solid #fff;
  margin: 0;
  padding: 0 0 0.2rem;
}
.chunk-small-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.chunk-small-list li {
  margin: 0.75rem 0 0 0;
  padding: 0;
}
@media (max-width: 919px) {
  .chunk-small-list {
    text-align: center;
  }
}

.chunk-icon-link a {
  color: #fff;
  text-decoration: none;
}
.chunk-icon-link a:hover img {
  left: 0.25rem;
}
.chunk-icon-link img {
  display: inline-block;
  position: relative;
  left: 0;
  transition: left var(--speed);
}

.chunk-image {
  max-width: 48rem;
  margin: 0 auto;
}

.chunk-outsized-image {
  max-width: 48rem;
  margin: 0 auto;
}
.chunk-outsized-image img {
  width: 100%;
}

@media (max-width: 919px) {
  .panel-text .chunk-outsized-image {
    margin-left: calc(var(--padding) * -1);
    margin-right: calc(var(--padding) * -1);
  }
}

.chunk-vineyard-details {
  max-width: 44rem;
  margin: 0 auto;
}

.chunk-mobile-details-list {
  font-size: 0.6rem;
  text-align: center;
}
.chunk-mobile-details-list ul, .chunk-mobile-details-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.chunk-mobile-details-list li + li {
  margin-top: 1rem;
}
.chunk-mobile-details-list span {
  color: #fff;
}

.chunk-blockquote {
  max-width: var(--text-max-width);
  margin: 0 auto;
  text-align: center;
}
.chunk-blockquote blockquote {
  font-size: 1.4rem;
  font-style: italic;
}
@media (max-width: 919px) {
  .chunk-blockquote blockquote {
    font-size: 1.2rem;
  }
  .chunk-blockquote > p {
    margin-top: 0.5rem;
  }
}

.chunk-big-text-with-header {
  font-size: 1.4rem;
  margin: 2rem 0;
}
.chunk-big-text-with-header p {
  margin: 0;
}
.chunk-big-text-with-header p:first-child {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5rem;
  margin: 3rem 0 0.5rem;
}

.space-chunk-above {
  margin-top: 7rem;
}
@media (max-width: 919px) {
  .space-chunk-above {
    margin-top: var(--mobile-vertical-padding);
  }
}

.space-chunk-below {
  margin-bottom: 7rem;
}
@media (max-width: 919px) {
  .space-chunk-below {
    margin-bottom: var(--mobile-vertical-padding);
  }
}

body.show-modal {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  opacity: 0;
  transition: opacity var(--speed);
  overflow: auto;
  background: #000;
  padding: 5rem var(--padding);
  z-index: var(--menu-z-index);
}
@media (min-width: 920px) {
  .modal.show-modal {
    display: block;
  }
}
@media (max-width: 919px) {
  .modal.show-modal {
    display: block;
  }
}
.modal .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
}
.modal.fade-in-modal {
  opacity: 1;
}
.modal .close-modal {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 1;
}
@media (max-width: 919px) {
  .modal .close-modal {
    left: var(--padding);
    top: var(--padding);
    width: 1rem;
    height: 1rem;
  }
}
.modal .close-modal:before, .modal .close-modal:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all var(--speed);
  top: 50%;
}
.modal .close-modal:before {
  transform: rotate(45deg) scale(1.4);
}
.modal .close-modal:after {
  transform: rotate(-45deg) scale(1.4);
}
.modal .text {
  max-width: 45rem;
}
@media (max-width: 919px) {
  .modal .text {
    text-align: center;
  }
}
.modal h4 {
  margin: 4rem 0 0;
}
.modal h2 {
  font-size: 1.4rem;
  margin: 0.5rem 0 1.5rem;
}
@media (max-width: 919px) {
  .modal h2 {
    font-size: 1.2rem;
    margin: 1.5rem 0 2.5rem;
  }
}
.modal p {
  font-size: 1.4rem;
}
@media (max-width: 919px) {
  .modal p {
    font-size: 0.9rem;
  }
}
.modal .chunk-small-list p {
  font-size: inherit;
}
.modal .chunk-icon-link {
  margin-top: 2rem;
}
@media (max-width: 919px) {
  .modal .chunk-icon-link {
    margin-top: 2.5rem;
  }
}

.wine-modal .bottle-image {
  width: 52rem;
  max-width: 100%;
}
@media (max-width: 919px) {
  .wine-modal .bottle-image {
    width: 8rem;
    margin: 0 auto;
  }
}

.club-modal h2 {
  text-align: center;
}
.club-modal .chunk-small-list {
  text-align: center;
  color: inherit;
}
.club-modal .chunk-small-list ul {
  list-style: disc inside;
}
@media (max-width: 919px) {
  .club-modal .chunk-small-list ul {
    list-style: none;
  }
}
.club-modal .features-list {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1rem 0;
}
@media (max-width: 919px) {
  .club-modal .features-list {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
  }
}

.event-modal .table-wrapper {
  border-top: 1px solid #fff;
  margin-top: 3rem;
  padding-top: 1rem;
}
.event-modal table {
  margin: 0 auto;
  font-family: var(--sans);
  text-transform: uppercase;
  line-height: 1.6;
  font-size: 0.8rem;
  color: #fff;
}
.event-modal td {
  padding: 0;
}
.event-modal td:first-child {
  padding-right: 1em;
  text-align: right;
}
.event-modal .chunk-mobile-details-list {
  border-top: 1px solid var(--primary-text-color);
  border-bottom: 1px solid var(--primary-text-color);
  margin-top: 1.5rem;
  padding: 1.5rem 0;
}

.club-modal h2,
.event-modal h2 {
  text-align: center;
}
@media (max-width: 919px) {
  .club-modal h2,
  .event-modal h2 {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #fff;
    color: #fff;
    margin-bottom: 1.5rem;
  }
}

.rollover-link .hover-text {
  display: none;
}
@media (min-width: 920px) {
  .rollover-link.rolled-over .hover-text {
    display: block;
  }
  .rollover-link.rolled-over .default-text {
    display: none;
  }
}

@media (min-width: 920px) {
  .small-only {
    display: none;
  }
}

@media (max-width: 919px) {
  .medium-only {
    display: none;
  }
}
@media (min-width: 1200px) {
  .medium-only {
    display: none;
  }
}

@media (max-width: 1199px) {
  .large-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .small-and-medium-only {
    display: none;
  }
}

@media (max-width: 919px) {
  .medium-and-large-only {
    display: none;
  }
}