/*===================
MEDIAQUERIES
===================*/
/*===================
RESET
===================*/
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, select {
  margin: 0;
  padding: 0;
  border: 0;
}

ol, ul, li {
  list-style: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clear {
  clear: both;
}

/*===================
ROOT
===================*/
:root {
  --bgGrey: #f7f7f7;
  --bgSilverGrey: #cfcfcf;
  --bgMidGrey: #959595;
  --bgDarkGrey: #4c4c4c;
  --bgPurple: #FF00FF;
  --bgPurpleSec: #cc00cc;
  --bgWhite: #FFFFFF;
  --bgGreen: #5EA709;
  --txtColor: #000000;
  --highGreen: #5EA709;
  --lime: #70ba19;
  --red: #ed0404;
  --blue: #5034ee;
  --black: #000000;
}

/*===================
UI elements
===================*/
/*===================
BASE
===================*/
html, body {
  height: 100%;
}

body {
  font-family: 'Menlo-Regular', monospace;
  background-color: var(--bg-color);
  color: var(--color);
}

body.fadeOut {
  -webkit-animation: fadeOut 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadeOut 2s;
  /* Firefox < 16 */
  -ms-animation: fadeOut 2s;
  /* Internet Explorer */
  -o-animation: fadeOut 2s;
  /* Opera < 12.1 */
  animation: fadeOut 2s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Internet Explorer */
@-ms-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

img {
  max-width: 100%;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.none {
  display: none !important;
}

h2 strong {
  text-decoration: underline;
}

h2.valueprop {
  font-weight: 300;
  padding-left: 5px;
}

section {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  section {
    width: 80%;
  }
}

.block {
  display: block;
}

.pre-line {
  white-space: pre-line;
}

.small {
  font-size: small;
}

.smaller {
  font-size: smaller;
}

.x-small {
  font-size: x-small;
}

.x-large {
  font-size: x-large;
}

.underline {
  text-decoration: underline;
}

.pointer {
  cursor: pointer;
}

.cta-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-gap: 1rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cta-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}

.cta-button__arrow {
  width: 2rem;
  height: 2rem;
  background-image: url("/site/assets/images/arrow-right.svg");
  background-size: contain;
  margin-left: 1rem;
  transition: all .2s ease-out;
}

a.cta-link {
  text-decoration: none;
}

button.cta-button,
span.cta-button,
input[type="submit"].cta-button,
input[type="button"].cta-button {
  color: var(--black);
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  height: 2.4rem;
  background-color: var(--bgGrey);
  border: 1px solid var(--bgPurple);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Menlo-Regular", monospace;
  cursor: pointer;
  transition: all .2s ease-out;
  text-decoration: none;
  min-width: 15rem;
  display: -webkit-flex;
}

button.cta-button.inverse,
span.cta-button.inverse,
input[type="submit"].cta-button.inverse,
input[type="button"].cta-button.inverse {
  color: black;
}

button.cta-button.dead,
span.cta-button.dead,
input[type="submit"].cta-button.dead,
input[type="button"].cta-button.dead {
  color: var(--bgGrey);
  background-color: var(--bgPurple);
  border: 1px solid var(--bgGrey);
  cursor: none;
}

button.cta-button:hover,
span.cta-button:hover,
input[type="submit"].cta-button:hover,
input[type="button"].cta-button:hover {
  border: 1px solid var(--bgGrey);
  background-color: var(--bgPurple);
  color: var(--bgGrey);
}

button.cta-button:hover .cta-button__arrow,
span.cta-button:hover .cta-button__arrow,
input[type="submit"].cta-button:hover .cta-button__arrow,
input[type="button"].cta-button:hover .cta-button__arrow {
  -webkit-filter: invert(0.94);
  filter: invert(0.94);
  transform: translateX(50%);
}

button.cta-button.disabled,
span.cta-button.disabled,
input[type="submit"].cta-button.disabled,
input[type="button"].cta-button.disabled {
  cursor: none;
}

button.cta-button.disabled .cta-button__arrow,
span.cta-button.disabled .cta-button__arrow,
input[type="submit"].cta-button.disabled .cta-button__arrow,
input[type="button"].cta-button.disabled .cta-button__arrow {
  display: none;
}

input[type="submit"].cta-button,
input[type="button"].cta-button {
  line-height: 0;
}

input[type="email"].cta-input,
input[type="text"].cta-input,
input.flat {
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  height: 2.4rem;
  background-color: var(--bgWhite);
  border: 1px solid var(--bgPurple);
  font-family: "Menlo-Regular", monospace;
  outline: none;
  min-width: 15rem;
}

textarea.cta-input {
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  background-color: var(--bgWhite);
  border: 1px solid var(--bgPurple);
  font-family: "Menlo-Regular", monospace;
  outline: none;
  max-width: 100%;
}

.hide {
  display: none;
}

.white {
  color: var(--bgWhite);
}

.p-top {
  padding-top: 1rem;
}

.p-top-xl {
  padding-top: 4rem;
}

.p-bottom {
  padding-bottom: 1rem;
}

.p-bottom-xl {
  padding-bottom: 4rem;
}

.m-top {
  margin-top: 1rem;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-right {
  float: right;
}

.divider {
  height: 1px;
  background-color: var(--bgWhite);
  width: 80%;
  margin: 0 auto;
}

.terms_link {
  cursor: pointer;
  text-decoration: underline;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.arrow-back a {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.arrow-back a:before {
  content: '';
  background-image: url("/site/assets/images/arrow-left.svg");
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(1);
}

/*
* LoginRegister style overrides
*
*/
.Inputfield input[type="text"],
input[type="password"].LoginRegisterPass {
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  height: 2.4rem;
  background-color: var(--bgWhite);
  border: 1px solid var(--bgPurple);
  font-family: "Menlo-Regular", monospace;
  outline: none;
  min-width: 15rem;
  width: auto !important;
}

button.ui-button {
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  height: 2.4rem;
  background-color: var(--bgGrey);
  border: 1px solid var(--bgPurple);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: "Menlo-Regular", monospace;
  cursor: pointer;
  transition: all .2s ease-out;
  text-decoration: none;
  min-width: 15rem;
}

.Inputfield:not(.InputfieldSubmit) {
  padding: 0 !important;
  padding-top: 1rem !important;
  border: none !important;
  background: var(--bgPurple) !important;
}

ul.LoginRegisterLinks {
  margin-top: 1rem;
}

/*===================
FONTS
===================*/
@font-face {
  font-family: 'Menlo-Regular';
  src: url("../../assets/fonts/Menlo-Regular.woff2") format("woff2"), url("../../assets/fonts/Menlo-Regular.woff") format("woff"), url("../../assets/fonts/Menlo-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Light';
  src: url("../../assets/fonts/OpenSans-Light.woff2") format("woff2"), url("../../assets/fonts/OpenSans-Light.woff") format("woff"), url("../../assets/fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*===================
HEADER
===================*/
.header {
  height: 6rem;
  background-color: var(--bgPurple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
}

.home-logo-text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  color: var(--bgGrey);
  text-decoration: none;
}

.lom-logo {
  height: 3.5rem;
}

.lom-text {
  padding-left: 5px;
}

.user-assets {
  text-align: right;
}

h3.venue_name {
  color: var(--bgGrey);
}

.header h1 {
  font-size: large;
}

/*===================
LAYOUT
===================*/
.main {
  width: 100%;
  background-color: var(--bgWhite);
}

.content {
  width: 100%;
  background-color: var(--bgGrey);
  min-height: 100vh;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*===================
FOOTER
===================*/
.footer {
  min-height: 60vh;
  background-color: var(--bgWhite);
  padding: 0 1rem;
}

/*===================
HOME
===================*/
.hero {
  position: relative;
  width: 100vw;
  background-color: var(--bgPurple);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
  min-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--bgGrey);
}

.hero-header {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-header {
    flex-direction: row;
    grid-gap: 4rem;
  }
}

.hero-image {
  flex: 1;
  -webkit-filter: invert(0.94);
  filter: invert(0.94);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 0;
  grid-gap: 1rem;
}

.how-it-works__wrapper {
  display: flex;
  grid-gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 8rem;
}

.how-it-works__wrapper:nth-child(odd) {
  flex-direction: row-reverse;
}

.how-it-works__img {
  flex: 50%;
}

.how-it-works__text {
  flex: 50%;
}

.why-it-works__text p {
  padding-top: 1rem;
}

.hero.confirmed {
  background-image: url("/site/assets/images/10_shakehands_white.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero.confirmed .hero-text {
  justify-content: flex-end;
  color: white;
}

.continue_en {
  text-align: center;
  display: none;
}

.continue_en.nl {
  display: block;
}

/*===================
LUNCH CREATE
===================*/
.lunch-create ol.stepper {
  position: relative;
  overflow: hidden;
  counter-reset: wizard;
  font-size: small;
}

.lunch-create li {
  position: relative;
  float: left;
  width: 25%;
  text-align: center;
  color: var(--bgGrey);
}

.lunch-create .current ~ li {
  color: var(--bgMidGrey);
}

.lunch-create li:before {
  counter-increment: wizard;
  content: counter(wizard);
  display: block;
  color: black;
  background-color: var(--bgGrey);
  border: 1px solid var(--bgGrey);
  text-align: center;
  width: 2em;
  height: 2em;
  line-height: 2em;
  border-radius: 2em;
  position: relative;
  left: 50%;
  margin-bottom: 1em;
  margin-left: -1em;
  z-index: 1;
}

.current ~ .lunch-create li:before {
  background-color: black;
  color: var(--bgPurple);
  border-color: var(--bgPurple);
}

.lunch-create li + li:after {
  content: "";
  display: block;
  width: 100%;
  background-color: var(--bgGrey);
  height: 1px;
  position: absolute;
  left: -50%;
  top: 1em;
  z-index: 0;
}

.lunch-create .current ~ li:after {
  background-color: var(--bgGrey);
}

.invitee {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  grid-gap: .5rem;
}

@media (min-width: 768px) {
  .invitee {
    flex-direction: row;
  }
}

.invite-email__wrapper {
  width: 100%;
  background-color: var(--bgPurple);
  color: var(--bgWhite);
}

.invite-email__wrapper a {
  color: var(--color);
}

.invite-email__wrapper textarea {
  width: 100%;
  font-size: x-large;
  border: none;
  background-color: transparent;
  font-family: 'Menlo-Regular', monospace;
  color: var(--bgWhite);
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  resize: none;
  /*remove the resize handle on the bottom right*/
}

.invite-email {
  display: flex;
  flex-direction: row;
  font-size: small;
}

.invite-email.body, .invite-email.cc, .invite-email.attn, .invite-email.subject {
  color: var(--bgSilverGrey);
}

.invite__label--content {
  width: 60vw;
}

.invite__label--content.link {
  white-space: nowrap;
  font-size: small;
  width: auto;
}

.invite__label--content--body {
  white-space: pre-line;
  width: 60vw;
}

.invite__label {
  width: 20%;
}

/*===================
LUNCH CALANDER
===================*/
.flatpickr-calendar {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.flatpickr-calendar .event {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 150px;
  bottom: 3px;
  left: calc(50% - 1.5px);
  content: " ";
  display: block;
  background: #3d8eb9;
}

.flatpickr-calendar .event.busy {
  background: #f64747;
}

.available {
  background-color: var(--bgGreen);
}

.flatpickr-day.lunchtime {
  background-color: var(--bgPurple);
  border-color: var(--bgGreen);
}

.confirm_calendar_saved {
  background-image: url("/site/assets/images/10_shakehands_white.png");
  background-color: var(--bgPurple);
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
  width: 100vw;
  height: calc(100% - 4rem);
  transition: all .1s ease-out;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.confirm_calendar_saved.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.flatpickr-day.selected {
  background: var(--bgPurple);
  border-color: var(--bgPurple);
}

/*===================
Point of Sale LUNCH
===================*/
#sig-canvas {
  border: 2px dotted #CCCCCC;
  border-radius: 15px;
  cursor: crosshair;
}

.venue section {
  width: 100%;
}

ul.lunch-headers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 2rem;
  align-items: center;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
  font-size: x-small;
  padding-left: .5rem;
  padding-right: .5rem;
  text-align: left;
}

ul.lunch-details li {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  font-size: x-small;
  padding-left: .5rem;
  padding-right: .5rem;
  min-height: 4rem;
}

ul.lunch-details li:nth-child(odd) {
  background-color: var(--bgPurpleSec);
}

ul.lunch-details {
  font-size: small;
}

@media (min-width: 768px) {
  ul.lunch-details {
    font-size: inherit;
  }
}

ul.lunch-totals {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 2rem;
  align-items: center;
  font-weight: 500;
  border-top: 1px solid #dedede;
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: x-small;
}

@media (min-width: 768px) {
  ul.lunch-totals {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: inherit;
  }
}

.hero.pos {
  align-items: center;
}

.hero.list {
  justify-content: start;
}

.sig-btn {
  display: flex;
}

.sig-btn button.cta-button {
  min-width: inherit;
  margin-right: 1rem;
}

/*===================
DASHBOARD
===================*/
.dashboard section {
  width: 100%;
}

ul.inviters-headers {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  height: 2rem;
  align-items: center;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
  font-size: x-small;
  padding-left: .5rem;
  padding-right: .5rem;
  text-align: center;
}

ul.inviters-details li {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  font-size: x-small;
  padding-left: .5rem;
  padding-right: .5rem;
  min-height: 4rem;
}

ul.inviters-details li:nth-child(odd) {
  background-color: var(--bgPurpleSec);
}

.l-wrapper {
  display: flex;
  flex-direction: column;
}

.l-wrapper > div {
  min-height: 4rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.l-wrapper > div:last-child {
  border-bottom: none;
}

ul.inviters-headers {
  font-size: small;
}

.grid_horizontal {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.l-wrapper .status__wrapper {
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.status {
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 15px;
  padding: 0 4px;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}

.status.lower {
  text-transform: lowercase;
}

.status.details {
  background-color: white;
  transition: all .2s;
  color: black;
}

.status.details:hover {
  background-color: var(--bgMidGrey);
}

.status.waiting {
  background-color: var(--bgMidGrey);
}

.status.confirmed {
  background-color: var(--lime);
}

.status.confirmed__no {
  background-color: var(--red);
}

.status.cancelled {
  background-color: var(--black);
}

.status.noshow {
  background-color: var(--black);
}

.status.cost {
  background-color: var(--bgMidGrey);
}

.status.refund {
  background-color: var(--blue);
  transition: all .2s;
}

.status.refund:hover {
  background-color: #2d10d5;
}

.status.refunded {
  background-color: var(--bgMidGrey);
}

.status.refund__no {
  background-color: var(--bgMidGrey);
}

.status.invoice {
  background-color: var(--blue);
  transition: all .2s;
}

.status.invoice:hover {
  background-color: #2d10d5;
}

.status.invoiced {
  background-color: var(--bgMidGrey);
}

.status.disabled {
  background-color: transparent;
}

.status.active {
  background-color: var(--blue);
}

.status.done {
  background-color: var(--bgMidGrey);
}

.status.error {
  background-color: var(--red);
}

.lunch-details__wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
}

/*===================
HAPPYSAD
===================*/
#completed {
  display: none;
}

#completed.completed {
  display: block;
}

#incomplete {
  display: block;
}

#incomplete.completed {
  display: none;
}

.hero.happysad {
  min-height: calc(100vh - 6rem);
}

/* STYLE THE HTML ELEMENTS (INCLUDES RESETS FOR THE DEFAULT FIELDSET AND LEGEND STYLES) */
fieldset {
  box-sizing: border-box;
  display: block;
  border: none;
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

/* TOGGLE STYLING */
.toggle {
  box-sizing: border-box;
  font-size: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 18rem);
  justify-content: center;
  align-items: stretch;
}

.toggle input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}

.toggle input + label {
  margin: 0;
  padding: .75rem 2rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px var(--bgSilverGrey);
  background-color: var(--bgPurlple);
  font-size: 1rem;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* ADD THESE PROPERTIES TO SWITCH FROM AUTO WIDTH TO FULL WIDTH */
  /*flex: 0 0 50%; display: flex; justify-content: center; align-items: center;*/
  /* ----- */
}

.toggle input + label:first-of-type {
  border-radius: 6px 0 0 6px;
  border-right: none;
}

.toggle input + label:first-of-type:hover {
  background-color: var(--lime);
}

.toggle input + label:last-of-type {
  border-radius: 0 6px 6px 0;
  border-left: 1px solid #fff;
}

.toggle input + label:last-of-type:hover {
  background-color: var(--bgPurpleSec);
}

.toggle input:hover + label {
  border-color: var(--bgPurlple);
}

.toggle input:checked + label {
  background-color: var(--bgPurpleSec);
  color: #FFF;
  border-color: var(--bgPurpleSec);
  z-index: 1;
}

.toggle input:focus + label {
  outline: dotted 1px #CCC;
  outline-offset: .45rem;
}

@media (max-width: 800px) {
  .toggle input + label {
    padding: .75rem .25rem;
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* STYLING FOR THE STATUS HELPER TEXT FOR THE DEMO */
.happysad_result {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 18rem);
  justify-content: center;
  align-items: center;
  min-width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
  border: solid 1px var(--bgSilverGrey);
}

.happysad_result__me, .happysad_result__she {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.happysad_result__me {
  border-radius: 6px 6px 0 0;
}

.happysad_result__me.no {
  background-color: var(--bgPurpleSec);
}

.happysad_result__me.yes {
  background-color: var(--lime);
}

.happysad_result__she {
  border-radius: 0 0 6px 6px;
}

.happysad_result__she.no {
  background-color: var(--bgPurpleSec);
}

.happysad_result__she.yes {
  background-color: var(--lime);
}

.hero.happysad_award {
  background-position: center bottom 10rem;
  background-repeat: no-repeat;
  background-size: 340px;
  justify-content: flex-end;
  align-items: center;
  min-height: calc(100vh - 6rem);
}

.hero.happysad_award h1 {
  text-align: center;
}

canvas#award-confetti {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
}

.showtimer {
  position: absolute;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
  box-shadow: 9999px 0 0 -5px #9880ff;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: .25s;
}

.dot-pulse::before, .dot-pulse::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px #9880ff;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px #9880ff;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: .5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px var(--bgGrey);
  }
  30% {
    box-shadow: 9984px 0 0 2px var(--bgGrey);
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px var(--bgGrey);
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px var(--bgGrey);
  }
  30% {
    box-shadow: 9999px 0 0 2px var(--bgGrey);
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px var(--bgGrey);
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px var(--bgGrey);
  }
  30% {
    box-shadow: 10014px 0 0 2px var(--bgGrey);
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px var(--bgGrey);
  }
}

table.score__table {
  font-size: small;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

td.score__header {
  padding: 0 1rem;
}

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