/* a */
/* h1 */
/* h2 */
/* h3 */
/* h4 */
/* h5 */
/* h6 */
/* p */
/* Other */
/* Box Shadows */
/* Animations */

/*
--pumpkin: #F17122ff;
--apricot: #F2C0A3ff;
--yellow: #FFFF00ff;
--black: #000000ff;
--auburn: #AB3835ff;

--pumpkin: hsla(23, 88%, 54%, 1);
--apricot: hsla(22, 75%, 79%, 1);
--yellow: hsla(60, 100%, 50%, 1);
--black: hsla(0, 0%, 0%, 1);
--auburn: hsla(2, 53%, 44%, 1);

$pumpkin: #F17122ff;
$apricot: #F2C0A3ff;
$yellow: #FFFF00ff;
$black: #000000ff;
$auburn: #AB3835ff;

$pumpkin: hsla(23, 88%, 54%, 1);
$apricot: hsla(22, 75%, 79%, 1);
$yellow: hsla(60, 100%, 50%, 1);
$black: hsla(0, 0%, 0%, 1);
$auburn: hsla(2, 53%, 44%, 1);

$pumpkin: rgba(241, 113, 34, 1);
$apricot: rgba(242, 192, 163, 1);
$yellow: rgba(255, 255, 0, 1);
$black: rgba(0, 0, 0, 1);
$auburn: rgba(171, 56, 53, 1);

$gradient-top: linear-gradient(0deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-right: linear-gradient(90deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-bottom: linear-gradient(180deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-left: linear-gradient(270deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-top-right: linear-gradient(45deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-bottom-right: linear-gradient(135deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-top-left: linear-gradient(225deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-bottom-left: linear-gradient(315deg, #F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
$gradient-radial: radial-gradient(#F17122ff, #F2C0A3ff, #FFFF00ff, #000000ff, #AB3835ff);
*/

@font-face {
  font-family: CandlelightFont;
  src: url(/assets-new/fonts/AVENIRLTSTD-MEDIUM.OTF);
  font-display: swap;
}

/*
Garamond (serif / classic / smart)
Bodoni (serif / „premium“ / elegant)
Century Expanded (serif / readable!)
Futura (sans-serif / geometric / functional) 
Helvetica (sans-serif / often used) 
*/

* {
  font-family: 'CandlelightFont';
  /* font-family: 'Raleway', 'Helvetica', 'Arial', sans-serif; */ /* One Place */
}

:root {
    /* Colors */
    --color-dark: #000;
    --color-dark-moderate: rgba(0, 0, 0, 0.5);
    --color-light: #FFF;
    --color-pumpkin: #f17122;
    --color-pumpkin-disabled: #ffa871;
    --color-apricot: #F2C0A3ff;
    --color-yellow: #FFFF00ff;
    --color-blue: #2868fd;
    --color-black: #000000ff;
    --color-auburn: #AB3835ff;
    --color-gray-disabled: #A0A0A0;

    --color-light-background: rgb(245, 245, 245);

    /* Spacing */
    --spacing-xsm: 3px;
    --spacing-sm: 12px;
    --spacing-std: 25px;
    --spacing-md: 50px;
    --spacing-lg: 100px;
    --spacing-xl: 150px;

    /* Shadows */
    --light-faint: #ffffff2a;
    --light-std: rgba(255, 255, 255, 0.400);
    --shadow-faint: rgba(0, 0, 0, 0.2);
    --shadow-moderate: rgba(0, 0, 0, 0.35);
    --shadow-std: rgba(0, 0, 0, 0.5);

    /* Other */
    --font-size-std: 16px;
    --font-size-lg: 19px;
    --border-radius-std: 4px;
    --border-radius-lg: 12px;
    --border-radius-xl: 25px;
    --box-shadow-n-std: -12px;
    --box-shadow-std: 12px;

    --container-background-color: rgb(245, 245, 245);
}

body {
  margin: 0;
  /* background-color: var(--color-dark); */
}

html, body, p, div, span {
  font-size: var(--font-size-std);
}

