:root {
  --ag-form-margin: auto auto;
}

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.age-restriction {
  overflow: var(--ag-restriction-overflow, hidden);
  position: relative;
  height: calc(100vh - var(--ag-vh-offset, 0px));
}

.age-gate {
  position: relative;
  z-index: var(--ag-form-z-index, 10000);
  border: var(--ag-form-border, 0);
  border-width: var(--ag-form-border-width, 0);
  margin: var(--ag-form-margin, auto);
  padding: var(--ag-form-padding, 20px);
  border-radius: var(--ag-form-radius, 0);
  box-shadow: var(--ag-form-shadow, none);
  max-width: var(--ag-form-max-width, 800px);
  max-height: var(--ag-form-max-height, calc(94vh - var(--ag-vh-offset, 0px)));
  overflow-y: auto;
  background-color: var(--ag-form-background, #fff);
  color: var(--ag-text-color, #333);
  width: 100%;
  box-sizing: border-box;
  scrollbar-width: var(--ag-scrollbar-display, none);
}
.age-gate::-webkit-scrollbar {
  display: var(--ag-scrollbar-display, none);
}
.age-gate * {
  box-sizing: border-box;
}
.age-gate .simplebar-scrollbar::before {
  background-color: var(--ag-scrollbar, #000);
}
.age-gate h1::before, .age-gate h1::after,
.age-gate h2::before,
.age-gate h2::after,
.age-gate h3::before,
.age-gate h3::after,
.age-gate h4::before,
.age-gate h4::after,
.age-gate h5::before,
.age-gate h5::after,
.age-gate h6::before,
.age-gate h6::after {
  content: none;
}
.age-gate__additional-information, .age-gate-additional-information {
  font-size: var(--ag-text-additional-size, 16px);
  padding: var(--ag-text-additional-padding, 0);
  margin: var(--ag-text-additional-margin, 0);
}
.age-gate__additional-information p:last-of-type, .age-gate-additional-information p:last-of-type {
  margin-bottom: 0;
}
.age-gate__background-color, .age-gate-background-color {
  top: 0;
  left: 0;
  background: var(--ag-background-color, #fff);
  opacity: var(--ag-background-opacity, 1);
  position: fixed;
  width: var(--ag-overlay-width, 100%);
  height: calc(100vh - var(--ag-vh-offset, 0px));
  z-index: 1;
  backdrop-filter: blur(var(--ag-blur));
}
.age-gate__background, .age-gate-background {
  top: 0;
  left: 0;
  position: fixed;
  width: var(--ag-overlay-width, 100%);
  height: calc(100vh - var(--ag-vh-offset, 0px));
  z-index: 2;
  background-image: var(--ag-background-image);
  background-position: var(--ag-background-image-position);
  background-repeat: var(--ag-background-image-repeat);
  background-size: var(--ag-background-image-size, cover);
  opacity: var(--ag-background-image-opacity);
}
.age-gate__background video,
.age-gate__background iframe, .age-gate-background video,
.age-gate-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.age-gate__buttons, .age-gate-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--ag-button-gap, 10px);
}
.age-gate__challenge, .age-gate-challenge {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 1.25rem;
  width: 100%;
}
.age-gate input[type=text].age-gate__input, .age-gate input[type=text].age-gate-input {
  background: var(--ag-input-background-color, white);
  width: 100%;
  text-align: var(--ag-text-align);
  color: var(--ag-input-color, #414141);
  border: var(--ag-input-border, solid);
  border-width: var(--ag-input-border-width, 1px);
  font-size: var(--ag-input-text-size, 1rem);
  border-radius: var(--ag-input-radius, 3px);
  padding: var(--ag-input-padding, 0.5rem 1rem);
  transition: all 0.3s;
}
.age-gate input[type=text].age-gate__input::placeholder, .age-gate input[type=text].age-gate-input::placeholder {
  color: var(--ag-input-placeholder-color);
}
.age-gate select.age-gate__select, .age-gate select.age-gate-select, .age-gate select.age-gate__region {
  background: var(--ag-input-background-color, white);
  width: 100%;
  text-align: var(--ag-text-align);
  color: var(--ag-input-color, #414141);
  border: var(--ag-input-border, solid);
  border-width: var(--ag-input-border-width, 1px);
  font-size: var(--ag-input-text-size, 1rem);
  border-radius: var(--ag-input-radius, 3px);
  padding: var(--ag-input-padding, 0.5rem 1rem);
}
.age-gate select.age-gate__region {
  margin-bottom: 1rem;
}
.age-gate__label, .age-gate-label {
  display: var(--ag-label-display, block);
  margin: var(--ag-label-margin, 0 0 0.5rem);
}
.age-gate__error, .age-gate-error {
  color: var(--ag-text-error-color, #c00);
  font-weight: var(--ag-text-error-weight, bold);
}
.age-gate__error a, .age-gate-error a {
  color: currentColor;
  text-decoration: underline;
}
.age-gate__errors, .age-gate-errors {
  padding: var(--ag-text-errors-padding, 0);
  width: 100%;
  text-align: center;
}
.age-gate__errors:empty, .age-gate-errors:empty {
  padding: 0;
}
.age-gate__extra, .age-gate-extra {
  max-width: var(--ag-fields-width, 100%);
  margin: var(--ag-fields-margin, 0 auto 1rem);
  width: 100%;
}
.age-gate__extra:empty, .age-gate-extra:empty {
  display: none;
}
.age-gate__form-elements, .age-gate-form-elements {
  list-style: none;
  margin: var(--ag-input-margin, 0);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ag-input-spacing, 10px);
}
.age-gate__fields, .age-gate-fields {
  display: block;
  border-width: 0;
  padding: 0;
  max-width: var(--ag-fields-width, 100%);
  margin: var(--ag-fields-margin, 0 auto 1rem);
  width: 100%;
}
.age-gate-shortcode .age-gate__fields, .age-gate--shortcode .age-gate__fields, .age-gate-shortcode .age-gate-fields, .age-gate--shortcode .age-gate-fields {
  padding: 0 20px 20px;
}
@media screen and (min-width: 768px) {
  .age-gate-shortcode .age-gate__fields, .age-gate--shortcode .age-gate__fields, .age-gate-shortcode .age-gate-fields, .age-gate--shortcode .age-gate-fields {
    max-width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .age-gate-shortcode .age-gate__fields, .age-gate--shortcode .age-gate__fields, .age-gate-shortcode .age-gate-fields, .age-gate--shortcode .age-gate-fields {
    max-width: 50%;
  }
}
.age-gate__form, .age-gate-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.age-gate__heading-title, .age-gate-heading-title {
  font-size: var(--ag-text-heading-size, 2rem);
  margin: var(--ag-text-heading-margin, 0 0 1rem);
  font-weight: var(--ag-text-heading-weight, 700);
}
.age-gate__heading, .age-gate-heading {
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.age-gate__headline, .age-gate-headline {
  font-size: var(--ag-text-headline-size, 1.5rem);
  margin: var(--ag-text-headline-margin, 0 0 0.75rem);
  font-weight: var(--ag-text-headline-weight, 700);
  line-height: 1.25;
  letter-spacing: -0.01em;
  width: 100%;
}
.age-gate__restricted, .age-gate-restricted {
  overflow: var(--ag-html-overflow, hidden);
  position: relative;
  height: calc(100vh - var(--ag-vh-offset, 0px));
}
.age-gate__loader, .age-gate-loader {
  position: fixed;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  height: calc(100vh - var(--ag-vh-offset, 0px));
  z-index: 100000;
  color: var(--ag-loader-color, #000);
}
.age-restriction--working .age-gate__loader, .age-restriction--working .age-gate-loader {
  display: flex;
}
.age-gate__loader svg,
.age-gate__loader img, .age-gate-loader svg,
.age-gate-loader img {
  display: block;
  width: 70px;
  height: 70px;
}
.age-gate__loading-icon, .age-gate-loading-icon {
  display: block;
  width: 50px;
  height: 50px;
}
.age-gate__heading-title--logo, .age-gate-heading-title-logo {
  max-width: var(--ag-logo-max-width, 100%);
  height: var(--ag-logo-height, auto);
}
.age-gate__remember-text, .age-gate-remember-text {
  margin-left: var(--ag-remember-spacing, 5px);
  font-size: var(--ag-remember-size, 0.9rem);
  font-weight: var(--ag-remember-weight, normal);
}
.age-gate__remember-wrapper, .age-gate-remember-wrapper {
  margin: var(--ag-remember-margin, 0 0 1rem);
  width: 100%;
  text-align: left;
}
.age-gate__remember, .age-gate-remember {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: var(--ag-remember-align, center);
}
.age-gate__subheadline, .age-gate-subheadline {
  font-size: var(--ag-text-subheadline-size, 1rem);
  margin: var(--ag-text-subheadline-margin, 0 0 1.5rem);
  font-weight: var(--ag-text-subheadline-weight, 400);
  line-height: 1.6;
  width: 100%;
}
.age-gate__submit, .age-gate-submit {
  margin: var(--ag-submit-margin, 0 0 1rem);
}
button.age-gate__button, button.age-gate-button, button.age-gate__submit--no, button.age-gate-submit-no, button.age-gate__submit--yes, button.age-gate-submit-yes {
  background-color: var(--ag-button-color-background, #333);
  color: var(--ag-button-color-text, #fff);
  border-radius: var(--ag-button-radius, 3px);
  padding: var(--ag-button-padding, 0.5rem 1rem);
  border: var(--ag-button-border, 0);
  font-size: var(--ag-button-size, 1rem);
  font-weight: var(--ag-button-weight, 600);
  cursor: var(--ag-button-cursor, pointer);
}
button.age-gate__button:hover, button.age-gate__button:active, button.age-gate__button:focus, button.age-gate-button:hover, button.age-gate-button:active, button.age-gate-button:focus, button.age-gate__submit--no:hover, button.age-gate__submit--no:active, button.age-gate__submit--no:focus, button.age-gate-submit-no:hover, button.age-gate-submit-no:active, button.age-gate-submit-no:focus, button.age-gate__submit--yes:hover, button.age-gate__submit--yes:active, button.age-gate__submit--yes:focus, button.age-gate-submit-yes:hover, button.age-gate-submit-yes:active, button.age-gate-submit-yes:focus {
  background-color: var(--ag-button-color-hover, rgb(45.9, 45.9, 45.9));
  color: var(--ag-button-color-text-hover, #fff);
  border: var(--ag-button-hover-border, 0);
}
button.age-gate__submit--no, button.age-gate-submit-no, button.age-gate__submit--yes, button.age-gate-submit-yes {
  margin: var(--ag-button-margin, 0);
}

.age-gate .age-gate__buttons button {
  padding: 15px 62px;
  text-align: center;
  border: 1px solid white;
  background: 0 0;
  font-size: 18px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  text-transform: none;
  text-decoration: none;
  outline: none;
  display: inline-block;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  margin: 0 10px 10px;
}
.age-gate__wrapper, .age-gate-wrapper {
  height: calc(100vh - var(--ag-vh-offset, 0px));
  z-index: var(--ag-form-z-index, 10000);
  width: var(--ag-overlay-width, 100%);
  top: var(--ag-form-top, 0);
  left: var(--ag-form-left, 0);
  display: var(--ag-form-display, flex);
  overflow-y: var(--ag-form-overlow, auto);
  position: var(--ag-form-position, fixed);
  text-align: var(--ag-text-align, center);
  padding: var(--ag-wrapper-padding, 20px);
  transition-duration: var(--ag-transition-duration, 300ms);
  transition-property: all;
  transition-timing-function: var(--ag-transition-timing, ease);
  box-sizing: border-box;
}
.age-gate .age-gate-shortcode-inner,
.age-gate .age-gate__shortcode__inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 10px;
}
.age-gate__challenge {
  font-size: 20px;
}
.age-gate {
  background-color: #111;
  max-width: 800px;
}
.age-gate__buttons button {
  padding: 15px 62px;
  text-align: center;
  border: 1px solid #111;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  text-transform: none;
  text-decoration: none;
  outline: none;
  display: inline-block;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  margin: 0 10px 10px;
}
.age-gate--shortcode, .age-gate-shortcode {
  padding: 0;
  background-color: transparent;
  background-size: cover;
  max-width: none;
}
.age-gate--fade, .age-gate.fade {
  opacity: 0;
}
.age-gate--slide-up, .age-gate--slide-0 {
  transform: translateY(-100%);
}
.age-gate--slide-down {
  transform: translateY(100%);
}
.age-gate--slide-left {
  transform: translateX(-100%);
}
.age-gate--slide-right {
  transform: translateX(100%);
}
