@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,300;0,500;1,100;1,300;1,500&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}

.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}

.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #333333;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #333333;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}
.blink {
  animation: 1s blinker linear infinite;
  -webkit-animation: 1s blinker linear infinite;
  -moz-animation: 1s blinker linear infinite;
}

@-moz-keyframes backgroundBlink {
  0% {
    background-color: white;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: white;
  }
}
@-webkit-keyframes backgroundBlink {
  0% {
    background-color: white;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: white;
  }
}
@keyframes backgroundBlink {
  0% {
    background-color: white;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: white;
  }
}
.backgroundBlink {
  animation: 1s backgroundBlink linear infinite;
  -webkit-animation: 1s backgroundBlink linear infinite;
  -moz-animation: 1s backgroundBlink linear infinite;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.turning {
  animation-name: turning;
  -webkit-animation-name: turning;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}

@keyframes turning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes turning {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
html {
  font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 100;
  color: #8a8a8a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 500;
}
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-style: italic;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1 a, h1 a:link, h1 a:visited, h1 a:active, h2 a, h2 a:link, h2 a:visited, h2 a:active, h3 a, h3 a:link, h3 a:visited, h3 a:active, h4 a, h4 a:link, h4 a:visited, h4 a:active, h5 a, h5 a:link, h5 a:visited, h5 a:active, h6 a, h6 a:link, h6 a:visited, h6 a:active {
  color: #8a8a8a;
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #e5e1e1;
}

h1, h2 {
  font-size: 2.5rem;
  margin: 30px 0 55px 0;
  line-height: 2.8rem;
}
h1 .small, h2 .small {
  margin-left: 20px;
}
@media screen and (max-width: 430px) {
  h1, h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 20px 0 25px 0;
  }
}

h3 {
  font-size: 1.6rem;
  margin: 2rem 0 2rem 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 2rem;
}
h3 .small {
  margin-left: 20px;
}

h4 {
  font-size: 1.4rem;
  margin: 20px 0 20px 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  color: #a87c4f;
}

h5 {
  font-size: 1.2rem;
  margin: 15px 0 15px 0;
}

h6 {
  font-size: 1.1rem;
  margin: 12px 0 12px 0;
}

p, li, td, th, blockquote {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #8a8a8a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
p strong, li strong, td strong, th strong, blockquote strong {
  font-weight: 500;
}
p em, li em, td em, th em, blockquote em {
  font-style: italic;
}
p a, p a:link, p a:visited, p a:active, li a, li a:link, li a:visited, li a:active, td a, td a:link, td a:visited, td a:active, th a, th a:link, th a:visited, th a:active, blockquote a, blockquote a:link, blockquote a:visited, blockquote a:active {
  color: #e5e1e1;
  text-decoration: none;
}
p.meta, li.meta, td.meta, th.meta, blockquote.meta {
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: #cccccc;
}
p.error, li.error, td.error, th.error, blockquote.error {
  color: #FF0066;
  margin: 0 0 0 0;
}

p, li, blockquote {
  margin: 0 0 1.6rem 0;
}
ul, ol {
  margin: 0 0 1.6rem 0;
}
ul li, ol li {
  margin: 0 0 0.5rem 2rem;
}

ul li {
  list-style: disc;
}

ol li {
  list-style: decimal;
}

table {
  width: 100%;
}
table td {
  padding: 8px 10px;
  border-bottom: 1px solid #222;
  vertical-align: middle;
}
table td a, table td a:link, table td a:visited, table td a:active {
  box-shadow: none;
}
table td a i, table td a:link i, table td a:visited i, table td a:active i {
  box-shadow: none;
}
table td img {
  display: block;
}
table td.thumb img {
  max-width: 75px;
}
table td.number {
  text-align: right;
}
table td.code {
  text-align: center;
}
table td.date {
  text-align: center;
}
table td.actions {
  text-align: center;
}
table td.sortHandle {
  text-align: center;
  cursor: pointer;
}
table th {
  font-size: 0.8rem;
  font-weight: 500;
  font-style: normal;
  vertical-align: middle;
  background-color: #222;
  padding: 5px 10px;
  position: relative;
}
table th:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: black;
}
table th:first-of-type:after {
  width: 0;
}

table.vertical-table {
  table-layout: fixed;
}
table.vertical-table th {
  font-size: 0.8rem;
  font-weight: 500;
  font-style: normal;
  width: 25%;
  line-height: 1rem;
  text-align: right;
  padding: 8px 10px;
  border-bottom: 1px solid #222;
}
table.vertical-table td {
  width: 75%;
  text-align: left;
}
table.vertical-table td.clip span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  vertical-align: middle;
}
table.vertical-table td p:last-child {
  margin-bottom: 0;
}

hr {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #ccc;
  margin: 15px 0 30px 0;
  text-align: center;
  border: 0 solid transparent;
  border-width: 0;
  border-style: none;
}

blockquote {
  font-style: italic;
  padding-left: 25px;
  border-left: 3px solid #222;
}
blockquote p, blockquote li {
  font-style: italic;
}

p.subtitle {
  font-style: italic;
}
code {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.9rem;
  color: #8a8a8a;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

pre {
  display: inline-block;
  width: 100%;
  overflow: auto;
  margin: 0 0 1.6rem 0;
}

.small {
  font-size: 60%;
  font-weight: 300;
}

@media screen and (max-width: 430px) {
  h1, h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
  p, li, td, th, blockquote {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
body {
  padding: 0;
  margin: 0;
  background-color: #1f1f1f;
}

#stage {
  box-sizing: border-box;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0px 0% 96px 0%;
  z-index: 0;
}

#page {
  clear: both;
  position: relative;
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 5%;
}

#footer {
  clear: both;
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  z-index: 1;
}
#footer p {
  text-align: center;
  color: #ccc;
  opacity: 0.8;
  font-size: 0.7rem;
  margin: 0 0 0 0;
  padding: 40px 5%;
  line-height: 1rem;
  font-family: "Work Sans", sans-serif;
}
#footer p a, #footer p a:link, #footer p a:visited {
  color: white;
  box-shadow: 0 0 0 0;
}

.video-player {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding: 62.5% 0 0 0;
  margin: 0 0 30px 0;
  background-color: #cccccc;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.poster-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  overflow: hidden;
  margin: 0 auto;
}
.poster-wrapper img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.container {
  padding: 50px 5%;
}

