@charset "UTF-8";
/*
* Theme Name: Shine it Forward
* Text Domain: sif
* Version: 1.0.1
* Requires at least: 4.7
* Tested up to: 6.0.2;
* Description: Shine it Forward theme built for Illuminate.
* Author: Special Projects Team
* Author URI: https://wordpress.com
* Theme URI: https://wordpress.com
* License: GNU General Public License v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
* All files, unless otherwise stated, are released under the GNU General Public
* License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)
*
* This theme, like WordPress, is licensed under the GPL.
* Use it to make something cool, have fun, and share what you've learned
* with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. CSS Reset
	1. Document Setup
	2. Element Base
	3. Helper Classes

----------------------------------------------------------------------------- */
/**
 * @license
 *
 * Font Family: General Sans
 * Designed by: Frode Helland
 * URL: https://www.fontshare.com/fonts/general-sans
 * © 2022 Indian Type Foundry
 *
 * Font Styles:
 * General Sans Light
 * General Sans Light Italic
 * General Sans Regular
 * General Sans Italic
 * General Sans Semibold (used as bold)
 * General Sans Semibold Italic (used as bold)
 *
*/
@font-face {
  font-family: "GeneralSans";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Light.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Light.woff") format("woff"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-LightItalic.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-LightItalic.woff") format("woff"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "GeneralSans";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Regular.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Regular.woff") format("woff"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Italic.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Italic.woff") format("woff"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
/* setting semibold as 700 wt */
@font-face {
  font-family: "GeneralSans";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Semibold.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Semibold.woff") format("woff"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/* setting semibold as 700 wt */
@font-face {
  font-family: "GeneralSans";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-SemiboldItalic.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-SemiboldItalic.woff") format("woff"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/GeneralSans-SemiboldItalic.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
/* Inter for checkmarks in radio buttons */
@font-face {
  font-family: "InterSIF";
  src: url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/Inter-Medium.woff2") format("woff2"), url("/wp-content/themes/shine-it-forward/assets/fonts/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
/**
 * Responsive breakpoints
 * - breakpoints values are defined in _config-global.scss
 */
/**
 * Align wide widths
 * - Sets .alignwide widths
 */
/**
 * Crop Text Boundry
 * - Sets a fixed-width on content within alignwide and alignfull blocks
 */
/* Sass Functions go here */
/**
 * Map deep get
 * @author Hugo Giraudel
 * @access public
 * @param {Map} $map - Map
 * @param {Arglist} $keys - Key chain
 * @return {*} - Desired value
 *
 * Example:
 * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
 */
/**
 * Deep set function to set a value in nested maps
 * @author Hugo Giraudel
 * @access public
 * @param {Map} $map - Map
 * @param {List} $keys -  Key chaine
 * @param {*} $value - Value to assign
 * @return {Map}
 *
 * Example:
 * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
 */
/* -------------------------------------------------------------------------- */
/*	Variables
/* -------------------------------------------------------------------------- */
/* Fonts ---------------------------------- */
/**
 * Base styles (reset, normalize, accessibility, clearings, typography)
 */
/* -------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
html,
body {
  border: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
  border: none;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
}

blockquote::before,
blockquote::after {
  content: "";
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  background: #000;
  box-sizing: border-box;
  color: #000000;
  font-family: "GeneralSans", sans-serif;
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (min-width: 48em) {
  body {
    font-size: 18px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  word-wrap: break-word;
}

main {
  display: block;
}

p {
  line-height: 1.5;
  margin: 0 0 5rem 0;
}

em,
i,
q,
dfn {
  font-style: italic;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
  font-weight: bolder;
}

big {
  font-size: 1.2em;
}

small {
  font-size: 0.75em;
}

b,
strong {
  font-weight: 700;
}

ins {
  text-decoration: underline;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr,
acronym {
  cursor: help;
}

address {
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0 0 2rem 0;
}

hr {
  border-style: solid;
  border-width: 0.1rem 0 0 0;
  border-color: #F5F3F0;
  margin: 2rem 0;
}
@media screen and (min-width: 48em) {
  hr {
    margin: 4rem auto;
  }
}

a {
  color: #826953;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* Lists ------------------------------------- */
ul,
ol {
  margin: 0 0 3rem 3rem;
}
@media (max-width: 479px) {
  ul,
  ol {
    margin: 0 0 3rem 2rem;
  }
}
@media screen and (min-width: 48em) {
  ul,
  ol {
    margin-bottom: 4rem;
  }
}

ul {
  list-style: disc;
}

ul ul {
  list-style: circle;
}

ul ul ul {
  list-style: square;
}

ol {
  list-style: decimal;
}

ol ol {
  list-style: lower-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

li {
  margin: 0.5rem 0 0 2rem;
}
@media (max-width: 479px) {
  li {
    margin: 0.5rem 0 0 1rem;
  }
}

li > ul,
li > ol {
  margin: 1rem 0 0 2rem;
}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
  list-style: none;
  margin: 0;
}

.reset-list-style li {
  margin: 0;
}

dt,
dd {
  line-height: 1.5;
}

dt {
  font-weight: 700;
}

dt + dd {
  margin-top: 0.5rem;
}

dd + dt {
  margin-top: 1.5rem;
}

/* Code -------------------------------------- */
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
  background: rgba(0, 0, 0, 0.075);
  border-radius: 0.2rem;
}

pre {
  border: 1px solid #CDC9C4;
  border-radius: 3px;
  color: #000000;
  line-height: 1.5;
  margin: 4rem 0;
  overflow: auto;
  padding: 3rem 2rem;
  text-align: left;
}
@media screen and (min-width: 48em) {
  pre {
    padding: 3rem;
  }
}

pre code {
  background: transparent;
  padding: 0;
}

/* Media ------------------------------------- */
figure {
  display: block;
  margin: 0;
}

iframe {
  display: block;
  max-width: 100%;
}

video {
  display: block;
}

svg,
img,
embed,
object {
  display: block;
  height: auto;
  max-width: 100%;
}

figcaption,
.wp-caption-text {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  figcaption,
  .wp-caption-text {
    margin-top: 1.8rem;
  }
}
figcaption a,
.wp-caption-text a {
  color: inherit;
}

/* GALLERIES */
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 3em 0 3em -0.8em;
  width: calc(100% + 1.6em);
}

.gallery-item {
  margin: 0.8em 0;
  padding: 0 0.8em;
  width: 100%;
}

.gallery-caption {
  display: block;
  margin-top: 0.8em;
}

/* Tables ------------------------------------ */
table {
  border: 0.1rem solid #dcd7ca;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 1.6rem;
  margin: 4rem 0;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 48em) {
  table {
    font-size: 1.8rem;
  }
}

.alignleft > table {
  margin: 0;
}

.alignright > table {
  margin: 0;
}

th,
td {
  border: 0.1rem solid #dcd7ca;
  line-height: 1.4;
  margin: 0;
  overflow: visible;
  padding: 0.5em;
}

caption {
  background: #dcd7ca;
  font-weight: 600;
  padding: 0.5em;
  text-align: center;
}

thead {
  vertical-align: bottom;
  white-space: nowrap;
}

th {
  font-weight: 700;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-break: normal;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
hr,
.wp-block-group,
.clear:after,
.entry-content:after,
.group::after,
.comment-content:after {
  clear: both;
}

/* -------------------------------------------------------------------------- */
/*	Typography
/* -------------------------------------------------------------------------- */
body {
  font-family: "GeneralSans", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.faux-heading,
h1.entry-title,
h2.entry-title {
  font-weight: 400;
  font-family: "GeneralSans", sans-serif;
  line-height: 1.3;
}

h1, .h1,
.heading-size-1,
h1.entry-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
}
@media screen and (min-width: 48em) {
  h1, .h1,
  .heading-size-1,
  h1.entry-title {
    font-size: 44px;
  }
}

h2,
.heading-size-2,
h2.entry-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 48em) {
  h2,
  .heading-size-2,
  h2.entry-title {
    font-size: 36px;
  }
}

h3,
.heading-size-3 {
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (min-width: 48em) {
  h3,
  .heading-size-3 {
    font-size: 30px;
  }
}

h4,
.heading-size-4 {
  font-size: 24px;
  line-height: 1.3;
}

h5,
.heading-size-5 {
  font-size: 20px;
  line-height: 1.3;
}

h6,
.heading-size-6 {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

/* TITLES */
h1, .h1,
.heading-size-1,
h2, .h2,
.heading-size-2,
h3, .h3,
.heading-size-3 {
  margin: 0 auto 3rem;
}

h4, .h4,
.heading-size-4,
h5, .h5,
.heading-size-5,
h6, .h6,
.heading-size-6 {
  margin: 0 auto 2.5rem;
}

figcaption {
  font-family: "GeneralSans", sans-serif;
}

ul, ol {
  font-family: "GeneralSans", sans-serif;
}

p {
  margin: 0 0 1.5em 0;
}

figure {
  max-width: 100%;
}

main {
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 1. Document Setup
/* -------------------------------------------------------------------------- */
/* Base Transitions -------------------------- */
a,
path {
  transition: all 0.15s linear;
}

a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  color: #FFFFFF;
}

p {
  font-family: "GeneralSans", sans-serif;
}

/* Skip Link --------------------------------- */
.skip-link {
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999999;
  text-decoration: underline;
}

.skip-link:focus {
  display: block;
  left: 6px;
  top: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
  padding: 15px 23px 14px;
  z-index: 100000;
  right: auto;
}

/* -------------------------------------------------------------------------- */
/* 3. Helper Classes
/* -------------------------------------------------------------------------- */
/* Layout ------------------------------------ */
.bold {
  font-weight: bold;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.screen-height {
  min-height: 100vh;
}

.admin-bar .screen-height {
  min-height: calc(100vh - 32px);
}
@media screen and (min-width: 48em) {
  .admin-bar .screen-height {
    min-height: calc(100vh - 46px);
  }
}

.screen-width {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
}

/* Sections ---------------------------------- */
section {
  padding: 1rem 0;
  width: 100%;
}

.section-inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 60em) {
  .section-inner {
    max-width: 1280px;
    width: calc(100% - 4rem);
  }
}

.section-inner.max-percentage {
  width: 100%;
}

@media screen and (min-width: 60em) {
  .section-inner.thin {
    max-width: 58rem;
  }
}

.section-inner.small {
  max-width: 80rem;
}

.section-inner.medium {
  max-width: 100rem;
}

.section-inner.no-margin {
  margin: 0;
}

/* Hiding and Showing ------------------------ */
.js .show-js {
  display: block !important;
}

.js .hide-js {
  display: none !important;
}

.no-js .show-no-js {
  display: block !important;
}

.no-js .hide-no-js {
  display: none !important;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* -------------------------------------------------------------------------- */
/* Load partials
/* -------------------------------------------------------------------------- */
/*
 * Components
 * - Similar to Blocks but exist outside of the "current" editor context
 */
.site-title {
  letter-spacing: 0.02em;
  font-size: 20px;
  line-height: 160%;
  align-self: center;
  margin-right: auto;
}
.site-title a {
  color: currentColor;
  text-decoration: none;
}
.site-title a:link, .site-title a:visited {
  color: currentColor;
}
.site-title a:hover {
  color: #FFFFFF;
}
.site-title a.desktop-title {
  display: none;
}
@media screen and (min-width: 48em) {
  .site-title a.desktop-title {
    display: block;
  }
}
@media screen and (min-width: 48em) {
  .site-title a.mobile-title {
    display: none;
  }
}

.primary-menu-wrapper {
  align-self: center;
  background-color: #000000;
  margin-left: auto;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: absolute;
  transition: height 0.5s;
  text-align: center;
  display: block;
  top: 70px;
  left: 0;
}
@media screen and (min-width: 48em) {
  .primary-menu-wrapper {
    background-color: transparent;
    width: auto;
    height: auto;
    display: block;
    position: relative;
    transition: none;
    top: auto;
    left: auto;
  }
}
.menu-active .primary-menu-wrapper {
  height: 100vh;
}
@media screen and (min-width: 48em) {
  .menu-active .primary-menu-wrapper {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background-color: transparent;
    text-align: left;
  }
}
.primary-menu-wrapper ul {
  padding-top: 20%;
}
@media screen and (min-width: 48em) {
  .primary-menu-wrapper ul {
    padding-top: 0;
  }
}
.primary-menu-wrapper ul li {
  display: block;
  margin: 0 20px 30px;
  font-weight: 400;
  font-size: 36px;
  line-height: 160%;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 48em) {
  .primary-menu-wrapper ul li {
    display: inline-block;
    margin-bottom: 0;
    font-size: 20px;
  }
}
.primary-menu-wrapper ul li a {
  text-decoration: none;
  color: #fff;
}
.primary-menu-wrapper ul li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.menu-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  cursor: pointer;
  top: 0;
  right: 0;
  border-left: 1px solid #FFFFFF;
}
@media screen and (min-width: 48em) {
  .menu-icon {
    display: none;
  }
}
.menu-icon .menu-icon__checkbox {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  -webkit-touch-callout: none;
  position: absolute;
  opacity: 0;
  margin: 0;
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 12px;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}
.menu-icon.active span:first-of-type,
.menu-icon .menu-icon__checkbox:checked + div span:first-of-type {
  transform: rotate(45deg);
  top: 5px;
}
.menu-icon.active span:last-of-type,
.menu-icon .menu-icon__checkbox:checked + div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}
.menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__checkbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__checkbox:checked + div span:last-of-type {
  width: 22px;
}
@media (min-width: 1024px) {
  .menu-icon:hover span:first-of-type {
    width: 26px;
  }
  .menu-icon:hover span:last-of-type {
    width: 12px;
  }
}

.site-footer {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 4rem;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 640px) {
  .site-footer {
    align-items: flex-end;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 559px) {
  .site-footer {
    flex-direction: column;
  }
}

.footer-navigation {
  display: inline;
}
@media only screen and (min-width: 640px) {
  .footer-navigation {
    flex: 1 0 50%;
    order: 2;
    margin-top: 0;
    margin-bottom: 0;
    text-align: right;
  }
}
.footer-navigation > div {
  display: inline;
}
.footer-navigation .footer-menu {
  margin: 0;
  padding-left: 0;
}
@media only screen and (min-width: 640px) {
  .footer-navigation .footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.footer-navigation .footer-menu > li {
  display: inline;
}
.footer-navigation .footer-menu > li:first-of-type > a {
  padding-left: 0;
}
.footer-navigation .footer-menu > li:last-of-type {
  padding-right: 0;
}

/* Utilities */
img#wpstats {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  padding: 0 !important;
  border: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden;
}

.spinner {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.spinner::after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: spinner 1.2s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**
 * Elements
 * - Styles for basic HTML elemants
 */
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background-color: #000000;
  padding: 1.5rem;
  font-size: 20px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 1px #FFFFFF;
}
input[type=text].error,
input[type=email].error,
input[type=url].error,
input[type=password].error,
input[type=search].error,
input[type=number].error,
input[type=tel].error,
input[type=range].error,
input[type=date].error,
input[type=month].error,
input[type=week].error,
input[type=time].error,
input[type=datetime].error,
input[type=datetime-local].error,
input[type=color].error,
textarea.error {
  border: 1px solid #D64036;
}

select {
  border: 1px solid #000;
}

textarea {
  width: 100%;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline;
  margin-left: 0.5em;
  margin-right: 2em;
  line-height: 1em;
}

button,
.sif-button {
  background: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 60px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.25;
  opacity: 1;
  padding: 12px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s linear;
}
button:hover:not(:disabled), button:focus:not(:disabled), button:active:not(:disabled), button.has-focus,
.sif-button:hover:not(:disabled),
.sif-button:focus:not(:disabled),
.sif-button:active:not(:disabled),
.sif-button.has-focus {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #000000;
}
button.button--compact,
.sif-button.button--compact {
  font-size: 1.8rem;
  padding: 8.75px 24px;
}
@media screen and (min-width: 60em) {
  button.button--compact,
  .sif-button.button--compact {
    font-size: 1.8rem;
  }
}
button[disabled],
.sif-button[disabled] {
  opacity: 0.5;
}

label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
label + .helper-text {
  font-size: 16px !important;
  position: absolute;
  bottom: -33px;
  margin: auto !important;
}

.checkbox-group,
.checkbox-inline {
  position: relative;
}
.checkbox-group input[type=checkbox],
.checkbox-group input[type=radio],
.checkbox-inline input[type=checkbox],
.checkbox-inline input[type=radio] {
  opacity: 0;
  position: absolute;
}
.checkbox-group input[type=checkbox] + label,
.checkbox-group input[type=radio] + label,
.checkbox-inline input[type=checkbox] + label,
.checkbox-inline input[type=radio] + label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  height: 56px;
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}
.checkbox-group input[type=checkbox] + label::before,
.checkbox-group input[type=radio] + label::before,
.checkbox-inline input[type=checkbox] + label::before,
.checkbox-inline input[type=radio] + label::before {
  content: "";
  font-size: 20px;
  background: #000000;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 4px 0;
  color: #000000;
  transition: color 0.15s;
  border: 1px solid #FFFFFF;
  border-radius: 80px;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.checkbox-group input[type=checkbox]:checked + label:before,
.checkbox-group input[type=radio]:checked + label:before,
.checkbox-inline input[type=checkbox]:checked + label:before,
.checkbox-inline input[type=radio]:checked + label:before {
  content: "✓";
  font-family: InterSIF;
  font-weight: 500;
  font-size: 24px;
  padding-top: 3px;
  border-color: #000000;
  line-height: 1;
}
.checkbox-group input[type=checkbox]:checked + label:after,
.checkbox-group input[type=radio]:checked + label:after,
.checkbox-inline input[type=checkbox]:checked + label:after,
.checkbox-inline input[type=radio]:checked + label:after {
  color: #000000 !important;
}
.checkbox-group input[type=checkbox][disabled] + label:before,
.checkbox-group input[type=radio][disabled] + label:before,
.checkbox-inline input[type=checkbox][disabled] + label:before,
.checkbox-inline input[type=radio][disabled] + label:before {
  color: #d0d0d0;
  background: #bfbfbf;
  border: 1px solid #656b64;
}

.checkbox-group input[type=checkbox] + label,
.checkbox-group input[type=radio] + label {
  border: 1px solid white;
  padding: 15px 10px 15px 38px;
  border-radius: 80px;
}
.checkbox-group input[type=checkbox]:checked + label,
.checkbox-group input[type=radio]:checked + label {
  background-color: #FFFFFF;
  padding-right: 6px;
  color: #000000;
}
.checkbox-group input[type=checkbox]:checked + label:before,
.checkbox-group input[type=radio]:checked + label:before {
  color: #FFFFFF;
}
.checkbox-group input[type=checkbox]:checked + label input,
.checkbox-group input[type=radio]:checked + label input {
  background-color: #FFFFFF;
  color: #000000;
}
.checkbox-group input[type=text] {
  border: 0;
  font-family: "GeneralSans", sans-serif;
}
.checkbox-group input[type=text]:active, .checkbox-group input[type=text]:focus {
  border: 0;
  box-shadow: none;
}

.checkbox-inline input[type=checkbox] + label,
.checkbox-inline input[type=radio] + label {
  padding: 0.2em 0.35em 0.2em 4.5rem;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}
.checkbox-inline input[type=checkbox] + label::before,
.checkbox-inline input[type=radio] + label::before {
  left: 0;
  margin: 0;
  font-size: 20px;
}
.checkbox-inline input[type=checkbox]:checked + label:before,
.checkbox-inline input[type=radio]:checked + label:before {
  background: #FFFFFF !important;
  color: #000000;
  font-weight: bold;
}

.progress .progress-bar {
  display: flex;
  margin-bottom: 3.4em;
}
.progress .progress-bar .segment {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 4px;
  height: 4px;
}
.progress .progress-bar .segment.active {
  background-color: #FFFFFF;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #FFFFFF;
  background-color: #000000;
  color: #FFFFFF;
  line-height: 55px !important;
  height: 55px;
  border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #FFFFFF;
  line-height: 55px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 55px !important;
}

/* -------------------------------------------------------------------------- */
/*	Header
/* -------------------------------------------------------------------------- */
#site-header {
  display: flex;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #fff;
  padding: 1.5rem 3rem;
  height: 70px;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
}
@media screen and (min-width: 60em) {
  #site-header {
    padding: 3rem 6rem;
    height: auto;
  }
}
.menu-active #site-header {
  flex-wrap: wrap;
}
.admin-bar #site-header {
  top: 46px;
}
@media screen and (min-width: 782px) {
  .admin-bar #site-header {
    top: 32px;
  }
}
@media screen and (min-width: 60em) {
  .admin-bar #site-header {
    top: 32px;
  }
}
#site-header.is-sticky {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
}

