/*!
 * 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;
  }
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("ubuntu-cyrillic-ext-400-normal.15811879.woff2") format("woff2"), url("ubuntu-cyrillic-ext-400-normal.cddd186b.woff") format("woff");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("ubuntu-cyrillic-400-normal.ab523e2d.woff2") format("woff2"), url("ubuntu-cyrillic-400-normal.a585f0b6.woff") format("woff");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("ubuntu-greek-ext-400-normal.9adef5cc.woff2") format("woff2"), url("ubuntu-greek-ext-400-normal.1f35443a.woff") format("woff");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("ubuntu-greek-400-normal.0514c006.woff2") format("woff2"), url("ubuntu-greek-400-normal.00845ba0.woff") format("woff");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("ubuntu-latin-ext-400-normal.5f25f424.woff2") format("woff2"), url("ubuntu-latin-ext-400-normal.2da4fe53.woff") format("woff");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Ubuntu;
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("ubuntu-latin-400-normal.dcc117e5.woff2") format("woff2"), url("ubuntu-latin-400-normal.fdfe3e56.woff") format("woff");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

#mcswap-account-change {
  display: none;
}

#mcswap_cover {
  z-index: 1000;
  opacity: .8;
  background: #000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#mcswap_message {
  float: left;
  color: #f7f7f7;
  text-shadow: 2px 2px #111;
  z-index: 11;
  text-align: center;
  width: 100%;
  height: 100px;
  font-family: Ubuntu;
  font-size: 20px;
  font-weight: 300;
  animation: 1.5s linear infinite mcswap_blinker;
  display: block;
  position: absolute;
  top: 40%;
}

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

#mcswap_chooser {
  z-index: 1001;
  background: #0a0a0a;
  border-radius: 36px;
  width: 290px;
  height: auto;
  padding: 17px 5px 0;
  display: none;
  position: fixed;
  top: calc(50% - 135px);
  left: calc(50% - 150px);
}

#mcswap_chooser button {
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  -webkit-tap-highlight-color: transparent;
  background: #090909;
  border: none;
  border-radius: 22px;
  outline: none;
  width: calc(100% - 20px);
  margin: 0 10px 17px;
  padding: 10px;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 3px #fff;
}

#mcswap_chooser button:disabled {
  opacity: .25;
}

#mcswap_chooser button#mcswap_cancel {
  margin-bottom: 18px;
}

#mcswap_chooser button.mcswap_choice img {
  width: 37px;
  height: 37px;
  margin: -6px 0 0 -4px;
  display: block;
  position: absolute;
}

#mcswap_chooser button#mcswap_cancel img {
  filter: invert(0);
  width: 28px;
  height: 28px;
  margin: -2px 0 0 -1px;
}

#mcswap_chooser button.mcswap_choice span {
  vertical-align: top;
  text-shadow: 0 0 5px #fff;
  color: #fff;
  height: 23px;
  margin: 2px 0 0 98px;
  font-family: Ubuntu;
  font-size: 15px;
  font-style: normal;
  font-weight: bold;
  line-height: 23px;
  display: inline-block;
}

#mcswap_chooser button.mcswap_choice span {
  transition: all .3s;
}

#mcswap_chooser button.mcswap_choice:hover span {
  text-shadow: 0 0 20px #fff;
}

#mcswap_chooser button#mcswap_cancel span {
  margin-top: 0;
  margin-bottom: 1px;
  transition: all .3s;
}

#mcswap_chooser button.mcswap_choice:disabled:hover {
  box-shadow: 0 0 3px #fff;
}

#mcswap_chooser button.mcswap_choice:disabled:hover span {
  text-shadow: 0 0 5px #fff;
}

.mcswap_connect_button, .mcswap_disconnect_button {
  cursor: pointer;
  color: #fff;
  float: right;
  background: #0e0e0e;
  border: 0;
  border-radius: 20px;
  outline: none;
  width: 115px;
  height: 39px;
  margin: 0;
  padding: 0;
  font-weight: bold;
  transition: all .3s;
  display: block;
}

.mcswap_connect_button:hover, .mcswap_disconnect_button:hover {
  color: #000;
  text-shadow: 0 0 20px #fff;
  background: #fff;
  box-shadow: 0 0 10px 3px #fff;
}

.mcswap_connect_button:disabled, .mcswap_disconnect_button:disabled {
  opacity: .25;
  cursor: default;
}

.mcswap_disconnect_button {
  display: none;
}

@media only screen and (width <= 400px) {
  #mcswap_chooser button {
    padding: 10px 10px 11px;
  }
}

@media only screen and (width <= 310px) {
  #mcswap_chooser {
    width: calc(100% - 20px);
    left: 5px;
  }
}

.toastify {
  border-radius: 30px;
}

#mcswap_chooser button {
  box-shadow: 0 0 3px #2a95f8;
}

#mcswap_chooser button.mcswap_choice:hover {
  box-shadow: 0 0 10px 3px #1dd2bd;
}

#mcswap_chooser button.mcswap_choice:disabled:hover {
  text-shadow: none;
  box-shadow: 0 0 3px #2a95f8;
}

html {
  background: #111;
  overflow: hidden;
}

html, body {
  float: left;
  z-index: 1;
  background: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Ubuntu;
  display: block;
  overflow-x: hidden;
}

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

.toastify {
  box-shadow: none;
  color: #000;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  max-width: 280px;
  padding: 10px 15px;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: bold;
}

#vanta {
  float: left;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

main {
  max-width: 1400px;
  margin: 0 auto 20px;
  display: block;
}

#x-logo {
  float: left;
  width: 16px;
  height: 16px;
  transition: all .3s;
  position: fixed;
  bottom: 10px;
  left: 8px;
}

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

#logo-home {
  float: left;
  width: 360px;
  display: block;
  position: fixed;
  top: calc(50% - 100px);
  left: calc(50% - 180px);
}

#logo-home img {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

button {
  -webkit-tap-highlight-color: #0000;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border: 0;
  outline: 0;
}

#logo-home button#introduction {
  text-align: center;
  color: #fff;
  background: #050505;
  border: none;
  border-radius: 25px;
  outline: none;
  width: 150px;
  margin: 20px auto 0;
  padding: 15px;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: bold;
  transition: all .3s;
  display: block;
}

#logo-home button#introduction:hover {
  color: #1dd2bd;
}

#introduction-view .panel-box .row {
  padding: 5px 15px;
}

#introduction-view .panel-box .row:first-of-type {
  margin-top: -7px;
}

#introduction-view .panel-box .row .label-category {
  width: 100%;
  overflow: hidden;
}

.coming-soon {
  text-align: center;
  padding: 35px 25px 25px;
  font-size: 14px;
  font-weight: bold;
}

#agreement {
  cursor: pointer;
  accent-color: #fff;
  border: none;
  outline: none;
  margin: 10px 20px 0 15px;
  padding: 0;
  display: inline-block;
  transform: scale(1.8);
}

#nav {
  background: #00000047;
  margin: 0;
  display: block;
}

#nav button {
  color: #2a71f8;
  text-shadow: 1px 1px 1px #010101;
  background: #1d1d1da8;
  border-radius: 21px;
  margin: 11px 0 11px 10px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  transition: all .3s;
  display: inline-block;
}

#nav #nav-contain {
  max-width: 1390px;
  margin: 0 auto;
}

#nav button:hover {
  color: #1dd2bd;
  box-shadow: none;
  background: #1b1b1b66;
}

#nav button#connect, #nav button#disconnect, #nav .mobile_connect_button, #nav .mobile_disconnect_button {
  float: right;
  color: #fff;
  background: #090909f5;
  width: auto;
  height: auto;
  margin-right: 10px;
}

#nav button#disconnect, #nav .mobile_disconnect_button {
  color: #f9df95;
}

#nav button#connect:hover, #nav button#disconnect:hover, #nav .mobile_connect_button:hover, #nav .mobile_disconnect_button:hover {
  color: #1dd2bd;
}

#nav button#disconnect, #nav .mobile_disconnect_button {
  display: none;
}

#nav button#connect:disabled {
  color: #3f3f3f;
  opacity: .5;
  box-shadow: none;
  cursor: default;
  background: #1b1b1b;
}

#nav button.cog {
  float: right;
  opacity: .75;
  cursor: pointer;
  background: none;
  border-radius: 21px;
  width: 31px;
  min-width: auto;
  height: 31px;
  margin: 14px 6px 0 0;
  padding: 0;
  transition: all .3s;
  display: block;
}

#nav button.cog:disabled {
  opacity: 0;
}

#nav button.cog img {
  width: 31px;
  height: 31px;
}

#nav button.active-cog {
  opacity: .1;
}

#nav button.active-view {
  color: #1dd2bd;
  background: #1b1b1b66;
}

#nav button:disabled {
  color: #3f3f3f;
  opacity: .5;
  box-shadow: none;
  cursor: default;
  background: #1b1b1b;
}

h1, h2 {
  margin: 0 0 0 5px;
}

h2 {
  margin: 7px 0 0 7px;
  font-size: 14px;
}

#views {
  margin-top: 0;
  display: block;
}

.views {
  margin: 13px 20px;
  transition: all .3s;
  display: none;
}

#home-view {
  display: block;
}

.panel {
  background: #0000006e;
  border-radius: 10px;
  margin-top: 18px;
  padding: 13px 12px;
}

.panel-box {
  margin: 0;
  padding: 0;
  display: block;
}

.row {
  padding: 5px;
  display: block;
}

label {
  color: #fff;
  width: 64px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
}

span.label-category {
  color: #1dd2bd;
  width: 61px;
  height: 35px;
  font-size: 19px;
  font-weight: normal;
  line-height: 40px;
  display: inline-block;
}

span#creator-value, span#buyer-value {
  margin-left: 5px;
  font-size: 12px;
}

.estimated-value {
  color: #4d4d4d;
  margin-left: 10px;
  font-size: 12px;
}

label.form-error {
  color: #f9df95;
}

#create-form {
  display: block;
}

#create-form input {
  color: #fff;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 364px;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
}

#create-form input::placeholder {
  color: #292929;
  opacity: 1;
}

#create-form button {
  color: #2a71f8;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 363px;
  height: 40px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
}

#create-form select {
  color: #2a71f8;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 394px;
  height: 40px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
}

#create-form button#creator-asset, #create-form button#buyer-asset {
  border-radius: 6px;
}

#create-form select {
  text-align: center;
  cursor: pointer;
}

#create-form select:focus {
  outline: none;
}

#create-form select option {
  border: 0;
  outline: none;
}

#create-form button:hover, #create-form select:hover {
  color: #1dd2bd;
}

#create-form ul.row:first-of-type {
  border-top: 1px solid #1dd2bd1a;
}

#create-form input#payment-tax {
  background: none;
}

#create-form button.submit {
  color: #f9df95;
  border-radius: 26px;
  width: 200px;
  height: 48px;
  margin: 38px 0 28px 156px;
  font-size: 16px;
  display: block;
}

#create-form button.submit:hover {
  color: #1dd2bd;
  background: #1b1b1b66;
}

#mcswap_message {
  font-size: 18px;
  font-weight: bold;
  top: 45%;
}

.little-icon {
  background: #000;
  border: 0;
  border-radius: 100%;
  outline: none;
  width: 40px;
  height: 40px;
  margin: 0 9px -15px -18px;
  display: none;
}

#asset-list-box {
  float: left;
  z-index: 1;
  background: #090909f5;
  width: 350px;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden scroll;
}

#asset-list-close {
  float: right;
  background: none;
  width: 25px;
  height: 25px;
  margin-top: 8px;
  margin-right: 13px;
}

#asset-list-close img {
  width: 25px;
  height: 25px;
  transition: all .3s;
}

#asset-list-close:hover img {
  opacity: .5;
}

#asset-list {
  margin-top: 44px;
}

.list-clear {
  clear: both;
  display: block;
}

#asset-list ul {
  cursor: pointer;
  border-bottom: 1px solid #111;
  height: 81px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transition: all .3s;
  display: block;
}

#asset-list ul:hover {
  background: #111;
}

#asset-list ul:first-of-type {
  border-top: 1px solid #111;
}

#asset-list ul:nth-child(3) {
  border-bottom: 0;
}

#asset-list ul:nth-child(4) {
  border-top: 1px solid #111;
}

#asset-list ul li.list-icon {
  vertical-align: top;
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 0;
  display: inline-block;
}

#asset-list ul li.list-icon img {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  margin: 10px;
  padding: 0;
}

#asset-list ul li.list-symbol {
  vertical-align: top;
  color: #dfdfdf;
  width: calc(100% - 82px);
  height: 60px;
  margin: 0;
  padding: 10px 0 0 2px;
  font-size: 25px;
  font-weight: normal;
  transition: all .3s;
  display: inline-block;
}

#asset-list ul li.list-name {
  color: #1dd2bd;
  width: calc(100% - 83px);
  margin-top: -36px;
  margin-bottom: 18px;
  margin-left: 83px;
  transition: all .3s;
}

#asset-list ul:hover .list-symbol {
  color: #2a71f8;
}

#asset-list ul:hover .list-name {
  color: #fff;
}

select#sent-filter, select#sent-buyers, select#received-filter, select#received-sellers, select#market-filter, select#market-sellers {
  color: #2a71f8;
  text-align: center;
  cursor: pointer;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 275px;
  height: 40px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
}

select#received-filter:hover, select#received-sellers:hover, select#sent-filter:hover, select#market-filter:hover, select#market-sellers:hover, select#sent-buyers:hover {
  color: #1dd2bd;
}

select#market-sellers, select#received-sellers, select#sent-buyers {
  margin-left: 11px;
}

.panel-list {
  border-top: 1px solid #1dd2bd1a;
  margin-top: 12px;
}

.panel-list ul li.first-li-img {
  margin-left: 12px;
}

.panel-list ul.row {
  border-bottom: 1px solid #1dd2bd1a;
  margin: 0;
  padding: 12px 0;
  list-style-type: none;
  transition: all .3s;
  display: none;
}

.panel-list ul.row:hover {
  background: #000;
}

.panel-list ul.row li {
  vertical-align: top;
  display: inline-block;
}

.panel-list ul.row li.item-title {
  padding: 0 0 6px 14px;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.panel-list ul.row li.item-id {
  color: #4e4e4e;
  padding: 0 0 12px 14px;
  display: block;
}

.panel-list ul.row li.item-id span.item-label {
  color: #1dd2bd;
  vertical-align: top;
  margin-right: 5px;
}

.item-acct {
  vertical-align: top;
  cursor: pointer;
  color: #f9df95;
  transition: all .3s;
}

.item-acct:hover {
  color: #4e4e4e;
}

.panel-list ul.row li.item-details {
  cursor: pointer;
  background: #111;
  border-radius: 6px;
  width: 140px;
  height: 32px;
  margin-left: 12px;
  padding: 9px;
  transition: all .3s;
  overflow: hidden;
}

.panel-list ul.row li.item-details .item-symbol {
  transition: all .3s;
}

.panel-list ul.row li.item-details .item-name {
  color: #2a71f8;
  font-size: 12px;
  transition: all .3s;
  overflow: hidden;
}

.panel-list ul.row li.item-details:hover .item-symbol {
  color: #1dd2bd;
}

.panel-list ul.row li.item-details:hover .item-name {
  color: #fff;
}

.panel-list ul.row li.item-buyer {
  color: #2a71f8;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  background: #111;
  border-radius: 6px;
  width: 145px;
  height: 50px;
  margin-left: 12px;
  margin-right: 12px;
  line-height: 50px;
  transition: all .3s;
  display: inline-block;
}

.panel-list ul.row li.item-buyer:hover {
  color: #1dd2bd;
}

.item-amount {
  color: #1dd2bd;
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  background: #111;
  border-radius: 6px;
  width: 145px;
  height: 50px;
  margin-left: 12px;
  padding-left: 15px;
  line-height: 50px;
  transition: all .3s;
  display: inline-block;
  overflow: hidden;
}

.item-amount:hover {
  color: #fff;
}

.item-img {
  cursor: pointer;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: block;
}

.item-img:hover {
  -webkit-filter: grayscale();
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  opacity: .35;
}

.item-time {
  color: #fff;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  background: #111;
  border-radius: 6px;
  width: 190px;
  height: 50px;
  margin-left: 12px;
  font-size: 13px;
  line-height: 50px;
  transition: all .3s;
  display: inline-block;
  overflow: hidden;
}

.item-time:hover {
  color: #6b6b6b;
}

.item-action {
  vertical-align: top;
  background: none;
  border-radius: 6px;
  height: 50px;
  margin-left: 12px;
  line-height: 50px;
  transition: all .3s;
  display: inline-block;
}

button.item-cancel, button.item-authorize, button.item-public-authorize {
  color: #f9df95;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  background: #090909f5;
  border-radius: 30px;
  width: 145px;
  height: 50px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 50px;
  transition: all .3s;
  display: inline-block;
  overflow: hidden;
}

button.item-cancel:hover, button.item-authorize:hover, button.item-public-authorize:hover {
  color: #1dd2bd;
}

.preload {
  float: left;
  z-index: -2;
  width: 1px;
  height: 1px;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
}

.arrow {
  background: none;
  width: 20px;
  height: 20px;
  margin: 13px -6px 0 -14px;
}

.arrow_up, .arrow_down {
  margin: 15px 6px 0 -26px;
}

.arrow img {
  width: 20px;
  height: 20px;
}

#received-refresh, #sent-refresh, #market-refresh {
  float: right;
  background: none;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
}

#received-refresh img, #sent-refresh img, #market-refresh img {
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  display: block;
}

.spin {
  animation: 1s ease-in-out infinite spin;
}

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

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

.panel-list ul.row li button.item-hide {
  float: left;
  color: #2a71f8;
  background: #090909;
  border-radius: 6px 6px 6px 0;
  width: 70px;
  margin: -12px 0 0 -203px;
  padding: 6px;
  font-size: 12px;
  transition: all .3s;
}

.panel-list ul.row li button.item-hide:hover {
  color: #1dd2bd;
}

#settings-view span.label-category {
  width: 200px;
}

a.inline-link {
  color: #2a71f8;
  text-decoration: none;
  transition: all .3s;
}

a.inline-link:hover {
  color: #1dd2bd;
}

#settings-view .row {
  padding: 5px;
  font-size: 14px;
  font-weight: bold;
}

#settings-view .row:first-of-type {
  border-top: 1px solid #11111182;
}

.settings-input {
  color: #2a71f8;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: calc(100% - 20px);
  height: 40px;
  padding: 0 10px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
}

.settings-input::placeholder {
  color: #292929;
  opacity: 1;
}

#settings-rpc {
  width: calc(50% - 30px);
}

#settings-priority, #settings-refresh, #settings-notis {
  color: #2a71f8;
  text-align: center;
  cursor: pointer;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 200px;
  height: 40px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
}

#settings-priority:hover, #settings-refresh:hover, #settings-notis:hover {
  color: #1dd2bd;
}

#settings-screensaver, #settings-rate {
  color: #2a71f8;
  text-align: center;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 80px;
  height: 40px;
  margin: 0 14px 0 0;
  padding: 0;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
}

#settings-refresh:disabled, #settings-rate:disabled, #settings-notis:disabled {
  color: #282828;
  opacity: 1;
  background: #000;
}

#main-cover {
  z-index: 1000;
  opacity: .8;
  background: #000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#main-message {
  float: left;
  color: #f7f7f7;
  text-shadow: 2px 2px #111;
  z-index: 11;
  text-align: center;
  width: 100%;
  height: 100px;
  font-family: Ubuntu;
  font-size: 18px;
  font-weight: 700;
  animation: 1.5s linear infinite message_blinker;
  display: block;
  position: absolute;
  top: 45%;
}

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

#asset_filter {
  color: #f9df95;
  float: left;
  text-transform: lowercase;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: calc(100% - 75px);
  height: 26px;
  margin: 8px 0 0 6px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 26px;
  transition: all .3s;
}

#asset_filter::placeholder {
  color: #292929;
  opacity: 1;
}

.qty-left {
  margin-left: 5px;
}

.qty-center {
  padding: 0 3px;
}

.qty-left, .qty-center, .qty-right {
  font-weight: normal;
}

.qty-center {
  color: #1dd2bd;
  font-weight: bold;
}

img.intro-wallet {
  width: 40px;
  height: 40px;
}

.wallet-name {
  vertical-align: top;
  width: 65px;
  height: 40px;
  margin-right: 15px;
  line-height: 40px;
  display: inline-block;
}

a.wallet-link {
  vertical-align: top;
  color: #2a71f8;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  display: inline-block;
}

a.wallet-link:hover {
  color: #1dd2bd;
}

.link-sep {
  vertical-align: top;
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
  display: inline-block;
}

.wallet-options {
  vertical-align: top;
  display: inline-block;
}

#search-blackbook {
  color: #f9df95;
  text-align: center;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 271px;
  height: 38px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 38px;
  transition: all .3s;
}

#search-blackbook::placeholder {
  color: #292929;
  opacity: 1;
}

#import-blackbook, #export-blackbook, #import-contact {
  color: #2a71f8;
  text-align: center;
  vertical-align: top;
  background: #111;
  border: 0;
  border-radius: 6px;
  outline: none;
  width: 100px;
  height: 40px;
  margin: 0 0 0 11px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 40px;
  transition: all .3s;
}

#import-blackbook {
  cursor: pointer;
  width: 273px;
  margin: 0 0 0 7px;
}

#import-blackbook:hover, #export-blackbook:hover {
  color: #1dd2bd;
  background: #1b1b1b66;
}

#export-blackbook {
  float: right;
}

#export-blackbook:disabled {
  color: #3f3f3f;
  opacity: .5;
  box-shadow: none;
  cursor: default;
  background: #1b1b1b;
}

#import-blackbook::file-selector-button {
  cursor: pointer;
  background: none;
  border: 0;
  margin-left: 8px;
  margin-right: 4px;
  font-family: Ubuntu;
  font-weight: bold;
}

#import-contact {
  cursor: pointer;
  width: 275px;
  margin: 0 0 0 7px;
}

@media only screen and (width <= 1400px) {
  #settings-rpc {
    width: calc(100% - 20px);
  }

  .panel-list ul.row:last-of-type {
    margin-bottom: 0;
  }

  .panel-list ul.row li.break {
    width: calc(100% - 175px);
    margin: 12px 0 0;
    display: block;
  }

  .panel-list ul.row li.item-buyer {
    width: 190px;
  }

  .img-2 {
    margin-left: 12px;
  }

  .panel-list {
    border-top: 0;
  }

  .panel-list .drag-box {
    width: calc(100% - 40px);
    height: 150px;
  }

  .panel-list .drag-box:last-of-type {
    height: 136px;
  }

  .panel-list ul.row {
    float: left;
    background: #000000c7;
    border: 0;
    border-radius: 8px;
    width: calc(100% - 64px);
    margin: 0 0 15px;
    position: absolute;
    left: 0;
    box-shadow: 0 0 3px #1dd2bd;
  }

  .panel-list ul.row:hover {
    box-shadow: 0 0 6px 3px #1dd2bd;
  }

  .item-action {
    float: right;
    margin: -61px 11px 0 0;
    display: block;
  }

  .panel-list ul.row li.item-amount {
    text-align: left;
    padding-left: 15px;
    font-size: 12px;
  }

  .panel-list ul.row li.item-time, .panel-list ul.row li.item-buyer {
    font-size: 12px;
  }

  .panel-list ul.row li button.item-hide {
    float: right;
    border-radius: 20px;
    width: 70px;
    padding: 8px;
    font-size: 12px;
    position: absolute;
    bottom: 12px;
    right: 12px;
  }
}

@media only screen and (width <= 750px) {
  #nav #nav-contain button.view, #nav #nav-contain button#connect, #nav #nav-contain button#disconnect {
    width: calc(25% - 13px);
    padding: 10px;
    font-size: 13px;
  }

  #nav #nav-contain button#connect, #nav #nav-contain button#disconnect {
    margin: 9px 12px 0 0;
    font-size: 13px;
    font-weight: bold;
  }

  #nav #nav-contain button#cog {
    margin: 11px 9px 0 0;
  }

  .toastify {
    max-width: 230px;
    padding: 10px 15px;
    font-size: 13px;
  }
}

@media only screen and (width <= 899px) {
  .panel-list ul.row li.item-action {
    float: none;
    width: 100%;
    margin: 20px auto 9px;
    padding: 0;
    display: block;
  }

  li.item-action, button.item-action {
    float: none;
    margin: 0 auto;
    display: block;
  }

  .panel-list .drag-box {
    height: 354px;
  }

  .panel-options {
    width: calc(100% - 36px);
  }

  select#sent-filter, select#sent-buyers, select#received-filter, select#received-sellers, select#market-filter, select#market-sellers {
    width: calc(50% - 6px);
  }

  .panel-list ul.row {
    padding-top: 13px;
    display: block;
  }

  .panel-list ul.row li.mobile-break {
    width: 100%;
    height: 12px;
    margin: 0;
    padding: 0;
    display: block;
  }

  .panel-list ul.row li.item-details {
    width: calc(100% - 103px);
  }

  .panel-list ul.row li.item-buyer, .panel-list ul.row li.item-time {
    width: calc(50% - 14px);
    margin-left: 11px;
    margin-right: 0;
  }

  .panel-list ul.row li.item-amount {
    text-align: left;
    width: calc(50% - 36px);
    padding-left: 15px;
  }

  .item-label {
    font-size: 8px;
  }

  .item-acct {
    width: calc(100% - 30px);
    font-size: 8px;
    display: inline-block;
    overflow: hidden;
  }

  #logo-home button#introduction {
    font-size: 12px;
  }
}

@media only screen and (width <= 696px) {
  .panel-list ul.row li.item-amount, .panel-list ul.row li.item-buyer {
    font-size: 12px;
  }

  .panel-list ul.row li.item-time {
    font-size: 10px;
  }
}

@media only screen and (width <= 600px) {
  #create-form #creator-asset, #create-form #buyer-asset {
    width: calc(100% - 95px);
  }

  #create-form #create-memo, #create-form #creator-amount, #create-form #buyer-amount, #create-form #buyer-wallet {
    width: calc(100% - 94px);
  }

  #create-form #buyer-type {
    width: calc(100% - 64px);
  }

  #create-form button.submit {
    width: 200px;
    margin: 36px auto 28px;
  }
}

@media only screen and (width <= 450px) {
  .toastify {
    max-width: 200px;
    padding: 10px 15px;
    font-size: 12px;
  }

  #logo-home {
    width: 260px;
    left: calc(50% - 130px);
  }

  #nav #nav-contain button {
    font-size: 12px;
  }

  #nav #nav-contain button#connect, #nav #nav-contain button#disconnect {
    min-width: 78px;
    font-size: 11px;
    font-weight: normal;
  }

  #nav #nav-contain button#cog {
    width: 27px;
    height: 27px;
    margin: 12px 6px 0 0;
  }

  #nav #nav-contain button#cog img {
    width: 27px;
    height: 27px;
  }

  #nav #nav-contain button.view {
    font-size: 11px;
  }

  .arrow_up, .arrow_down {
    margin: 0 0 0 -19px;
  }

  button.item-action {
    float: left;
    width: 110px;
    margin-left: 20px;
  }

  #logo-home button#introduction {
    font-weight: normal;
  }

  #logo-home {
    top: calc(50% - 80px);
  }

  #introduction-view .panel-box .row, #introduction-view .panel-box .row .label-category {
    font-size: 14px;
  }
}
/*# sourceMappingURL=app.9f367d21.css.map */
