@import "//fonts.googleapis.com/css?family=Arimo";
/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: .5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: .8s;
  -webkit-animation-duration: calc(var(--animate-duration) * .8);
  animation-duration: calc(var(--animate-duration) * .8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}

@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -30px, 0)scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    transform: translate3d(0, -15px, 0)scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: translate3d(0, 0, 0)scaleY(.95);
  }

  90% {
    transform: translate3d(0, -4px, 0)scaleY(1.02);
  }
}

.animate__bounce {
  transform-origin: bottom;
  animation-name: bounce;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.animate__flash {
  animation-name: flash;
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, .75, 1);
  }

  40% {
    transform: scale3d(.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, .85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.animate__rubberBand {
  animation-name: rubberBand;
}

@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  animation-name: shakeX;
}

@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  animation-name: shakeY;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px)rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px)rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px)rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px)rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.animate__headShake {
  animation-name: headShake;
  animation-timing-function: ease-in-out;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0);
  }
}

.animate__swing {
  transform-origin: top;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9)rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.animate__tada {
  animation-name: tada;
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0)rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0)rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0)rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0)rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0)rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg)skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg)skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg)skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg)skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-.78125deg)skewY(-.78125deg);
  }

  77.7% {
    transform: skewX(.390625deg)skewY(.390625deg);
  }

  88.8% {
    transform: skewX(-.195313deg)skewY(-.195313deg);
  }
}

.animate__jello {
  transform-origin: center;
  animation-name: jello;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

@keyframes backInDown {
  0% {
    opacity: .7;
    transform: translateY(-1200px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__backInDown {
  animation-name: backInDown;
}

@keyframes backInLeft {
  0% {
    opacity: .7;
    transform: translateX(-2000px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__backInLeft {
  animation-name: backInLeft;
}

@keyframes backInRight {
  0% {
    opacity: .7;
    transform: translateX(2000px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__backInRight {
  animation-name: backInRight;
}

@keyframes backInUp {
  0% {
    opacity: .7;
    transform: translateY(1200px)scale(.7);
  }

  80% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__backInUp {
  animation-name: backInUp;
}

@keyframes backOutDown {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateY(700px)scale(.7);
  }
}

.animate__backOutDown {
  animation-name: backOutDown;
}

@keyframes backOutLeft {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateX(-2000px)scale(.7);
  }
}

.animate__backOutLeft {
  animation-name: backOutLeft;
}

@keyframes backOutRight {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: .7;
    transform: translateX(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateX(2000px)scale(.7);
  }
}

.animate__backOutRight {
  animation-name: backOutRight;
}

@keyframes backOutUp {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  20% {
    opacity: .7;
    transform: translateY(0)scale(.7);
  }

  100% {
    opacity: .7;
    transform: translateY(-700px)scale(.7);
  }
}

.animate__backOutUp {
  animation-name: backOutUp;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.animate__bounceIn {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0)scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0)scaleY(.9);
  }

  75% {
    transform: translate3d(0, -10px, 0)scaleY(.95);
  }

  90% {
    transform: translate3d(0, 5px, 0)scaleY(.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0)scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0)scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0)scaleX(.98);
  }

  90% {
    transform: translate3d(5px, 0, 0)scaleX(.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0)scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0)scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0)scaleX(.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0)scaleX(.995);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0)scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)scaleY(.9);
  }

  75% {
    transform: translate3d(0, 10px, 0)scaleY(.95);
  }

  90% {
    transform: translate3d(0, -5px, 0)scaleY(.985);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.animate__bounceOut {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0)scaleY(.985);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)scaleY(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)scaleY(3);
  }
}

.animate__bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0)scaleX(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0)scaleX(2);
  }
}

.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0)scaleX(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0)scaleX(2);
  }
}

.animate__bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0)scaleY(.985);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0)scaleY(.9);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)scaleY(3);
  }
}

.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.animate__fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.animate__fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.animate__fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}

.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}

.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}

.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}

.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

@keyframes flip {
  from {
    animation-timing-function: ease-out;
    transform: perspective(400px)scale3d(1, 1, 1)translate3d(0, 0, 0)rotate3d(0, 1, 0, -360deg);
  }

  40% {
    animation-timing-function: ease-out;
    transform: perspective(400px)scale3d(1, 1, 1)translate3d(0, 0, 150px)rotate3d(0, 1, 0, -190deg);
  }

  50% {
    animation-timing-function: ease-in;
    transform: perspective(400px)scale3d(1, 1, 1)translate3d(0, 0, 150px)rotate3d(0, 1, 0, -170deg);
  }

  80% {
    animation-timing-function: ease-in;
    transform: perspective(400px)scale3d(.95, .95, .95)translate3d(0, 0, 0)rotate3d(0, 1, 0, 0);
  }

  to {
    animation-timing-function: ease-in;
    transform: perspective(400px)scale3d(1, 1, 1)translate3d(0, 0, 0)rotate3d(0, 1, 0, 0);
  }
}

.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    opacity: 0;
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }

  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, -20deg);
  }

  60% {
    opacity: 1;
    transform: perspective(400px)rotate3d(1, 0, 0, 10deg);
  }

  80% {
    transform: perspective(400px)rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.animate__flipInX {
  animation-name: flipInX;
  backface-visibility: visible !important;
}

@keyframes flipInY {
  from {
    opacity: 0;
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(0, 1, 0, 90deg);
  }

  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(0, 1, 0, -20deg);
  }

  60% {
    opacity: 1;
    transform: perspective(400px)rotate3d(0, 1, 0, 10deg);
  }

  80% {
    transform: perspective(400px)rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.animate__flipInY {
  animation-name: flipInY;
  backface-visibility: visible !important;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    transform: perspective(400px)rotate3d(1, 0, 0, -20deg);
  }

  to {
    opacity: 0;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }
}

.animate__flipOutX {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    transform: perspective(400px)rotate3d(0, 1, 0, -15deg);
  }

  to {
    opacity: 0;
    transform: perspective(400px)rotate3d(0, 1, 0, 90deg);
  }
}

.animate__flipOutY {
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  animation-name: flipOutY;
  backface-visibility: visible !important;
}

@keyframes lightSpeedInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0)skewX(-30deg);
  }

  60% {
    opacity: 1;
    transform: skewX(20deg);
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)skewX(30deg);
  }

  60% {
    opacity: 1;
    transform: skewX(-20deg);
  }

  80% {
    transform: skewX(5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)skewX(30deg);
  }
}

.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)skewX(-30deg);
  }
}

.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -200deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateIn {
  transform-origin: center;
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInDownLeft {
  transform-origin: 0 100%;
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInDownRight {
  transform-origin: 100% 100%;
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInUpLeft {
  transform-origin: 0 100%;
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -90deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rotateInUpRight {
  transform-origin: 100% 100%;
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 200deg);
  }
}

.animate__rotateOut {
  transform-origin: center;
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 45deg);
  }
}

.animate__rotateOutDownLeft {
  transform-origin: 0 100%;
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}

.animate__rotateOutDownRight {
  transform-origin: 100% 100%;
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
  }
}

.animate__rotateOutUpLeft {
  transform-origin: 0 100%;
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: rotate3d(0, 0, 1, 90deg);
  }
}

.animate__rotateOutUpRight {
  transform-origin: 100% 100%;
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate3d(0, 0, 1, 80deg);
  }

  40%, 80% {
    opacity: 1;
    animation-timing-function: ease-in-out;
    transform: rotate3d(0, 0, 1, 60deg);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}

.animate__hinge {
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  transform-origin: 0 0;
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform-origin: bottom;
    transform: scale(.1)rotate(30deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0)rotate3d(0, 0, 1, 120deg);
  }
}

.animate__rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(0, -1000px, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(0, 60px, 0);
  }
}

.animate__zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(-1000px, 0, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(10px, 0, 0);
  }
}

.animate__zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(1000px, 0, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(-10px, 0, 0);
  }
}

.animate__zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.1, .1, .1)translate3d(0, 1000px, 0);
  }

  60% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.475, .475, .475)translate3d(0, -60px, 0);
  }
}

.animate__zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.475, .475, .475)translate3d(0, -60px, 0);
  }

  to {
    opacity: 0;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.1, .1, .1)translate3d(0, 2000px, 0);
  }
}

.animate__zoomOutDown {
  transform-origin: bottom;
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475)translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1)translate3d(-2000px, 0, 0);
  }
}

.animate__zoomOutLeft {
  transform-origin: 0;
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475)translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1)translate3d(2000px, 0, 0);
  }
}

.animate__zoomOutRight {
  transform-origin: 100%;
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    transform: scale3d(.475, .475, .475)translate3d(0, 60px, 0);
  }

  to {
    opacity: 0;
    animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    transform: scale3d(.1, .1, .1)translate3d(0, -2000px, 0);
  }
}