.quote-block-wrapper {
  margin-bottom: 12rem;
  margin-top: 9rem;
}
@media screen and (min-width: 48em) {
  .quote-block-wrapper {
    margin-bottom: 22rem;
    margin-top: 7rem;
  }
}

.footer-wrapper {
  background-color: #4D5356;
}

#site-footer {
  padding: 2rem;
}
#site-footer .section-inner {
  display: none;
}
#site-footer .footer-navigation-wrapper,
#site-footer .footer-credits {
  width: 100%;
}
@media screen and (min-width: 60em) {
  #site-footer {
    padding: 30px 0;
  }
  #site-footer .section-inner {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 4rem);
    max-width: 1280px;
  }
  #site-footer .footer-navigation-wrapper {
    width: 80%;
  }
  #site-footer .footer-credits {
    margin-top: 15px;
    width: 17%;
  }
}
@media screen and (min-width: 80em) {
  #site-footer {
    padding: 6rem 0;
  }
  #site-footer .section-inner {
    display: flex;
    justify-content: space-between;
  }
  #site-footer .footer-navigation-wrapper {
    width: 78%;
  }
  #site-footer .footer-credits {
    margin-top: 10px;
    width: 14%;
  }
}

/* Footer Bottom ----------------------------- */
#site-footer {
  font-size: 2.4rem;
  padding-bottom: 90px;
}