.block {
  padding: 60px 5% 60px 5%;
  position: relative;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}
.block:after {
  content: ".";
  clear: both;
  height: 0;
  visibility: hidden;
  display: block;
}
.block.burgundy {
  background-color: #4f042b;
}
.block.burgundy .cms h1, .block.burgundy .cms h2, .block.burgundy .cms h3, .block.burgundy .cms h4, .block.burgundy .cms h5, .block.burgundy .cms h6, .block.burgundy .cms p, .block.burgundy .cms li {
  color: white;
}
.block.grad {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff0675+0,45004d+100 */
  background: #ff0675; /* Old browsers */
  background: -moz-linear-gradient(left, #ff0675 0%, #45004d 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ff0675 0%, #45004d 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ff0675 0%, #45004d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff0675", endColorstr="#45004d",GradientType=1 ); /* IE6-9 */
}
.block.grad .cms h1, .block.grad .cms h2, .block.grad .cms h3, .block.grad .cms h4, .block.grad .cms h5, .block.grad .cms h6, .block.grad .cms p, .block.grad .cms li {
  color: white;
}
.block.dark {
  background-color: #11112b;
}
.block.dark .cms h1, .block.dark .cms h2, .block.dark .cms h3, .block.dark .cms h4, .block.dark .cms h5, .block.dark .cms h6, .block.dark .cms p, .block.dark .cms li {
  color: white;
}
.block.tinted {
  background-color: #dddcd0;
}
.block.gray {
  background-color: #e6e6ef;
}
.block.gray .cms h1, .block.gray .cms h2, .block.gray .cms h3, .block.gray .cms h4, .block.gray .cms h5, .block.gray .cms h6, .block.gray .cms p, .block.gray .cms li {
  color: #000;
}
.block img.full {
  display: block;
  width: 100%;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
.block img.over {
  display: block;
  position: relative;
  width: 140%;
  left: -20%;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
@media screen and (max-width: 1000px) {
  .block img.over {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1380px) {
  .block img.over {
    width: 180%;
    left: -40%;
  }
}
.block .image {
  display: block;
  padding: 0 0 0 0;
  width: 100%;
  clear: both;
}
.block .image img {
  display: block;
  width: 100%;
}
.block .cms {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}
.block .cms *:last-child {
  margin-bottom: 0;
}
.block .admin {
  width: calc(100% - 40px);
  max-width: 720px;
  margin: 50px auto;
  background-color: #fafafa;
  padding: 20px;
}
.block .admin h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.2rem;
}
.block .admin h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 20px 0 10px 0;
}

.form {
  padding: 60px 0 60px 0;
  overflow: hidden;
  position: relative;
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form {
    width: 94%;
    padding: 60px 3%;
  }
}

.fancybox {
  display: block;
  width: 48%;
  float: left;
  height: 0;
  padding: 0 0 48% 0;
  overflow: hidden;
  margin: 0 0 4% 0;
}
.fancybox img {
  display: block;
  width: 100%;
  float: left;
}
.fancybox:nth-child(even) {
  float: right;
}

.bordered {
  border: 1px solid #e6e6e6;
}

.portraitRight {
  display: block;
  float: right;
  width: 30%;
  margin: 5px 0 15px 15px;
}

.portraitLeft {
  display: block;
  float: left;
  width: 30%;
  margin: 5px 15px 15px 0;
}

.floatParent {
  display: block;
  overflow: hidden;
  width: 100%;
}

.floatRight {
  display: block;
  float: right;
  width: 48%;
  margin: 5px 0 15px 15px;
}

.floatLeft {
  display: block;
  float: left;
  width: 48%;
  margin: 5px 15px 15px 0;
}

@media screen and (max-width: 430px) {
  .floatRight,
  .floatLeft {
    width: 100%;
    margin: 5px 0 15px 0;
  }
}
.slideShow {
  display: block;
  width: 100%;
  clear: both;
  padding: 1.6rem 0;
  margin-bottom: 1.6rem;
  overflow: hidden;
}

.valign {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.imageTitle {
  display: block;
  margin: 15px auto;
  width: 30%;
  max-width: 500px;
}

.altBackground:nth-child(odd) {
  background-color: #111;
}
.altBackground:nth-child(even) {
  background-color: black;
}

.more {
  display: none;
}

.reCAPTCHAPrivacy {
  margin: 20px 0 0 0;
}
.reCAPTCHAPrivacy p {
  font-size: 1rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.g-recaptcha {
  margin: 0 0 20px 0;
}

.doubles {
  display: block;
  width: 100%;
  overflow: hidden;
}
.doubles .double {
  width: 47%;
}
.doubles .double:nth-child(odd) {
  float: left;
}
.doubles .double:nth-child(even) {
  float: right;
}
.doubles .double:nth-child(even).align-right {
  text-align: right;
}
.doubles .double:nth-child(even).align-right p {
  text-align: right;
}
.doubles.ticket-info .double {
  margin: 0 0 20px 0;
}
.doubles.ticket-info .double:nth-child(odd) {
  width: calc(100% - 150px);
}
.doubles.ticket-info .double:nth-child(even) {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .doubles .double {
    width: 100%;
  }
  .doubles.ticket-info .double {
    margin: 0 0 20px 0;
  }
  .doubles.ticket-info .double:nth-child(odd) {
    width: 100%;
  }
  .doubles.ticket-info .double:nth-child(odd) p {
    text-align: center;
  }
  .doubles.ticket-info .double:nth-child(even) {
    width: 100%;
  }
  .doubles.ticket-info .double:nth-child(even).align-right {
    text-align: center;
  }
  .doubles.ticket-info .double:nth-child(even).align-right p {
    text-align: center;
  }
}

#cover {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
#cover #brand h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 5rem;
  line-height: 6rem;
  letter-spacing: -0.1rem;
  color: white;
  text-align: center;
  margin: 0 0 0 0;
}
#cover #brand p {
  color: white;
  text-align: center;
  margin: 0 0 0 0;
}
@media screen and (max-width: 768px) {
  #cover #brand h1 {
    font-size: 3rem;
    line-height: 4rem;
    letter-spacing: -0.1rem;
  }
}
#cover #dialog {
  width: 80%;
  max-width: 460px;
  padding: 30px 30px;
  border-radius: 20px;
}
#cover #dialog p, #cover #dialog li, #cover #dialog ul {
  text-align: center;
}
#cover #dialog p:last-child, #cover #dialog li:last-child, #cover #dialog ul:last-child {
  margin-bottom: 0;
}
#cover #dialog p.actions a, #cover #dialog p.actions a:link, #cover #dialog p.actions a:visited, #cover #dialog p.actions a:active, #cover #dialog li.actions a, #cover #dialog li.actions a:link, #cover #dialog li.actions a:visited, #cover #dialog li.actions a:active, #cover #dialog ul.actions a, #cover #dialog ul.actions a:link, #cover #dialog ul.actions a:visited, #cover #dialog ul.actions a:active {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 10px;
}
#cover #dialog form {
  margin: 0 0 30px 0;
}
#cover #dialog form button {
  display: block;
  margin: 20px auto;
}
#cover #dialog form .input.checkbox {
  border-bottom: 0;
}