.animate__zoomOutUp {
  transform-origin: bottom;
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    visibility: visible;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    visibility: visible;
    transform: translate3d(100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    visibility: visible;
    transform: translate3d(0, 100%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.animate__slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.animate__slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.animate__slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.animate__slideOutUp {
  animation-name: slideOutUp;
}

.toastify {
  color: #fff;
  opacity: 0;
  cursor: pointer;
  z-index: 2147483647;
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  border-radius: 2px;
  max-width: calc(50% - 20px);
  padding: 12px 20px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
  position: fixed;
  box-shadow: 0 3px 6px -1px #0000001f, 0 10px 36px -4px #4d60e84d;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  color: #fff;
  cursor: pointer;
  opacity: .4;
  background: none;
  border: 0;
  padding: 0 5px;
  font-family: inherit;
  font-size: 1em;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  border-radius: 2px;
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
}

.toastify-center {
  max-width: -moz-fit-content;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

@media only screen and (width <= 360px) {
  .toastify-right, .toastify-left {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-car, .odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-car .odometer-digit .odometer-digit-spacer {
  vertical-align: middle;
  visibility: hidden;
  display: inline-block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon-inner {
  -webkit-backface-visibility: hidden;
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-car .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-car .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -o-transition: -o-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -o-transition: -o-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  transition: transform 2s;
  transform: translateY(0);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-car {
  color: #000;
  text-align: center;
  vertical-align: middle;
  background: #ffbc0c;
  border: 4px solid #000;
  border-radius: 12px;
  outline: none;
  width: calc(100% - 279px);
  height: 30px;
  margin: 1px 0 6px 10px;
  padding: 4px 5px 6px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  transition: all .3s;
  display: none;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit, .odometer.odometer-auto-theme .odometer-digit:last-child, .odometer.odometer-theme-car .odometer-digit:last-child {
  padding: 0 3px 0 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  left: .15em;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}

@font-face {
  font-family: Damion;
  src: url("Damion-Regular.47a2215c.woff2") format("woff2"), url("Damion-Regular.36050322.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

#connect_3_cover {
  z-index: 1000;
  opacity: 1;
  background: #ffbc0c;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

#connect_3_message {
  float: left;
  color: #000;
  z-index: 11;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 46px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  animation: 1.5s linear infinite connect_3_blinker;
  display: block;
  position: absolute;
  top: calc(50% - 23px);
}

@keyframes connect_3_blinker {
  50% {
    opacity: .25;
  }
}

#connect, #disconnect {
  font-family: Damion, serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
}

#connect_3_chooser {
  z-index: 1001;
  opacity: 0;
  background: none;
  border-radius: 12px;
  width: 300px;
  display: none;
  position: fixed;
  top: calc(50% - 120px);
  left: calc(50% - 150px);
}

#connect_3_chooser button {
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  -webkit-tap-highlight-color: transparent;
  background: #1f1f1f;
  border: none;
  border-radius: 10px;
  outline: none;
  width: calc(100% - 20px);
  margin: 0 10px 15px;
  padding: 11px 10px 12px;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #ffbc0c;
}

#connect_3_chooser button#connect_3_cancel {
  margin: 0 10px;
}

#connect_3_chooser button:disabled {
  display: none;
}

#connect_3_chooser button:hover {
  box-shadow: 0 0 10px 3px #ffbc0c;
}

.connect_3_choice img {
  width: 39px;
  height: 38px;
  margin: -6px 0 0 -5px;
  display: block;
  position: absolute;
}

button#connect_3_cancel img {
  filter: invert(0);
  width: 31px;
  height: 29px;
  margin: -2px 0 0 -2px;
}

button.connect_3_choice span {
  vertical-align: top;
  text-shadow: 0 0 5px #ffbc0c;
  height: 24px;
  margin: 2px 0 0 98px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 23px;
  display: inline-block;
}

button#connect_3_backpack span {
  color: #fff;
  padding-bottom: 1px;
  transition: all .3s;
}

button#connect_3_backpack:hover span {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
}

button#connect_3_solflare span {
  color: #fff;
  transition: all .3s;
}

button#connect_3_solflare:hover span {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
}

button#connect_3_phantom span {
  color: #fff;
  transition: all .3s;
}

button#connect_3_phantom:hover span {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
}

button#connect_3_cancel span {
  color: #fff;
  transition: all .3s;
}

button#connect_3_cancel:hover span {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
}

.disconnect_3_button {
  display: none;
}

.toastify {
  text-align: center;
  width: 300px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 30px;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.toastify.on {
  color: #000;
  border-radius: 10px;
  padding: 5px;
}

.toast-close {
  display: none;
}

#intro {
  float: left;
  color: #f7f7f7;
  text-shadow: none;
  z-index: 11;
  text-align: center;
  background: none;
  width: 100%;
  height: 400px;
  font-family: Damion, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  display: none;
  position: absolute;
  top: calc(50% - 196px);
}

#intro button#splash {
  cursor: pointer;
  color: #1f1f1f;
  background: none;
  border: 0;
  border-radius: 10px;
  outline: none;
  width: 130px;
  margin: 0;
  padding: 38px 0 0;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 1000;
  transition: all .3s;
}

#intro button#splash:hover {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
}

html, body {
  float: left;
  z-index: 1;
  background: #141414;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

img, input, button, div {
  -webkit-tap-highlight-color: #0000;
  -webkit-tap-highlight-color: transparent;
}

#video-background {
  float: left;
  z-index: 2;
  background: #ffbc0c;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

#video {
  object-fit: cover;
  height: 100%;
  min-height: 800px;
  margin: 0;
}

#main {
  float: left;
  z-index: 3;
  background: none;
  border-radius: 20px;
  width: 1400px;
  max-width: 1400px;
  height: calc(100% - 20px);
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 21px;
  left: calc(50% - 700px);
}

#top {
  text-align: center;
  border-radius: 20px 20px 0 0;
  width: 1118px;
  height: auto;
  margin: 0 auto;
}

#top img {
  margin-bottom: -5px;
}

#bottom {
  text-align: center;
  margin: -4px auto 0;
}

#machine {
  background-image: url("machine-body.243444f9.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 0 0 16px;
}

#sound {
  float: left;
  cursor: pointer;
  z-index: 5;
  filter: invert();
  background: center / 26px 26px no-repeat;
  border: 0;
  outline: none;
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  bottom: 7px;
  left: 7px;
}

#sound.on {
  background-image: url("on.e4f6a6e7.png");
}

#sound.muted {
  background-image: url("muted.ebad1b8e.png");
}

button {
  padding-bottom: 3px;
}

button.button {
  cursor: pointer;
  color: #ffbc0c;
  background: #111c;
  border: 0;
  border-radius: 23px;
  width: 150px;
  height: 45px;
  margin: 17px 14px 0 0;
  font-size: 14px;
  font-weight: bold;
  transition: all .3s;
}

button.button:disabled {
  color: #222;
  box-shadow: 0 0 3px #111;
}

#connect, #disconnect, #reset_button {
  float: right;
  cursor: pointer;
  color: #fff;
  z-index: 4;
  text-shadow: 0 0 5px #ffbc0c;
  background: #171717;
  border: 0;
  border-radius: 6px;
  width: 105px;
  height: 36px;
  margin: 0;
  padding-top: 1px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  transition: all .3s;
  position: absolute;
  top: 10px;
  right: 10px;
}

#connect:disabled, #connect:disabled:hover {
  cursor: default;
  opacity: .2;
  text-shadow: none;
  animation: none;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #f9df95;
  }

  to {
    text-shadow: 0 0 20px #f9df95;
  }
}

#disconnect, #reset_button {
  display: none;
}

#connect:hover, #disconnect:hover {
  color: #ffbc0c;
  text-shadow: 0 0 5px #ffbc0c;
}

#view {
  float: left;
  z-index: 3;
  background: none;
  border-radius: 0 0 10px 10px;
  width: 1200px;
  height: calc(100% - 190px);
  margin-top: 0;
  padding: 0;
  display: block;
  position: absolute;
  left: calc(50% - 600px);
  overflow: hidden;
}

#view-spacer {
  height: 44px;
}

.game_launcher {
  cursor: pointer;
  background: #111c;
  border-radius: 10px;
  width: calc(50% - 30px);
  height: 400px;
  margin: 18px 0 0 18px;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 0 3px #f9df95;
}

.game_launcher:hover {
  box-shadow: 0 0 10px 3px #f9df95;
}

@media only screen and (width <= 680px) {
  .game_launcher {
    height: 300px;
  }
}

@media only screen and (width <= 570px) {
  .game_launcher {
    height: 200px;
  }
}

@media only screen and (width <= 470px) {
  .game_launcher {
    height: 150px;
  }
}

@media only screen and (width <= 370px) {
  .game_launcher {
    height: 100px;
  }
}

#xqr {
  opacity: .1;
  margin: 21px auto;
  transition: all .3s;
  display: none;
}

#xqr img {
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding: 0;
  transition: all .3s;
  display: block;
}

#xqr._big {
  float: left;
  border-radius: 10px;
  width: 300px;
  height: 300px;
  position: fixed;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
}

#xqr._big img {
  border-radius: 15px;
  width: 300px;
  height: 300px;
}

#home {
  width: 1118px;
  margin: 0 auto;
}

.house_view {
  display: none;
}

#house, #house_winners, #house_settings, #house_claims, #house_contests, #house_leaderboards, #house_stats, #house_resources, #house_club {
  border-radius: 0 0 12px 12px;
  width: 913px;
  margin: 0 auto 6%;
  padding: 14px 0;
}

#house {
  padding: 0 0 14px;
  display: block;
}

#new {
  float: left;
  z-index: 3;
  background: #1f1f1ff5;
  border-radius: 0;
  width: 100%;
  height: calc(100% - 300px);
  font-family: Arial, sans-serif;
  display: none;
  position: absolute;
  top: 240px;
  left: 0;
  overflow: hidden;
}

#main-logo {
  cursor: pointer;
  width: 58px;
  margin: 0 0 -11px 12px;
}

#first-logo {
  border: 0;
  border-radius: 135px;
  width: 250px;
  margin: 10px auto -146px;
  display: block;
}

#first-title {
  text-align: center;
  color: #000;
  margin: -6px 0 -32px;
  padding: 0;
  font-size: 74px;
  font-weight: 500;
}

.img-down {
  opacity: .15;
  width: 40px;
  margin: 46px auto 18px;
  display: block;
}

#first-down {
  margin: 25px auto 10px;
}

#last-down {
  margin: 48px auto -15px;
}

#first-time {
  text-align: center;
  text-shadow: 0 0 5px #ffbc0c;
  margin-top: 20px;
  padding: 15px 0 27px;
  font-size: 34px;
  font-weight: 800;
}

#first-need, #first-ready {
  text-align: center;
  text-shadow: 0 0 5px #ffbc0c;
  padding: 0 0 27px;
  font-size: 34px;
  font-weight: 800;
}

#first-desc {
  text-align: center;
  background: #161616;
  border-radius: 20px;
  width: 325px;
  margin: 0 auto 28px;
  padding: 20px 20px 23px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 4px #ffbc0c;
}