#site-footer a {
  text-decoration: none;
}

#site-footer a:focus,
#site-footer a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-family: "GeneralSans", sans-serif;
  color: #FFFFFF;
  font-size: 1.3rem;
}
.footer-copyright span {
  display: block;
  margin-bottom: 1rem;
}
.footer-copyright a {
  color: #FFBC4E;
}

/* FOOTER SOCIAL */
.footer-social-wrapper {
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 47.9375em) {
  .footer-credits {
    order: 1;
  }
}

ul.social-icons {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  ul.social-icons {
    order: 0;
    margin-bottom: 5rem;
  }
}
ul.social-icons li {
  margin: 0 0 0 2rem;
}
@media screen and (min-width: 48em) {
  ul.social-icons li {
    margin: 0 0 0 2rem;
  }
  ul.social-icons li:first-of-type {
    margin: 0;
  }
}
#site-footer ul.social-icons li a {
  color: #FFBC4E;
  padding-right: inherit;
  background-image: none;
  transition: all 0.15s linear, background-position 0.3s ease-in-out;
}
#site-footer ul.social-icons li a svg {
  fill: #000000;
  height: 18px;
  width: auto;
}
#site-footer ul.social-icons li a[href*="woocommerce.com"] svg {
  height: 30px;
  margin-bottom: -4px;
}

