
/**
 * || MODAL
 * ========================================================================= */
.theme-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100001;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding: 1rem;
  transition: opacity 0.2s ease;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.theme-modal-content {
  --theme-modal-content-row-gap: 32px;
  --theme-modal-content-column-gap: 24px;
  box-shadow: 0 0 2px #000;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  row-gap: var(--theme-modal-content-row-gap, 24px);
  column-gap: var(--theme-modal-content-column-gap, 24px);
  position: absolute;
  z-index: 100002;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-x: auto;
  overflow-y: auto;
  width: 480px;
  max-width: 95vw;
  min-height: 200px;
  max-height: 95vh;
  padding: 2rem;
  transition: all 0.2s ease;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  color: #262626;
  text-align: center;
}

/**
 * || AGE-GATE - Age verification modal
 * ========================================================================= */
.age-gate-logo {
  width: 120px;
}

.age-gate-title {
  font-size: 1.2rem;
  line-height: 1.2;
}

.age-gate-statement {
  font-size: 0.9rem;
}
.age-gate-statement a {
  text-decoration-line: underline;
}

.age-gate-buttons {
  display: flex;
  align-items: flex-start;
  -webkit-box-pack: center;
  justify-content: center;
  row-gap: 16px;
  column-gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.age-gate-buttons .btn {
  width: 100%;
  box-shadow: none;
  transition: all 0.2s linear;
}
.age-gate-buttons .btn-confirm {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.age-gate-buttons .btn-confirm:focus, .age-gate-buttons .btn-confirm:hover {
  /* background-color: var(--color-success, #008000);
  border-color: var(--color-success, #008000); */
}
.age-gate-buttons .btn-deny {
  color: #262626;
  background-color: #F2F2F2;
  border: 2px solid #F2F2F2;
}
.age-gate-buttons .btn-deny:focus, .age-gate-buttons .btn-deny:hover {
  background-color: #eee;
  border-color: #eee;
}