#first-wallets {
  background: #161616;
  border-radius: 20px;
  width: 345px;
  margin: 0 auto 28px;
  padding: 10px 10px 9px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 4px #ffbc0c;
}

#first-wallets a {
  color: #ffbc0c;
  vertical-align: middle;
  height: 50px;
  font-size: 17px;
  line-height: 50px;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

#first-wallets a:hover {
  color: #fff;
}

#first-wallets span.sep {
  color: #fff;
  vertical-align: middle;
  height: 50px;
  margin: 0 17px;
  font-size: 20px;
  line-height: 50px;
  text-decoration: none;
  display: inline-block;
}

#first-wallets img {
  vertical-align: top;
  width: 50px;
  margin-right: 8px;
  display: inline-block;
}

#first-accept {
  background: #161616;
  border-radius: 20px;
  width: 325px;
  margin: 0 auto;
  padding: 20px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 4px #ffbc0c;
}

#first-age {
  text-align: center;
  width: 100%;
  margin: 0 auto 25px;
  display: block;
}

#first-age input {
  width: 100px;
  margin: 0 auto;
  display: block;
}

#first-show {
  text-align: center;
  width: 100%;
  margin: 10px auto 0;
}

#first-show span {
  margin-left: 5px;
}

#first-age input, #first-show input, input#stayopen {
  cursor: pointer;
  accent-color: #ffbc0c;
  color: #000;
  background-color: #fff;
  border: 0;
  outline: none;
  margin-bottom: 12px;
  scale: 1.5;
}

input#stayopen {
  scale: 1.25;
}

#openchoice {
  text-align: center;
  margin: 20px 0;
  display: block;
}

#stayopen_label {
  cursor: pointer;
  color: #1f1f1f;
  margin-left: 5px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

#first-connect {
  margin: 50px auto 0;
}

#first-connect button {
  cursor: pointer;
  color: #fff;
  background: #111c;
  border: 0;
  border-radius: 9px;
  width: 150px;
  height: 45px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .3s;
  animation: 2s ease-in-out infinite alternate glow;
  display: block;
  box-shadow: 0 0 3px #ffbc0c;
}

#first-connect button:hover {
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#first-connect button:disabled, #first-connect button:disabled:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #1c1c1c;
  cursor: default;
  background: #090909;
  animation: none;
}

#first-spacer {
  clear: both;
  height: 100px;
}

#house_token_img {
  opacity: .1;
  vertical-align: top;
  width: 47px;
  height: 47px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: brightness();
  cursor: pointer;
  background: center / 60px 60px no-repeat;
  border: 0;
  border-radius: 24px;
  margin: 2px 0 0 25px;
  transition: all 2s;
  display: inline-block;
}

#house_token_img:hover {
  background: center / 50px 50px no-repeat;
}

#token_display {
  color: #000;
  text-align: center;
  vertical-align: middle;
  background: #ffbc0c;
  border: 4px solid #000;
  border-radius: 12px;
  outline: none;
  width: 120px;
  height: 30px;
  margin: 1px 0 6px 10px;
  padding: 5px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  transition: all .3s;
  display: inline-block;
}

#token_player {
  color: #000;
  text-align: center;
  vertical-align: middle;
  background: #ffbc0c;
  border: 4px solid #000;
  border-radius: 12px;
  outline: none;
  width: calc(100% - 279px);
  height: 30px;
  margin: 1px 0 6px 10px;
  padding: 5px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  transition: all .3s;
  display: inline-block;
  overflow: hidden;
}

#house_token {
  vertical-align: top;
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: #111;
  border: 0;
  border-radius: 24px;
  outline: none;
  width: calc(60% - 210px);
  max-height: 48px;
  margin: 1px 0 6px 11px;
  padding: 5px;
  font-family: Damion, serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: none;
  box-shadow: 0 0 3px #ffbc0c;
}

#house_token:disabled {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

#house_token:hover {
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#house_token:disabled:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

#house_go {
  width: 100%;
  margin: 0 -5px;
}

#house_token_balance {
  vertical-align: middle;
  color: #000;
  text-align: center;
  background: #ffbc0c;
  border: 0;
  border-radius: 24px;
  outline: none;
  width: calc(60% - 105px);
  max-height: 48px;
  margin: 1px 0 5px 12px;
  padding: 5px 5px 6px;
  font-family: Damion, serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: none;
}

input#max_jackpot {
  opacity: .1;
  color: #fff;
  text-align: center;
  background: url("machine-jackpot.02e24a0d.png") top / auto 100% no-repeat;
  border: 0;
  border-radius: 0;
  outline: none;
  width: 243px;
  height: 59px;
  margin: 0 auto 5px;
  padding: 20px 0 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .3s;
  display: block;
}

#house_shadow {
  background-image: url("machine-shadow.0c1f0e4a.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: calc(100% - 15px);
  margin: 2px auto 18px;
}

#rollers {
  opacity: .1;
  margin: 2px 0 0;
  padding-bottom: 1px;
}

#rollers .winner {
  box-shadow: 0 0 220px 22px #f9df95;
}

#machine_btns {
  width: 104%;
  margin: 0 auto 0 -2%;
  padding-top: 0;
  padding-bottom: 4px;
}

#progressBar {
  opacity: .1;
  background: #0f0f0f;
  border-radius: 12px;
  height: 24px;
  margin: 5px 16px 0;
  transition: all .3s;
  display: block;
  overflow: hidden;
}

#progressTx {
  float: left;
  text-align: center;
  background: #222;
  border: 0;
  border-radius: 12px 0 0 12px;
  outline: none;
  width: 40px;
  height: 24px;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition: all .5s ease-in-out;
  display: block;
  position: absolute;
}

#progressPercent {
  float: right;
  text-align: left;
  background: #222;
  border: 0;
  border-radius: 0 12px 12px 0;
  outline: none;
  width: 40px;
  height: 24px;
  padding: 0 0 0 8px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition: all .5s ease-in-out;
}

#progress {
  float: left;
  background: #ffbc0c;
  border-radius: 0 12px 12px 0;
  width: 26px;
  height: 24px;
  margin: 0 0 0 40px;
  transition: all 1.1s ease-out;
  display: block;
}

#progress_lambo {
  float: right;
  height: 24px;
  margin: 0 -69px 0 0;
  display: block;
}

#house_minmax {
  width: calc(100% - 63px);
  margin: 0 auto 9px 29px;
}

#house_minmax button {
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  color: #fff;
  background: none;
  border: 0;
  width: calc(33% - 6px);
  height: 52px;
  margin: 0 13px 0 0;
  font-family: Damion, serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: inline-block;
}

#house_minmax button#house_min {
  background: url("machine-min.4546f199.png") center / 100% no-repeat;
}

#house_minmax button#house_med {
  background: url("machine-med.614ab65a.png") center / 100% no-repeat;
}

#house_minmax button#house_max {
  background: url("machine-max.7ab53b07.png") center / 100% no-repeat;
}

#house_minmax button#house_min:hover {
  background: url("machine-min-active.a33b73f0.png") center / 100% no-repeat;
}

#house_minmax button#house_med:hover {
  background: url("machine-med-active.bba4aba8.png") center / 100% no-repeat;
}

#house_minmax button#house_max:hover {
  background: url("machine-max-active.1ec93d43.png") center / 100% no-repeat;
}

#house_minmax button#house_max {
  margin-right: 0;
}

#house_minmax button:disabled {
  color: #222;
  text-shadow: none;
  opacity: .1;
}

#house_minmax button#house_min.minmax_active {
  background: url("machine-min-active.a33b73f0.png") center / 100% no-repeat;
}

#house_minmax button#house_med.minmax_active {
  background: url("machine-med-active.bba4aba8.png") center / 100% no-repeat;
}

#house_minmax button#house_max.minmax_active {
  background: url("machine-max-active.1ec93d43.png") center / 100% no-repeat;
}

#house_minmax button.minmax_active:disabled {
  color: #222;
  text-shadow: none;
  opacity: .1;
}

#kiosk_check {
  text-align: center;
  width: 100px;
  margin: 0 auto 9px;
  font-family: Damion;
  font-size: 20px;
  display: none;
}

#kiosk {
  accent-color: #f9df95;
  cursor: pointer;
  scale: 1.5;
}

#house.disabled #kiosk_check {
  opacity: .1;
}

#kiosk:disabled {
  display: none;
}

#house-x {
  filter: invert(100);
  outline: none;
  width: 20px;
  height: 20px;
  margin: 21px auto 0;
  transition: all .3s;
  display: block;
}

#house-x img {
  width: 100%;
}

#house-x:hover {
  opacity: .5;
}

.house_roller {
  background: #0303038b;
  border: 6px solid #3b3b3b;
  border-radius: 14px;
  width: calc(25% - 37px);
  height: 216.5px;
  margin: 12px -3px 0 5px;
  padding: 6px;
  transition: all .3s;
  display: inline-block;
}

#roller_1 {
  margin-left: 17.5px;
}

.spinning {
  border: 6px solid #ffbc0c;
}

.lose {
  border: 6px solid #3b3b3b;
}

.win {
  border: 6px solid #ffbc0c;
}

#house_wager {
  vertical-align: top;
  text-align: center;
  background: url("wager.16bfd2ad.png") top / auto 100% no-repeat;
  border: 0;
  border-radius: 0;
  outline: none;
  width: calc(100% - 282px);
  height: 70px;
  margin: 0 8px 0 0;
  padding: 6px 5px 9px;
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  transition: all .3s;
  display: inline-block;
}

#house_wager::placeholder {
  color: #363636;
}

#house_wager:disabled::placeholder {
  color: #222;
}

#house_spin {
  color: #fff;
  box-shadow: none;
  background: url("spin.9a1a57d5.png") top / 100% no-repeat;
  border: 0;
  border-radius: 0;
  outline: none;
  width: 264px;
  height: 80px;
  margin: 3px 0 0;
  font-family: Damion, serif;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: inline-block;
}

