@charset "UTF-8";
.transitions-off * {
  transition: all 0ms 0ms !important;
}

.hidden {
  display: none !important;
}

.underline {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.no-margin {
  margin: 0px !important;
}

.accent-color {
  color: #009665;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.responsive-columns {
  columns: 1;
}

@media screen and (min-width: 768px) {
  .responsive-columns {
    columns: 2;
  }
}
@media screen and (min-width: 992px) {
  .responsive-columns {
    columns: 3;
  }
}
html,
body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  background-color: white;
  margin: 0;
}

::selection {
  color: inherit;
  background: rgba(255, 255, 0, 0.2);
}

html {
  overflow-y: scroll;
  transition: opacity 500ms;
}
html.fonts-loading {
  opacity: 0;
}

body {
  font-size: 16px;
  position: relative;
  background-color: white;
  min-width: 220px;
  color: #333029;
}

section {
  position: relative;
  padding: 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
  line-height: 1;
  word-break: break-word;
}

h1 {
  font-size: 39.1px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 0.5em;
}

h2 {
  font-size: 25.5px;
  font-weight: 400;
  letter-spacing: 0.6375px;
}

h3 {
  font-size: 22.1px;
  margin: 0;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

h4 {
  font-size: 21px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
}

ul.list-style-none {
  list-style: none;
  padding: 0;
}

li {
  font-weight: 400;
}

p {
  font-size: 15px;
  line-height: 1.2em;
  font-weight: 400;
}

a,
a:link,
a:visited,
a:active,
a:hover {
  text-decoration: none;
  color: #009665;
}
a.text-link,
a:link.text-link,
a:visited.text-link,
a:active.text-link,
a:hover.text-link {
  border-bottom: 2px solid #009665;
  transition: border-color 150ms;
}

a.text-link:hover {
  border-bottom-color: transparent;
}

code {
  font-size: 100%;
  color: #327d7d;
  background-color: rgba(210, 245, 245, 0.5);
  white-space: pre;
}

img {
  max-width: 100%;
}

blockquote {
  margin: 30px 0;
  width: 100%;
  border-left: none;
  padding: 0;
  text-align: justify;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6em;
}
blockquote > p:first-of-type:before,
blockquote > p:last-of-type:after {
  content: "“";
  font-size: 35px;
  vertical-align: top;
  line-height: 0;
  position: relative;
  color: rgba(0, 0, 0, 0.15);
  top: 15px;
  left: -5px;
}
blockquote > p:last-of-type:after {
  content: "”";
  top: 15px;
  left: 3px;
}

form.custom-form-controls {
  user-select: none;
}
form.custom-form-controls fieldset {
  margin: 0 auto 30px;
}
form.custom-form-controls button {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 16px;
  display: inline-block;
  padding: 10px 25px;
  padding: 14px 22px;
  margin: 0;
  width: auto;
  min-width: 90px;
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  cursor: pointer;
  border: 2px solid transparent;
  user-select: none;
  border-radius: 35px;
  color: white;
  background: #009665;
  transition: background 0.15s ease;
}
form.custom-form-controls input[type=text], form.custom-form-controls input[type=number], form.custom-form-controls input[type=email], form.custom-form-controls input[type=password] {
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 1px 5px;
  border-radius: 2px;
}
form.custom-form-controls input[type=number] {
  padding-right: 0;
}
form.custom-form-controls input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
form.custom-form-controls input[type=checkbox] ~ * {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
form.custom-form-controls input[type=checkbox] ~ *:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0px;
  border: 3px solid #80cbb2;
  border-radius: 4px;
  height: 25px;
  width: 25px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 20px;
}
form.custom-form-controls input[type=checkbox]:checked ~ *:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -7px;
  left: 11px;
  border-color: #007851;
  border-style: solid;
  border-width: 0 5px 6px 0;
  height: 25px;
  width: 10px;
  transform-origin: center;
  transform: rotate(35deg);
}
form.custom-form-controls label {
  font-weight: bold;
  cursor: pointer;
}
form.custom-form-controls select {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2px;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 20px;
}

.container {
  max-width: 380px !important;
}

header .header-shim {
  height: 65px;
}
header .header-shim ~ div {
  position: fixed;
  top: 0;
  left: 0;
  height: 65px;
  background-color: white;
  width: 100%;
  z-index: 99;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}