.menu-footer-modal {
  display: block;
}
@media screen and (min-width: 60em) {
  .menu-footer-modal {
    display: none;
  }
}
.menu-footer-modal ul.social-menu {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.menu-footer-modal ul.social-menu li:first-of-type {
  margin-left: 0px;
}
.menu-footer-modal .footer-social-wrapper {
  display: flex;
  justify-content: space-between;
}
.menu-footer-modal .footer-copyright span {
  font-size: 16px;
  line-height: 27px;
}
.menu-footer-modal button.close-nav-toggle {
  color: #FFBC4E;
  height: 24px;
  margin-top: 17px;
}
.menu-footer-modal .toggle-text {
  margin-right: 0px;
  width: 65px;
  text-align: right;
  font-family: "GeneralSans", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}

.footer-newsletter {
  background-color: #FFBC4E;
}
.footer-newsletter .footer-newsletter-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0;
}
@media screen and (max-width: 47.9375em) {
  .footer-newsletter .footer-newsletter-container {
    max-width: calc(100% - 4rem);
    padding: 60px 2rem;
  }
}
.footer-newsletter .footer-newsletter-container h3 {
  text-align: center;
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 47.9375em) {
  .footer-newsletter .footer-newsletter-container .footer-newsletter-form {
    width: 100%;
  }
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form {
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  .footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form {
    flex-direction: column;
  }
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field {
  margin-bottom: 0;
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field.ctct-form-field-email {
  flex: 1 1 auto;
  margin-right: 20px;
}
@media screen and (max-width: 47.9375em) {
  .footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field.ctct-form-field-email {
    margin: 25px 0 15px;
  }
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field.ctct-form-field-email input {
  padding: 12px 20px 12px 32px;
  border: 0;
  font-size: 18px;
  line-height: 27px;
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field.ctct-form-field-email input::placeholder {
  color: #000000;
}
.footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field input {
  margin-bottom: 0;
  font-family: "GeneralSans", sans-serif;
}
@media screen and (max-width: 47.9375em) {
  .footer-newsletter .footer-newsletter-container .footer-newsletter-form .ctct-form .ctct-form-field input {
    width: 100%;
  }
}
.footer-newsletter .footer-newsletter-container .ctct-button {
  display: none;
}
.footer-newsletter .footer-newsletter-container .ctct-disclosure {
  display: none !important;
}
.footer-newsletter .footer-newsletter-container input.ctct-submit:hover {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

.woocommerce-account.logged-in .woocommerce {
  border: 1px solid #FFFFFF;
  background: #000000;
  border-radius: 8px 8px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce {
    flex-direction: row;
    border-radius: 8px 24px 24px 8px;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation {
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation {
    border-bottom: none;
    border-right: 1px solid #FFFFFF;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul {
  margin: 0;
  display: block;
  list-style: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  padding: 0.75em 1em;
  border-bottom: 1px solid currentColor;
  display: block;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li:last-child a {
  margin-bottom: -1px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  background: rgba(53, 53, 53, 0.8);
  position: relative;
  padding-right: 2.5em;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a:before {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid #fff;
  border-top: 1.5px solid #fff;
  transform: rotate(135deg) translateY(-50%);
  right: 1.5em;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a:before {
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content {
  padding: 60px 20px;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content {
    padding: 64px;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content #respond input#submit,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content a.button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content button.button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content input.button {
  display: block;
  padding: 0;
  border: none;
  font-size: 1em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  color: #fff;
  background: none;
  border-radius: 0;
  text-align: left;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content #respond input#submit:hover,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content a.button:hover,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content button.button:hover,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content input.button:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table__row {
  margin-bottom: 0.5rem;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table__row:last-child {
  margin-bottom: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table__row .woocommerce-orders-table__cell a.button {
  display: inline;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-error .button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-message .button {
  float: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .addresses .title h3 {
  float: none;
  margin-bottom: 0.2em;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .addresses .title a {
  float: none;
  margin-bottom: 1em;
  display: inline-block;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table {
  font-size: 20px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table .woocommerce-table__product-name strong,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table .woocommerce-table__product-name ul {
  display: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table .woocommerce-table__product-name a {
  text-decoration: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table tfoot tr th,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table tfoot tr td {
  font-weight: 400;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table tfoot tr:last-child, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .shop_table tfoot tr:first-child {
  display: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-column__title,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details address {
  display: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details {
  margin-bottom: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .share-or-edit-light,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .other-actions {
  border-top: 1px solid #FFFFFF;
  padding-top: 3.5rem;
  margin: 0.7rem 0 3rem;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .other-actions {
  margin-bottom: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link {
  background-color: rgba(53, 53, 53, 0.8);
  color: #FFFFFF;
  padding: 1.5rem;
  position: relative;
  margin: 1rem 0 3.2rem;
  border-radius: 4px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link input[type=text] {
  font-size: 2rem;
  letter-spacing: 0.02em;
  border: 0;
  background-color: transparent;
  padding: 0;
  width: calc(100% - 26px);
  text-overflow: ellipsis;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link input[type=text]:focus, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link input[type=text]:active {
  border: 0;
  box-shadow: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link button {
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  padding: 0;
  text-align: left;
  transition: none;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.8rem;
  width: 20px;
  height: 20px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link button:hover, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link button:focus, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .light-link button:active {
  background-color: transparent;
  border: 0;
  color: #FFFFFF;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .share {
  display: flex;
  list-style: none;
  margin: 0 0 3.4rem;
  padding: 0;
  width: 100%;
  align-items: center;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .share li {
  margin: 0 9px 0 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .share li .copy-link {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .share li .copy-link + input {
  position: absolute;
  left: -1000px;
  top: -1000px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .sif-button {
  font-size: 2rem;
  padding: 10px 35px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content mark {
  background-color: rgba(53, 53, 53, 0.8);
  color: #FFFFFF;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table.shop_table {
  border-radius: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table td {
  border-color: #fff;
  border-width: 0.5px;
  border: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content th, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content td {
  border: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content td, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content th {
  background-color: rgba(53, 53, 53, 0.8);
  border: none;
}

#personalize-dedication h3 {
  margin-bottom: 3.2rem;
}
#personalize-dedication .checkbox-inline {
  margin-bottom: 3.3rem;
}
#personalize-dedication .checkbox-inline input[type=radio] + label {
  line-height: 1.2;
  text-align: left;
  height: unset;
}
#personalize-dedication .personalize-now,
#personalize-dedication .give-light-as-gift,
#personalize-dedication .skip-dedication {
  margin-bottom: 30px;
}
#personalize-dedication p.hint-text {
  font-size: 16px;
}
#personalize-dedication .inner {
  margin: 3.5rem 0 0 4.4rem;
}
#personalize-dedication .inner label {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}
#personalize-dedication .inner textarea {
  resize: none;
  width: 100%;
  height: 16rem;
  margin-bottom: 3px;
  font-family: "GeneralSans";
  font-size: 16px;
}
#personalize-dedication .inner input[type=text] {
  width: 100%;
}
#personalize-dedication .inner button {
  font-size: 20px;
  margin-top: 8px;
  padding: 12px 30px;
}
#personalize-dedication .personalize-now .image-and-message {
  display: flex;
  margin-top: 35px;
  gap: 33px;
  flex-direction: column;
}
@media screen and (min-width: 48em) {
  #personalize-dedication .personalize-now .image-and-message {
    flex-direction: row;
  }
}
#personalize-dedication .personalize-now .image-and-message .image-field .image-preview {
  background-color: rgba(53, 53, 53, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
}
#personalize-dedication .personalize-now .image-and-message .image-field .image-preview.error {
  border: 1px solid #D64036;
}
#personalize-dedication .personalize-now .image-and-message .image-field button {
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  padding: 12px 0;
  text-align: left;
  text-decoration: underline;
  transition: none;
  margin: 0;
}
#personalize-dedication .personalize-now .image-and-message .image-field button:hover, #personalize-dedication .personalize-now .image-and-message .image-field button:focus, #personalize-dedication .personalize-now .image-and-message .image-field button:active {
  background-color: transparent;
  border: 0;
  color: #FFFFFF;
}
#personalize-dedication .personalize-now .image-and-message .message-field {
  width: 100%;
}
#personalize-dedication .give-light-as-gift .inner > p {
  font-size: 16px;
  margin-bottom: 3.8rem;
  letter-spacing: 0.02em;
}
#personalize-dedication .give-light-as-gift .gift-link {
  background-color: rgba(53, 53, 53, 0.8);
  color: #FFFFFF;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 3.6rem;
  border-radius: 4px;
}
#personalize-dedication .give-light-as-gift .gift-link input[type=text] {
  font-size: 2rem;
  letter-spacing: 0.02em;
  border: 0;
  background-color: transparent;
  padding: 0;
}
#personalize-dedication .give-light-as-gift .gift-link input[type=text]:focus, #personalize-dedication .give-light-as-gift .gift-link input[type=text]:active {
  border: 0;
  box-shadow: none;
}
#personalize-dedication .give-light-as-gift .gift-link button {
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  padding: 0;
  text-align: left;
  transition: none;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.8rem;
  width: 20px;
  height: 20px;
}
#personalize-dedication .give-light-as-gift .gift-link button:hover, #personalize-dedication .give-light-as-gift .gift-link button:focus, #personalize-dedication .give-light-as-gift .gift-link button:active {
  background-color: transparent;
  border: 0;
  color: #FFFFFF;
}
#personalize-dedication .give-light-as-gift .hint-text {
  margin-bottom: 3.6rem;
}
#personalize-dedication .give-light-as-gift input[type=email] {
  width: 100%;
}
#personalize-dedication .give-light-as-gift button[type=submit] {
  margin-top: 3.3rem;
}
#personalize-dedication .skip-dedication .checkbox-inline {
  margin-bottom: 0.8rem;
}
#personalize-dedication .skip-dedication p.hint-text {
  margin: 0;
  margin-left: 4.4rem;
}
#personalize-dedication .skip-dedication button {
  margin-top: 0;
}

.woocommerce-page main.site-main {
  margin-top: 6rem;
}
@media screen and (min-width: 48em) {
  .woocommerce-page main.site-main {
    margin-top: 12rem;
  }
}
.woocommerce-page form .form-row {
  margin: 0 0 24px;
}
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49%;
}
@media screen and (max-width: 47.9375em) {
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100%;
  }
}

.woocommerce-checkout a {
  color: #FFFFFF;
}
.woocommerce-checkout h2 {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
}
.woocommerce-checkout h3 {
  color: #FFFFFF;
  font-size: 25px;
  margin-bottom: 2.4rem;
}
.woocommerce-checkout label {
  color: #FFFFFF;
}
.woocommerce-checkout .page-content {
  margin-top: 0;
}
.woocommerce-checkout .woocommerce {
  background-color: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  padding: 40px 12px;
}
@media screen and (min-width: 48em) {
  .woocommerce-checkout .woocommerce {
    padding: 64px;
  }
}
@media screen and (max-width: 47.9375em) {
  .woocommerce-checkout .woocommerce {
    padding: 20px;
  }
}
.woocommerce-checkout .woocommerce .col2-set .col-1,
.woocommerce-checkout .woocommerce .col2-set .col-1 {
  float: none;
  width: 100%;
}
.woocommerce-checkout .woocommerce input[type=radio] + label[for=payment_method_stripe] {
  display: none;
}
.woocommerce-checkout .woocommerce form .form-row .required {
  color: #FFFFFF;
}
.woocommerce-checkout .woocommerce form .form-row .required {
  color: #FFFFFF;
}
.woocommerce-checkout .woocommerce p {
  color: #FFFFFF;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order-table {
  color: #FFFFFF;
}
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table {
  background-color: rgba(255, 255, 255, 0.15);
}
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table thead,
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table .cart-subtotal {
  display: none;
}
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table tfoot th {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  border: 0;
}
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table tfoot td {
  font-size: 24px;
  letter-spacing: 0.02em;
  border: 0;
  text-align: right;
}
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table tfoot td strong {
  font-weight: 400;
}
.woocommerce-checkout .woocommerce tr.order-total th::after {
  content: " donation:";
}
.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
}
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border-bottom: 0;
}
.woocommerce-checkout #payment div.payment_box {
  background-color: transparent;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout #payment div.payment_box::before {
  display: none;
  margin: 0;
}
.woocommerce-checkout #payment div.form-row {
  padding: 0;
}
.woocommerce-checkout .wc-stripe-elements-field,
.woocommerce-checkout .wc-stripe-iban-element-field {
  background-color: #000000;
  border: 1px solid #FFFFFF;
  padding: 1.5rem;
  font-size: 20px;
  color: #FFFFFF;
}
.woocommerce-checkout .wc-stripe-elements-field .ElementsApp,
.woocommerce-checkout .wc-stripe-elements-field .ElementsApp .InputElement,
.woocommerce-checkout .wc-stripe-iban-element-field .ElementsApp,
.woocommerce-checkout .wc-stripe-iban-element-field .ElementsApp .InputElement {
  color: #FFFFFF;
}
.woocommerce-checkout .wc-stripe-elements-field .ElementsApp.is-invalid,
.woocommerce-checkout .wc-stripe-elements-field .ElementsApp .InputElement.is-invalid,
.woocommerce-checkout .wc-stripe-iban-element-field .ElementsApp.is-invalid,
.woocommerce-checkout .wc-stripe-iban-element-field .ElementsApp .InputElement.is-invalid {
  color: #eb1c26;
}

body.woocommerce-order-received .woocommerce-thankyou-order-received,
body.woocommerce-order-received .woocommerce-thankyou-order-details,
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details {
  display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-notice {
  padding: 1.4rem 2em 1.4rem 3.5em;
  position: relative;
  background-color: rgba(53, 53, 53, 0.8);
  color: #fff;
  line-height: 1.4;
}

.woocommerce-notice {
  margin-bottom: 2em;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 4px;
}
.woocommerce-notice::before {
  font-family: WooCommerce;
  content: "\e028";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
}
.woocommerce-notice::after {
  clear: both;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 60px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.25;
  opacity: 1;
  padding: 12px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s linear;
  background-color: #000000;
}
.woocommerce #respond input#submit:hover:not(:disabled), .woocommerce #respond input#submit:focus:not(:disabled), .woocommerce #respond input#submit:active:not(:disabled), .woocommerce #respond input#submit.has-focus,
.woocommerce a.button:hover:not(:disabled),
.woocommerce a.button:focus:not(:disabled),
.woocommerce a.button:active:not(:disabled),
.woocommerce a.button.has-focus,
.woocommerce button.button:hover:not(:disabled),
.woocommerce button.button:focus:not(:disabled),
.woocommerce button.button:active:not(:disabled),
.woocommerce button.button.has-focus,
.woocommerce input.button:hover:not(:disabled),
.woocommerce input.button:focus:not(:disabled),
.woocommerce input.button:active:not(:disabled),
.woocommerce input.button.has-focus {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #000000;
}
.woocommerce #respond input#submit.button--compact,
.woocommerce a.button.button--compact,
.woocommerce button.button.button--compact,
.woocommerce input.button.button--compact {
  font-size: 1.8rem;
  padding: 8.75px 24px;
}
@media screen and (min-width: 60em) {
  .woocommerce #respond input#submit.button--compact,
  .woocommerce a.button.button--compact,
  .woocommerce button.button.button--compact,
  .woocommerce input.button.button--compact {
    font-size: 1.8rem;
  }
}
.woocommerce #respond input#submit[disabled],
.woocommerce a.button[disabled],
.woocommerce button.button[disabled],
.woocommerce input.button[disabled] {
  opacity: 0.5;
}

.woocommerce button.button.alt {
  background-color: #000000;
}

.woocommerce form .form-row label[for=wc-stripe-new-payment-method] {
  line-height: 1 !important;
}

.woocommerce-terms-and-conditions-wrapper {
  margin-top: 1rem;
}
.woocommerce-terms-and-conditions-wrapper p {
  font-size: 14px;
}

#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
  line-height: 1.4;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  font-size: 16px;
}

@media screen and (max-width: 37.4375em) {
  .woocommerce form tfoot .order-total th, .woocommerce form tfoot .order-total td {
    display: block;
    text-align: center !important;
  }
  .woocommerce form tfoot .order-total th {
    padding-bottom: 0;
  }
  .woocommerce form tfoot .order-total td {
    padding-top: 0;
  }
}

#billing_address_1_field {
  margin-bottom: 0.4em;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], textarea {
  font-family: "GeneralSans", sans-serif;
}

.select2-results__option {
  margin: 0;
  color: #fff;
  background: #000;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  color: #fff;
  background: #000;
}

.select2-container--default .select2-results__option[data-selected=true] {
  background: #333;
}

.select2-search--dropdown {
  background: #000;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #D64036;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: #D64036;
}

.woocommerce form .form-row .required {
  color: #FFFFFF;
}

.woocommerce-page {
  color: #FFFFFF;
}
.woocommerce-page .page-content {
  margin-top: 0;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  background: #000000;
  border-radius: 24px;
  padding: 20px;
}
@media screen and (min-width: 48em) {
  .woocommerce form.checkout_coupon,
  .woocommerce form.login,
  .woocommerce form.register {
    padding: 64px;
  }
}

.woocommerce-account section#primary main > article {
  max-width: 900px;
}
.woocommerce-account:not(.logged-in) section#primary main > article {
  max-width: 640px;
}

.woocommerce-account.logged-in .woocommerce {
  border: 1px solid #FFFFFF;
  background: #000000;
  border-radius: 8px 8px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce {
    flex-direction: row;
    border-radius: 8px 24px 24px 8px;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation {
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation {
    border-bottom: none;
    border-right: 1px solid #FFFFFF;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul {
  margin: 0;
  display: block;
  list-style: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  padding: 0.75em 1em;
  border-bottom: 1px solid currentColor;
  display: block;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li:last-child a {
  margin-bottom: -1px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  background: rgba(53, 53, 53, 0.8);
  position: relative;
  padding-right: 2.5em;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a:before {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid #fff;
  border-top: 1.5px solid #fff;
  transform: rotate(135deg) translateY(-50%);
  right: 1.5em;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a:before {
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content {
  padding: 60px 20px;
}
@media screen and (min-width: 48em) {
  .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content {
    padding: 64px;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content #respond input#submit,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content a.button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content button.button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content input.button {
  display: inline;
  display: block;
  padding: 0;
  border: none;
  font-size: 1em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  color: #fff;
  background: none;
  border-radius: 0;
  text-align: left;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content #respond input#submit:hover,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content a.button:hover,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content button.button:hover,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content input.button:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-error .button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-info .button,
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-message .button {
  float: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .addresses .title h3 {
  float: none;
  margin-bottom: 0.2em;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .addresses .title a {
  float: none;
  margin-bottom: 1em;
  display: inline-block;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details address {
  padding: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content mark {
  background-color: rgba(53, 53, 53, 0.8);
  color: #FFFFFF;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table.shop_table {
  border-radius: 0;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table td {
  border-color: #fff;
  border-width: 0.5px;
  border: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content th, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content td {
  border: none;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content table {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content td, .woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-content th {
  background-color: rgba(53, 53, 53, 0.8);
  border: none;
}

.woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td {
  font-weight: 400;
}

.woocommerce-order-details__title {
  font-size: 2.4rem;
  font-weight: 600;
}

.woocommerce .order-description {
  font-size: 1.6rem;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
  font-size: 1.6rem;
}

.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message, .woocommerce-notice {
  border-top: 0;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before, .woocommerce-notice::before {
  color: #fff;
}

.woocommerce-share-edit-light {
  font-size: 1.6rem;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #fff;
}
.woocommerce-share-edit-light .gift-link {
  background-color: rgba(53, 53, 53, 0.8);
  color: #FFFFFF;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 3.6rem;
  border-radius: 4px;
}
.woocommerce-share-edit-light .gift-link input[type=text] {
  font-size: 2rem;
  letter-spacing: 0.02em;
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 100%;
}
.woocommerce-share-edit-light .gift-link input[type=text]:focus, .woocommerce-share-edit-light .gift-link input[type=text]:active {
  border: 0;
  box-shadow: none;
}
.woocommerce-share-edit-light .gift-link button {
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  padding: 0;
  text-align: left;
  transition: none;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.8rem;
  width: 20px;
  height: 20px;
}
.woocommerce-share-edit-light .gift-link button:hover, .woocommerce-share-edit-light .gift-link button:focus, .woocommerce-share-edit-light .gift-link button:active {
  background-color: transparent;
  border: 0;
  color: #FFFFFF;
}
.woocommerce-share-edit-light .share-edit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
.woocommerce-share-edit-light .share-gift {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.woocommerce-share-edit-light .share-gift .share-title {
  margin: 0;
}
.woocommerce-share-edit-light button {
  font-size: 2rem;
}
.woocommerce-share-edit-light .gift-link-wrapper label {
  margin-bottom: 0.8rem;
  display: block;
}
.woocommerce-share-edit-light .dedication-personalize,
.woocommerce-share-edit-light .dedication-gift {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.woocommerce-share-edit-light .dedication-personalize p,
.woocommerce-share-edit-light .dedication-gift p {
  margin: 0;
}

.woocommerce-other-actions {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #fff;
}
.woocommerce-other-actions button {
  font-size: 2rem;
}

.woocommerce-MyAccount-content .section-title {
  font-size: 2.4rem;
  font-weight: 600;
}
.woocommerce-MyAccount-content .copy-link {
  position: relative;
}
.woocommerce-MyAccount-content .copy-link .copy-icon {
  transition: opacity 0.5s ease-in-out;
}
.woocommerce-MyAccount-content .copy-link .copied-icon {
  position: absolute;
  opacity: 0;
  inset: 0;
  transition: opacity 0.5s ease-in-out;
}
.woocommerce-MyAccount-content .copy-link.copied .copy-icon {
  opacity: 0;
}
.woocommerce-MyAccount-content .copy-link.copied .copied-icon {
  opacity: 1;
}

#openseadragon-view {
  width: 100%;
  height: 100%;
  position: fixed !important;
}
body.zoomed #openseadragon-view {
  margin-top: 9.5rem;
}
@media screen and (min-width: 48em) and (max-width: 59.9375em) {
  body.zoomed #openseadragon-view {
    margin-left: 18.4rem;
  }
}
@media screen and (min-width: 48em) {
  body.zoomed #openseadragon-view {
    margin-top: revert;
  }
}
#openseadragon-view::before {
  content: "";
  background: radial-gradient(87.15% 49.95% at 50% 50.05%, rgba(0, 0, 0, 0) 0%, #000000 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#openseadragon-view + section {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
#openseadragon-view + section .default-view {
  align-items: center;
  display: flex;
  flex-flow: wrap;
  width: 100%;
  justify-content: center;
  color: #FFFFFF;
  padding: 60px 5% 60px;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .default-view {
    height: calc(100vh - 175px);
    padding-bottom: 120px;
  }
}
#openseadragon-view + section .default-view .container {
  position: relative;
}
#openseadragon-view + section .default-view .container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5411764706);
  filter: blur(30px);
  z-index: -1;
  margin: -30px;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .default-view .container {
    display: flex;
    max-width: 910px;
    flex-direction: row;
    align-items: center;
  }
}
#openseadragon-view + section .default-view .container .logo {
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0 auto 36px;
  padding: 0 0 36px;
  position: relative;
}
#openseadragon-view + section .default-view .container .logo::after {
  content: "";
  width: 82px;
  display: block;
  background-color: #FFFFFF;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.3;
}
#openseadragon-view + section .default-view .container .logo svg {
  margin: auto;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .default-view .container .logo {
    margin: 0 50px 0 0;
    padding: 0 50px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  #openseadragon-view + section .default-view .container .logo::after {
    display: none;
  }
}
#openseadragon-view + section .default-view .container h1 {
  font-size: clamp(20px, 49px, 12.5vw);
  color: #FFFFFF;
  text-align: center;
  font-weight: 300;
  margin: 0 0 3rem;
  line-height: 1.1;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .default-view .container h1 {
    display: none;
  }
}
#openseadragon-view + section .default-view .container p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0 0 3rem;
  text-align: center;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .default-view .container p {
    font-size: 23px;
    margin-bottom: 0;
    text-align: left;
  }
}
#openseadragon-view + section .default-view .sif-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  gap: 2rem;
}
@media screen and (min-width: 60em) {
  #openseadragon-view + section .default-view .sif-buttons {
    flex-direction: row;
  }
}
#openseadragon-view + section .default-view .sif-buttons li {
  display: inline-block;
  margin-left: 0;
}
#openseadragon-view + section .default-view .sif-buttons li button {
  background: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 60px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.25;
  opacity: 1;
  padding: 12px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s linear;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  font-family: "GeneralSans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
#openseadragon-view + section .default-view .sif-buttons li button:hover:not(:disabled), #openseadragon-view + section .default-view .sif-buttons li button:focus:not(:disabled), #openseadragon-view + section .default-view .sif-buttons li button:active:not(:disabled), #openseadragon-view + section .default-view .sif-buttons li button.has-focus {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #000000;
}
#openseadragon-view + section .default-view .sif-buttons li button.button--compact {
  font-size: 1.8rem;
  padding: 8.75px 24px;
}
@media screen and (min-width: 60em) {
  #openseadragon-view + section .default-view .sif-buttons li button.button--compact {
    font-size: 1.8rem;
  }
}
#openseadragon-view + section .default-view .sif-buttons li button[disabled] {
  opacity: 0.5;
}
@media screen and (min-width: 60em) {
  #openseadragon-view + section .default-view .sif-buttons li button {
    width: 340px;
    margin-bottom: 0;
  }
}
#openseadragon-view + section .default-view .sif-buttons li button::before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  margin: 0 10px 0 0;
}
#openseadragon-view + section .default-view .sif-buttons li button.dedicate-a-light::before {
  background-image: url("assets/images/icon-light.png");
}
#openseadragon-view + section .default-view .sif-buttons li button.dedicate-a-light:hover::before, #openseadragon-view + section .default-view .sif-buttons li button.dedicate-a-light:active::before, #openseadragon-view + section .default-view .sif-buttons li button.dedicate-a-light:focus::before {
  background-image: url("assets/images/icon-light-alt.png");
}
#openseadragon-view + section .default-view .sif-buttons li button.search-memories::before {
  background-image: url("assets/images/icon-search.png");
}
#openseadragon-view + section .default-view .sif-buttons li button.search-memories:hover::before, #openseadragon-view + section .default-view .sif-buttons li button.search-memories:active::before, #openseadragon-view + section .default-view .sif-buttons li button.search-memories:focus::before {
  background-image: url("assets/images/icon-search-alt.png");
}
#openseadragon-view + section .dedication-view {
  width: 90%;
  max-width: 670px;
  color: #FFFFFF;
  margin: 60px auto;
}
@media screen and (min-width: 60em) {
  #openseadragon-view + section .dedication-view {
    margin: 120px auto;
  }
}
#openseadragon-view + section .dedication-view .options-container {
  background-color: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
}
#openseadragon-view + section .dedication-view .option-item {
  padding: 30px 20px;
  border-bottom: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