#house_spin:disabled {
  color: #222;
  box-shadow: none;
  filter: grayscale();
  opacity: .25;
  animation: none;
}

#house_wager.amount_low {
  color: #414141;
}

#house_winners, #house_settings, #house_claims, #house_contests, #house_leaderboards, #house_stats, #house_resources, #house_club {
  padding: 0 0 16px;
  font-family: Oxygen, sans-serif;
}

#house_leaderboards {
  padding: 0;
  font-family: Oxygen, sans-serif;
}

.house_title {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px #ffbc0c;
  min-height: 55px;
  padding: 0 0 8px;
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.house_title span {
  display: none;
}

.house_sub_title {
  text-align: center;
  color: #ffbc0c;
  text-shadow: 0 0 5px #ffbc0c;
  text-transform: uppercase;
  margin: -10px 0 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.house_row {
  color: #fff;
  margin: 0;
}

.house_split {
  vertical-align: middle;
  text-align: center;
  width: 20px;
  display: inline-block;
}

#house .machine_controls {
  height: 0;
  margin: 0;
}

#house_winners .machine_controls {
  height: 149px;
  margin: 18px 0 0;
}

#house_claims .machine_controls {
  height: 149px;
  margin: 44px 0 0;
}

#house_stats .machine_controls, #house_settings .machine_controls, #house_resources .machine_controls {
  height: 149px;
  margin: 18px 0 0;
}

#house_club .machine_controls {
  height: 149px;
  margin: 16px 0 0;
}

#house_settings .house_rows .house_left, #house_claims .house_rows .house_left, #house_winners .house_rows .house_left, #house_stats .house_rows .house_left, #house_resources .house_rows .house_left {
  vertical-align: top;
  color: #ffbc0c;
  text-shadow: 0 0 5px #ffbc0c;
  text-transform: uppercase;
  background: #111;
  border-top: 0;
  border-bottom: 1px solid #020202;
  width: 210px;
  height: 45px;
  margin: 0 0 0 17px;
  padding: 0 12px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 44px;
  display: inline-block;
}

#house_stats .house_rows .house_left {
  border-top: 0;
}

#house_settings .house_rows .house_row:first-of-type .house_left, #house_claims .house_rows .house_row:first-of-type .house_left, #house_stats .house_rows .house_row:first-of-type .house_left, #house_resources .house_rows .house_row:first-of-type .house_left, #house_claims .house_rows .house_row:first-of-type .house_left {
  border-top: 0;
  border-top-left-radius: 10px;
}

#house_claims .house_rows .house_row .house_left {
  width: 208px;
}

#house_stats .house_levels .house_row:first-of-type .house_left {
  border-radius: 0;
}

#house_settings .house_rows .house_row .house_right, #house_claims .house_rows .house_row .house_right, #house_winners .house_rows .house_row .house_right, #house_stats .house_rows .house_row .house_right, #house_resources .house_rows .house_row .house_right {
  vertical-align: middle;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 6px #fff;
  background: #111;
  border-top: 1px solid #131313;
  border-bottom: 1px solid #020202;
  width: calc(100% - 310px);
  height: 44px;
  margin: 0;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
  line-height: 44px;
  display: inline-block;
  overflow: hidden;
}

#house_winners .house_rows .house_row .house_right, #house_settings .house_rows .house_row .house_right, #house_stats .house_rows .house_row .house_right, #house_resources .house_rows .house_row .house_right {
  width: calc(100% - 312px);
}

#house_settings .house_rows .house_row:first-of-type .house_right, #house_claims .house_rows .house_row:first-of-type .house_right, #house_stats .house_rows .house_row:first-of-type .house_right, #house_resources .house_rows .house_row:first-of-type .house_right {
  border-top-right-radius: 10px;
}

#house_stats .house_rows .house_levels .house_row .house_right {
  border-top: 1px solid #131313;
  border-bottom: 1px solid #020202;
  border-radius: 0;
}

#house_winners .house_rows .house_row .house_left {
  line-height: auto;
  height: auto;
}

#house_winners .house_rows .house_row .house_right {
  line-height: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

#house_settings .house_rows .house_row:last-of-type, #house_claims .house_rows .house_row:last-of-type, #house_winners .house_rows .house_row:last-of-type, #house_stats .house_rows .house_row:last-of-type, #house_resources .house_rows .house_row:last-of-type, #house_winners .house_rows .house_row:last-of-type {
  margin-bottom: 2px;
}

#house_settings .house_rows .house_row:last-of-type .house_left, #house_claims .house_rows .house_row:last-of-type .house_left, #house_stats .house_rows .house_row:last-of-type .house_left, #house_resources .house_rows .house_row:last-of-type .house_left {
  border-bottom-left-radius: 10px;
}

#house_settings .house_rows .house_row:last-of-type .house_right, #house_claims .house_rows .house_row:last-of-type .house_right, #house_stats .house_rows .house_row:last-of-type .house_right, #house_resources .house_rows .house_row:last-of-type .house_right {
  border-bottom-right-radius: 10px;
}

#house_settings .house_rows .house_row .house_right a.website_link, #house_stats .house_rows .house_row .house_right a.website_link, #house_claims .house_rows .house_row .house_right a.website_link {
  color: #ffbc0c;
  cursor: pointer;
  text-shadow: none;
  text-decoration: none;
}

#house_resources .house_rows .house_row .house_right a.website_link {
  color: #fff;
  cursor: pointer;
  font-family: Ubuntu, sans-serif;
  text-decoration: none;
}

#house_top {
  opacity: .1;
  height: 60px;
  margin-top: -2px;
}

#menu-opener {
  float: left;
  z-index: 3;
  cursor: pointer;
  filter: invert(100);
  background: url("menu.ffb1622b.png") center / 26px 26px no-repeat;
  border: 0;
  outline: none;
  width: 26px;
  height: 26px;
  transition: all .3s;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
}

#menu-opener:hover {
  opacity: .75;
}

#house_nav {
  float: left;
  z-index: 3;
  background: #ffbc0c;
  width: 300px;
  height: 100%;
  margin: 0;
  transition: all .4s;
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
}

#house_nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

#house_nav ul li {
  width: 100%;
  display: block;
}

#house_nav ul li button {
  text-align: center;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 5px #ffbc0c;
  background: #171717;
  border: 0;
  border-radius: 8px;
  width: calc(100% - 28px);
  height: 45px;
  margin: 17px auto 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .3s;
  display: block;
}

#house_nav ul li button:hover, #house_nav ul li button.house_active {
  text-shadow: 0 0 20px #ffbc0c;
  color: #ffbc0c;
}

#house_nav ul li button.house_active:disabled {
  color: #fff;
}

#house_nav ul li button:disabled {
  color: #575757;
  opacity: .4;
}

#house_nav ul li button:disabled:hover {
  text-shadow: none;
  box-shadow: 0 0 3px #f9df95;
}

#house_nav ul li.house_testers {
  display: none;
}

#house_priority {
  width: calc(100% - 40px);
  height: 62px;
  margin: 0 auto 38px;
  display: none;
}

#house_priority ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#house_priority ul li {
  vertical-align: middle;
  width: 20%;
  display: inline-block;
}

#house_priority ul li button {
  text-align: center;
  cursor: pointer;
  color: #f9df95;
  background: #111c;
  border: 0;
  border-radius: 23px;
  width: 154px;
  height: 45px;
  margin: 17px auto 0;
  font-family: Damion, serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #f9df95;
}

#house_priority ul li button:hover {
  text-shadow: 0 0 20px #f9df95;
  box-shadow: 0 0 10px 3px #f9df95;
}

#house_priority ul li button.priority_active {
  text-shadow: 0 0 20px #f9df95;
  color: #fff;
  box-shadow: 0 0 10px 3px #f9df95;
}

#house_priority ul li button:disabled {
  color: #222;
  text-shadow: none;
  box-shadow: 0 0 3px #111;
}

#claim_priority {
  width: calc(100% - 40px);
  height: 62px;
  margin: 18px auto 38px;
  display: none;
}

#claim_priority ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

#claim_priority ul li {
  vertical-align: middle;
  width: 20%;
  display: inline-block;
}

#claim_priority ul li button {
  text-align: center;
  cursor: pointer;
  color: #f9df95;
  background: #111c;
  border: 0;
  border-radius: 23px;
  width: 154px;
  height: 45px;
  margin: 17px auto 0;
  font-family: Damion, serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #f9df95;
}

#claim_priority ul li button:hover {
  text-shadow: 0 0 20px #f9df95;
  box-shadow: 0 0 10px 3px #f9df95;
}

#claim_priority ul li button.claim_active {
  text-shadow: 0 0 20px #f9df95;
  color: #fff;
  box-shadow: 0 0 10px 3px #f9df95;
}

#claim_priority ul li button:disabled {
  color: #222;
  text-shadow: none;
  box-shadow: 0 0 3px #111;
}

#house_winners .house_rows .house_row {
  margin-bottom: 16px;
}

#house_winners .house_rows .house_row .house_left {
  text-align: center;
  text-shadow: 0 0 5px #ffbc0c;
  border-radius: 10px;
  width: 234px;
  padding: 65px 0 56px;
  font-size: 28px;
}

#house_winners .house_rows .house_row .house_right {
  background: #111;
  border-radius: 10px;
  width: calc(100% - 288px);
}

.match_name {
  float: left;
  text-align: center;
  text-shadow: 0 0 5px #fff;
  text-transform: uppercase;
  background: #000;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: calc(100% - 30px);
  height: 30px;
  margin: -50px 10px 0;
  padding: 0 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: block;
}

.x_value {
  margin-top: 7px;
  margin-bottom: -17px;
}

.winners_img {
  vertical-align: top;
  border-left: 1px solid #1d1d1d70;
  border-right: 1px solid #000000b6;
  width: calc(25% - 2px);
  margin: 0;
  padding: 0;
}