.tiles {
  display: block;
  position: relative;
  margin: 0 0 0 -10px;
  padding: 5px 0;
  width: calc(100% + 20px);
  overflow: hidden;
}
.tiles .tile {
  width: calc(25% - 20px);
  margin: 10px 10px 40px 10px;
  overflow: hidden;
  float: left;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 20px 0px;
  -webkit-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
}
.tiles .tile:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 20px 0px;
}
@media screen and (min-width: 1000px) and (max-width: 1280px) {
  .tiles .tile {
    width: calc(33.333% - 20px);
  }
}
@media screen and (min-width: 500px) and (max-width: 1000px) {
  .tiles .tile {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 500px) {
  .tiles .tile {
    width: calc(100% - 20px);
  }
}
.tiles .tile .thumb {
  width: 100%;
  position: relative;
  height: 0;
  padding: 0 0 56.25% 0;
  background-color: #e6e6e6;
}
.tiles .tile .thumb img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.tiles .tile .data {
  width: calc(100% - 40px);
  padding: 15px 20px;
  height: 50px;
  overflow: hidden;
  position: relative;
}
.tiles .tile .data h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.3rem;
  margin: 0 0 3px 0;
}
.tiles .tile .data p {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.3rem;
  margin: 0 0 10px 0;
}
.tiles .tile .data p.donor {
  margin: 0 0 15px 0;
}
.tiles .tile .data p.value {
  margin: 0 0 0 0;
}
.tiles .tile .data:after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 50px 0 0 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0), white);
}

.hidden {
  display: none;
}

.grid-menu {
  display: block;
  width: 100%;
}
.grid-menu li {
  display: block;
  float: left;
  margin: 0 1px 1px 0;
  padding: 0 0 0 0;
  list-style: none;
  position: relative;
  width: 200px;
  background-color: #333;
}
.grid-menu li a, .grid-menu li a:link, .grid-menu li a:visited {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.grid-menu li a label, .grid-menu li a:link label, .grid-menu li a:visited label {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 100%;
  text-align: center;
  line-height: 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  cursor: pointer;
}
.grid-menu li.priority {
  background-color: #555;
}

#stage.with-sidemenu #wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe; */
  align-items: stretch; /* stretch | flex-start | flex-end | center | baseline | first baseline | last baseline | start | end | self-start | self-end + ... safe | unsafe; */
  align-content: flex-start; /* flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline + ... safe | unsafe; */
  width: 100%;
  margin: 0 0 0px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  #stage.with-sidemenu #wrapper {
    display: block;
  }
}
#stage.with-sidemenu #wrapper #sidemenu {
  width: 250px;
  min-width: 250px;
  flex-basis: 250px;
  min-height: 100vh;
  transition: all 0.5s;
  background-color: #333333;
  color: white;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #stage.with-sidemenu #wrapper #sidemenu {
    display: block;
    position: relative;
    z-index: 10;
  }
}
#stage.with-sidemenu #wrapper #sidemenu #brand {
  padding: 0px 10px;
  margin: 0 0 0 0;
  height: 40px;
  width: 250px;
  display: block;
  position: relative;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff0675+0,45004d+100 */
  background: #ff0675; /* Old browsers */
  background: -moz-linear-gradient(left, #ff0675 0%, #45004d 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ff0675 0%, #45004d 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ff0675 0%, #45004d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff0675", endColorstr="#45004d",GradientType=1 ); /* IE6-9 */
}
#stage.with-sidemenu #wrapper #sidemenu #brand img {
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 120px;
  opacity: 1;
  transition: all 0.5s;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content {
  opacity: 1;
  transition: all 0.5s;
  width: 250px;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content h3 {
  color: white;
  padding: 15px 10px;
  font-size: 1rem;
  margin: 0 0 0 0;
  line-height: 1.3rem;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul {
  display: block;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0 0 0 0;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul li {
  list-style: none;
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul li.active {
  background-color: #222;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul li a, #stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul li a:link, #stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul li a:visited {
  display: block;
  padding: 7px 10px;
  border-bottom: 1px solid #555;
  color: #ccc;
  font-size: 0.8rem;
  font-weight: 500;
}
#stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul#sidemenu-sub-list li a, #stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul#sidemenu-sub-list li a:link, #stage.with-sidemenu #wrapper #sidemenu #sidemenu-content ul#sidemenu-sub-list li a:visited {
  border-bottom: 0;
}
#stage.with-sidemenu #wrapper #sidemenu #menu-toggle-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100vh;
  cursor: pointer;
  display: none;
  text-align: center;
  background-color: #222;
}
@media screen and (max-width: 1000px) {
  #stage.with-sidemenu #wrapper #sidemenu #menu-toggle-button {
    display: block;
  }
}
#stage.with-sidemenu #wrapper #sidemenu #menu-toggle-button i.fas {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  font-size: 20px;
  color: white;
  transform: rotate(180deg);
  transition: all 0.5s;
}
#stage.with-sidemenu #wrapper #sidemenu.minimized {
  width: 20px;
  min-width: 20px;
  flex-basis: 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#stage.with-sidemenu #wrapper #sidemenu.minimized #brand img {
  opacity: 0;
}
#stage.with-sidemenu #wrapper #sidemenu.minimized #sidemenu-content {
  opacity: 0;
}
#stage.with-sidemenu #wrapper #sidemenu.minimized #menu-toggle-button i.fas {
  transform: rotate(0deg);
}
#stage.with-sidemenu #wrapper #page {
  flex-grow: 1;
  width: auto;
}
@media screen and (max-width: 1000px) {
  #stage.with-sidemenu #wrapper #page {
    position: absolute;
    top: 0px;
    left: 20px;
    width: calc(100% - 20px);
    z-index: 0;
  }
}