#openseadragon-view + section .dedication-view .option-item:last-of-type {
  border-bottom: 0;
}
#openseadragon-view + section .dedication-view .option-item .level-icon {
  width: 100%;
}
#openseadragon-view + section .dedication-view .option-item .level-icon svg {
  height: 32px;
  width: 32px;
}
#openseadragon-view + section .dedication-view .option-item .item-details {
  flex-grow: 1;
  padding: 0;
  flex-basis: calc(100% - 64px);
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .dedication-view .option-item {
    padding: 30px;
    flex-wrap: nowrap;
    gap: 0;
  }
  #openseadragon-view + section .dedication-view .option-item .level-icon {
    min-width: 64px;
    padding-bottom: 0;
    width: auto;
  }
  #openseadragon-view + section .dedication-view .option-item .level-icon svg {
    height: auto;
    width: auto;
  }
  #openseadragon-view + section .dedication-view .option-item .item-details {
    flex-grow: 1;
    padding: 0 40px;
    flex-basis: unset;
  }
  #openseadragon-view + section .dedication-view .option-item .item-details:first-child {
    padding-left: 0;
  }
}
#openseadragon-view + section .dedication-view .option-heading .item-details {
  padding-left: 0;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .dedication-view .option-heading .item-details {
    padding-left: 12px;
  }
}
#openseadragon-view + section .dedication-view .option-heading h3 {
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}
#openseadragon-view + section .dedication-view .option-heading .level-icon {
  margin-right: 24px !important;
}
#openseadragon-view + section .dedication-view h2 {
  color: #FFFFFF;
  font-size: clamp(15px, 30px, 6.6vw);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#openseadragon-view + section .dedication-view h3 {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  font-weight: bold;
}
#openseadragon-view + section .dedication-view p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
#openseadragon-view + section .dedication-view p a {
  color: #FFFFFF;
}
#openseadragon-view + section .dedication-view button {
  position: relative;
  border: 1.5px solid #FFFFFF;
  background-color: #000000;
  border-radius: 50%;
  min-width: 48px;
  height: 48px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