.house_right .winners_img:first-of-type {
  border-left: 0;
  width: calc(25% - 2px);
}

.house_right .winners_img:last-of-type {
  border-right: 0;
  width: calc(25% - 2px);
}

.roller_img {
  border-radius: 5px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: none;
}

.roller_show {
  display: block;
}

input#select_all {
  float: left;
  cursor: pointer;
  accent-color: #ffbc0c;
  color: #000;
  border: 0;
  outline: none;
  margin: 21px 0 0 24px;
  padding: 0;
  display: block;
  position: absolute;
  transform: scale(1.55);
}

input.claim_choices {
  float: left;
  cursor: pointer;
  accent-color: #ffbc0c;
  color: #000;
  border: 0;
  outline: none;
  margin: 14px 0 0 2px;
  padding: 0;
  display: block;
  position: absolute;
  transform: scale(1.55);
}

input.claim_choices:disabled {
  opacity: .25;
}

#house_claims .house_rows .house_row .house_right span {
  color: #fff;
  text-shadow: 0 0 6px #fff;
  cursor: pointer;
  transition: all .3s;
}

#house_claims .house_rows .house_row .house_right span:hover {
  color: #fff;
  text-shadow: 0 0 20px #fff;
}

#claim {
  text-align: center;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 5px #ffbc0c;
  background: #111c;
  border: 0;
  border-radius: 9px;
  width: 150px;
  height: 45px;
  margin: 36px auto 26px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #ffbc0c;
}

#claim:hover {
  color: #fff;
  text-shadow: 0 0 20px #ffbc0c;
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#claim:disabled {
  color: #222;
  text-shadow: none;
  box-shadow: 0 0 3px #000;
}

.spacer {
  height: 19px;
}

button#scrollUp {
  float: left;
  cursor: pointer;
  z-index: 5;
  background: none;
  border: 0;
  outline: none;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 6px;
}

button#scrollUp img {
  filter: invert(100);
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  display: block;
}

#mcswap-transaction-preview {
  float: left;
  z-index: 1002;
  color: #111;
  background: #fff;
  border-radius: 10px;
  width: 300px;
  height: auto;
  padding: 18px;
  font-family: Ubuntu;
  display: none;
  position: fixed;
  top: calc(50% - 187px);
  left: calc(50% - 168px);
  box-shadow: 0 0 150px 80px #ffc905;
}

#mcswap-transaction-close {
  filter: invert();
  float: right;
  color: #010101;
  cursor: pointer;
  width: 18px;
  height: 18px;
  transition: all .3s;
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
}

#mcswap-transaction-close:hover {
  opacity: .5;
}

#mcswap-pay-qr {
  margin-top: 9px;
  transition: all .3s;
  display: block;
  overflow: hidden;
}

#mcswap-payment-logo {
  border: 0;
  outline: none;
  width: 26%;
  margin: 0;
  padding: 0;
  display: block;
}

#mcswap-pay-stage {
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  width: 300px;
  height: 300px;
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 278px;
  animation: 1.5s linear infinite pay_stage_blinker;
  display: none;
}

@keyframes pay_stage_blinker {
  50% {
    opacity: .25;
  }
}

.droplet {
  z-index: 4000;
  float: left;
  background: #000 center / 150% no-repeat;
  border-radius: 4px;
  width: 5%;
  height: auto;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

.pink {
  box-shadow: 0 0 0 3px #ffde0c;
}

.blue, .white {
  box-shadow: 0 0 0 3px #ffbc0c;
}

#big-winner {
  font-family: Arial, sans-serif;
  font-size: 280px;
  font-style: bold;
  opacity: 1;
  float: left;
  color: #1f1f1f;
  z-index: 4001;
  text-align: center;
  text-shadow: 3px 3px #ffbc0c, 3px -3px #ffbc0c, -3px 3px #ffbc0c, -3px -3px #ffbc0c, 3px 0 #ffbc0c, 0 3px #ffbc0c, -3px 0 #ffbc0c, 0 -3px #ffbc0c;
  background: none;
  width: calc(100% - 17px);
  height: 300px;
  font-weight: 800;
  display: block;
  position: absolute;
  bottom: calc(50% - 100px);
}

#leaderboard_header, #leaderboard_rows {
  background: #111;
}

#leaderboard_rows {
  border-radius: 0 0 10px 10px;
}

#leaderboard_header ul {
  border-top: 1px solid #202020;
  border-bottom: 1px solid #000;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

#leaderboard_header ul li {
  text-align: center;
  vertical-align: top;
  color: #ffbc0c;
  border-top: 1px solid #070707;
  border-left: 1px solid #202020;
  border-right: 1px solid #000;
  width: calc(100% - 144px);
  margin: 0;
  padding: 14px 0;
  font-family: Ubuntu, sans-serif;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
}

#leaderboard_header ul li:first-of-type {
  border-left: 0;
  width: 60px;
}

#leaderboard_header ul li:nth-of-type(2) {
  width: 80px;
}

#leaderboard_header ul li:nth-of-type(3), #leaderboard_header ul li:nth-of-type(4), #leaderboard_header ul li:nth-of-type(5), #leaderboard_header ul li:nth-of-type(6), #leaderboard_header ul li:nth-of-type(7), #leaderboard_header ul li:last-of-type {
  border-right: 0;
}

#leaderboard_rows {
  padding-bottom: 33px;
}

#leaderboard_rows ul {
  border-top: 1px solid #202020;
  border-bottom: 1px solid #070707;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

#leaderboard_rows ul:hover {
  background: #00000091;
}

#leaderboard_rows ul li {
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  border-left: 1px solid #202020;
  border-right: 1px solid #000;
  width: calc(100% - 144px);
  margin: 0;
  padding: 14px 0;
  font-family: Ubuntu, sans-serif;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  overflow: hidden;
}

#leaderboard_rows ul li:first-of-type {
  cursor: default;
  border-left: 0;
  width: 60px;
}

#leaderboard_rows ul li:nth-of-type(2) {
  width: 80px;
}

#leaderboard_rows ul li:nth-of-type(3), #leaderboard_rows ul li:nth-of-type(4), #leaderboard_rows ul li:nth-of-type(5), #leaderboard_rows ul li:nth-of-type(6), #leaderboard_rows ul li:nth-of-type(7), #leaderboard_rows ul li:last-of-type {
  border-right: 0;
}

.leader_player a {
  color: #ffbc0c;
  text-shadow: 0 0 6px #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.leader_player a:hover {
  color: #fff;
  text-shadow: 0 0 20px #fff;
}

#leaderboard_header ul li.hiders, #leaderboard_rows ul li.hiders {
  display: none;
}

#leaderboard_header ul li.header_plays, #leaderboard_rows ul li.leader_plays {
  display: inline-block;
}

.house_sort {
  margin-bottom: 16px;
}

.house_sort_select {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: #111c;
  border: 0;
  border-radius: 24px;
  outline: none;
  width: 120px;
  max-height: 48px;
  margin: 0 0 0 16px;
  padding: 5px 5px 6px;
  font-family: Damion, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 0 3px #ffbc0c;
}

.house_sort_select:hover {
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#house_sort_desc, #house_sort_asc {
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: #111c;
  border: 0;
  border-radius: 24px;
  outline: none;
  width: 120px;
  max-height: 48px;
  margin: 0 0 0 12px;
  padding: 5px 5px 6px;
  font-family: Damion, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 0 3px #ffbc0c;
}

#house_sort_desc:hover, #house_sort_asc:hover {
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#house_sort_asc {
  display: none;
}

.house_module {
  background: #0303038b;
  border-radius: 10px;
  margin: 0 17px 17px;
  padding-bottom: 11px;
}

.house_rows .house_module:last-of-type {
  margin: 0 17px 4px;
}

.contest_name {
  text-align: left;
  color: #fff;
  text-shadow: 0 0 20px #f9df95;
  padding: 10px 15px 5px;
  font-family: Damion, serif;
  font-size: 24px;
}

.contest_status, .contest_end, .contest_start, .contest_prize, .contest_leader {
  text-align: left;
  color: #fff;
  margin: 0 0 4px 16px;
  padding: 0;
  font-family: Ubuntu, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.cont_id_label, .cont_end_label, .cont_start_label, .cont_prize_label, .cont_leader_label {
  color: #f9df95;
  text-align: left;
  width: 55px;
  display: inline-block;
}

.cont_status_active {
  color: #21ac2d;
}

.cont_status_ended {
  color: #ce3f3f;
}

.cont_status_pending {
  color: #5a5a5a;
}

.contest_player {
  color: #fff;
  text-shadow: 0 0 6px #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.contest_player:hover {
  color: #fff;
  text-shadow: 0 0 20px #fff;
}

#club_nav {
  background: none;
  border-top: 0;
  border-radius: 10px;
  width: calc(100% - 14px);
  margin: 0 auto 13px;
  padding: 0;
  display: block;
}

#club_nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: block;
}

#club_nav ul li {
  vertical-align: middle;
  width: calc(33.3333% - 13.4px);
  margin: 0 0 0 10px;
  padding: 0;
  display: inline-block;
}

.club_nav {
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 5px #ffbc0c;
  text-transform: uppercase;
  background: #111;
  border: 0;
  border-radius: 40px;
  outline: none;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .3s;
  display: block;
}

.club_nav:hover {
  background: #181818;
}

#club_nav .active {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
}

.club_view {
  background: none;
  border-radius: 10px;
  width: calc(100% - 33px);
  margin: 0 auto 2px;
  padding: 0;
}

#club_details {
  background: #111;
  width: calc(100% - 34px);
  margin-left: 18px;
  display: none;
}

#club_reports {
  display: none;
}

#table_col_1, #table_col_3 {
  vertical-align: top;
  width: calc(50% - 79px);
  display: inline-block;
}

#table_col_1 {
  background: #111;
  border-radius: 8px 0 0 8px;
  margin-left: 2px;
}

#table_col_2 {
  background: #111;
}

#table_col_3 {
  background: #111;
  border-radius: 0 8px 8px 0;
}