#stage #header {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}
#stage #header > a, #stage #header > a:link, #stage #header > a:visited, #stage #header > a:active {
  display: block;
  position: absolute;
  left: 17px;
  top: 17px;
  width: 200px;
}
#stage #header > a img, #stage #header > a:link img, #stage #header > a:visited img, #stage #header > a:active img {
  display: block;
  width: 100%;
}
#stage #header #primary-nav {
  display: block;
}
@media screen and (max-width: 768px) {
  #stage #header #primary-nav {
    display: none;
  }
}
#stage #header #primary-nav #header-menu {
  display: inline-block;
  position: absolute;
  right: 17px;
  top: 0px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-size: 0;
}
#stage #header #primary-nav #header-menu li {
  position: relative;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  margin: 0 0 0 50px;
  padding: 0 0 0 0;
  font-size: 0.9rem;
  list-style: none;
  text-transform: uppercase;
  line-height: 80px;
  letter-spacing: 0.1rem;
}
#stage #header #primary-nav #header-menu li a, #stage #header #primary-nav #header-menu li a:link, #stage #header #primary-nav #header-menu li a:visited, #stage #header #primary-nav #header-menu li a:active {
  height: 80px;
  color: white;
}
#stage #header #primary-nav #header-menu li:before {
  content: "//";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35px;
  height: 100%;
  color: #888;
}
#stage #header #primary-nav #header-menu li:first-of-type:before {
  display: none;
}
#stage.home #header > a, #stage.home #header > a:link, #stage.home #header > a:visited, #stage.home #header > a:active {
  display: none;
}

#stage.home #page #hero {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  display: block;
  width: 100%;
  height: 500px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
}
#stage.home #page #hero #brand {
  display: block;
  width: 300px;
}
#stage.home #page #hero #brand #the-logo {
  width: 100%;
  margin: 0 0 10px 0;
}
#stage.home #page #hero #brand p {
  font-size: 0.9rem;
  color: white;
  text-align: center;
  margin: 0 0 0 0;
}
#stage.home #page #upcoming {
  text-align: center;
  margin: 0 0 50px 0;
  padding: 0 0 0 0;
}
#stage.home #page #upcoming li {
  display: inline-block;
  width: 100%;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
  color: white;
  font-size: 1rem;
}
#stage.home #page #upcoming li a, #stage.home #page #upcoming li a:link, #stage.home #page #upcoming li a:visited, #stage.home #page #upcoming li a:active {
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  margin: 0 10px 0 0;
}
#stage.home #page #upcoming li.title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
#stage.home #page nav {
  width: 100%;
  margin: 0 0 0 0;
}
#stage.home #page nav ul {
  display: block;
  text-align: center;
  margin: 0 0 0 0;
}
#stage.home #page nav ul li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
  font-size: 0;
  line-height: 1.1rem;
}
#stage.home #page nav ul li a, #stage.home #page nav ul li a:link, #stage.home #page nav ul li a:visited, #stage.home #page nav ul li a:active {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1rem;
  color: white;
}
#stage.home #page nav ul li a strong, #stage.home #page nav ul li a:link strong, #stage.home #page nav ul li a:visited strong, #stage.home #page nav ul li a:active strong {
  font-weight: 500;
}
@media screen and (max-width: 430px) {
  #stage.home #page #upcoming li {
    font-size: 0.9rem;
  }
  #stage.home #page #upcoming li a, #stage.home #page #upcoming li a:link, #stage.home #page #upcoming li a:visited, #stage.home #page #upcoming li a:active {
    font-size: 1rem;
  }
  #stage.home #page #upcoming li.title {
    font-size: 0.8rem;
  }
}

input, button, select, textarea, label {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  outline: none;
}

form {
  display: block;
}

input {
  height: 30px;
  line-height: 30px;
  display: block;
  color: #333333;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 0;
  padding: 0 0 0 0;
}

select {
  color: white;
  height: 30px;
  line-height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  font-weight: 300;
  background-color: #222;
  width: 100%;
}

textarea {
  width: 100%;
  padding: 5px 8px;
  border: 0;
  font-size: 1rem;
  line-height: 1.4rem;
  height: 300px;
  font-weight: 300;
  border-radius: 0;
  -webkit-appearance: none;
  background-color: #222;
  color: white;
}
textarea.code {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.9rem;
  font-weight: normal;
  white-space: nowrap;
}

label {
  color: #8a8a8a;
}
label a, label a:link, label a:visited {
  color: #FF0066;
  font-weight: 300;
}

button,
.button,
a.button, a:visited.button, a:link.button, a:active.button,
input[type=submit] {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  background-color: #666;
  color: white !important;
  display: inline-block;
  border: 0;
  height: 36px;
  line-height: 36px;
  padding: 0 20px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  -webkit-appearance: none;
}
button.stickToRight,
.button.stickToRight,
a.button.stickToRight, a:visited.button.stickToRight, a:link.button.stickToRight, a:active.button.stickToRight,
input[type=submit].stickToRight {
  position: relative;
  float: right;
  top: -5px;
}
button i,
.button i,
a.button i, a:visited.button i, a:link.button i, a:active.button i,
input[type=submit] i {
  position: relative;
  top: 1px;
  margin: 0 7px 0 0;
}
button.approved,
.button.approved,
a.button.approved, a:visited.button.approved, a:link.button.approved, a:active.button.approved,
input[type=submit].approved {
  background-color: green;
}
button.disapproved,
.button.disapproved,
a.button.disapproved, a:visited.button.disapproved, a:link.button.disapproved, a:active.button.disapproved,
input[type=submit].disapproved {
  background-color: red;
}

input[type=submit]:disabled,
a.button.disabled, a:visited.button.disabled, a:link.button.disabled, a:active.button.disabled,
button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