#openseadragon-view + section .dedication-view button::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-right: 1.5px solid #FFFFFF;
  border-top: 1.5px solid #FFFFFF;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  right: 0;
  left: -6px;
  margin: auto;
}
#openseadragon-view + section .dedication-view button:not(.previous):hover {
  background: #FFFFFF;
}
#openseadragon-view + section .dedication-view button:not(.previous):hover::before {
  border-color: #000000;
}
#openseadragon-view + section .dedication-view .donation-amount-options {
  display: block;
  padding: 20px;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .dedication-view .donation-amount-options {
    padding: 64px;
  }
}
#openseadragon-view + section .dedication-view .donation-amount-options p {
  font-size: 20px;
  margin-bottom: 28px;
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 24px 22px;
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts .checkbox-group label {
  margin: 0;
  width: 100%;
  overflow: hidden;
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts .checkbox-group.wide {
  grid-column: 1/-1;
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts .checkbox-group.wide label {
  padding: 0 0 0 40px;
  text-align: left;
  position: relative;
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts .checkbox-group.wide label::after {
  content: "$";
  color: #FFFFFF;
  left: 54px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  width: 15px;
  height: 32px;
  line-height: 32px;
  position: absolute;
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts .checkbox-group.wide label input {
  width: 100%;
  padding-left: 40px;
  font-size: 24px;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  top: 50%;
  transform: translateY(-50%);
}
#openseadragon-view + section .dedication-view .donation-amount-options .donation-amounts .checkbox-group.wide label + .helper-text {
  left: 24px;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls {
  display: flex;
  margin-top: 56px;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls .previous {
  border: 0;
  width: auto;
  height: auto;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 0 14px;
  border-radius: 0;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls .previous::before {
  transform: rotate(225deg);
  left: 0;
  right: auto;
  width: 10px;
  height: 10px;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls .previous:hover, #openseadragon-view + section .dedication-view .donation-amount-options .form-controls .previous:active, #openseadragon-view + section .dedication-view .donation-amount-options .form-controls .previous:focus {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls .next {
  margin-left: auto;
  width: 109px;
  height: 48px;
  border-radius: 60px;
  font-size: 20px;
  letter-spacing: 0.02em;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls .next::before {
  display: none;
}
#openseadragon-view + section .dedication-view .donation-amount-options .form-controls .next:hover, #openseadragon-view + section .dedication-view .donation-amount-options .form-controls .next:active, #openseadragon-view + section .dedication-view .donation-amount-options .form-controls .next:focus {
  color: #000000;
}
#openseadragon-view + section .dedication-view .choose-a-light .level-icon {
  margin-right: 40px;
}
#openseadragon-view + section .dedication-view .choose-a-light .option-item:last-child {
  padding: 18px 40px;
}
#openseadragon-view + section .dedication-view .choose-a-light .previous {
  border: 0;
  width: auto;
  height: auto;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 0 14px;
  border-radius: 0;
}
#openseadragon-view + section .dedication-view .choose-a-light .previous::before {
  transform: rotate(225deg);
  left: 0;
  right: auto;
  width: 10px;
  height: 10px;
}
#openseadragon-view + section .dedication-view .choose-a-light .previous:hover, #openseadragon-view + section .dedication-view .choose-a-light .previous:active, #openseadragon-view + section .dedication-view .choose-a-light .previous:focus {
  color: #FFFFFF;
}
#openseadragon-view + section .find-light-view {
  margin-top: 60px;
}
@media screen and (min-width: 60em) {
  #openseadragon-view + section .find-light-view {
    margin-top: 120px;
  }
}
#openseadragon-view + section .find-light-view h3 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 3rem;
}
#openseadragon-view + section .find-light-view .search-light-container {
  margin: 0 auto;
  background-color: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  max-width: min(66.4rem, 100% - 12.8rem);
  width: 90%;
  max-width: 670px;
  padding: 30px 20px;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .find-light-view .search-light-container {
    padding: 50px;
  }
}
#openseadragon-view + section .find-light-view .search-light-container h3 {
  margin-bottom: 3rem;
}
#openseadragon-view + section .find-light-view .search-light-container form {
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 47.9375em) {
  #openseadragon-view + section .find-light-view .search-light-container form {
    flex-direction: column;
  }
}
#openseadragon-view + section .find-light-view .search-light-container form input {
  flex: 1;
}
#openseadragon-view + section .find-light-view .search-light-container form input::-webkit-search-cancel-button {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0ibm9uZSI+PG1hc2sgaWQ9ImEiIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgeD0iNCIgeT0iNCIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgc3R5bGU9Im1hc2stdHlwZTpsdW1pbmFuY2UiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im0xNS44MzM0IDUuMzQxLTEuMTc1LTEuMTc1LTQuNjU4MyA0LjY1ODRMNS4zNDE4IDQuMTY2bC0xLjE3NSAxLjE3NUw4LjgyNSA5Ljk5OTNsLTQuNjU4NCA0LjY1ODQgMS4xNzUgMS4xNzUgNC42NTg0LTQuNjU4NCA0LjY1ODMgNC42NTg0IDEuMTc1LTEuMTc1LTQuNjU4My00LjY1ODQgNC42NTgzLTQuNjU4M1oiLz48L21hc2s+PGcgbWFzaz0idXJsKCNhKSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGgyMHYyMEgweiIvPjwvZz48L3N2Zz4=");
  height: 20px;
  width: 20px;
}
#openseadragon-view + section .find-light-view .search-light-results {
  margin: 64px auto;
  width: 90%;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .find-light-view .search-light-results {
    margin: 64px auto;
  }
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 1350px) {
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container {
    grid-template-columns: 1fr;
  }
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result {
  cursor: pointer;
  background-color: #000000;
  display: flex;
  flex-grow: 1;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  max-height: 200px;
}
@media screen and (max-width: 37.4375em) {
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result {
    flex-direction: column;
    max-height: unset;
  }
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result img {
    max-width: 100% !important;
  }
}
@media screen and (min-width: 60em) {
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result {
    transition: all ease-in-out 0.25s;
    transform: translateY(0);
  }
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result:hover {
    transform: translateY(-4px);
    transition: all ease-in-out 0.25s;
  }
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result img {
  max-width: 16rem;
  flex: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-width: 0 1px 0 0;
}
@media screen and (max-width: 37.4375em) {
  #openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result img {
    border-width: 0 0 1px 0;
  }
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result .dedication-info {
  padding: 20px 20px 20px 26px;
  position: relative;
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result .dedication-info:before {
  content: "";
  width: 100%;
  bottom: 0;
  height: 30px;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  left: 0;
  display: block;
  z-index: 100;
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result .dedication-info h4 {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  font-weight: bold;
}
#openseadragon-view + section .find-light-view .search-light-results .search-light-results-container .search-light-result .dedication-info .dedication-message {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  margin-top: 1rem;
}
#openseadragon-view + section .light-dedication-view {
  margin: 0 30px 30px;
  position: relative;
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .light-dedication-view {
    margin: 0 64px 64px;
  }
}
@media screen and (max-width: 439px) {
  #openseadragon-view + section .light-dedication-view {
    margin: 0 auto 64px;
    max-width: 90%;
  }
}
#openseadragon-view + section .light-dedication-view .light-navigation-container {
  background-color: #000000;
  width: 100%;
  max-width: 304px;
  margin: 0 auto;
  border: 1px solid #FFFFFF;
  border-radius: 0 0 24px 24px;
  border-top: 0;
  overflow: hidden;
  padding: 15px;
  margin-bottom: 300px;
}
@media screen and (min-width: 440px) {
  #openseadragon-view + section .light-dedication-view .light-navigation-container {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  #openseadragon-view + section .light-dedication-view .light-navigation-container {
    margin-bottom: 20px;
  }
}
#openseadragon-view + section .light-dedication-view .light-navigation-container h3 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 16px;
}
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation {
  display: flex;
}
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation button {
  border-color: rgba(255, 255, 255, 0.4);
}
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-down,
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-up {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-down:hover:not(:disabled) path, #openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-down:active:not(:disabled) path, #openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-down:focus:not(:disabled) path,
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-up:hover:not(:disabled) path,
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-up:active:not(:disabled) path,
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .navigate-up:focus:not(:disabled) path {
  stroke: #000000 !important;
}
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .randomize {
  flex-grow: 1;
  margin: 0 8px;
  position: relative;
  padding: 0 0 0 25px;
  font-size: 16px;
}
#openseadragon-view + section .light-dedication-view .light-navigation-container .light-navigation .randomize::before {
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 26px;
  background-image: url("assets/images/icon-randomize.png");
}
#openseadragon-view + section .light-dedication-view .dedication-info-container {
  background-color: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 304px;
  margin: 0 auto;
}
@media screen and (min-width: 440px) {
  #openseadragon-view + section .light-dedication-view .dedication-info-container {
    margin-left: 0;
  }
}
#openseadragon-view + section .light-dedication-view .dedication-info-container img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-width: 0 0 1px 0;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info {
  padding: 25px 22px 0;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .light-type {
  margin-bottom: 19px;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info h4 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .light-location {
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .share {
  display: flex;
  list-style: none;
  margin: 0 0 13px;
  padding: 0;
  width: 100%;
  align-items: center;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .share li {
  margin: 0 9px 0 0;
  display: flex;
  align-items: center;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .share li.copy-link input {
  position: absolute;
  left: -1000px;
  top: -1000px;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .share li.copy-link button {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .dedication-message {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  overflow-y: scroll;
  margin-bottom: 0;
  padding: 0 8px 25px 0;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .dedication-message::-webkit-scrollbar {
  width: 7px;
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .dedication-message::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}
#openseadragon-view + section .light-dedication-view .dedication-info-container .dedication-info .dedication-message::-webkit-scrollbar-thumb {
  background-color: #808080;
}
#openseadragon-view + section .light-dedication-view .available-light {
  padding: 24px;
}
#openseadragon-view + section .light-dedication-view .available-light h3 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
#openseadragon-view + section .light-dedication-view .available-light p {
  color: #FFFFFF;
  font-size: 16px;
}
#openseadragon-view + section .light-dedication-view .available-light .light-info {
  padding: 12px 16px;
  width: 256px;
  height: 136px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-bottom: 24px;
}
#openseadragon-view + section .light-dedication-view .available-light .light-info .light-type + p {
  line-height: 2.8rem;
}
#openseadragon-view + section .light-dedication-view .available-light ul,
#openseadragon-view + section .light-dedication-view .available-light li {
  list-style: none;
  padding: 0;
  margin: 0;
}
#openseadragon-view + section .light-dedication-view .available-light button {
  font-size: 20px;
  width: 100%;
}
#openseadragon-view + section .light-dedication-view .available-light button.find-new-light {
  font-size: 16px;
  position: relative;
  border: 0;
  height: auto;
  letter-spacing: 0.02em;
  padding: 7px 14px 7px 31px;
  border-radius: 0;
  margin-top: 16px;
}
#openseadragon-view + section .light-dedication-view .available-light button.find-new-light::before {
  right: auto;
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 38px;
  background-image: url("assets/images/icon-randomize.png");
}
#openseadragon-view + section .light-dedication-view .available-light button.find-new-light:hover, #openseadragon-view + section .light-dedication-view .available-light button.find-new-light:active, #openseadragon-view + section .light-dedication-view .available-light button.find-new-light:focus {
  background-color: #000000;
  color: #FFFFFF;
}
#openseadragon-view + section .light-dedication-view .previous-step,
#openseadragon-view + section .light-dedication-view .back-to-results {
  width: 100%;
  max-width: 304px;
  margin: 20px auto 0;
}
@media screen and (min-width: 440px) {
  #openseadragon-view + section .light-dedication-view .previous-step,
  #openseadragon-view + section .light-dedication-view .back-to-results {
    margin-left: 0;
  }
}
#openseadragon-view + section .light-dedication-view .previous-step button,
#openseadragon-view + section .light-dedication-view .back-to-results button {
  width: 100%;
  font-size: 16px;
  position: relative;
}
#openseadragon-view + section .light-dedication-view .previous-step button::before,
#openseadragon-view + section .light-dedication-view .back-to-results button::before {
  content: "";
  transform: rotate(225deg);
  left: 21px;
  right: auto;
  width: 10px;
  height: 10px;
  position: absolute;
  display: inline-block;
  border-right: 1px solid #FFFFFF;
  border-top: 1px solid #FFFFFF;
  top: 0;
  bottom: 0;
  margin: auto;
}
#openseadragon-view + section .light-dedication-view .previous-step button:hover::before, #openseadragon-view + section .light-dedication-view .previous-step button:active::before, #openseadragon-view + section .light-dedication-view .previous-step button:focus::before,
#openseadragon-view + section .light-dedication-view .back-to-results button:hover::before,
#openseadragon-view + section .light-dedication-view .back-to-results button:active::before,
#openseadragon-view + section .light-dedication-view .back-to-results button:focus::before {
  border-color: #000000;
}
#openseadragon-view + section .light-dedication-view .zoom-controls {
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
}
@media screen and (min-width: 440px) {
  #openseadragon-view + section .light-dedication-view .zoom-controls {
    display: block;
  }
}
@media screen and (min-width: 48em) {
  #openseadragon-view + section .light-dedication-view .zoom-controls {
    bottom: 64px;
    right: 64px;
  }
}
#openseadragon-view + section .light-dedication-view .zoom-controls li {
  margin: 0;
}
#openseadragon-view + section .light-dedication-view .zoom-controls li button {
  height: 50px;
  padding: 17px 15px;
}
#openseadragon-view + section .light-dedication-view .zoom-controls li button:hover rect, #openseadragon-view + section .light-dedication-view .zoom-controls li button:active rect, #openseadragon-view + section .light-dedication-view .zoom-controls li button:focus rect {
  stroke: #000000 !important;
}
#openseadragon-view + section .light-dedication-view .zoom-controls li.zoom-in button {
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
}
#openseadragon-view + section .light-dedication-view .zoom-controls li.zoom-out button {
  border-top-color: rgba(255, 255, 255, 0.25);
  border-radius: 0 0 60px 60px;
}
#openseadragon-view + section .light-type {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #808080;
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
#openseadragon-view + section .light-type::before {
  background-image: url("assets/images/icon-light-gray.png");
  content: "";
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -4px;
}
#openseadragon-view .seadragon-light-overlay {
  height: 11.8rem;
  width: 11.8rem;
  z-index: 1000;
  transform: translate(-50%, -50%);
}
#openseadragon-view .seadragon-light-overlay .circle-2, #openseadragon-view .seadragon-light-overlay .circle-3 {
  animation: enlargeRing 2s infinite;
  transform-origin: center;
  animation-fill-mode: forwards;
  opacity: 0;
}
#openseadragon-view .seadragon-light-overlay .circle-3 {
  animation-delay: 0.4s;
}