#table_top_left, #table_top_right, #table_bottom_left, #table_bottom_right {
  height: 74px;
}

#table_top_left {
  border-top-left-radius: 8px;
}

#table_top_right {
  border-top-right-radius: 8px;
}

#table_bottom_left {
  border-bottom-left-radius: 8px;
}

#table_bottom_right {
  border-bottom-right-radius: 8px;
}

#refresh_club {
  cursor: pointer;
  background: url("refresh.e3718fad.png") center / 25px 25px no-repeat;
  border: 0;
  outline: none;
  width: 25px;
  height: 25px;
  margin: 0 0 0 16px;
  padding: 0;
  transition: all .3s;
  display: block;
  position: absolute;
  top: -2px;
}

#refresh_club:hover {
  opacity: .5;
}

#refresh_club.refreshing {
  animation-name: loader;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#table_col_2 {
  vertical-align: top;
  width: 147px;
  padding: 0;
  display: inline-block;
}

#club_table_top {
  background-image: url("wood.85e98bcb.jpg");
  background-position: bottom;
  background-size: 180px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  width: 100%;
  height: 74px;
  margin: 0;
  padding: 0;
}

#club_table_body {
  background: #00000062 url("wood.85e98bcb.jpg") center / 180px;
}

#club_table_foot {
  background-image: url("wood.85e98bcb.jpg");
  background-position: top;
  background-size: 180px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  width: 100%;
  height: 74px;
}

#table_left_rows, #table_right_rows {
  background: #111;
}

ul.table_cell {
  vertical-align: top;
  background: #000000a3 center / 35px 35px no-repeat;
  width: 50%;
  height: 75px;
  margin: 0;
  padding: 0;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 0 0 1px #060606;
}

ul.table_cell:nth-child(odd) {
  background-image: url("seat-left.80126522.png");
}

ul.table_cell:nth-child(2n) {
  background-image: url("seat-right.19c8d69f.png");
}

ul li.status_light {
  background-color: #2f2b1e;
  border: 2px solid #000;
  border-radius: 8px;
  width: 8px;
  height: 8px;
  margin: 6px 0 0 6px;
  list-style-type: none;
}

ul:nth-child(odd) li.status_light {
  float: right;
  margin: 6px 6px 0 0;
}

ul li.unlocked {
  background-color: #e75a0d;
}

ul li.locked {
  background-color: #2073af;
}

ul li.available {
  background-color: #ffbc0c;
}

#club_close {
  float: right;
  cursor: pointer;
  background: url("close.cf02cf3a.png") center / 18px 18px no-repeat;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  outline: none;
  width: 30px;
  height: 30px;
  margin: 0 9px 0 0;
  transition: all .3s;
  display: block;
}

#club_close:hover {
  opacity: .75;
}

#club_close:disabled {
  cursor: default;
  color: #575757;
  opacity: .1;
  text-shadow: none;
  animation: none;
  box-shadow: 0 0 3px #f9df95;
}

#club_info {
  float: right;
  cursor: pointer;
  background: url("clock.96a4bee3.png") center / 20px 20px no-repeat;
  border: 0;
  border-radius: 50%;
  outline: none;
  width: 20px;
  height: 20px;
  margin: 52px -21px 0 0;
  transition: all .3s;
  display: block;
}

#club_info:hover {
  opacity: .75;
}

.side_row {
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  height: 75px;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  transition: all .3s;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 0 1px #060606;
}

.expanded_seat {
  float: left;
  z-index: 1002;
  text-align: left;
  white-space: nowrap;
  background: #111;
  border-radius: 10px;
  width: 300px;
  height: 400px;
  padding: 10px 0;
  font-family: Ubuntu, sans-serif;
  font-size: 11px;
  transition: all .3s;
  display: block;
  position: fixed;
  top: calc(50% - 210px);
  left: calc(50% - 150px);
  box-shadow: 0 0 20px #000;
}

.side_row:hover {
  background: #1e1e1e;
}

.expanded_seat .side_box {
  padding: 0 12px;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
}

@keyframes loader {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

#seat_loader {
  background: url("loader.74b17965.png") center / 30px 30px no-repeat;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 150px auto 0;
  animation-name: loader;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#table_left_rows .side_row .side_status {
  text-align: right;
  white-space: nowrap;
  padding: 10px 10px 0 0;
  overflow: hidden;
}

#table_right_rows .side_row .side_status, .expanded_seat .side_status {
  text-align: left;
  white-space: nowrap;
  padding: 10px 0 0 10px;
  overflow: hidden;
}

#table_left_rows .side_row .side_wallet {
  text-align: right;
  white-space: nowrap;
  padding: 8px 10px 0 0;
  overflow: hidden;
}

#table_right_rows .side_row .side_wallet, .expanded_seat .side_wallet {
  text-align: left;
  white-space: nowrap;
  padding: 8px 0 0 10px;
  overflow: hidden;
}

#table_left_rows .side_row .side_time {
  text-align: right;
  white-space: nowrap;
  color: #5b5b5b;
  padding: 8px 10px 0 0;
  overflow: hidden;
}

#table_right_rows .side_row .side_time, .expanded_seat .side_time {
  text-align: left;
  white-space: nowrap;
  color: #5b5b5b;
  padding: 8px 0 0 10px;
  overflow: hidden;
}

.expanded_seat .side_status {
  text-transform: uppercase;
  padding-top: 8px;
  font-size: 18px;
  font-weight: 800;
}

.side_row .available .side_status, .expanded_seat .available .side_status {
  color: #ffbc0c;
  text-shadow: 0 0 16px #ffbc0c;
}

.side_row .unlocked .side_status, .expanded_seat .unlocked .side_status {
  color: #e75a0d;
  text-shadow: 0 0 16px #e75a0d;
}

.side_row .locked .side_status, .expanded_seat .locked .side_status {
  color: #2073af;
  text-shadow: 0 0 16px #2073af;
}

#seat_menu {
  float: left;
  background: #1e1e1e;
  width: calc(100% - 24px);
  height: 314px;
  position: absolute;
  bottom: 14px;
  left: 12px;
  box-shadow: inset 0 1px 5px #000;
}

.seat_menu_seats {
  text-align: left;
  margin-top: 16px;
  padding: 0 18px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.seat_menu_tokens {
  text-align: left;
  margin-top: 2px;
  padding: 0 18px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.seat_menu_label {
  color: #2073af;
  text-transform: uppercase;
  margin-right: 7px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

#seat_menu_count, #seat_menu_tokens {
  color: #ffbc0c;
  padding: 0 3px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.seat_menu_reserved {
  background: url("reserved.1ddd55b9.png") center / 80px 80px no-repeat;
  height: 250px;
}

#seat_qty, #seat_menu_available, #cancel_qty, #cancel_menu_available {
  vertical-align: middle;
  text-align: center;
  cursor: not-allowed;
  background: #111;
  border: 0;
  border-radius: 5px;
  outline: none;
  width: calc(50% - 11.5px);
  height: 40px;
  margin-top: 4px;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

#seat_qty, #cancel_qty {
  color: #ffbc0c;
}

#seat_slash {
  vertical-align: top;
  text-align: center;
  color: #343434;
  width: 10%;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

#seat_menu_less, #seat_menu_more, #cancel_menu_less, #cancel_menu_more {
  vertical-align: top;
  cursor: pointer;
  color: #ffbc0c;
  background: none;
  border: 0;
  border-radius: 20px;
  outline: none;
  width: calc(50% - 30px);
  height: 40px;
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 0 3px #ffbc0c;
}

#seat_menu_less:disabled, #seat_menu_more:disabled, #cancel_menu_less:disabled, #cancel_menu_more:disabled {
  cursor: default;
  color: #575757;
  opacity: .4;
  text-shadow: none;
  animation: none;
  box-shadow: 0 0 3px #f9df95;
}

#seat_menu_less:hover, #seat_menu_more:hover, #cancel_menu_less:hover, #cancel_menu_more:hover {
  text-shadow: 0 0 20px #ffbc0c;
  background: #111;
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#seat_menu_less:disabled:hover, #seat_menu_more:disabled:hover, #cancel_menu_less:disabled:hover, #cancel_menu_more:disabled:hover {
  text-shadow: none;
  background: #111;
  box-shadow: 0 0 3px #f9df95;
}

#seat_menu_less, #cancel_menu_less {
  margin-left: 17px;
  margin-right: 26px;
  line-height: 18px;
}

#seat_token_total, #cancel_token_total {
  text-align: center;
  cursor: not-allowed;
  color: #ffbc0c;
  background: #111;
  border: 0;
  border-radius: 5px;
  outline: none;
  width: 100%;
  margin-top: 9px;
  padding: 9px 0;
  font-size: 10px;
  font-weight: bold;
  display: block;
}

#seat_reserve_now, #cancel_reserve_now {
  text-shadow: 0 0 20px #ffbc0c;
  cursor: pointer;
  color: #fff;
  background: none;
  border: 0;
  border-radius: 25px;
  outline: none;
  width: calc(100% - 33px);
  height: 50px;
  margin: 23px auto 0;
  font-size: 14px;
  font-weight: bold;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #ffbc0c;
}

#seat_reserve_now:hover, #cancel_reserve_now:hover {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
  background: #111;
  box-shadow: 0 0 10px 3px #ffbc0c;
}

#seat_reserve_now:disabled, #cancel_reserve_now:disabled {
  cursor: default;
  color: #575757;
  opacity: .4;
  text-shadow: none;
  animation: none;
  box-shadow: 0 0 3px #ffbc0c;
}

#priority_label {
  text-align: center;
  color: #5c5c5c;
  margin: 10px auto 0;
  font-size: 9px;
  font-weight: bold;
}

#reserve_priority {
  cursor: pointer;
  color: #ffbc0c;
  text-align: center;
  background: none;
  border: 0;
  border-radius: 20px;
  outline: none;
  width: calc(100% - 33px);
  height: 34px;
  margin: 12px auto 0;
  font-size: 10px;
  font-weight: bold;
  line-height: 34px;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #ffbc0c;
}