/* a */
a:hover {
  color: var(--color-pumpkin);
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

/* h1 */
h1:first-child {
  margin-top: 0;
}

h1:last-child {
  margin-bottom: 0;
}

/* h2 */
h2:first-child {
  margin-top: 0;
}

h2:last-child {
  margin-bottom: 0;
}

/* h3 */
h3:first-child {
  margin-top: 0;
}

h3:last-child {
  margin-bottom: 0;
}

/* h4 */
h4:first-child {
  margin-top: 0;
}

h4:last-child {
  margin-bottom: 0;
}

/* h5 */
h5:first-child {
  margin-top: 0;
}

h5:last-child {
  margin-bottom: 0;
}

/* h6 */
h6:first-child {
  margin-top: 0;
}

h6:last-child {
  margin-bottom: 0;
}

/* p */
p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.white-text, .white-text * {
  color: #FFF;
}

.main_wrapper {
  padding: 40px 40px 30px 40px;
}

.error {
  color: red;
}

/* Other */
.page-body {
  position: relative;
}

.spaced-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-std);
  margin: var(--spacing-std);
}

/* Box Shadows */
.nesw-box-shadow-std {
  box-shadow: 0 0 var(--box-shadow-std) var(--color-dark);
}

/* Animations */
@keyframes appear {
  from {opacity: 0;}
  to {opacity: 1;}
}

.fade-in-animation {
  opacity: 0;
}

.fade-in-animation.animation-activated {
  animation: appear 1s forwards;
}
.animation-1s-delay.animation-activated {
  animation-delay: 1s;
}

/* Feature Well */
.feature-well-box {
  padding: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 0;
  color: rgb(51, 51, 51);
  min-height: 20px;
  background-color: rgb(245, 245, 245);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.514);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(184, 184, 184);
  border-image: initial;
  border-radius: var(--border-radius-lg);
}

.feature-well-box:nth-child(odd) {
  flex-direction: row-reverse;
}

.feature-well-info-col {
  flex-grow: 1;
  overflow-wrap: break-word;
}

.feature-well-info-col:last-child {
  margin-bottom: 0;
}

.feature-well-body {
  padding: 0;
  text-align: left;
}

.feature-well-body > *:last-child {
  margin-bottom: 0;
}

.feature-well-image {
  box-shadow: 0 0 5px rgb(0, 0, 0);
  border-radius: 5px;
  width: 250px;
  height: auto;
}

.feature-well-info-title {
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.336);
}

.feature-well-info-sub-heading {
  padding-top: 10px;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .feature-well-image-col {
      display: none;
  }

  .feature-well-body {
      padding: 0;
  }

  .feature-well-box {
      padding: 30px;
      display: unset;
      flex-direction: unset;
  }
}

/* Gradient Divider */
.gradient-divider {
  width: 100%;
  margin: 0;
  height: 3px;
  z-index: 0;
  background: -webkit-radial-gradient(50% 50%, ellipse closest-side, black, rgba(255, 42, 112, 0) 70%);
}

.gradient-divider-white {
  width: 100%;
  margin: 0;
  height: 5px;
  z-index: 0;
  background: -webkit-radial-gradient(50% 50%, ellipse closest-side, #FFF, rgba(255, 255, 255, 0) 70%);
}

.std-flex-spacing {
  display: flex;
  margin: 0 var(--spacing-std) var(--spacing-std) var(--spacing-std);
  flex-direction: column;
  gap: var(--spacing-std);
}

/* Buttons */
.candlelight-button-orange {
  box-shadow: 0 0 5px 5px var(--shadow-faint);
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--color-dark-moderate);
  border-radius: var(--border-radius-std);
  text-shadow: 0 2px 5px var(--light-faint);
  background-color: var(--color-pumpkin);
  font-weight: normal;
  text-decoration: none;
  display: inline-block;
  color: var(--color-light) !important;
}

.candlelight-button-orange:hover {
  border: 1px solid var(--color-dark);
  box-shadow: 0 0 15px 10px var(--shadow-moderate);
  text-shadow: 0 0 3px var(--color-light);
  transition: box-shadow 0.2s linear, border 0.2s linear, text-shadow 0.2s linear;
  cursor: pointer;
}