@keyframes enlargeRing {
  0% {
    opacity: 0;
    transform: scale(0.35);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/**
 * Page Specific Styles
 */
.error404 .content-area .site-main {
  text-align: center;
}

.page-content {
  margin-top: 6rem;
}
@media screen and (min-width: 48em) {
  .page-content {
    margin-top: 12rem;
  }
}

body.page-id-12 main > article {
  position: relative;
}
body.page-id-12 main > article:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5411764706);
  filter: blur(30px);
  z-index: -1;
  margin: -30px;
}

#personalize-dedication.personalize-view {
  background-color: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
  width: 90%;
  max-width: 670px;
  color: #FFFFFF;
  margin: 60px auto;
  padding: 20px;
}
@media screen and (min-width: 60em) {
  #personalize-dedication.personalize-view {
    margin: 120px auto;
    padding: 64px;
  }
}
#personalize-dedication.personalize-view .inner {
  margin-left: 0;
}

/**
 * Site Structure
 */
section#primary {
  padding-top: 70px;
}
@media screen and (min-width: 960px) {
  section#primary {
    padding-top: 93px;
  }
}
.admin-bar section#primary {
  padding-top: 116px;
}
@media screen and (min-width: 782px) {
  .admin-bar section#primary {
    padding-top: 102px;
  }
}
@media screen and (min-width: 60em) {
  .admin-bar section#primary {
    padding-top: 125px;
  }
}
section#primary main > article {
  width: 90%;
  max-width: 664px;
  margin: 0 auto 40px;
}

/*# sourceMappingURL=style.css.map */