#reserve_priority:disabled {
  cursor: default;
  color: #575757;
  opacity: .4;
  text-shadow: none;
  animation: none;
  box-shadow: 0 0 3px #ffbc0c;
}

#reserve_priority option {
  background: #111;
}

#club_detail_rows {
  border-bottom: 1px solid #131313;
  margin: 0 15px;
}

.club_details_row {
  border-top: 1px solid #131313;
  border-bottom: 1px solid #020202;
  margin: 0;
}

.club_details_row:first-of-type {
  border-top: 0;
}

.club_details_row:last-of-type {
  border-bottom: 0;
  margin: 0;
}

.club_details_label {
  color: #ffbc0c;
  vertical-align: top;
  text-shadow: 0 0 16px #ffbc0c;
  text-transform: uppercase;
  height: 42px;
  padding: 10px 0 0 5px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
}

.club_details_data {
  vertical-align: top;
  height: 42px;
  margin: 0 0 0 20px;
  padding: 10px 0 0;
  font-family: Ubuntu, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 32px;
  display: inline-block;
}

.club_details_desc {
  margin: 0 0 0 5px;
  padding-bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

#seats_over {
  color: #6d6448;
  margin: 0 4px;
  font-size: 10px;
  display: inline-block;
}

span.owner-crown {
  background: url("crown.77517138.png") center / 15px 9px no-repeat;
  border: 0;
  outline: none;
  width: 15px;
  height: 9px;
  display: block;
}

#table_left_rows span.owner-crown {
  float: left;
  margin: 8px 0 0 6px;
}

#table_right_rows span.owner-crown {
  float: right;
  margin: 8px 6px 0 0;
}

.flatpickr {
  text-align: center;
  vertical-align: top;
  background-color: #111;
  border: 0;
  outline: none;
  width: calc(50% - 26.5px);
  height: 34px;
  font-family: Ubuntu, sans-serif;
  font-size: 12px;
  font-weight: normal;
  display: inline-block;
}

.flatpickr-mobile {
  width: calc(50% - 16px);
}

.flatpickr::placeholder {
  color: #505050;
}

.flatpickr-calendar {
  font-family: Ubuntu, sans-serif;
}

#club-report-from {
  margin-left: 15px;
}

#club-report-top {
  text-align: center;
  color: #000;
  width: 15px;
  height: 36px;
  font-family: Ubuntu, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 36px;
  display: inline-block;
}

#club_surplus_box {
  margin-bottom: 10px;
}

#club_surplus {
  color: #ffbc0c;
  margin-left: 5px;
}

.fromto {
  background: #ffbc0c;
  border-radius: 8px;
  height: 36px;
}

.club_reports_button {
  margin: 20px auto 26px;
}

#generate_report {
  text-align: center;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 5px #ffbc0c;
  text-transform: uppercase;
  background: #111c;
  border: 0;
  border-radius: 9px;
  width: 230px;
  height: 45px;
  margin: 36px auto 26px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #ffbc0c;
}

#generate_report:hover {
  color: #ffbc0c;
  text-shadow: 0 0 20px #ffbc0c;
  background: #181818;
}

#generate_report:disabled {
  opacity: .1;
}

#odometer-box {
  float: left;
  z-index: 1000;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
}

.odometer {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 800;
}

@media only screen and (width <= 1200px) {
  #main, #view, #home {
    width: 100%;
    left: 0;
  }

  #progressBar {
    margin-top: 6px;
  }

  .match_name {
    float: left;
    width: 120px;
    margin: 0 7px;
    position: absolute;
  }

  .x_value {
    text-align: right;
    width: calc(100% - 20px);
    margin-top: -11px;
  }

  #house_priority {
    width: calc(100% - 30px);
    height: auto;
    margin-top: 18px;
    margin-bottom: 17px;
    margin-left: 10px;
  }

  #house_priority ul {
    display: block;
  }

  #house_priority ul li {
    width: 33.3%;
  }

  #house_priority ul li button {
    width: calc(100% - 10px);
    height: 30px;
    margin: 10px 0 0 10px;
    padding: 0;
    font-size: 14px;
    display: block;
  }

  #house_priority ul li:first-of-type, #house_priority ul li:last-of-type {
    display: none;
  }

  #house_go {
    width: calc(100% - 40px);
    margin: 20px auto 5px;
  }

  #house_top {
    height: auto;
  }

  #house_top #house_token_balance {
    width: calc(100% - 42px);
    margin: 11px auto 1px 15px;
    font-size: 22px;
  }

  #house_token {
    width: calc(100% - 101px);
    font-size: 18px;
  }

  #token_display {
    font-size: 18px;
  }

  .toastify {
    padding: 10px;
    font-size: 24px;
  }

  #connect {
    width: 105px;
    padding-right: 12px;
  }

  #disconnect {
    width: 128px;
    padding-right: 10px;
  }

  .house_split {
    display: none;
  }

  #house_claims .house_rows .house_row .house_left {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    width: calc(100% - 88px);
    margin: 0 18px;
    padding-left: 40px;
    display: block;
  }

  #house_claims .house_rows .house_row:first-of-type .house_left {
    border-radius: 10px 10px 0 0;
  }

  #house_claims .house_rows .house_row:last-of-type .house_left {
    border-radius: 0 0 10px 10px;
  }

  #house_claims .house_rows .house_row .house_right {
    text-align: right;
    border: 0;
    border-top: 1px solid #d2d2d208;
    border-radius: 0;
    width: calc(100% - 60px);
    margin: -41px 18px 0;
    display: block;
  }

  #house_claims .house_rows .house_row:first-of-type .house_right {
    border-radius: 10px 10px 0 0;
  }

  #house_claims .house_rows .house_row:last-of-type .house_right {
    border-radius: 0 0 10px 10px;
  }

  #claim_priority {
    width: calc(100% - 30px);
    height: auto;
    margin-top: 14px;
    margin-bottom: 17px;
    margin-left: 10px;
  }

  #claim_priority ul {
    display: block;
  }

  #claim_priority ul li {
    width: 33.3%;
  }

  #claim_priority ul li button {
    width: calc(100% - 10px);
    height: 30px;
    margin: 10px 0 0 10px;
    padding: 0;
    font-size: 14px;
    display: block;
  }

  #claim_priority ul li:first-of-type, #claim_priority ul li:last-of-type {
    display: none;
  }

  #house_settings .house_rows .house_row .house_left {
    border-top: 1px solid #d2d2d208;
    border-bottom: 1px solid #020202;
    width: calc(100% - 60px);
    margin-left: 18px;
    display: block;
  }

  #house_settings .house_rows .house_row .house_right {
    text-align: left;
    border-top: 1px solid #d2d2d208;
    border-bottom: 1px solid #020202;
    border-radius: 0;
    width: calc(100% - 60px);
    margin-left: 18px;
    display: block;
  }

  #house_settings .house_rows .house_row:first-of-type .house_left {
    border-radius: 10px 10px 0 0;
  }

  #house_settings .house_rows .house_row:first-of-type .house_right, #house_settings .house_rows .house_row:last-of-type .house_left {
    border-radius: 0;
  }

  #house_settings .house_rows .house_row:last-of-type .house_right {
    border-radius: 0 0 10px 10px;
  }

  #house_winners .house_rows .house_row .house_left, #house_winners .house_rows .house_row .house_right {
    width: calc(100% - 36px);
    margin-left: 18px;
    display: block;
  }

  #house_winners .house_rows .house_row .house_left {
    border-radius: 10px 10px 0 0;
    padding: 8px 0 20px;
  }

  #house_winners .house_rows .house_row .house_right {
    border-top: 1px solid #d2d2d208;
    border-radius: 0 0 10px 10px;
  }

  #house_resources .house_rows .house_row .house_left {
    vertical-align: top;
    border-top: 1px solid #131313;
    border-right: 1px solid #000;
    width: 60px;
    height: 47px;
    line-height: 49px;
    display: inline-block;
  }

  #house_resources .house_rows .house_row .house_right {
    vertical-align: top;
    border-left: 1px solid #131313;
    width: calc(100% - 142px);
    height: 47px;
    margin-top: 0;
    line-height: 49px;
    display: inline-block;
  }

  #house_resources .house_rows .house_row:first-of-type .house_left, #house_resources .house_rows .house_row:first-of-type .house_right {
    border-top: 0;
  }

  #house_stats .house_rows .house_row .house_left {
    vertical-align: top;
    border-top: 1px solid #131313;
    border-right: 1px solid #000;
    width: 100px;
    height: 47px;
    line-height: 49px;
    display: inline-block;
  }

  #house_stats .house_rows .house_row .house_right {
    vertical-align: top;
    border-left: 1px solid #131313;
    width: calc(100% - 184px);
    height: 47px;
    margin-top: 0;
    line-height: 49px;
    display: inline-block;
  }

  #house_stats .house_rows .house_row:first-of-type .house_left, #house_stats .house_rows .house_row:first-of-type .house_right {
    border-top: 0;
  }

  #house_stats .house_rows #stats_levels .house_row .house_left {
    vertical-align: top;
    border-top: 1px solid #131313;
    border-right: 1px solid #000;
    width: 100px;
    height: 47px;
    line-height: 49px;
    display: inline-block;
  }

  #house_stats .house_rows #stats_levels .house_row .house_right {
    vertical-align: top;
    border-left: 1px solid #131313;
    width: calc(100% - 184px);
    height: 47px;
    margin-top: 0;
    line-height: 49px;
    display: inline-block;
  }

  #house_stats .house_rows #stats_levels .house_row:first-of-type .house_left, #house_stats .house_rows #stats_levels .house_row:first-of-type .house_right {
    border-top: 1px solid #131313;
  }

  #house, #house_winners, #house_settings, #house_claims, #house_contests, #house_leaderboards, #house_stats, #house_resources, #house_club {
    width: 81%;
  }

  #top {
    width: 100%;
  }

  #new {
    width: 100%;
    left: 0;
  }

  #house_minmax {
    margin: 0 auto 20px;
  }

  #house_jackpot {
    margin: 0 0 18px;
  }

  #rollers {
    margin: 7px 0 0;
  }
}