button.small,
input[type=submit].small,
a.button.small,
a.button.small:link,
a.button.small:visited,
ul.actions li a {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  background-color: #333333;
  color: white;
  display: inline-block;
  border: 0;
  height: 28px;
  line-height: 26px;
  padding: 2px 10px 2px 10px;
  margin: 0 0 0 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  -webkit-appearance: none;
}
button.small.stickToRight,
input[type=submit].small.stickToRight,
a.button.small.stickToRight,
a.button.small:link.stickToRight,
a.button.small:visited.stickToRight,
ul.actions li a.stickToRight {
  position: relative;
  float: right;
}

a.button.small,
a.button.small:link,
a.button.small:visited,
ul.actions li a {
  height: 26px;
}

.buttons {
  width: 100%;
  margin: 40px 0;
  text-align: center;
}
.buttons li {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  display: inline-block;
  font-size: 0;
}
input[type=checkbox] {
  display: inline-block;
  border: 1px solid #333333;
  width: 1rem;
  height: 1rem;
  margin: 0 6px 0 0;
  padding: 0 0 0 0;
  vertical-align: top;
  color: #333333;
}
input[type=checkbox]:checked {
  background-color: #333333;
}

input[type=radio] {
  display: inline-block;
  border: 1px solid #333333;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin: 0 6px 0 0;
  padding: 0 0 0 0;
  vertical-align: top;
  color: #333333;
}
input[type=radio]:checked {
  background-color: #333333;
}

.input, .submit {
  display: block;
  padding: 0 0 0 0;
  clear: both;
  background-color: transparent;
}

.input {
  margin: 0 0 20px 0;
}
.input label {
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.input input[type=text],
.input input[type=password],
.input input[type=tel],
.input input[type=email],
.input input[type=number] {
  box-sizing: border-box;
  color: white;
  padding: 5px 8px;
  width: 100%;
  border: 0;
  border-radius: 5px;
  -webkit-appearance: none;
  background-color: #222;
}
.input.textarea {
  padding-bottom: 0px;
}
.input.textarea label {
  margin-bottom: 7px;
}
.input.checkbox {
  padding: 0px 0 0px 0;
  border: 0;
  border-bottom: 0;
  background-color: transparent;
}
.input.checkbox label {
  display: inline-block;
  line-height: 1rem;
  vertical-align: top;
  margin: 0 0 0 0;
}
.input.radio {
  padding: 0px 0 0px 0;
  border: 0;
  border-bottom: 0;
  background-color: transparent;
}
.input.radio label {
  display: inline-block;
  line-height: 1rem;
  vertical-align: top;
  margin: 0 0 0 0;
}
.input.datetime, .input.date, .input.time {
  overflow: hidden;
}
.input.datetime label, .input.date label, .input.time label {
  display: block;
  float: left;
}
.input.datetime input, .input.date input, .input.time input {
  border: 0;
  float: left;
  clear: both;
  width: 100%;
  max-width: 300px;
}
.input.select select {
  margin-top: 5px;
}
.input.error .error-message {
  font-size: 0.9rem;
  color: #FF0066;
  line-height: 1.3rem;
  margin: 0 0 5px 0;
  font-family: "Work Sans", sans-serif;
}
.input.stripe {
  padding-bottom: 10px;
}
.input.stripe label {
  margin-bottom: 10px;
}
.input.stripe #card-errors {
  font-size: 0.9rem;
  color: #FF0066;
  line-height: 1.3rem;
  margin: 0 0 5px 0;
  font-family: "Work Sans", sans-serif;
}

.combo {
  width: 100%;
  max-width: 400px;
  float: none;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 0 0;
}
.combo input[type=text],
.combo input[type=number],
.combo input[type=email] {
  float: left;
  border: 1px solid #666;
  background-color: #222;
  color: white;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-right: 0;
  padding: 0 0 0 2%;
  height: 32px;
  width: 66%;
  -webkit-appearance: none;
}
.combo input[type=number] {
  text-align: right;
}
.combo .remove {
  display: block;
  float: left;
  width: 5%;
  height: 32px;
  padding: 0 0.5%;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background-color: #222;
}
.combo .remove i {
  color: #8a8a8a;
  line-height: 32px;
}
.combo input[type=submit],
.combo button {
  float: left;
  border-radius: 0px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  height: 34px;
  width: 25%;
  padding-right: 1%;
  padding-left: 1%;
  font-size: 1rem;
}

.search-bar {
  display: block;
  width: 96%;
  padding: 0 2%;
  text-align: center;
  margin: 0 0 20px 0;
}

/*
.combo {
	border-top: 0;
	padding: 0;
	overflow: hidden;

	input {
		float: left;
	}

	input[type=text],
	input[type=email] {
		padding: 0 10px;
		border: 1px solid $color-rule;
		border-right: 0;
		border-radius: 18px 0 0 18px;
		width: calc(100% - 152px);
		height: 34px;
		-webkit-appearance: none;
	}
	input[type=submit] {
		padding: 0 0 0 0;
		width: 130px;
		-webkit-appearance: none;
		border-radius: 0 18px 18px 0;
	}
}

@media screen and (max-width: $break-phone) {
	.combo {
		input {
			clear: both;
			float: none;
		}

		input[type=text],
		input[type=email] {
			width: calc(100% - 22px);
			border-radius: 0 0 0 0;
			border-right: 1px solid $color-rule;
			margin: 0 0 10px 0;
		}

		input[type=submit] {
			border-radius: 18px;
		}
	}
}
*/
.socialLogins {
  width: 100%;
  overflow: hidden;
  font-size: 0;
  margin: 0 0 20px 0;
}
.socialLogins li {
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 0 0 0 0;
  list-style: none;
}
.uploader {
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  margin: 0px 0 20px 0;
}
.uploader .upload-thumb {
  width: 30%;
  max-width: 150px;
  min-height: 150px;
  float: left;
  margin: 0 0px 0 0;
  border: 1px solid #e6e6e6;
  background-color: #e6e6e6;
}
.uploader .upload-thumb img {
  display: block;
  width: 100%;
}
.uploader .upload-form {
  float: right;
  width: 65%;
  max-width: 350px;
  overflow: hidden;
  font-size: 0;
  padding: 20px 20px;
  margin: 0 0 0 0;
  border: 1px solid #e6e6e6;
}
.uploader .upload-form .input.file {
  display: inline-block;
  width: 100%;
  clear: both;
  border-bottom: 0;
  margin: 0 0 30px 0;
}
.uploader .upload-form .submit {
  display: inline-block;
  width: 100%;
  clear: both;
  text-align: left;
}
@media screen and (max-width: 620px) {
  .uploader .upload-thumb {
    margin: 0 0 10px 0;
  }
  .uploader .upload-form {
    width: 100%;
    float: left;
    clear: both;
  }
  .uploader .upload-form .input.file {
    margin: 0 0 5px 0;
  }
}
.form-row {
  display: block;
  width: 100%;
  overflow: hidden;
  font-size: 0;
}
.form-row .error-display {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3rem;
  color: #FF0066;
  display: block;
  width: calc(100% - 22px);
  padding: 5px 11px;
  margin: 0 0 0px 0;
}
.form-row .input-stack {
  display: inline-block;
  margin: 0 0 0 0;
  vertical-align: top;
}
.form-row .input-stack label {
  font-size: 0.8rem;
  line-height: 1.1rem;
  font-weight: 500;
  width: 100%;
  margin: 0 0 2px 0;
  padding: 0 0 0 0;
  float: left;
}
.form-row .input-stack input, .form-row .input-stack select {
  /* Remove First */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 2px 10px;
  width: calc(100% - 22px);
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  margin: 0 0 0 0;
  float: left;
  clear: both;
  box-sizing: content-box;
}
.form-row .input-stack select {
  appearance: menulist;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
.form-row .note {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 0 0;
  line-height: 1rem;
}

.veil {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 101;
}
.veil .message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
  padding: 20px 40px;
  -moz-box-shadow: 0px 0px 10px #ccc;
  -webkit-box-shadow: 0px 0px 10px #ccc;
  box-shadow: 0px 0px 10px #ccc;
}
.veil .message p {
  color: #333333;
  font-weight: 500;
  text-align: center;
  margin: 0 0 0 0;
}