/* Loading Image */
.blur-image-final {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.blur-image-final.loaded {
  opacity: 1;
}

.background-blur-image-load {
  z-index: 10;
}

/* Media Player */
.media-selector-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.media-selector-button {
  color: #FFF;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.75);
  font-size: 1.3rem;
  display: inline-block;
  text-decoration: none;
  min-height: 20px;
  padding: 8px;
  background-color: #f25824;
  border: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: var(--border-radius-std);
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
  box-shadow: 0 0 15px rgb(0 0 0 / 90%);
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  vertical-align: middle;
  gap: 5px;
  transition: color 0.2s ease;
}

.media-selector-button:hover {
  cursor: pointer;
}

.media-selector-button.media-selected {
  cursor: default;
}

.media-selector-button.disabled {
  background-color: var(--color-pumpkin-disabled);
}

.media-selector-button.disabled:hover {
  cursor: not-allowed;
}

.media-indicator-light-container {
  position: relative;
  height: var(--font-size-std);
  width: var(--font-size-std);
}

.media-indicator-light-red {
  opacity: 0.3;
}

.media-indicator-light-green {
  opacity: 0;
}

.media-indicator-light-green {
  transition: opacity 0.2s ease-in-out;
}

.media-indicator-light-green.media-selected  {
  opacity: 1;
}

.media-indicator-light {
  height: var(--font-size-std);
  width: var(--font-size-std);
  position: absolute;
  top: 0;
  left: 0;
}

/* Banner Images */
.responsive-banner-bg {
  width: 100%;
  padding-top: 18.7%;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 0 15px #000;
  border-radius: 5px;
  overflow: hidden;
}

.responsive-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.responsive-banner-super-text {
  position: absolute;
  font-size: calc(50%);
  top: 60px;
  right: 60px;
  text-align: right;
  z-index: 100;
}

.responsive-banner-decorative-border {
  position: absolute;
  top: 30px;
  left: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  border-width: 3px;
  border-style: solid;
  border-color: white;
  border-radius: 3px;
}

.responsive-banner-text-small {
  padding-left: 30px;
}

@media (max-width: 1400px) {
  .responsive-banner-decorative-border {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }

  .responsive-banner-super-text {
    top: 40px;
    right: 40px;
  }
}

@media (max-width: 900px) {
  .responsive-banner-decorative-border {
    display: none;
  }

  .responsive-banner-super-text {
    top: 10px;
    right: 10px;
  }
}

.responsive-banner-title {
  text-shadow: 1px 1px 10px rgba(0, 0, 0);
  margin: 0;
  font-size: calc(50%);
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 50;
}

.responsive-banner-link {
  z-index: 51;
  text-decoration: none;
  color: var(--color-light);
}

.divider {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  height: 5px;
  z-index: 0;
  background: -webkit-radial-gradient(50% 50%, ellipse closest-side, black, rgba(255, 42, 112, 0) 70%);
}

.main-image-gradient {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(0, 0, 0, 0.8799894957983193) 50%, rgba(255, 255, 255, 1) 90%);
  text-align: center;
}

.page-header {
  text-align: center;
  margin: 0;
  font-style: italic;
  font-size: 3.5rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.288);
}

.page-sub-header {
  text-align: center;
  margin: var(--spacing-sm) 0 0 0;
  font-style: italic;
  font-size: 2.5rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.288);
}

@media (max-width: 799px) {
  .page-header {
    font-size: 2.5rem;
  }

  .page-sub-header {
    font-size: 1.8rem;
  }
}

.main-content {
  display: flex;
  margin: 0 var(--spacing-std) var(--spacing-std) var(--spacing-std);
  flex-direction: column;
  gap: var(--spacing-std);
}

@media (min-width: 1400px) {
  .main-content-1300 {
    max-width: 1300px;
    margin: 0 auto;
  }
}

/* Info container */
.info-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
}

.box-container:nth-of-type(even) .info-container.info-container-alternate {
  flex-direction: row-reverse;
}

.info-container-image {
  box-shadow: 0 0 15px #000;
}

@media only screen and (max-width: 800px) {
  .box-container:nth-of-type(even) .info-container.info-container-alternate {
    flex-direction: column;
  }

  .info-container {
    flex-direction: column;
  }

  .info-container-image {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
}

.box-container {
  padding: 30px;
  box-shadow: 0 0 15px var(--shadow-std);
  background-color: var(--container-background-color);
  border-radius: var(--border-radius-std);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Events */
.tinymce-bigger-font:not(sup), .tinymce-bigger-font *:not(sup) {
  font-size: 110%;
}

.tinymce-medum-font:not(sup), .tinymce-medum-font *:not(sup) {
  font-size: 125%;
}

.tinymce-large-font:not(sup), .tinymce-large-font *:not(sup) {
  font-size: 150%;
}