@keyframes slide-out {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  99% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
.event-list {
  margin: 20px 0;
}
.event-list > ul {
  font-size: 0;
  padding: 0;
}
.event-list > ul > li {
  list-style-type: none;
  font-size: 14px;
  overflow: hidden;
  opacity: 1;
  padding-bottom: 30px;
  transition: height 250ms ease, opacity 100ms linear 250ms;
  box-sizing: content-box !important;
}
.event-list > ul > li.event-closed details summary {
  padding: 10px 15px 0px 65px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  opacity: 0.6;
  filter: grayscale(100%);
  pointer-events: none;
}
.event-list > ul > li.event-closed details summary .toggle-open-close {
  display: none;
}
.event-list > ul > li details {
  transition: opacity 100ms linear 250ms;
  color: #333333;
}
.event-list > ul > li details summary {
  list-style-image: none;
  font-size: 0;
}
.event-list > ul > li details summary::-webkit-details-marker {
  color: transparent;
}
.event-list > ul > li details summary:focus {
  outline: none;
}
.event-list > ul > li details summary,
.event-list > ul > li details > div {
  position: relative;
  background-color: #dddddd;
  transition: opacity 300ms;
}
.event-list > ul > li details summary {
  padding: 10px 15px 25px 65px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}
.event-list > ul > li details summary:before {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: -50px;
  left: -95px;
  background-color: #999999;
  border-radius: 50%;
  transform: skewY(18deg);
}
.event-list > ul > li details summary .toggle-open-close {
  height: 22px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  border-top: 1px solid white;
  left: 0px;
  background: linear-gradient(0deg, white 0%, #dddddd 100%);
}
.event-list > ul > li details summary .toggle-open-close > span {
  display: inline-block;
  font-size: 0;
  position: absolute;
  bottom: 3px;
  left: 17px;
  border-color: #333333;
  border-style: solid;
  border-width: 4px 4px 0 0;
  height: 10px;
  width: 10px;
  transform-origin: 5px 5px;
  transform: rotate(135deg);
  transition: all 250ms;
  z-index: 9;
}
.event-list > ul > li details summary h5 {
  margin: 0 0 0.2rem -5px;
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
}
.event-list > ul > li details summary var {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 45px;
  height: 60px;
  display: inline-block;
  user-select: none;
  background-image: url("img/runner.svg");
  background-size: auto 83%;
  background-repeat: no-repeat;
  background-position: 0 center;
  font-family: Nunito;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  color: white;
  text-align: right;
  padding-top: 22px;
}
.event-list > ul > li details summary var.event-nametag {
  text-align: center;
  background-image: none;
  font-size: 24px;
  padding-top: 15px;
}
.event-list > ul > li details > div {
  margin-top: -21px;
  padding: 11px 10px 11px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.event-list > ul > li details > div p {
  margin-bottom: 0.5rem;
}
.event-list > ul > li details > div form {
  margin: 0px 0px 0px;
  padding: 20px 20px 0px;
  text-align: center;
  border-radius: 4px;
  background-color: white;
  border-width: 1px;
  border-color: transparent;
  border-style: solid;
  color: rgba(51, 48, 41, 0.95);
}
.event-list > ul > li details > div form label {
  color: #003c28;
  opacity: 0.85;
  font-size: 0.95rem;
}
.event-list > ul > li details > div .submission-history {
  margin: 10px 0px 0px;
  padding: 10px 20px 10px;
  border-radius: 4px;
  background-color: white;
  border-width: 1px;
  border-color: transparent;
  border-style: solid;
  color: rgba(51, 48, 41, 0.95);
}
.event-list > ul > li details > div .submission-history ul {
  padding-left: 0px;
}
.event-list > ul > li details > div .submission-history ul li {
  list-style: none;
  margin: 0 0 1em;
  line-height: 1.2em;
}
.event-list > ul > li details > div .submission-history ul li em:after {
  content: "";
  display: block;
}
.event-list > ul > li details > div .submission-history ul + p {
  border: 0 dotted rgba(220, 210, 200, 0.75);
  border-top-width: 1px;
  padding-top: 10px;
}
.event-list > ul > li details[open] summary .toggle-open-close span {
  transform: rotate(-45deg);
  border-color: transparent !important;
}
.event-list .progress-o-meter {
  user-select: none;
  position: relative;
  height: 40px;
  width: calc(100% - 25px);
}
.event-list .progress-o-meter .medal {
  position: absolute;
  z-index: 999;
  right: -43px;
  top: -35px;
  display: block;
  height: 88px;
  width: 88px;
  opacity: 0;
  background-image: url("img/medal.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 100ms, transform 100ms cubic-bezier(0, 1, 0.65, 1.3);
  transform: scale(0.5);
}
.event-list .progress-o-meter.event-complete .medal {
  opacity: 1;
  transform: scale(1);
}
.event-list .progress-o-meter .progress-o-meter-bar {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 5px;
  border-style: solid;
  border-color: #999999;
  border-top-width: 5px;
  border-right-width: 2px;
  border-bottom-width: 0;
  border-left-width: 0;
}
.event-list .progress-o-meter .progress-o-meter-bar span {
  position: absolute;
  top: -5px;
  left: 2px;
  transition: width 500ms cubic-bezier(1, 0, 0.85, 1.15);
  height: 10px;
  width: 0%;
  border-style: solid;
  border-color: #333333;
  border-top-width: 5px;
  border-right-width: 2px;
  border-bottom-width: 0;
  border-left-width: 0;
}
.event-list .progress-o-meter .progress-o-meter-bar span:before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #333333;
  left: -3px;
  top: -5px;
}
.event-list .progress-o-meter .progress-o-meter-bar span:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 1px;
  background-color: #dddddd;
  right: -3px;
  top: -5px;
}
.event-list .progress-o-meter ul {
  margin: 0;
  padding: 0;
  width: fit-content;
  height: 20px;
  overflow: hidden;
  position: absolute;
  top: 17px;
  transition: all 3s cubic-bezier(0, 0.45, 0.45, 1);
}
.event-list .progress-o-meter ul li {
  display: block;
  position: relative;
  height: 0px;
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
  transform: translateY(20px);
  opacity: 0;
}
.event-list .progress-o-meter ul li.current {
  transform: translateY(0px);
  opacity: 1;
  transition: all 400ms cubic-bezier(0.65, -0.49, 0.33, 1.5);
}
.event-list .progress-o-meter ul li.previous {
  animation-name: slide-out;
  animation-duration: 400ms;
  animation-timing-function: cubic-bezier(0.65, -0.49, 0.33, 1.5);
  animation-delay: 0s;
  animation-iteration-count: 1;
}
.event-list .overlay-modal {
  z-index: -1;
  opacity: 0;
  transition: opacity 200ms;
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-list .overlay-modal.overlay-active {
  pointer-events: auto;
  z-index: 1000;
  opacity: 1;
}
.event-list .overlay-modal > div {
  max-width: 320px;
  height: auto;
  background-color: white;
  border-radius: 5px;
  padding: 20px 20px 30px;
  position: relative;
}
.event-list .overlay-modal > div var {
  background-color: gray;
  border: 5px solid gray;
  border-radius: 3px;
  width: 56px;
  height: 60px;
  display: inline-block;
  user-select: none;
  margin-bottom: 18px;
  background-image: url("img/runner.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 0 center;
  font-family: Nunito;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  color: white;
  text-align: right;
  padding-top: 18px;
}
.event-list .overlay-modal > div p {
  margin-bottom: 1.75rem;
}
.event-list .overlay-modal > div.carousel {
  white-space: nowrap;
  font-size: 0;
}
.event-list .overlay-modal > div.carousel[data-carousel] > div {
  transition: transform 250ms ease-in-out 50ms, opacity 100ms linear 0ms;
}
.event-list .overlay-modal > div.carousel[data-carousel="1"] > div:nth-child(1) {
  opacity: 1;
}
.event-list .overlay-modal > div.carousel[data-carousel="2"] > div {
  transform: translateX(-100%);
}
.event-list .overlay-modal > div.carousel[data-carousel="2"] > div:nth-child(2) {
  opacity: 1;
}
.event-list .overlay-modal > div.carousel[data-carousel="3"] > div {
  transform: translateX(-200%);
}
.event-list .overlay-modal > div.carousel[data-carousel="3"] > div:nth-child(3) {
  opacity: 1;
}
.event-list .overlay-modal > div.carousel[data-carousel="4"] > div {
  transform: translateX(-300%);
}
.event-list .overlay-modal > div.carousel[data-carousel="4"] > div:nth-child(4) {
  opacity: 1;
}
.event-list .overlay-modal > div.carousel[data-carousel="5"] > div {
  transform: translateX(-400%);
}
.event-list .overlay-modal > div.carousel[data-carousel="5"] > div:nth-child(5) {
  opacity: 1;
}
.event-list .overlay-modal > div.carousel[data-carousel="6"] > div {
  transform: translateX(-500%);
}
.event-list .overlay-modal > div.carousel[data-carousel="6"] > div:nth-child(6) {
  opacity: 1;
}
.event-list .overlay-modal > div.carousel > div {
  font-size: 16px;
  transition: transform 250ms ease-in-out, opacity 150ms linear 250ms;
  opacity: 0;
  vertical-align: top;
  display: inline-block;
  white-space: normal;
  width: 100%;
}

#form-get-purchase-order-by-number {
  text-align: center;
}

form.custom-form-controls .input-wrapper-rw-prefix {
  position: relative;
}
form.custom-form-controls .input-wrapper-rw-prefix:before {
  content: "rw— ";
  text-transform: uppercase;
  position: absolute;
  left: 5px;
  top: -2px;
  font-weight: 400;
}
form.custom-form-controls .input-wrapper-rw-prefix input {
  padding-left: 35px;
}
form.custom-form-controls fieldset.custom-form-file-input {
  text-align: center;
}
form.custom-form-controls fieldset.custom-form-file-input.file-selected label .wrapper-file-name {
  opacity: 1;
  max-height: 100px;
}
form.custom-form-controls fieldset.custom-form-file-input label {
  width: 100%;
}
form.custom-form-controls fieldset.custom-form-file-input label input[type=file] {
  display: none;
}
form.custom-form-controls fieldset.custom-form-file-input label a {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 15.5px;
  display: block;
  width: 100%;
  padding: 15px 15px;
  margin: 0px auto;
  text-align: center;
  border-width: 2px;
  border-style: dashed;
  border-color: #009665;
  user-select: none;
  border-radius: 30px;
  color: #009665;
  transition: background 0.15s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 20px;
}
form.custom-form-controls fieldset.custom-form-file-input label .wrapper-file-name {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 200ms linear, opacity 200ms linear 200ms;
}
form.custom-form-controls fieldset.custom-form-file-input label .wrapper-file-name data {
  display: block;
  margin: 0 auto;
  border-width: 0 0 2px 0;
  border-style: dashed;
  border-color: #009665;
  font-weight: 600;
  font-style: italic;
  width: calc(100% - 60px);
  text-align: center;
  white-space: nowrap;
  padding: 10px;
}
form.custom-form-controls fieldset.custom-form-distance-input input {
  width: 5em;
  font-size: 29px;
}
form.custom-form-controls fieldset.custom-form-distance-input input ~ select {
  vertical-align: top;
  height: 47px;
  font-size: 27px;
}
form.custom-form-controls .form-prompt {
  margin-bottom: 40px;
}
form.custom-form-controls .form-prompt legend {
  border: 1px solid rgba(255, 0, 0, 0.2);
  background-color: rgba(255, 0, 0, 0.05);
  border-radius: 2px;
  padding: 10px;
  color: rgba(170, 0, 0, 0.7);
  margin-bottom: 20px;
}
form.custom-form-controls .form-prompt legend p {
  font-size: 14px;
  margin: 0;
}

.event-list ul li.blue-2106 details {
  color: #003859;
}
.event-list ul li.blue-2106 details summary,
.event-list ul li.blue-2106 details > div {
  background-color: #d9f1ff;
}
.event-list ul li.blue-2106 details summary:before {
  background-color: #80cfff;
}
.event-list ul li.blue-2106 details summary .toggle-open-close {
  background: linear-gradient(0deg, white 0%, #d9f1ff 100%);
}
.event-list ul li.blue-2106 details summary .toggle-open-close > span {
  border-color: #003859;
}
.event-list ul li.blue-2106 details summary .progress-o-meter .progress-o-meter-bar {
  border-color: #80cfff;
}
.event-list ul li.blue-2106 details summary .progress-o-meter .progress-o-meter-bar span {
  border-color: #003859;
}
.event-list ul li.blue-2106 details summary .progress-o-meter .progress-o-meter-bar span:before {
  background-color: #003859;
}
.event-list ul li.blue-2106 details summary .progress-o-meter .progress-o-meter-bar span:after {
  background-color: #d9f1ff;
}
.event-list ul li.blue-2106 details .custom-form-apply-to-all-checkbox var {
  background-color: #80cfff;
  border-color: #80cfff;
}
.event-list ul li.blue-2106 details .medal .medal-ribbon-edge {
  fill: #009fff;
}
.event-list ul li.blue-2106 details .medal .medal-ribbon {
  fill: white;
}
.event-list ul li.blue-2106 details .medal .medal-heart {
  fill: #009fff;
}
.event-list ul li.blue-2106 details .medal .medal-heart-edge {
  fill: white;
}
.event-list ul li.blue-2106 details .medal .medal-eyelet {
  fill: #009fff;
}
.event-list ul li.purple-2107 details .medal .medal-ribbon-edge {
  fill: #009fff !important;
}
.event-list ul li.purple-2107 details .medal .medal-ribbon {
  fill: #002033 !important;
}
.event-list ul li.purple-2107 details .medal .medal-heart {
  fill: #002033 !important;
}
.event-list ul li.purple-2107 details .medal .medal-heart-edge {
  fill: #009fff !important;
}
.event-list ul li.purple-2107 details .medal .medal-eyelet {
  fill: #002033 !important;
}

.event-list ul li.purple-2107 details {
  color: #400259;
}
.event-list ul li.purple-2107 details summary,
.event-list ul li.purple-2107 details > div {
  background-color: #f4daff;
}
.event-list ul li.purple-2107 details summary:before {
  background-color: #dc83ff;
}
.event-list ul li.purple-2107 details summary .toggle-open-close {
  background: linear-gradient(0deg, white 0%, #f4daff 100%);
}
.event-list ul li.purple-2107 details summary .toggle-open-close > span {
  border-color: #400259;
}
.event-list ul li.purple-2107 details summary .progress-o-meter .progress-o-meter-bar {
  border-color: #dc83ff;
}
.event-list ul li.purple-2107 details summary .progress-o-meter .progress-o-meter-bar span {
  border-color: #400259;
}
.event-list ul li.purple-2107 details summary .progress-o-meter .progress-o-meter-bar span:before {
  background-color: #400259;
}
.event-list ul li.purple-2107 details summary .progress-o-meter .progress-o-meter-bar span:after {
  background-color: #f4daff;
}
.event-list ul li.purple-2107 details .custom-form-apply-to-all-checkbox var {
  background-color: #dc83ff;
  border-color: #dc83ff;
}
.event-list ul li.purple-2107 details .medal .medal-ribbon-edge {
  fill: #b806ff;
}
.event-list ul li.purple-2107 details .medal .medal-ribbon {
  fill: white;
}
.event-list ul li.purple-2107 details .medal .medal-heart {
  fill: #b806ff;
}
.event-list ul li.purple-2107 details .medal .medal-heart-edge {
  fill: white;
}
.event-list ul li.purple-2107 details .medal .medal-eyelet {
  fill: #b806ff;
}
.event-list ul li.purple-2107 details .medal .medal-ribbon-edge {
  fill: #b806ff !important;
}
.event-list ul li.purple-2107 details .medal .medal-ribbon {
  fill: #250133 !important;
}
.event-list ul li.purple-2107 details .medal .medal-heart {
  fill: #250133 !important;
}
.event-list ul li.purple-2107 details .medal .medal-heart-edge {
  fill: #b806ff !important;
}
.event-list ul li.purple-2107 details .medal .medal-eyelet {
  fill: #250133 !important;
}

.spawny-emitter {
  pointer-events: none;
}
.spawny-emitter > * {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 998;
  font-style: normal;
  font-size: 8px;
  line-height: 0px;
  opacity: 1;
  transform-origin: top center;
}
.spawny-emitter > *:before {
  content: "⬤";
}

.progress-o-meter .spawny-emitter.spawny-hearts {
  position: absolute;
  top: 16px;
  right: 32px;
  height: 0px;
  width: 0px;
}
.progress-o-meter .spawny-emitter.spawny-hearts > i {
  font-size: 12px;
  opacity: 0.7;
}
.progress-o-meter .spawny-emitter.spawny-hearts > i.spawny-fade {
  transition: opacity 500ms;
  opacity: 0;
}
.progress-o-meter .spawny-emitter.spawny-hearts > i:before {
  content: "♥";
}
.progress-o-meter .spawny-emitter.spawny-sparks {
  position: absolute;
  top: 16px;
  right: 32px;
  height: 0px;
  width: 0px;
}
.progress-o-meter .spawny-emitter.spawny-sparks > i {
  font-size: 0px;
}
.progress-o-meter .spawny-emitter.spawny-sparks > i.spawny-fade {
  transition: opacity 100ms;
  opacity: 0.2;
}
.progress-o-meter .spawny-emitter.spawny-sparks > i:before {
  content: "";
  height: 30px;
  transform: scaleY(3);
  width: 2px;
  background: #ffd100;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 220, 50, 0.7) 90%, rgba(255, 220, 50, 0.8) 100%);
  display: block;
}

.blue-2106 .spawny-emitter > i {
  color: #00a0ff;
}

.purple-2107 .spawny-emitter > i {
  color: #b806ff;
}