.login-compact {
  width: 100%;
  overflow: hidden;
  margin: 0 0 60px 0;
}

.contact-request {
  display: block;
  margin: 0 auto;
  width: 90%;
  padding: 30px 5%;
  max-width: 500px;
  background-color: #fafafa;
  border-radius: 10px;
}
.contact-request h2 {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.6rem;
  margin: 0 0 20px 0;
}

.clickable {
  cursor: pointer;
}

textarea.logFile {
  width: 100%;
  min-height: 640px;
  height: 100%;
  font-family: Courier;
  font-size: 8pt;
  white-space: pre;
  word-wrap: normal;
  overflow-x: scroll;
  line-height: 10pt;
  background-color: transparent;
  color: white;
}

.windows {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s; /* Safari */
  transition: all 0.5s;
}
.windows .window-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  overflow: hidden;
  -webkit-transition: all 0.5s; /* Safari */
  transition: all 0.5s;
}
.windows .window-set.show-window2 {
  left: -100%;
}
.windows .window-set .window {
  position: relative;
  width: calc(50% - 60px);
  padding: 30px 30px 20px 30px;
  float: left;
  overflow: hidden;
}
@media screen and (max-width: 430px) {
  .windows .window-set .window {
    width: calc(50% - 40px);
    padding: 20px 20px 10px 20px;
  }
}

#payment-admin {
  position: relative;
  width: calc(100% - 60px);
  padding: 30px 30px 20px 30px;
}
@media screen and (max-width: 430px) {
  #payment-admin {
    width: calc(100% - 40px);
    padding: 20px 20px 10px 20px;
  }
}
#payment-admin .form-row #fullname-element {
  width: 51%;
  margin-right: 2%;
}
#payment-admin .form-row #amount-element {
  width: 20%;
  margin-right: 2%;
}
#payment-admin .form-row #submit-element {
  width: 25%;
}
#payment-admin .form-row #submit-element button {
  padding-left: 0;
  padding-right: 0;
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
@media screen and (max-width: 600px) {
  #payment-admin .form-row #fullname-element {
    width: 100%;
    margin-bottom: 10px;
  }
  #payment-admin .form-row #amount-element {
    width: 50%;
  }
  #payment-admin .form-row #submit-element {
    width: 48%;
  }
}

#system-message {
  position: fixed;
  display: none;
  width: auto;
  left: 50%;
  transform: translate(-50%, 0);
  top: -55px; /* Hide by default */
  color: #fff;
  padding: 0px 0px 0px 0px;
  z-index: 100;
  text-align: center;
  pointer-events: none;
}
#system-message div.block {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  color: #fff;
  padding: 29px 35px 10px 15px;
  z-index: 100;
  /*	cursor: pointer; */
  background-color: #DE0000;
  border-radius: 0 0 5px 5px;
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
#system-message div.block #message-content {
  display: block;
  overflow: hidden;
}
#system-message div.block #message-content div.message {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.8rem;
  border: 0;
  background-color: transparent;
  overflow: hidden;
  clear: both;
  color: white;
  margin: 0 0 0 0;
  padding: 0;
  white-space: nowrap;
}
#system-message div.block #click2close {
  position: absolute;
  top: 35px;
  right: 10px;
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}

/* Paging *******************************************/
#stage #page .paginator {
  clear: both;
  margin: 0px 0px 0px 0px;
  padding: 15px 0;
  text-align: center;
  font-weight: 500;
}
#stage #page .paginator .pagination {
  display: inline-block;
  margin: 0 15px 10px 15px;
  font-size: 0;
}
#stage #page .paginator .pagination li {
  list-style: none;
  display: inline-block;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-weight: 500;
}
#stage #page .paginator .pagination li a, #stage #page .paginator .pagination li a:visited, #stage #page .paginator .pagination li a:link {
  display: block;
  color: white;
  background-color: #666;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 6px 15px;
  border-right: 1px solid black;
  box-shadow: 0 0 0 0;
}
#stage #page .paginator .pagination li a i, #stage #page .paginator .pagination li a:visited i, #stage #page .paginator .pagination li a:link i {
  position: relative;
  top: 0px;
}
#stage #page .paginator .pagination li:first-of-type a, #stage #page .paginator .pagination li:first-of-type a:visited, #stage #page .paginator .pagination li:first-of-type a:link {
  border-radius: 8px 0 0 8px;
}
#stage #page .paginator .pagination li:last-of-type a, #stage #page .paginator .pagination li:last-of-type a:visited, #stage #page .paginator .pagination li:last-of-type a:link {
  border-right: 0;
  border-radius: 0 8px 8px 0;
}
#stage #page .paginator .pagination li.active a, #stage #page .paginator .pagination li.active a:visited, #stage #page .paginator .pagination li.active a:link {
  background-color: #333;
}
#stage #page .paginator .pagination li.disabled a, #stage #page .paginator .pagination li.disabled a:visited, #stage #page .paginator .pagination li.disabled a:link {
  color: #444;
  background-color: #333;
}
#stage #page .paginator > p {
  font-size: 0.8rem;
}

