/*-----------------------------------------------------------------
  Variables
-----------------------------------------------------------------*/

:root {
  --gold: #b1a879;
  --gold-rgb: 177, 168, 121;

  --beige: #f4f2e7;
  --beige-rgb: 244, 242, 231;

  --grey: #444444;
  --grey-rgb: 68, 68, 68;

  --light-grey: #d9d9d9;
  --light-grey-rgb: 217, 217, 217;

  --white: #ffffff;
  --white-rgb: 255, 255, 255;

  --header-height: 90px;
  --admin-height: 32px;

  --transition: 0.25s ease all;
}

@media screen and (max-width: 782px) {
  :root {
    --admin-height: 46px;
  }
}

/*-----------------------------------------------------------------
  Base
-----------------------------------------------------------------*/

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
  line-height: 20px;
  -webkit-font-smoothing: antialiased !important;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
}

html {
  box-sizing: border-box;
}

* {
  scroll-behavior: smooth;
  scroll-margin-top: calc(var(--header-height) + 60px);
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* Admin Bar */

#wpadminbar {
  position: fixed !important;
  z-index: 20000000000001;
}

/* Switching Button */

#user_switching_switch_on {
  bottom: 20px !important;
  left: 20px !important;
}

#user_switching_switch_on a {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: inline-block !important;
  background: var(--gold) !important;
  padding: 15px 25px !important;
  border: 0.5px solid var(--gold) !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 12px !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  text-align: center !important;
  line-height: 20px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

#user_switching_switch_on a:hover,
#user_switching_switch_on a:focus,
#user_switching_switch_on a:active {
  background: var(--grey) !important;
  border: 0.5px solid var(--grey) !important;
}

/*-----------------------------------------------------------------
  Global Layout
-----------------------------------------------------------------*/

section {
  position: relative;
  z-index: 99;
}