@media only screen and (width <= 760px) {
  #house_minmax button.minmax {
    height: 36px;
    margin-right: 23px;
    font-size: 14px;
  }
}

@media only screen and (width <= 560px) {
  .flatpickr, #club-report-top {
    font-size: 10px;
    font-weight: normal;
  }

  #table_left_rows .side_row .side_status, #table_left_rows .side_row .side_wallet, #table_left_rows .side_row .side_time {
    text-align: left;
    padding: 10px 0 0 10px;
  }

  span.owner-crown {
    background: url("crown.77517138.png") center / 12px 8px no-repeat;
    border: 0;
    outline: none;
    width: 12px;
    height: 8px;
    display: block;
  }

  #table_left_rows span.owner-crown {
    float: right;
    margin: 8px 6px 0 0;
  }

  #table_right_rows span.owner-crown {
    float: right;
    margin: 4px 4px 0 0;
  }

  #house_claims .house_rows .house_row .house_left {
    border-top: 1px solid #d2d2d208;
    border-bottom: 1px solid #020202;
  }

  #house_claims .house_rows .house_row .house_right {
    text-align: right;
    text-align: center;
    border: 0;
    border-top: 1px solid #d2d2d208;
    border-bottom: 1px solid #020202;
    border-radius: 0;
    width: calc(100% - 60px);
    margin: 0 18px;
    display: block;
  }

  #house_claims .house_rows .house_row:first-of-type .house_left {
    border-top: 0;
  }

  #house_claims .house_rows .house_row:first-of-type .house_right, #house_claims .house_rows .house_row:last-of-type .house_left {
    border-radius: 0;
  }

  #house_claims .house_rows .house_row:last-of-type .house_right {
    border-radius: 0 0 10px 10px;
  }

  input.claim_choices {
    margin-top: -29px;
  }

  #connect_3_chooser button {
    padding: 10px;
  }

  #connect_3_chooser button span {
    margin: 1px 0 2px 98px;
  }

  .side_status, .side_wallet, .side_time {
    font-size: 8px;
  }

  #club_nav ul {
    display: block;
  }

  #club_nav ul li.club_table_li .club_nav {
    font-size: 12px;
  }

  #house_go {
    margin-top: 16px;
  }
}

@media only screen and (width <= 470px) {
  #first-time, #first-need, #first-ready {
    padding: 25px 0 28px;
    font-size: 36px;
  }

  #first-desc, #first-options {
    width: calc(100% - 72px);
    margin: 0 auto 17px;
  }

  #first-wallets {
    width: auto;
    margin: 15px auto 16px;
    padding-left: 13px;
    padding-right: 13px;
  }

  #first-options {
    width: calc(100% - 31px);
    margin: 15px auto 0;
  }

  #first-accept {
    width: calc(100% - 72px);
    font-size: 16px;
  }

  #first-wallets img {
    width: 30px;
    height: 30px;
    margin: 0 2px 12px 0;
  }

  #first-wallets a, #first-wallets span {
    height: 30px;
    margin: 0 3px 12px;
    font-size: 16px;
    line-height: 30px;
  }

  #first-age span, #first-show span {
    margin-top: 5px;
    display: block;
  }

  #first-show span {
    margin-left: 0;
  }

  #first-wallets {
    padding-top: 14px;
    padding-bottom: 3px;
  }

  #first-wallets span.sep {
    height: 42px;
    margin: 0 5px;
    line-height: 26px;
  }
}

@media only screen and (width <= 382px) {
  #first-title {
    font-size: 62px;
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.flatpickr-calendar {
  opacity: 0;
  text-align: center;
  visibility: hidden;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  direction: ltr;
  background: #3f4458;
  border: 0;
  border-radius: 5px;
  width: 307.875px;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
  animation: none;
  display: none;
  position: absolute;
  box-shadow: 1px 0 #20222c, -1px 0 #20222c, 0 1px #20222c, 0 -1px #20222c, 0 3px 13px #00000014;
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  visibility: visible;
  max-height: 640px;
}

.flatpickr-calendar.open {
  z-index: 99999;
  display: inline-block;
}

.flatpickr-calendar.animate.open {
  animation: .3s cubic-bezier(.23, 1, .32, 1) fpFadeInDown;
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 #e6e6e6, 5px 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  border-top: 1px solid #20222c;
  height: 40px;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  pointer-events: none;
  content: "";
  border: solid #0000;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #20222c;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #3f4458;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #20222c;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #3f4458;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  display: inline-block;
  position: relative;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  color: #fff;
  fill: #fff;
  text-align: center;
  user-select: none;
  background: #3f4458;
  flex: 1;
  height: 34px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  user-select: none;
  cursor: pointer;
  z-index: 3;
  color: #fff;
  fill: #fff;
  height: 34px;
  padding: 10px;
  text-decoration: none;
  position: absolute;
  top: 0;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}

.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #eee;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  fill: inherit;
  transition: fill .1s;
}

.numInputWrapper {
  height: auto;
  position: relative;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.numInputWrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.numInputWrapper span {
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid #ffffff26;
  width: 14px;
  height: 50%;
  padding: 0 4px 0 2px;
  line-height: 50%;
  position: absolute;
  right: 0;
}

.numInputWrapper span:hover {
  background: #c0bba71a;
}

.numInputWrapper span:active {
  background: #c0bba733;
}

.numInputWrapper span:after {
  content: "";
  display: block;
  position: absolute;
}

.numInputWrapper span.arrowUp {
  border-bottom: 0;
  top: 0;
}

.numInputWrapper span.arrowUp:after {
  border-bottom: 4px solid #fff9;
  border-left: 4px solid #0000;
  border-right: 4px solid #0000;
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-top: 4px solid #fff9;
  border-left: 4px solid #0000;
  border-right: 4px solid #0000;
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: #ffffff80;
}

.numInputWrapper:hover {
  background: #c0bba70d;
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  color: inherit;
  text-align: center;
  width: 75%;
  height: 34px;
  padding: 7.48px 0 0;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  position: absolute;
  left: 12.5%;
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  color: inherit;
  margin-left: .5ch;
  padding: 0;
  font-family: inherit;
  font-weight: 700;
  display: inline-block;
}

.flatpickr-current-month span.cur-month:hover {
  background: #c0bba70d;
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch�;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}

.flatpickr-current-month input.cur-year {
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  vertical-align: initial;
  appearance: textfield;
  background: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0 0 0 .5ch;
  display: inline-block;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  color: #ffffff80;
  pointer-events: none;
  background: none;
  font-size: 100%;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  height: auto;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  vertical-align: initial;
  background: #3f4458;
  border: none;
  border-radius: 0;
  outline: none;
  width: auto;
  margin: -1px 0 0;
  padding: 0 0 0 .5ch;
  position: relative;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: #c0bba70d;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #3f4458;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  text-align: center;
  background: none;
  align-items: center;
  width: 100%;
  height: 28px;
  display: flex;
  overflow: hidden;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  flex: 1;
  display: flex;
}

span.flatpickr-weekday {
  cursor: default;
  color: #fff;
  text-align: center;
  background: #3f4458;
  flex: 1;
  margin: 0;
  font-size: 90%;
  font-weight: bolder;
  line-height: 1;
  display: block;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0;
}

.flatpickr-days {
  align-items: flex-start;
  width: 307.875px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  text-align: left;
  box-sizing: border-box;
  opacity: 1;
  outline: 0;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  padding: 0;
  display: flex;
  transform: translate3d(0, 0, 0);
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 #20222c;
}

.flatpickr-day {
  box-sizing: border-box;
  color: #fffffff2;
  cursor: pointer;
  text-align: center;
  background: none;
  border: 1px solid #0000;
  border-radius: 150px;
  flex-basis: 14.2857%;
  justify-content: center;
  width: 14.2857%;
  max-width: 39px;
  height: 39px;
  margin: 0;
  font-weight: 400;
  line-height: 39px;
  display: inline-block;
  position: relative;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  background: #646c8c;
  border-color: #646c8c;
  outline: 0;
}

.flatpickr-day.today {
  border-color: #eee;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  color: #3f4458;
  background: #eee;
  border-color: #eee;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background: #80cbc4;
  border-color: #80cbc4;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 #80cbc4;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 #646c8c, 5px 0 #646c8c;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: #ffffff4d;
  cursor: default;
  background: none;
  border-color: #0000;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: #ffffff1a;
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 #80cbc4, 5px 0 #80cbc4;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 #20222c;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  color: #ffffff4d;
  cursor: default;
  background: none;
  border: none;
  width: 100%;
  max-width: none;
  display: block;
}

.flatpickr-innerContainer {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
}

.flatpickr-rContainer {
  box-sizing: border-box;
  padding: 0;
  display: inline-block;
}

.flatpickr-time {
  text-align: center;
  box-sizing: border-box;
  outline: 0;
  height: 0;
  max-height: 40px;
  line-height: 40px;
  display: flex;
  overflow: hidden;
}

.flatpickr-time:after {
  content: "";
  clear: both;
  display: table;
}

.flatpickr-time .numInputWrapper {
  float: left;
  flex: 1;
  width: 40%;
  height: 40px;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fffffff2;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #fffffff2;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
  height: inherit;
  line-height: inherit;
  color: #fffffff2;
  box-sizing: border-box;
  appearance: textfield;
  background: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-size: 14px;
  position: relative;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  border: 0;
  outline: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #fffffff2;
  user-select: none;
  align-self: center;
  width: 2%;
  font-weight: bold;
}

.flatpickr-time .flatpickr-am-pm {
  cursor: pointer;
  text-align: center;
  outline: 0;
  width: 18%;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #6a7395;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
/*# sourceMappingURL=app.9f367d21.css.map */