#stage #page img.full {
  display: block;
  width: 100%;
  padding: 30px 0;
  margin: 0 0 1.2rem 0;
}
#stage #page #actions-sidebar {
  display: block;
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background-color: #222;
}
#stage #page #actions-sidebar .side-nav {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 0 0 0 0;
  text-align: center;
  font-size: 0;
}
#stage #page #actions-sidebar .side-nav li {
  display: inline-block;
  font-size: 0.8rem;
  margin: 0 0px;
  border-right: 1px solid #222;
}
#stage #page #actions-sidebar .side-nav li a, #stage #page #actions-sidebar .side-nav li a:link, #stage #page #actions-sidebar .side-nav li a:visited, #stage #page #actions-sidebar .side-nav li a:active {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-decoration: none;
  color: #333333;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  display: block;
  background-color: white;
}
#stage #page #actions-sidebar .side-nav li.selected a, #stage #page #actions-sidebar .side-nav li.selected a:link, #stage #page #actions-sidebar .side-nav li.selected a:visited, #stage #page #actions-sidebar .side-nav li.selected a:active {
  background-color: #999;
}
#stage #page .form {
  width: 100%;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #stage #page .form {
    width: 94%;
    padding: 60px 3%;
  }
}
#stage #page .form h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin: 1rem 0 0 0;
}
#stage #page .form form {
  display: block;
  width: 100%;
  max-width: 970px;
  margin: 0 auto 30px;
}
#stage #page .form form legend {
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
#stage #page .form form fieldset {
  margin: 0 0 20px 0;
}
#stage #page .form .uploader .upload-form form {
  margin-bottom: 0;
}
#stage #page .content {
  padding: 50px 0;
}
#stage #page .content a, #stage #page .content a:link, #stage #page .content a:visited, #stage #page .content a:active {
  color: #e5e1e1;
  text-decoration: none;
}
#stage #page .content h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 20px 0;
}
#stage #page .content h4 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.3rem;
  text-align: center;
  margin: 0 0 20px 0;
}
#stage #page .content .row {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
#stage #page .content table {
  width: 100%;
  margin: 0 0 40px 0;
}
#stage #page .content table td {
  padding: 8px 10px;
  border-bottom: 1px solid #222;
  vertical-align: middle;
}
#stage #page .content table td a, #stage #page .content table td a:link, #stage #page .content table td a:visited, #stage #page .content table td a:active {
  box-shadow: none;
}
#stage #page .content table td a i, #stage #page .content table td a:link i, #stage #page .content table td a:visited i, #stage #page .content table td a:active i {
  box-shadow: none;
}
#stage #page .content table td img {
  display: block;
}
#stage #page .content table td.thumb img {
  max-width: 100px;
}
#stage #page .content table td.number {
  text-align: right;
}
#stage #page .content table td.code {
  text-align: center;
}
#stage #page .content table td.date {
  text-align: center;
}
#stage #page .content table td.actions {
  width: 200px;
  text-align: center;
}
#stage #page .content table td.actions a, #stage #page .content table td.actions a:link, #stage #page .content table td.actions a:visited, #stage #page .content table td.actions a:active {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 5px;
}
#stage #page .content table td.sortHandle {
  text-align: center;
  cursor: pointer;
}
#stage #page .content table.vertical-table {
  table-layout: fixed;
}
#stage #page .content table.vertical-table th {
  font-size: 0.8rem;
  font-weight: 500;
  font-style: normal;
  width: 25%;
  line-height: 1rem;
  text-align: right;
  background-color: transparent;
}
#stage #page .content table.vertical-table td {
  width: 75%;
  text-align: left;
}
#stage #page .content table.vertical-table td.clip span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  vertical-align: middle;
}
#stage #page .content table.vertical-table td p:last-child {
  margin-bottom: 0;
}
#stage #page .content hr {
  display: inline-block;
  height: 1px;
  width: 10%;
  background-color: #ccc;
  margin: 15px 45% 30px 45%;
  text-align: center;
  border: 0 solid transparent;
  border-width: 0;
  border-style: none;
}
#stage #page .content blockquote {
  font-style: italic;
  padding-left: 25px;
  border-left: 3px solid #e6e6e6;
}
#stage #page .content blockquote p, #stage #page .content blockquote li {
  font-style: italic;
}
#stage #page .content p.subtitle {
  font-style: italic;
}
#stage #page .content code {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-size: 0.9rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
#stage #page .content pre {
  display: inline-block;
  width: 100%;
  overflow: auto;
  margin: 0 0 1.6rem 0;
}
#stage #page .content.index h3 {
  font-size: 1.3rem;
}
#stage #page .grid {
  width: 100%;
}
#stage #page .grid .thumb {
  box-sizing: border-box;
  width: 20%;
  display: block;
  float: left;
  padding: 5px;
  overflow: auto;
}
#stage #page .grid .thumb img {
  width: 100%;
  float: left;
}

#payment-stripe {
  position: relative;
}
#payment-stripe .form-row .StripeElement {
  box-sizing: border-box;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background-color: white;
}
#payment-stripe .form-row .StripeElement--invalid {
  border-color: #fa755a;
}
#payment-stripe .form-row .StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
#payment-stripe .form-row #email-element {
  width: 100%;
  margin-right: 0%;
}
#payment-stripe .form-row #fullname-element {
  width: 100%;
  margin-right: 0%;
}
#payment-stripe .form-row #amount-element {
  width: 68%;
  margin-right: 2%;
}
#payment-stripe .form-row #amount-element input#other-amount {
  display: none;
}
#payment-stripe .form-row #next-element {
  width: 30%;
}
#payment-stripe .form-row #next-element button {
  padding-left: 0;
  padding-right: 0;
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
#payment-stripe .form-row #back-element {
  width: 35px;
}
#payment-stripe .form-row #back-element button {
  padding-left: 0;
  padding-right: 0;
  display: block;
  float: left;
  clear: both;
  width: 100%;
  background-color: transparent;
  color: #333333;
}
#payment-stripe .form-row #submit-element {
  width: 110px;
  float: right;
}
#payment-stripe .form-row #submit-element button {
  padding-left: 0;
  padding-right: 0;
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
@media screen and (max-width: 600px) {
  #payment-stripe .form-row #email-element {
    width: 100%;
  }
  #payment-stripe .form-row #fullname-element {
    width: 100%;
    margin-bottom: 10px;
  }
  #payment-stripe .form-row #submit-element {
    width: 48%;
  }
}