.clear {
  clear: both;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* Flex Layout */

.flex,
.flex-start,
.flex-center,
.flex-end,
.flex-align-start,
.flex-align-center,
.flex-align-end,
.flex-justify-start,
.flex-justify-center,
.flex-justify-end,
.flex-justify-between {
  display: flex;
  flex-wrap: wrap;
}

.flex-start,
.flex-align-start {
  align-items: flex-start;
}

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

.flex-end,
.flex-align-end {
  align-items: flex-end;
}

.flex-justify-start {
  justify-content: flex-start;
}

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

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify,
.flex-justify-between {
  justify-content: space-between;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-header {
  gap: 1rem;
}

/* Containers */

.container,
.container-xlarge,
.container-large,
.container-medium,
.container-small,
.container-xsmall {
  z-index: 9;
  position: relative;
  margin: auto;
  width: calc(100% - 40px);
}

.container-xlarge {
  max-width: 1500px;
}

.container-large {
  max-width: 1350px;
}

.container-medium {
  max-width: 1200px;
}

.container-small {
  max-width: 820px;
}

.container-xsmall {
  max-width: 700px;
}

/* Padding */

.section-padding {
  padding: 100px 0;
}

.section-padding-top {
  padding-top: 100px;
}

.section-padding-bottom {
  padding-bottom: 100px;
}

.container-padding {
  padding: 50px 0;
}

.container-padding-top {
  padding-top: 50px;
}

.container-padding-bottom {
  padding-bottom: 50px;
}

.inner-padding {
  padding: 30px;
}

.no-padding {
  padding: 0;
}

/* Grid Layout */

.layout-columns-1,
.layout-columns-2,
.layout-columns-3,
.layout-columns-4,
.layout-columns-5,
.layout-columns-6 {
  display: grid;
  gap: 30px;
}

.layout-columns-1,
.layout-columns-2,
.layout-columns-3 {
  gap: 50px;
}

.layout-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.layout-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.layout-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.layout-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.layout-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Device Visibility */

.desktop-only {
  display: block !important;
}

.mobile-only {
  display: none !important;
}

/* Responsive */

@media screen and (max-width: 900px) {
  .section-posts .layout-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 860px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-padding-top {
    padding-top: 50px;
  }

  .section-padding-bottom {
    padding-bottom: 50px;
  }

  .layout-columns-1,
  .layout-columns-2,
  .layout-columns-3 {
    gap: 50px;
  }

  .layout-columns-2 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .layout-columns-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 720px) {
  .layout-columns-2,
  .layout-columns-3 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .layout-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

@media screen and (max-width: 550px) {
  .section-padding {
    padding: 40px 0;
  }

  .section-padding-top {
    padding-top: 40px;
  }

  .section-padding-bottom {
    padding-bottom: 40px;
  }

  .container-padding {
    padding: 25px 0;
  }

  .container-padding-top {
    padding-top: 20px;
  }

  .container-padding-bottom {
    padding-bottom: 20px;
  }

  .layout-columns-1,
  .layout-columns-2 {
    gap: 40px;
  }

  .layout-columns-3,
  .layout-columns-4 {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .layout-columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-----------------------------------------------------------------
  Backgrounds
-----------------------------------------------------------------*/

.background-beige {
  background-color: var(--beige);
}

.background-gold {
  background-color: var(--gold);
}

/*-----------------------------------------------------------------
  Global Buttons
-----------------------------------------------------------------*/

.button,
#place_order,
form *[type='submit'] {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: inline-block !important;
  background: transparent !important;
  padding: 15px 25px !important;
  padding-right: 60px !important;
  border: 0.5px solid var(--grey) !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 12px !important;
  color: var(--grey) !important;
  font-weight: 600 !important;
  text-align: center !important;
  line-height: 20px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

/* Button Arrow */

.button:before {
  content: '';
  display: block;
  position: absolute;
  right: 25px;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  background: url('../img/button-arrow-grey.svg') 50% 50% no-repeat;
  background-size: contain !important;
  z-index: 99;
}

/* States */

.button:hover,
.button:focus,
.button:active,
#place_order:hover,
#place_order:focus,
#place_order:active,
form *[type='submit']:hover,
form *[type='submit']:focus,
form *[type='submit']:active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.button:hover:before,
.button:focus:before,
.button:active:before {
  background: url('../img/button-arrow-white.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

.button[disabled],
.button.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* White Button */

.button-white {
  background: transparent !important;
  border: 0.5px solid var(--white) !important;
  color: var(--white) !important;
}

.button-white:hover,
.button-white:focus,
.button-white:active {
  background: transparent !important;
  border: 0.5px solid var(--grey) !important;
  color: var(--grey) !important;
}

.button-white:before {
  background: url('../img/button-arrow-white.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

.button-white:hover:before,
.button-white:focus:before,
.button-white:active:before {
  background: url('../img/button-arrow-grey.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

/* Gold Button */

.button-gold,
.checkout-button,
.woocommerce #payment *[type='submit'],
form.cart *[type='submit'] {
  border: 0.5px solid var(--gold) !important;
  background: var(--gold) !important;
  color: var(--white) !important;
}

.button-gold:hover,
.button-gold:focus,
.button-gold:active,
.checkout-button:hover,
.checkout-button:focus,
.checkout-button:active,
.woocommerce #payment *[type='submit']:hover,
.woocommerce #payment *[type='submit']:focus,
.woocommerce #payment *[type='submit']:active,
form.cart *[type='submit']:hover,
form.cart *[type='submit']:focus,
form.cart *[type='submit']:active {
  border: 0.5px solid var(--grey) !important;
  background: transparent !important;
  color: var(--grey) !important;
}

.button-gold:before,
.checkout-button:before,
.woocommerce #payment *[type='submit']:before,
form.cart *[type='submit']:before {
  background: url('../img/button-arrow-white.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

.button-gold:hover:before,
.button-gold:focus:before,
.button-gold:active:before,
.checkout-button:hover:before,
.checkout-button:focus:before,
.checkout-button:active:before,
.woocommerce #payment *[type='submit']:hover:before,
.woocommerce #payment *[type='submit']:focus:before,
.woocommerce #payment *[type='submit']:active:before,
form.cart *[type='submit']:hover:before,
form.cart *[type='submit']:focus:before,
form.cart *[type='submit']:active:before {
  background: url('../img/button-arrow-grey.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

/* Arrow Button */

.button-arrow {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none !important;
  letter-spacing: 1px;
  font-weight: 600;
}

.button-arrow,
.button-arrow svg .icon {
  transition: var(--transition);
}

.button-arrow svg {
  width: 14px;
  height: 14px;
}

.button-arrow:hover,
.button-arrow:focus,
.button-arrow:active {
  color: var(--gold);
  gap: 25px;
}

.button-arrow:hover svg .icon,
.button-arrow:focus svg .icon,
.button-arrow:active svg .icon {
  fill: var(--gold);
}

.button-arrow.arrow-back svg {
  transform: rotate(180deg);
  transform-origin: center;
}

/* Download Button */

.button-download:before {
  width: 15px;
  height: 15px;
  background: url('../img/icon-download-grey.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

.button-download:hover:before,
.button-download:focus:before,
.button-download:active:before {
  background: url('../img/icon-download-white.svg') 50% 50% no-repeat;
  background-size: contain !important;
}

/* Button Group */

.button-group {
  display: flex;
  gap: 15px;
}

/*-----------------------------------------------------------------
  Global Forms
-----------------------------------------------------------------*/

/* Labels */

form label,
form legend,
.wcpa_field_label {
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--grey) !important;
  line-height: 20px !important;
  margin: 0 0 5px !important;
}

/* Default Fields */

/* input,
select,
textarea,
.form-row input,
.form-row select,
.form-row textarea,
form.cart input,
form.cart select,
form.cart textarea,
.wcpa_row input,
.wcpa_row select,
.wcpa_row textarea */

form input,
.add_gift_card_form input,
form select,
form textarea,
.form-row input,
.form-row select,
.form-row textarea,
form.cart input,
form.cart select,
form.cart textarea,
.wcpa_row input,
.wcpa_row select,
.wcpa_row textarea {
  appearance: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 16px !important;
  color: var(--grey) !important;
  font-weight: 400 !important;
  padding: 15px !important;
  text-align: left !important;
  border: 0.5px solid var(--grey) !important;
  line-height: 20px !important;
  display: inline-block !important;
  width: 100%;
  height: auto !important;
  position: relative;
  resize: none !important;
  max-height: 400px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  apearance: none !important;
}

/* Placeholder */

form ::placeholder {
  font-family: 'Source Sans 3', sans-serif !important;
  font-size: 16px !important;
  color: rgba(var(--grey-rgb), 0.5) !important;
  font-weight: 400 !important;
}

/* Select */

form select,
.form-row select,
.wcpa_row select {
  background: white url('../img/icon-chevron-down.svg') 50% no-repeat !important;
  background-size: 10px !important;
  background-position: center right 15px !important;
}

/* Select2 */

.select2-container,
.select2-container * {
  font-size: 16px !important;
  color: var(--grey) !important;
  font-size: 16px !important;
  color: var(--grey) !important;
  font-weight: 400 !important;
}

.select2-container {
  height: 52px;
}

.select2-dropdown {
  border-radius: 0 !important;
  border-color: var(--grey) !important;
}

.select2-container .select2-selection--single {
  height: auto;
  border: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 15px !important;
  text-align: left !important;
  border: 0.5px solid var(--grey) !important;
  line-height: 20px !important;
}

.select2-container--default .select2-results__option--highlighted {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.select2-container .select2-selection__arrow b {
  display: none !important;
}

/* Checkbox & Radio */

input[type='checkbox'],
input[type='radio'],
form input[type='checkbox'],
form input[type='radio'],
.form-row input[type='checkbox'],
.form-row input[type='radio'],
form.cart input[type='checkbox'],
form.cart input[type='radio'],
.wcpa_checkbox_custom {
  appearance: none;
  padding: 0 !important;
  min-width: 18px !important;
  max-width: 18px !important;
  width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  height: 18px !important;
  border: 1px solid var(--gold) !important;
  margin: 3px 5px 4px 0 !important;
  vertical-align: middle !important;
  display: inline-block;
  cursor: pointer;
}

.wcpa_wrap .wcpa_group_field,
.wcpa_wrap .wcpa_grp_items {
  gap: 0 !important;
}

/* Checkbox */

input[type='checkbox'],
.form-row input[type='checkbox'],
form.cart input[type='checkbox'] {
  background: var(--white) url(../img/icon-checkbox.svg) 50% no-repeat !important;
  background-size: 10px !important;
  border-radius: 0 !important;
}

.wcpa_checkbox label {
  padding: 0 !important;
  margin: 0 !important;
}

.wcpa_checkbox_custom {
  margin-right: 10px !important;
}

.wcpa_checkbox_custom:before,
.wcpa_checkbox_custom:after {
  display: none;
}

input[type='checkbox']:checked,
.form-row input[type='checkbox']:checked,
form.cart input[type='checkbox']:checked,
.wcpa_selected .wcpa_checkbox_custom {
  background: var(--gold) url(../img/icon-checkbox.svg) 50% no-repeat !important;
  background-size: 10px !important;
}

input[type='radio'],
.form-row input[type='radio'],
form.cart input[type='radio'],
form.checkout input[type='radio'] {
  border-radius: 20px !important;
}

input[type='radio']:checked,
.form-row input[type='radio']:checked,
form.cart input[type='radio']:checked,
form.checkout input[type='radio']:checked {
  border-radius: 20px !important;
  border: 5px solid var(--gold) !important;
}

/* Form Layout */

.form-row {
  padding: 0 !important;
  margin: 0 0 15px 0 !important;
}

.form-row-first,
.form-row-last {
  width: calc(50% - 10px) !important;
}

/* Misc */

fieldset {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/*-----------------------------------------------------------------
  Search Form
-----------------------------------------------------------------*/

#search-popup h4 {
  margin-bottom: 30px;
}

.search-form {
  position: relative;
}

.search-form *[type='submit'],
.search-form *[type='submit']:hover,
.search-form *[type='submit']:focus,
.search-form *[type='submit']:active {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 0 !important;
  width: 40px !important;
  height: 50px !important;
  position: absolute !important;
  bottom: 0;
  right: 0;
  background: url('../img/icon-search.svg') 50% no-repeat !important;
  background-size: 16px !important;
}

#search-popup .search-form input {
  padding: 0 5px 20px !important;
  border: 0 !important;
  border-bottom: 0.5px solid var(--grey) !important;
}

#search-popup .search-form *[type='submit'],
#search-popup .search-form *[type='submit']:hover,
#search-popup .search-form *[type='submit']:focus,
#search-popup .search-form *[type='submit']:active {
  height: 62px !important;
}

/*-----------------------------------------------------------------
  Category Form
-----------------------------------------------------------------*/

form.category-form p,
form.category-form select {
  margin-right: 10px;
  width: auto;
}

form.category-form select {
  padding: 0 30px 0 0 !important;
  border: 0 !important;
  background-color: transparent !important;
}

/*-----------------------------------------------------------------
  Post Password Form
-----------------------------------------------------------------*/

form.post-password-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

form.post-password-form,
form.post-password-form input {
  margin: 0 !important;
}

form.post-password-form h4 {
  flex: 100%;
  margin: 0 0 20px !important;
}

form.post-password-form input {
  flex: 1;
}

form.post-password-form *[type='submit'] {
  max-width: 200px;
  margin-left: 20px !important;
  padding: 15px 20px !important;
}

/*-----------------------------------------------------------------
  Gravity Forms
-----------------------------------------------------------------*/

.gform_wrapper .gfield_description,
.gform_wrapper .gform_fileupload_rules {
  margin: 5px 0 0 0 !important;
  font-weight: 400 !important;
}

.gform_wrapper .gform_fields,
.gform_wrapper .ginput_complex {
  gap: 20px !important;
}

.gform_wrapper .gfield_required {
  color: var(--gold) !important;
}

.gform_wrapper .gform_ajax_spinner {
  width: 12px !important;
  height: 40px !important;
  margin: 0 0 0 20px !important;
  display: inline-block;
  vertical-align: middle;
  /* display: none !important; */
}

/* Radio / Checkbox */

.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-size: 14px !important;
  display: inline-block !important;
  width: auto;
}

/* Date */

.gform_wrapper .ginput_container_date {
  flex-basis: auto !important;
  width: 30% !important;
}

/* File Upload */

.gform_wrapper .gform_drop_area {
  padding: 20px !important;
  border-radius: 5px !important;
  border: 2px dashed var(--grey) !important;
}

.gform_wrapper .gform_drop_area * {
  margin: 5px auto !important;
}

.gform_wrapper .gform_delete_file,
.gform_wrapper .gform_delete_file * {
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: red !important;
}

.gform_wrapper .gform_delete_file,
.gform_wrapper .gform_delete_file:hover {
  border: 0 !important;
  box-shadow: none !important;
  min-width: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: red !important;
}

.gform_wrapper .ginput_container_fileupload {
  margin: 0 0 10px !important;
}

.gform_wrapper .ginput_container_fileupload .validation_message {
  margin: 10px 0 0 !important;
}

/* Password */

.gform_wrapper .ginput_container_password label {
  margin: 5px 0 0 !important;
  font-weight: 400 !important;
  opacity: 0.5;
}

.gform_wrapper .password_input_container {
  position: relative;
}

.gform_wrapper .password_input_container button,
.gform_wrapper .password_input_container button:hover,
.gform_wrapper .password_input_container button:focus,
.gform_wrapper .gfield_password_strength {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.gform_wrapper .password_input_container button,
.gform_wrapper .password_input_container button:hover,
.gform_wrapper .password_input_container button:focus {
  position: absolute;
  display: block !important;
  right: 15px;
  min-width: 20px !important;
  color: var(--gold) !important;
}

.gform_wrapper .password_input_container button span {
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
}

.gform_wrapper .gfield_password_strength {
  color: var(--grey) !important;
  font-weight: 400;
  text-align: left;
  margin: 5px 0 0 !important;
}

.gform_wrapper .gfield_password_strength.strong {
  color: green !important;
}

.gform_wrapper .gfield_password_strength.good,
.gform_wrapper .gfield_password_strength.bad {
  color: orange !important;
}

.gform_wrapper .gfield_password_strength.bad,
.gform_wrapper .gfield_password_strength.short {
  color: red !important;
}

/* Pricing */

.gfield_price .gform-field-label.ginput_product_price_label {
  display: none;
}

.gform_wrapper.gravity-theme .ginput_product_price_wrapper {
  display: block !important;
}

.gfield_price .gform-field-label.ginput_product_price,
.gfield_price .ginput_container_total input {
  pointer-events: none;
}

.gfield_price .gform-field-label.ginput_product_price {
  -webkit-appearance: none;
  display: block;
  width: 100% !important;
  max-height: 100px;
  padding: 12px 15px !important;
  background: var(--white) !important;
  color: var(--grey) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  text-align: left;
  text-decoration: none;
  border-radius: 5px !important;
  border: 0 !important;
  resize: none;
}

.gfield_price .gform-field-label.ginput_product_price,
.gfield_price .ginput_container_total input {
  background: var(--grey) !important;
}

.gform_wrapper .StripeElement {
  border-radius: 5px !important;
  height: auto !important;
}

/* Address */

.gform_wrapper .ginput_container_address > span:not(.ginput_full) {
  flex: 1 !important;
}

/* HTML */

.gform_wrapper .gfield_html {
  margin: 20px 0 !important;
}

/* Paging */

.gform_wrapper .gform_page_footer {
  display: flex;
}

.gform_wrapper .gform_page_footer .button {
  padding: 15px 20px !important;
  min-width: 100px;
  max-width: 50%;
  width: auto !important;
  margin-right: 15px !important;
}

.gform_wrapper .gf_progressbar_wrapper,
.gform_wrapper .gf_page_steps {
  padding: 15px;
  background: #ece9d8;
  margin: 0 0 20px !important;
  border: 0 !important;
}

/* Progress Steps */

.gform_wrapper .gf_page_steps,
.gform_wrapper .gf_page_steps .gf_step {
  display: flex !important;
  align-items: center;
}

.gform_wrapper .gf_page_steps .gf_step {
  margin: 0 !important;
}

.gform_wrapper .gf_page_steps .gf_step .gf_step_number {
  border: 0.5px solid var(--gold) !important;
  color: var(--grey) !important;
  line-height: 38px;
}

.gform_wrapper .gf_page_steps .gf_step .gf_step_label {
  font-family: 'Wulkan Display', serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 20px !important;
}

.gform_wrapper .gf_page_steps .gf_step.gf_step_active .gf_step_number {
  background: var(--grey) !important;
  color: var(--white) !important;
}

.gform_wrapper .gf_page_steps .gf_step.gf_step_completed .gf_step_number {
  font-size: 0 !important;
  background: var(--gold) url(../img/icon-checkbox.svg) 50% no-repeat !important;
  background-size: 12px !important;
}

.gform_wrapper .gf_page_steps .gf_step .gf_step_number:before,
.gform_wrapper .gf_page_steps .gf_step .gf_step_number:after {
  display: none !important;
}

/* Progress Bar */

.gform_wrapper .gf_progressbar_wrapper {
  padding: 15px;
  background: #ece9d8;
  margin: 0 0 20px !important;
}

.gform_wrapper .gf_progressbar_title {
  display: none !important;
}

.gform_wrapper .gf_progressbar {
  margin: 0 !important;
  position: relative;
  margin-right: 50px !important;
  background: var(--beige) !important;
  border: 0.5px solid var(--gold) !important;
}

.gform_wrapper .gf_progressbar .gf_progressbar_percentage {
  background: var(--gold) !important;
  height: 10px !important;
}

.gform_wrapper .gf_progressbar .gf_progressbar_percentage span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--grey);
  position: absolute;
  right: -50px;
  top: -5px;
  margin: 0 !important;
}

/* Errors */

.gform_wrapper .gform_validation_errors,
.gform_wrapper .gform_validation_errors *,
.gform_wrapper .validation_message * {
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.gform_wrapper .gform_validation_errors {
  margin: 0 0 20px !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: #ece9d8 !important;
  border-top: 3px solid var(--gold) !important;
}

.gform_wrapper .gform_validation_errors li,
.gform_wrapper .validation_message li {
  padding: 0 !important;
  list-style: none !important;
  margin-top: 5px !important;
}

.gform_wrapper .validation_message,
.gform_wrapper .gform_validation_error,
.gform_wrapper .gform_submission_error,
.gform_wrapper .gform_validation_errors h2,
.gform_wrapper .gform_validation_errors ol,
.gform_wrapper .gform_validation_errors ol li,
.gform_wrapper .gform_validation_errors li a {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: 'Source Sans 3', sans-serif !important;
  text-decoration: none !important;
  color: var(--grey) !important;
}

.gform_wrapper .gform_validation_error.hide_summary,
.gform_wrapper .gform_submission_error.hide_summary,
.gform_wrapper .gform_validation_errors.hide_summary {
  text-align: center !important;
}

.gform_wrapper .gfield_error label,
.gform_wrapper .gfield_error label .gfield_required,
.gform_wrapper .gfield_error legend,
.gform_wrapper .gfield_error legend .gfield_required {
  color: red !important;
}

.gform_wrapper .gfield_error .validation_message,
.gform_wrapper .gform_validation_errors li:before,
.gform_wrapper .validation_message li:before,
.gform_wrapper .gform_required_legend {
  display: none !important;
}

/* Submit */

.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  padding: 0 !important;
  margin-top: 30px !important;
}

.gform_wrapper .gform_page_footer {
  margin-top: 40px !important;
  padding-top: 40px !important;
  border-top: 0.5px solid var(--grey) !important;
}

.gform_wrapper .gform_footer *[type='submit'],
.gform_wrapper .gform_page_footer *[type='submit'] {
  width: auto;
  display: inline-block !important;
  padding: 15px 25px !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.gform_wrapper .gform_footer *[type='submit']:hover,
.gform_wrapper .gform_footer *[type='submit']:focus,
.gform_wrapper .gform_footer *[type='submit']:active,
.gform_wrapper .gform_page_footer *[type='submit']:hover,
.gform_wrapper .gform_page_footer *[type='submit']:focus,
.gform_wrapper .gform_page_footer *[type='submit']:active {
  background: transparent !important;
  border-color: var(--grey) !important;
  color: var(--grey) !important;
}

/* Responsive */

@media screen and (max-width: 720px) {
  .gform_wrapper .flex {
    flex-direction: column;
  }

  .gform_wrapper .flex .gform_body,
  .gform_wrapper .flex .gform_footer {
    flex: 1;
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .gform_wrapper .gfield_checkbox,
  .gform_wrapper .gfield_radio {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/*-----------------------------------------------------------------
  Global Tables
-----------------------------------------------------------------*/

table,
table td,
table th {
  text-align: left;
  border-color: var(--light-grey) !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  border-radius: 0 !important;
}

table {
  width: 100%;
  margin: 20px 0 !important;
  border: 1px solid;
}

table th,
table td {
  padding: 10px;
}

table td {
  border-top: 1px solid;
}

table *:not(button, .button) {
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400;
}

table th,
table th *:not(button, .button) {
  font-weight: 600 !important;
}

table input:not(.qty),
table button:not(.qib-button),
table .button:not(.qib-button) {
  margin: 5px 10px 5px 0 !important;
}

table a {
  color: var(--gold);
}

/*-----------------------------------------------------------------
  Global Typography
-----------------------------------------------------------------*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
li {
  color: var(--grey);
  line-height: 120%;
  margin: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: 'Wulkan Display', serif;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 76px;
}

h2,
.h2 {
  font-size: 50px;
}

h3,
.h3 {
  font-size: 36px;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 20px;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 20px;
}

strong {
  font-weight: 600 !important;
}

ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

/* Responsive */

@media screen and (max-width: 860px) {
  h1,
  .h1 {
    font-size: 42px;
  }

  h2,
  .h2,
  h3,
  .h3 {
    font-size: 36px;
  }
}

@media screen and (max-width: 550px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3 {
    font-size: 30px;
  }
}

/*-----------------------------------------------------------------
  Global Footer
-----------------------------------------------------------------*/

.back-to-top {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 60px;
  background-color: var(--white);
  border: 1px solid var(--grey);
  cursor: pointer;
  position: fixed;
  bottom: 25px;
  right: 25px;
  opacity: 0;
  z-index: 2000;
}

.back-to-top,
.back-to-top .icon {
  transition: var(--transition);
}

.back-to-top svg {
  width: 14px;
  height: 50px;
  display: block;
  margin: auto;
  transform: rotate(-90deg);
}

.back-to-top:hover {
  border-color: var(--gold);
}

.back-to-top:hover .icon {
  fill: var(--gold);
}

footer .footer-logo,
footer .footer-logo svg,
footer .footer-logo img {
  height: 70px;
  width: auto;
  max-width: 100%;
  display: block;
}

footer ul li a {
  font-size: 20px;
  text-decoration: none;
}

footer ul li {
  margin: 0 0 10px;
}

footer ul li:hover a,
footer ul li:focus a,
footer ul li:active a,
footer ul li.current-menu-item a {
  color: var(--gold);
}

footer .footer-logo,
footer .footer-main .general-content {
  margin-bottom: 50px;
}

footer .footer-main .column-right .general-content a {
  text-decoration: none;
}

footer form label {
  display: none !important;
}

footer form input {
  padding: 0 5px 20px !important;
  border: 0 !important;
  border-bottom: 0.5px solid var(--grey) !important;
}

footer .gform_wrapper .gform_footer {
  margin: 0 !important;
}

footer .gform_wrapper .gform_footer *[type='submit'],
footer .gform_wrapper .gform_footer *[type='submit']:hover,
footer .gform_wrapper .gform_footer *[type='submit']:focus,
footer .gform_wrapper .gform_footer *[type='submit']:active {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 0 !important;
  width: 40px !important;
  height: 62px !important;
  position: absolute !important;
  bottom: 0;
  right: 0;
  background: url('../img/icon-arrow.svg') 50% no-repeat !important;
  background-size: 12px !important;
}

footer form {
  position: relative;
}

footer form .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (min-width: 860px) {
  footer .layout-columns-2 {
    gap: 100px;
  }
}

/*-----------------------------------------------------------------
  Global Header
-----------------------------------------------------------------*/

.admin-bar .site-header {
  top: var(--admin-height);
}

.site-header {
  width: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200000;
  transition: var(--transition);
}

.site-header:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 0.5px;
  width: 0;
  background: var(--grey);
  transition: 0.8s ease all;
}

.header-space {
  padding-top: var(--header-height);
}

/* Container */

.site-header > *[class*='container'] {
  height: auto;
  padding: 15px 0;
  max-height: var(--header-height);
  border-bottom: 0.5px solid var(--grey);
}

.site-header .layout-columns-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Logo */

.site-header .header-logo svg,
.site-header .header-logo img {
  display: block;
  max-width: 300px;
  width: auto;
  height: 60px;
  margin: auto;
  transition: 0.3s ease all;
}

/* Hamburger */

.site-header .hamburger {
  height: 36px;
  width: 36px;
  position: relative;
  cursor: pointer;
}

.site-header .hamburger .bar {
  height: 1px;
  width: 40px;
  background: var(--grey);
  position: absolute;
  transition: var(--transition);
}

.site-header .hamburger .bar:nth-child(1) {
  width: 36px;
  top: 10px;
}

.site-header .hamburger .bar:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.site-header .hamburger .bar:nth-child(3) {
  width: 36px;
  bottom: 10px;
}

/* Icons */

.site-header .cart-icon,
.site-header .search-icon {
  margin: 20px;
  cursor: pointer;
  position: relative;
}

.site-header .cart-icon,
.site-header .search-icon,
.site-header .cart-icon svg,
.site-header .search-icon svg {
  width: 20px;
  height: 20px;
}

.site-header .cart-icon .icon,
.site-header .search-icon .icon {
  transition: var(--transition);
}

.site-header .cart-icon:hover .icon,
.site-header .search-icon:hover .icon {
  fill: var(--gold);
}

.site-header .cart-icon .cart-count {
  width: 16px !important;
  height: 16px !important;
  border-radius: 18px;
  display: block;
  background-color: var(--grey);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  line-height: 16px;
  position: absolute;
  top: -3px;
  right: -7px;
  z-index: 999;
}

/* Buttons */

.site-header .button {
  padding: 12px 20px !important;
}

.site-header .button:before {
  display: none !important;
}

/* Mega Menu */

.mega-menu {
  position: fixed;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  width: 75vw;
  height: 100vh;
  overflow: scroll;
  transition: var(--transition);
  background: var(--beige);
  padding: calc(100px + var(--header-height)) 100px 100px;
  z-index: 20000;
}

.mega-menu .button-arrow {
  margin-bottom: 30px;
}

.mega-menu .button-arrow svg {
  transform: rotate(-180deg);
}

.mega-menu .menu-wrap {
  margin: 0 0 50px;
}

.mega-menu h6 {
  color: var(--gold);
  margin-bottom: 20px;
}

.mega-menu ul,
.mega-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.mega-menu ul li a {
  display: block;
  font-family: 'Wulkan Display', serif;
  color: var(--grey);
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 10px;
}

.mega-menu .menu-small ul li a,
.mega-menu p {
  font-family: 'Source Sans 3', serif;
  font-size: 18px;
  font-weight: 400;
}

.mega-menu ul li:hover a,
.mega-menu ul li:focus a,
.mega-menu ul li:active a,
.mega-menu ul li.current-menu-item a,
.mega-menu ul li.current-menu-page a {
  color: var(--gold);
}

.mega-menu ul.sub-menu {
  display: none !important;
}

/* Menu Active */

.menu-active .site-header .hamburger .bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
  animation: hamburger1 0.5s ease-in-out;
}

.menu-active .site-header .hamburger .bar:nth-child(2) {
  width: 0;
}

.menu-active .site-header .hamburger .bar:nth-child(3) {
  width: 36px;
  bottom: 50%;
  transform: rotate(-45deg);
  animation: hamburger2 0.5s ease-in-out;
}

@keyframes hamburger1 {
  0% {
    top: 10px;
    transform: rotate(0);
  }

  50% {
    top: calc(50% - 1px);
    transform: rotate(0);
  }

  100% {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }
}

@keyframes hamburger2 {
  0% {
    bottom: 10px;
    transform: rotate(0);
  }

  50% {
    bottom: 50%;
    transform: rotate(0);
  }

  100% {
    bottom: 50%;
    transform: rotate(-45deg);
  }
}

.menu-active .mega-menu {
  left: 0;
}

body:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 20000;
  transition: var(--transition);
  pointer-events: none;
}

.menu-active:before {
  background: rgba(var(--grey-rgb), 0.7);
  pointer-events: all;
}

/* Scroll Active */

.scroll-active .site-header {
  background: var(--white);
}

.scroll-active .site-header:after {
  width: 100%;
}

.scroll-active .site-header > *[class*='container'] {
  padding: 5px 0;
  transition: var(--transition);
}

.scroll-active .site-header .header-logo svg,
.scroll-active .site-header .header-logo img {
  height: 50px;
}

/* Responsive */

@media screen and (max-width: 860px) {
  .site-header .layout-columns-3 {
    grid-template-columns: 50px 1fr 50px !important;
    gap: 20px;
  }

  .site-header .header-logo svg,
  .site-header .header-logo img {
    max-width: 100%;
    height: 35px;
  }

  .site-header .button,
  .site-header .search-icon {
    display: none !important;
  }
}

@media screen and (max-width: 720px) {
  .mega-menu {
    padding: calc(50px + var(--header-height)) 30px 30px;
    width: 96vw;
  }

  .mega-menu .menu-left:first-of-type .menu-wrap:last-of-type {
    margin: 0;
  }
}

/*-----------------------------------------------------------------
  Media
-----------------------------------------------------------------*/

.img-container {
  position: relative;
}

.img-container img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.img-square,
.img-square img {
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.img-portrait,
.img-portrait img {
  object-fit: cover;
  aspect-ratio: 12 / 16;
}

.img-landscape,
.img-landscape img {
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.img-border {
  padding: 10px !important;
  border: 0.5px solid var(--grey);
}

/* Background Images */

.background-img,
.background-video {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}

.background-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Video iFrames */

/* Video Embed */

.responsive-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------------------------------------------------
  Owl Carousel
-----------------------------------------------------------------*/

.owl-nav button,
.owl-dots button {
  padding: 0 !important;
}

.owl-nav button span,
.owl-dots button span {
  display: none !important;
}

/* Nav */

.owl-nav {
  position: absolute;
  top: 40%;
  right: 25%;
}

.owl-nav button {
  padding: 0 !important;
  background: var(--white) url(../img/icon-arrow.svg) 50% no-repeat !important;
  background-size: 14px !important;
  width: 100px !important;
  height: 100px !important;
  border-radius: 100px !important;
  margin: 10px !important;
  box-shadow: 0 0 10px rgba(var(--grey-rgb), 0.2) !important;
}

.owl-nav button.owl-prev {
  transform: rotate(-180deg) !important;
  transform-origin: center;
}

.owl-nav button.disabled {
  opacity: 0.5;
}

@media screen and (max-width: 1600px) {
  .owl-nav {
    top: 20%;
    right: 35%;
  }
}

@media screen and (max-width: 720px) {
  .owl-nav button {
    background-size: 14px !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px !important;
  }

  .owl-nav {
    top: 20%;
    right: 20px;
  }
}

/* Dots */

.owl-dots {
  width: 75%;
  border-bottom: 0.5px solid var(--gold);
  height: 5px;
  display: flex;
}

.owl-dots button {
  position: relative;
  margin: 0;
  width: 40px !important;
  height: 5px !important;
  background: transparent !important;
  transition: var(--transition);
}

.owl-dots button.active {
  background: var(--gold) !important;
}

/*-----------------------------------------------------------------
  General Content
-----------------------------------------------------------------*/

.white-content > *,
.white-content > * a {
  color: var(--white);
}

.white-content > * a:hover {
  color: var(--grey) !important;
}

.taright {
  text-align: right;
}

.taleft {
  text-align: left;
}

.tacenter {
  text-align: center;
}

.general-content > * {
  margin: 0 0 20px 0 !important;
}

.general-content > *:last-child {
  margin: 0 !important;
}

/* Lists */

/* .general-content ul {
  padding: 0;
  margin: 3rem 0;
  list-style-type: none;
} */

.general-content ul li {
  position: relative;
  padding: 0 0 0 40px;
}

.general-content ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 30px;
  height: 0.5px;
  background-color: var(--grey);
}

.general-content ol li {
  position: relative;
  padding: 0 10px 0 25px;
}

.general-content ol li:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url(../images/check.svg) 50% no-repeat;
  background-size: contain;
}

/* Blockquote */

.general-content blockquote {
  position: relative;
  padding: 10px 10px 10px 30px;
}

.general-content blockquote:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--gold);
}

/* Paragraphs & Links */

.general-content a {
  text-decoration: underline;
  transition: var(--transition);
}

.general-content a:hover {
  color: var(--gold);
}

/* Other */

.general-content hr {
  border: 0;
  border-top: 0.5px solid var(--grey);
  margin: 20px 0 !important;
}

.general-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: auto auto;
}

/*-------------------------------------------------------
  Popups
-------------------------------------------------------*/

.popup-trigger,
.popup-close {
  cursor: pointer !important;
}

.popup-container {
  display: none;
}

.popup-wrap {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--grey-rgb), 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200000000001;
}

/* Containers */

.popup-wrap .container-xlarge,
.popup-wrap .container-large,
.popup-wrap .container-medium,
.popup-wrap .container-small,
.popup-wrap .container-xsmall {
  position: relative;
  overflow-y: auto;
  max-height: 80vh;
  background: var(--white);
  padding: 30px;
}

/* Close Button */

.popup-wrap .popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.popup-wrap .popup-close:before {
  width: 16px !important;
  height: 16px !important;
}

/*-----------------------------------------------------------------
  Legal Popup
-----------------------------------------------------------------*/

#legal-popup .popup-wrap {
  background: var(--white);
}

/*-----------------------------------------------------------------
  Breadcrumbs
-----------------------------------------------------------------*/

.section-breadcrumbs {
  padding: 15px 0;
}

.section-breadcrumbs,
.section-breadcrumbs a,
.section-breadcrumbs span {
  color: var(--gold);
  font-size: 14px;
}

.section-breadcrumbs a:hover {
  color: var(--grey);
}

.section-breadcrumbs span {
  font-weight: 600;
}

.section-breadcrumbs .separator {
  width: 4px;
  height: 4px;
  display: block;
  margin: auto 10px;
  border-radius: 4px;
  background: var(--gold);
}

.single-product .section-breadcrumbs,
.page-template-cafe .section-breadcrumbs,
.page-template-careers .section-breadcrumbs,
.page-template-history .section-breadcrumbs,
.page-template-memberships .section-breadcrumbs,
.page-template-team .section-breadcrumbs {
  background: var(--beige);
}

/*-----------------------------------------------------------------
  Page Banner
-----------------------------------------------------------------*/

.section-page-banner {
  position: relative;
  aspect-ratio: 12 / 6;
  max-height: 900px;
  min-height: 300px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.section-page-banner .background-img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  z-index: 9;
}

.section-page-banner *[class*='container'] {
  position: relative;
  z-index: 99;
  margin: 0 auto;
  padding: 100px 0;
}

.section-page-banner h1,
.section-page-banner h3,
.section-page-banner h4,
.section-page-banner a {
  color: var(--white);
}

.section-page-banner h1 {
  font-style: italic;
}

@media screen and (max-width: 750px) {
  .section-page-banner *[class*='container-'] {
    padding: 0 0 40px;
  }
}

/*-----------------------------------------------------------------
  Opener Banner
-----------------------------------------------------------------*/

.section-opener-banner {
  position: relative;
  aspect-ratio: 12 / 9;
  max-height: 100vh;
  min-height: 380px;
  width: 100%;
}

.section-opener-banner:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9;
}

.section-opener-banner > *[class*='container'] {
  z-index: 999;
}

.section-opener-banner .button-group {
  margin-top: 40px !important;
}

.section-opener-banner .button-white:hover,
.section-opener-banner .button-white:focus,
.section-opener-banner .button-white:active {
  background: var(--gold) !important;
  border: 0.5px solid var(--gold) !important;
  color: var(--white) !important;
}

.section-opener-banner .button-white:hover:before,
.section-opener-banner .button-white:focus:before,
.section-opener-banner .button-white:active:before {
  background: url('../img/button-arrow-white.svg') 50% 50% no-repeat !important;
  background-size: contain !important;
}

@media screen and (max-width: 550px) {
  .section-opener-banner {
    aspect-ratio: auto;
    min-height: 0;
    max-height: 100%;
    height: auto;
    padding: 40px 0;
  }
}

/*-----------------------------------------------------------------
  Accordion
-----------------------------------------------------------------*/

.accordion-item {
  position: relative;
  display: block;
  margin: 0 !important;
  padding: 20px 10px;
  border-bottom: 0.5px solid var(--grey);
}

.accordion-item .toggle {
  padding-right: 30px;
  cursor: pointer;
}

.accordion-item .toggle:after {
  content: '';
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  right: 10px;
  top: 25px;
  margin: auto;
  background: url('../img/icon-plus.svg') 50% no-repeat;
  background-size: contain;
  transition: var(--transition);
}

.accordion-item.active .toggle:after {
  transform: rotate(135deg);
}

.accordion-item .general-content {
  display: none;
}

/*-----------------------------------------------------------------
  Social Icons
-----------------------------------------------------------------*/

.social-icons h6,
.social-icons a {
  display: block;
  margin: 10px 20px 10px 0;
}

.social-icons h6 {
  margin-top: 12px;
}

.social-icons a,
.social-icons a svg {
  height: 20px;
  width: auto;
}

.social-icons a svg .icon {
  fill: var(--grey);
  transition: var(--transition);
}

.social-icons a:hover svg .icon {
  fill: var(--gold);
}

.social-share a svg .icon {
  fill: var(--gold);
  transition: var(--transition);
}

.social-share a:hover svg .icon {
  fill: var(--grey);
}

/*-----------------------------------------------------------------
  Pagination
-----------------------------------------------------------------*/

.pagination-numbered {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.pagination-numbered .page-numbers {
  font-size: 14px;
  color: var(--grey);
  padding: 10px;
  opacity: 0.5;
}

.pagination-numbered .page-numbers.dots {
  height: 7px;
  padding: 0 10px;
  line-height: 0;
}

.pagination-numbered .page-numbers.prev,
.pagination-numbered .page-numbers.next {
  font-size: 0 !important;
  padding: 0 !important;
  width: 25px;
  height: 25px;
  background: url(../img/icon-arrow.svg) 50% no-repeat;
  background-size: 12px;
  display: block;
  opacity: 1;
}

.pagination-numbered .page-numbers.prev {
  transform: rotate(-180deg);
}

.pagination-numbered a.page-numbers:hover,
.pagination-numbered .page-numbers.current {
  opacity: 1;
}

.pagination-numbered .page-numbers.prev:hover,
.pagination-numbered .page-numbers.next:hover {
  opacity: 0.5;
}

/*-----------------------------------------------------------------
  Flexible Layout
-----------------------------------------------------------------*/

/* Related Pages */

.listing-related-pages {
  gap: 20px;
}

.listing-related-pages .page-thumbnail {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 720px) {
  .listing-related-pages .page-thumbnail.item-2 {
    margin-top: -100px;
    margin-bottom: 100px;
  }

  .listing-related-pages .page-thumbnail.item-3 {
    margin-top: -200px;
    margin-bottom: 200px;
  }
}

.listing-related-pages .page-thumbnail .white-content {
  position: absolute;
  padding: 20px;
  z-index: 999;
  bottom: 0;
  left: 0;
  right: 0;
}

.listing-related-pages .page-thumbnail:before {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  z-index: 99;
  transition: var(--transition);
}

.listing-related-pages .page-thumbnail:hover:before {
  top: 0;
}

.listing-related-pages .page-thumbnail .border-arrow {
  min-width: 50px !important;
  width: 50px !important;
  min-height: 50px !important;
  height: 50px !important;
  border: 0.5px solid var(--white);
  display: flex;
  margin-left: 20px;
}

.listing-related-pages .page-thumbnail .border-arrow svg {
  width: 14px;
  height: 14px;
  margin: auto;
  transform: rotate(-45deg);
}

.listing-related-pages .page-thumbnail .border-arrow svg .icon {
  fill: var(--white);
}

/* Promo Banner */

.section-promo-banner .container-large {
  margin: 15px auto;
  padding: 50px 0;
  border-radius: 5px;
  overflow: hidden;
}

.section-promo-banner .container-large:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: var(--transition);
}

.section-promo-banner .general-content {
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
  z-index: 999;
}

@media screen and (min-width: 720px) {
  .section-promo-banner .container-large {
    aspect-ratio: 2 / 1;
    padding: 0;
  }
}

/* Benefits */

.listing-benefits {
  position: relative;
}

.listing-benefits:after {
  content: '';
  display: block;
  position: absolute;
  background: var(--grey);
  width: 1px;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.listing-benefits .benefit-item {
  width: 45%;
  padding: 30px 0;
}

.listing-benefits .benefit-item img {
  max-width: 40px;
  max-height: 40px;
  margin-bottom: 15px;
}

.listing-benefits .benefit-item:nth-of-type(1n + 3) {
  border-top: 0.5px solid var(--grey);
}

/* Map & Directions */

.section-map-directions .layout-columns-2 {
  grid-template-columns: 1.5fr 1fr;
}

.section-map-directions .inner-padding {
  background: var(--white);
  margin: 80px 0 60px !important;
  box-shadow: 0 0 10px rgba(var(--grey-rgb), 0.2);
}

.section-map-directions .inner-padding svg {
  width: 50px;
  height: 50px;
  margin: -70px 0 20px !important;
}

@media screen and (max-width: 750px) {
  .section-map-directions .inner-padding {
    margin: 40px 0 !important;
  }
}

/* Three Column Pods */

@media screen and (min-width: 720px) {
  .listing-pods .pod-thumbnail.item-2 {
    margin-top: -100px;
    margin-bottom: 100px;
  }

  .listing-pods .pod-thumbnail.item-3 {
    margin-top: -200px;
    margin-bottom: 200px;
  }
}

.pod-thumbnail {
  background: var(--white);
  border: 0.5px solid var(--gold);
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.pod-thumbnail .general-content {
  padding: 15px;
}

.pod-thumbnail .pod-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  overflow-y: scroll;
  transition: var(--transition);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.pod-thumbnail .pod-overlay .button {
  margin: auto 0 0 0 !important;
}

.pod-thumbnail:hover .pod-overlay {
  top: 0;
}

/* Functions */

.function-thumbnail {
  width: 33%;
  position: relative;
  z-index: 9;
}

.function-thumbnail,
.function-thumbnail .img-container,
.function-thumbnail .img-container:after {
  transition: var(--transition);
}

.function-thumbnail h3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  color: var(--white);
  padding: 30px;
}

.function-thumbnail .img-container:after {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border: 0.5px solid var(--grey);
  opacity: 0;
}

.function-thumbnail:hover {
  transform: scale(105%);
  z-index: 999;
}

.function-thumbnail:hover .img-container:after {
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .function-thumbnail {
    width: 50%;
  }
}

@media screen and (max-width: 720px) {
  .function-thumbnail {
    margin: 10px;
    width: 100%;
  }

  .function-thumbnail:not(:last-child) {
    margin-bottom: 35px;
  }

  .function-thumbnail .img-container:after {
    opacity: 1;
  }
}

/* Card Thumbnail */

.card-thumbnail .inner-padding {
  background: var(--white);
}

.card-thumbnail .inner-padding .button {
  display: block !important;
}

.card-thumbnail .card-label {
  padding: 30px;
  background: var(--gold);
  text-align: center;
  color: var(--white);
}

/* Image Slider */

@media screen and (min-width: 720px) {
  .section-image-slider .image-slider {
    width: 150%;
  }
}

@media screen and (max-width: 720px) {
  .section-image-slider .image-slider {
    width: calc(100% + 20px);
  }
}

/* Event Slider */

.section-event-slider .owl-stage {
  display: flex;
}

.section-event-slider .owl-item {
  min-height: 100%;
}

.section-event-slider .owl-item .event-thumbnail {
  height: 100%;
}

@media screen and (min-width: 720px) {
  .section-event-slider .event-slider {
    width: 150%;
  }
}

@media screen and (max-width: 720px) {
  .section-event-slider .event-slider {
    width: calc(100% + 20px);
  }
}

/* Product Slider */

@media screen and (min-width: 720px) {
  .section-product-slider .product-slider {
    width: 150%;
  }
}

@media screen and (max-width: 720px) {
  .section-product-slider .product-slider {
    width: calc(100% + 20px);
  }
}

.section-product-slider .product-slider .owl-item {
  padding: 10px;
}

/* Google Reviews */

.section-google-reviews .wprs_unslider {
  z-index: 9;
  margin: 50px auto;
}

.section-google-reviews .wprs_unslider-arrow {
  background: transparent;
  width: 40px;
  height: 40px;
  top: 110px !important;
  border: 1px solid rgba(var(--grey-rgb), 0.5) !important;
  background: transparent url(../img/icon-arrow.svg) 50% no-repeat !important;
  background-size: 15px !important;
  opacity: 1 !important;
}

.section-google-reviews .wprs_unslider-arrow.next {
  right: -50px;
}

.section-google-reviews .wprs_unslider-arrow.prev {
  left: -50px;
  transform: rotate(-180deg);
  transform-origin: center;
}

.section-google-reviews .outerrevdiv {
  margin: 0 !important;
}

.section-google-reviews .indrevdiv {
  padding: 30px;
  box-shadow: none !important;
}

.section-google-reviews .indrevdiv:after,
.section-google-reviews .indrevdiv:before {
  display: none !important;
}

.section-google-reviews .wprevpro_t1_site_logo {
  top: 25px;
  right: 25px;
  bottom: auto;
}

.section-google-reviews .wprevpro_star_imgs_T1 {
  display: block;
  margin-bottom: 15px;
}

.section-google-reviews .wprevpro_t1_P_3,
.section-google-reviews .wprs_rd_more_1,
.section-google-reviews .wprs_rd_more_text,
.section-google-reviews .wprevname {
  font-size: 16px;
  font-style: normal;
  color: var(--grey) !important;
}

.section-google-reviews .wprevname {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding-top: 10px;
}

@media only screen and (max-width: 720px) {
  .section-google-reviews .wprs_unslider {
    margin: 25px auto;
  }

  .section-google-reviews .wprs_unslider-arrow.next {
    right: 0;
  }

  .section-google-reviews .wprs_unslider-arrow.prev {
    left: 0;
  }
}

/*-----------------------------------------------------------------
  Archive Post
-----------------------------------------------------------------*/

.listing-posts {
  gap: 20px;
}

.post-thumbnail,
.post-thumbnail .img-container {
  position: relative;
  overflow: hidden;
}

.post-thumbnail .img-container:before {
  content: '';
  position: absolute;
  top: 20%;
  height: 120%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  transition: var(--transition);
}

.post-thumbnail:hover .img-container:before {
  top: 0;
}

.post-thumbnail .img-container:before,
.post-thumbnail .general-content {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
}

.post-thumbnail .general-content {
  width: 100%;
  padding: 30px;
}

/*-----------------------------------------------------------------
  Single Post
-----------------------------------------------------------------*/

.section-post-intro .arrow-down {
  margin-top: 50px !important;
}

.section-post-intro .arrow-down svg {
  transform: rotate(90deg);
}

.section-post-intro .img-border {
  margin-left: 50px;
  max-width: 380px;
  align-self: flex-start;
}

.section-post-intro .column-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-post-intro .social-share {
  margin: auto 0 0 0;
}

.single-post-meta * {
  text-decoration: none !important;
  color: var(--gold);
}

.single-post-meta h6 {
  margin-right: 10px;
  padding-right: 10px;
}

.single-post-meta h6:not(:last-child) {
  border-right: 0.5px solid var(--gold);
}

@media screen and (max-width: 720px) {
  .section-post-intro .img-border {
    margin: 50px 0 0 0;
    max-width: 100%;
  }
}

/*-----------------------------------------------------------------
  Archive Events
-----------------------------------------------------------------*/

.event-thumbnail {
  display: flex;
  flex-direction: column;
}

.event-thumbnail .event-date {
  padding: 10px;
  background: var(--gold);
  position: absolute;
  max-width: 100%;
  width: auto;
  left: 0;
  bottom: 10px;
}

.event-thumbnail .event-date p {
  color: var(--white);
}

.event-thumbnail .general-content {
  padding: 20px 0;
}

.event-thumbnail .event-meta,
.event-thumbnail .event-meta h6,
.event-thumbnail .event-meta svg .icon {
  transition: var(--transition);
}

.event-thumbnail .event-meta {
  margin: auto 0 0 0;
  padding: 15px 0;
  width: 100%;
  border-bottom: 0.5px solid var(--gold);
}

.event-thumbnail .event-meta h6 {
  margin-right: 10px;
  padding-right: 10px;
  color: var(--gold);
}

.event-thumbnail .event-meta h6:not(:last-child) {
  border-right: 0.5px solid var(--gold);
}

.event-thumbnail .event-meta svg {
  justify-self: flex-end;
  transform: rotate(-45deg);
  transform-origin: center;
}

.event-thumbnail .event-meta svg .icon {
  fill: var(--gold);
}

.event-thumbnail:hover .event-meta {
  border-color: var(--grey);
}

.event-thumbnail:hover .event-meta h6 {
  color: var(--grey);
}

.event-thumbnail:hover .event-meta svg .icon {
  fill: var(--grey);
}

/*-----------------------------------------------------------------
  Single Event
-----------------------------------------------------------------*/

.single-event .event-sidebar {
  width: 380px;
  margin-right: 50px;
}

.single-event .event-sidebar .img-border,
.single-event .event-sidebar .button,
.single-event .event-sidebar .social-icons {
  margin: 0 0 20px !important;
}

.single-event .event-sidebar .button {
  display: block !important;
}

.single-event .event-content {
  flex: 1;
  margin-bottom: 50px;
}

.single-event .event-date,
.single-event .event-time,
.single-event .event-location {
  margin: 10px 0;
}

.single-event .event-date svg,
.single-event .event-time svg,
.single-event .event-location svg {
  width: 20px;
  height: 22px;
}

.single-event .event-date svg .icon,
.single-event .event-time svg .icon,
.single-event .event-location svg .icon {
  fill: var(--gold);
}

.single-event .event-date p,
.single-event .event-time p,
.single-event .event-location p {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
}

@media screen and (max-width: 900px) {
  .single-event .event-sidebar,
  .single-event .event-content {
    flex: 100%;
    width: 100%;
    margin: 0 0 30px !important;
  }
}

/*-----------------------------------------------------------------
  404 Page
-----------------------------------------------------------------*/

.page-404 {
  min-height: 500px;
  height: 100vh;
}

/*-----------------------------------------------------------------
  Search Page
-----------------------------------------------------------------*/

.archive-search .search-form {
  max-width: 800px;
  margin: 30px auto 0;
}

/*-----------------------------------------------------------------
  Home Page
-----------------------------------------------------------------*/

.section-home-intro .contact-info {
  margin: 50px 0 !important;
}

.section-home-intro .contact-info .column-left {
  margin-right: 50px;
}

.section-home-intro .contact-info a {
  text-decoration: none;
  color: var(--gold);
}

.section-home-intro .img-border {
  border-color: var(--white);
}

@media screen and (min-width: 860px) {
  .section-home-intro .img-border {
    margin-top: -200px;
  }
}

@media screen and (max-width: 860px) {
  .section-home-intro .img-border {
    padding: 0 !important;
  }
}

/* Membership Intro */

.page-home .section-membership-intro > .layout-columns-2 {
  grid-template-columns: 480px 1fr;
}

@media screen and (min-width: 860px) {
  .page-home .section-membership-intro .column-right {
    width: 150%;
  }
}

/*-----------------------------------------------------------------
  Cafe Page
-----------------------------------------------------------------*/

.section-cafe-intro .layout-columns-2 {
  grid-template-columns: 380px 1fr;
}

.section-cafe-intro .inner-padding {
  background: var(--white);
}

/*-----------------------------------------------------------------
  Contact Page
-----------------------------------------------------------------*/

.section-contact-form .layout-columns-2 {
  grid-template-columns: 360px 1fr;
}

.section-contact-form form label {
  display: none !important;
}

.section-contact-form form select,
.section-contact-form form textarea,
.section-contact-form form input:not([type='checkbox'], [type='radio'], [type='submit']) {
  padding: 0 5px 20px !important;
  border: 0 !important;
  border-bottom: 0.5px solid var(--grey) !important;
  background-color: transparent !important;
}

/*-----------------------------------------------------------------
  History Page
-----------------------------------------------------------------*/

/* Values */

.listing-values .value-thumbnail svg {
  width: 250px;
  height: 250px;
}

.listing-values .value-thumbnail .general-content {
  flex: 1;
  padding: 30px;
}

@media screen and (min-width: 860px) {
  .listing-values .value-thumbnail:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 860px) {
  .listing-values .value-thumbnail {
    flex-direction: column;
  }

  .listing-values .value-thumbnail svg {
    margin: 0 auto 30px;
  }

  .listing-values .value-thumbnail .general-content {
    text-align: center;
    padding: 0;
  }
}

/* Timeline */

.listing-timeline .layout-columns-2 {
  gap: 200px;
}

.listing-timeline,
.listing-timeline .timeline-row .img-border,
.listing-timeline .timeline-row .general-content {
  position: relative;
}

.listing-timeline:after,
.listing-timeline .timeline-row .img-border:after {
  content: '';
  display: block;
  position: absolute;
}

.listing-timeline:after {
  width: 0.5px;
  height: 100%;
  background: var(--grey);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.listing-timeline .timeline-row .img-border:after {
  border: 0.5px solid var(--grey);
  background: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  right: -115px;
  top: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 99;
}

.listing-timeline .timeline-row .timeline-year {
  position: absolute;
  top: 15px;
  left: 30px;
  transform: rotate(-15deg);
}

.listing-timeline .timeline-row .general-content {
  padding: 80px 30px 30px 100px;
}

@media screen and (min-width: 860px) {
  .listing-timeline .timeline-row {
    margin-top: -100px;
  }

  .listing-timeline .timeline-row:nth-child(2n) .column {
    order: 9;
  }

  .listing-timeline .timeline-row:nth-child(2n) .img-border:after {
    left: -115px;
    right: auto;
  }
}

@media screen and (max-width: 860px) {
  .listing-timeline:after {
    left: 15px;
    right: auto;
  }

  .listing-timeline .timeline-row.layout-columns-2 {
    gap: 50px;
  }

  .listing-timeline .timeline-row .img-border:after {
    left: -50px;
    right: auto;
  }

  .listing-timeline .timeline-row .column {
    padding-left: 50px;
  }

  .listing-timeline .timeline-row .timeline-year {
    left: -10px;
  }

  .listing-timeline .timeline-row .general-content {
    padding: 80px 20px 20px 20px;
  }
}

/*-----------------------------------------------------------------
  Membership Page
-----------------------------------------------------------------*/

.page-memberships .section-membership-intro > .layout-columns-2 {
  grid-template-columns: 1fr 460px;
}

.page-memberships .card-thumbnail .inner-padding h2 {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gold);
  font-weight: 300 !important;
  font-size: 70px !important;
  margin-bottom: 0 !important;
}

.page-memberships .card-thumbnail .inner-padding li {
  text-align: left;
  padding: 10px 10px 10px 35px;
  border-top: 0.5px solid var(--light-grey);
}

.page-memberships .card-thumbnail .inner-padding li:before {
  top: 12px;
  left: 10px;
}

/* Packages */

.listing-packages .card-thumbnail .inner-padding {
  background: transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.listing-packages .card-thumbnail .inner-padding .button {
  margin: auto 0 0 0 !important;
}

.listing-packages .card-thumbnail .img-container:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2));
  z-index: 9;
}

.listing-packages .card-thumbnail .img-container h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 70px;
  font-size: 24px;
  text-align: center;
  color: var(--white);
  z-index: 99;
}

/* Call to Aciton */

.page-memberships .section-cta {
  padding-top: 0;
}

/*-----------------------------------------------------------------
  Customised Package Form
-----------------------------------------------------------------*/

.page-id-4186 .section-page-banner,
.page-id-4186 .section-simple-banner,
.page-id-4322 .section-page-banner,
.page-id-4322 .section-simple-banner {
  display: none;
}

#gform_wrapper_7 .container-padding {
  padding: 30px 0 20px !important;
}

#gform_wrapper_7 .portal-select .gchoice {
  position: relative;
  cursor: pointer;
}

#gform_wrapper_7 .portal-select label,
#gform_wrapper_7 .portal-select input,
.membership-navigator .portal-select label {
  max-width: 100% !important;
  margin: 0 !important;
}

#gform_wrapper_7 .portal-select .gfield_radio#input_7_6 {
  grid-template-columns: repeat(3, 1fr);
}

#gform_wrapper_7 .portal-select input[type='checkbox'],
#gform_wrapper_7 .portal-select input[type='radio'],
.membership-navigator .portal-select input[type='radio'] {
  position: absolute;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  border-radius: 0 !important;
  transition: var(--transition);
  z-index: 0;
}

#gform_wrapper_7 .portal-select label,
.membership-navigator .portal-select label {
  font-family: 'Wulkan Display', serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  text-align: center !important;
  padding: 50px 30px !important;
  display: block !important;
}

#gform_wrapper_7 .portal-select input[type='checkbox']:not(:checked):hover,
#gform_wrapper_7 .portal-select input[type='checkbox']:not(:checked):focus,
#gform_wrapper_7 .portal-select input[type='radio']:not(:checked):hover,
#gform_wrapper_7 .portal-select input[type='radio']:not(:checked):focus,
.membership-navigator .portal-select input[type='radio']:not(:checked):hover,
.membership-navigator .portal-select input[type='radio']:not(:checked):focus {
  border-color: var(--grey) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct,
#gform_wrapper_7 .gfield--input-type-singleproduct h6 {
  transition: var(--transition) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  grid-column: span 3;
  border: 0.5px solid var(--grey) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct.product-has-value {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct.product-has-value h6,
#gform_wrapper_7 .gfield--input-type-singleproduct.product-has-value h6 a {
  color: var(--white) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct h6,
#gform_wrapper_7 .gfield--input-type-singleproduct .img-container,
#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_quantity {
  margin: 10px !important;
  display: block !important;
  width: calc(100% - 20px) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct h6 a {
  text-decoration: none;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct {
  margin: auto 0 0 !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_quantity {
  margin-top: 0 !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct input.plus,
#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct input.minus {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 15px 10px !important;
  width: 50px !important;
  text-align: center !important;
  border-right: 0.5px solid var(--grey) !important;
  border-left: 0.5px solid var(--grey) !important;
  width: 60px !important;
  position: absolute;
  bottom: 10px;
  cursor: pointer;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct input.plus {
  right: 10px;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct input.minus {
  left: 10px;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct input.ginput_quantity {
  padding-left: 70px !important;
  padding-right: 70px !important;
  text-align: center !important;
  background: var(--beige) !important;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_container_singleproduct {
  position: relative;
}

#gform_wrapper_7 .gfield--input-type-singleproduct .gfield_description {
  padding: 0 !important;
  margin: 0 !important;
}

#gform_wrapper_7 #field_7_9,
#gform_wrapper_7 .gfield--input-type-singleproduct .gform-field-label,
#gform_wrapper_7 .gfield--input-type-singleproduct .ginput_product_price_wrapper {
  display: none !important;
}

/*-----------------------------------------------------------------
  Membership Navigator Form
-----------------------------------------------------------------*/

form.membership-navigator {
  padding: 80px !important;
  box-shadow: 0 0 20px rgba(var(--grey-rgb), 0.05) !important;
}

form.membership-navigator .step-active {
  border: 1px solid red;
}

form.membership-navigator .general-content {
  max-width: 500px;
  margin: auto;
}

form.membership-navigator .layout-columns-2,
form.membership-navigator .layout-columns-3 {
  gap: 20px;
}

form.membership-navigator .portal-select label {
  font-style: italic;
}

form.membership-navigator .portal-select input[type='radio'] {
  margin: 0 !important;
  max-width: 100%;
  background: rgba(var(--gold-rgb), 0.1) !important;
  border-color: var(--gold) !important;
}

@media screen and (max-width: 720px) {
  form.membership-navigator {
    padding: 50px !important;
  }
}

/*-----------------------------------------------------------------
  Team Page
-----------------------------------------------------------------*/

.team-thumbnail .team-meta {
  margin-top: 20px;
}

.team-thumbnail .img-container:before,
.team-thumbnail .img-container img {
  transition: var(--transition);
}

.team-thumbnail .img-container:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 99;
}

.team-thumbnail:hover .img-container:before {
  opacity: 1;
}

.team-thumbnail:hover .img-container img {
  filter: grayscale(1);
}

.team-popup *[class*='container'] {
  overflow-x: visible;
}

.team-popup .team-popup-title {
  margin-bottom: 30px;
}

.team-popup .column-left {
  max-width: 380px;
}

.team-popup .column-right {
  flex: 1;
  padding: 30px;
}