#fileDropArea {
  border: 2px dashed #ccc;
  border-radius: 20px;
  width: calc(100% - 44px);
  margin: 20px auto;
  padding: 15px 20px;
}
#fileDropArea.highlight {
  border-color: rgb(74, 255, 0);
}
#fileDropArea #fileUploadForm {
  margin-bottom: 10px;
  border-top: 0;
  padding-top: 0;
  text-align: center;
}
#fileDropArea #fileUploadForm p {
  text-align: center;
  margin: 0 0 10px 0;
}
#fileDropArea #fileUploadForm #fileInput {
  display: none;
}
#fileDropArea #fileUploadForm label.button {
  display: inline-block;
}
#fileDropArea progress {
  width: 100%;
}

#mobile-switch {
  display: none;
  position: fixed;
  top: 15px;
  right: 10px;
  width: 50px;
  height: 50px;
  /*
  a, a:visited, a:link, a:active {
  	display: block;
  	width: 100%;
  	height: 100%;
  	text-align: center;

  	i {
  		width: 100%;
  		color: $orange-dark;
  		font-size: 40px;
  		margin: 0px 0 0 0;
  	}
  }
  */
}
@media screen and (max-width: 768px) {
  #mobile-switch {
    display: block;
  }
}
#mobile-switch a, #mobile-switch a:visited, #mobile-switch a:link, #mobile-switch a:active {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: black;
  text-align: center;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#mobile-switch a i, #mobile-switch a:visited i, #mobile-switch a:link i, #mobile-switch a:active i {
  width: 100%;
  color: white;
  font-size: 31px;
  margin: 10px 0 0 0;
}

#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 260px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  #mobile-nav {
    display: block;
  }
}
#mobile-nav #secondary-mobile-nav {
  width: 100%;
  display: block;
  float: left;
  margin: 0 0 0 0;
}
#mobile-nav #secondary-mobile-nav > ul {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 0 0;
  padding: 10px 0;
  float: left;
}
#mobile-nav #secondary-mobile-nav > ul > li {
  display: block;
  width: 100%;
  float: left;
  overflow: hidden;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: right;
}
#mobile-nav #secondary-mobile-nav > ul > li > a, #mobile-nav #secondary-mobile-nav > ul > li > a:visited, #mobile-nav #secondary-mobile-nav > ul > li > a:link, #mobile-nav #secondary-mobile-nav > ul > li > a:active {
  display: block;
  width: calc(100% - 40px);
  float: left;
  overflow: hidden;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
}
#mobile-nav #primary-mobile-nav {
  width: 100%;
  display: block;
  float: left;
  background-color: #333;
  margin: 0 0 0 0;
  border-radius: 0 0px 0px 10px;
}
#mobile-nav #primary-mobile-nav > ul {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 0 0;
  padding: 10px 0;
  float: left;
}
#mobile-nav #primary-mobile-nav > ul > li {
  display: block;
  width: 100%;
  float: left;
  overflow: hidden;
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: left;
}
#mobile-nav #primary-mobile-nav > ul > li > a, #mobile-nav #primary-mobile-nav > ul > li > a:visited, #mobile-nav #primary-mobile-nav > ul > li > a:link, #mobile-nav #primary-mobile-nav > ul > li > a:active {
  display: block;
  width: calc(100% - 40px);
  float: left;
  overflow: hidden;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
}
#mobile-nav #primary-mobile-nav > ul > li > a i, #mobile-nav #primary-mobile-nav > ul > li > a:visited i, #mobile-nav #primary-mobile-nav > ul > li > a:link i, #mobile-nav #primary-mobile-nav > ul > li > a:active i {
  margin: 0 0 0 5px;
}

#hashes #composite {
  display: block;
  width: 90%;
  padding: 0 5%;
}
#hashes #composite img {
  width: 100%;
}
#hashes #ratings {
  display: flex;
  width: 130px;
  height: 50px;
  margin: 20px auto;
  gap: 30px;
}
#hashes #ratings .cell {
  min-width: 50px;
  height: 50px;
  color: #333333;
  text-align: center;
}
#hashes #ratings .cell .rating {
  font-size: 50px;
}
#hashes #ratings .cell .rating#yes {
  color: #00cc00;
}
#hashes #ratings .cell .rating#no {
  color: #cc0000;
}
#hashes #info {
  width: 100%;
}
#hashes #info p {
  text-align: center;
}

.generate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.generate-form {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #333;
  margin-bottom: 30px;
}
.generate-form h2 {
  color: white;
  margin-bottom: 20px;
}
.generate-form .input small {
  color: #999;
  font-size: 0.8rem;
  margin-top: 5px;
}

.progress-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  display: none;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 10px;
}

.progress-text {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.progress-details {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.result-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
}

.result-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#result-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: block;
}

.result-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.result-details h4 {
  margin-top: 0;
  color: #333;
}
.result-details p {
  margin: 5px 0;
  color: #666;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.alert.alert-success {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.alert.alert-error {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.alert.alert-info {
  background: #cce7ff;
  border-color: #b8daff;
  color: #004085;
}

.mode-info {
  background: #e7f3ff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border-left: 4px solid #007bff;
}
.mode-info h5 {
  margin-top: 0;
  color: #007bff;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.job-list {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.job-item {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
}
.job-item:last-child {
  border-bottom: none;
}
.job-item p {
  margin: 0;
  color: #555;
}
.job-item span {
  color: #333;
  font-weight: 500;
}

.job-status {
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.job-status.pending {
  background: #fff3cd;
  color: #856404;
}
.job-status.running {
  background: #cce7ff;
  color: #004085;
}
.job-status.completed {
  background: #d4edda;
  color: #155724;
}
.job-status.failed {
  background: #f8d7da;
  color: #721c24;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.grid .thumb img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.grid .thumb img:hover {
  transform: scale(1.05);
}

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