/*!* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1
}

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

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

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

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 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 {
  -webkit-animation-iteration-count: 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 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
  -webkit-animation-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 {
  -webkit-animation-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 {
  -webkit-animation-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 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay)*5);
  animation-delay: calc(var(--animate-delay)*5)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1
  }

  25%, 75% {
    opacity: 0
  }
}

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

  25%, 75% {
    opacity: 0
  }
}

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

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

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

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

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

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

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }

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

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }

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

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

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

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

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

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

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

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

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

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

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

@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

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

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

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

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

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

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

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

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

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

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

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

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

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

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

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

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

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

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

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

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown
}

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

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

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

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

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

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

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft
}

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

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

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

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

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

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

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight
}

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

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

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

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

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

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

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp
}

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

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

  to {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7
  }
}

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

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

  to {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7
  }
}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown
}

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

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

  to {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }
}

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

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

  to {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }
}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft
}

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

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

  to {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }
}

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

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

  to {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }
}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight
}

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

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

  to {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7
  }
}

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

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

  to {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7
  }
}

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp
}

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

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

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}

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

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

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

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

.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}

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

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

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

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

.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}

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

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

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

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

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

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

.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutDown {
  0% {
    opacity: 1
  }

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

.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

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

.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

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

.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

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

.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

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

.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

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

.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutUp {
  0% {
    opacity: 1
  }

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

.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

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

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

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

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

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

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

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

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

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

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1
  }

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

@keyframes lightSpeedOutRight {
  0% {
    opacity: 1
  }

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

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

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1
  }

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

@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1
  }

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

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

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
}

.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0
  }
}

.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}

@keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}

.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}

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

  50% {
    opacity: 1
  }
}

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

  50% {
    opacity: 1
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

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

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

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

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

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}

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

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

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

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

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}

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

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

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

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

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}

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

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

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

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

.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}

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

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

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

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

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

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

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

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

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

.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center
}

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

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

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

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

.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center
}

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

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
}

a {
  text-decoration: none
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0
}

p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0
}

dl, label, ol, ul {
  margin-bottom: 0
}

ul {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  list-style: none;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0
}

button, input {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  background: 0 0
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #000
}

::-webkit-scrollbar-thumb {
  background-color: #3e0f11;
  background-size: 100% 300%;
  border-radius: 0;
  -webkit-transition: .3s;
  transition: .3s
}

::-moz-selection {
  color: #fff;
  background: #3e0f11
}

::selection {
  color: #fff;
  background: #3e0f11
}

/*!normalize.css v2.1.3 | MIT License | git.io/normalize*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block
}

audio, canvas, video {
  display: inline-block
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden], template {
  display: none
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

a {
  background: 0 0
}

a:focus {
  outline: none
}

a:active, a:hover {
  outline: 0
}

h1 {
  font-size: inherit;
  margin: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b, strong {
  font-weight: 700
}

dfn {
  font-style: italic
}

hr {
  box-sizing: content-box;
  height: 0
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em
}

pre {
  white-space: pre-wrap
}

q {
  quotes: "\201C""\201D""\2018""\2019"
}

small {
  font-size: inherit
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

figure {
  margin: 0
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}

legend {
  border: 0;
  padding: 0
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0
}

button, input {
  line-height: normal
}

button, select {
  text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled], html input[disabled] {
  cursor: default
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto;
  vertical-align: top
}

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

:after, :before {
  pointer-events: none
}

@font-face {
  font-family: Trajan Pro;
  src: url(../fonts/TrajanProBold.ttf) format("truetype");
  font-weight: 400;
  font-style: normal
}

body {
  font-weight: 500 !important;
  color: #000;
  background-color: #060402;
  background-repeat: repeat;
  background-size: auto;
  font-family: Open Sans, sans-serif;
  overflow-y: auto;
}

.header {
  background-image: url(../images/headerBG.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
  overflow: hidden;
  min-width: 1290px;
  height: 600px
}

@media(max-width:1919px) {
  .header {
    background-size: cover;
    background-position: 50%
  }
}

@media(min-width:1921px) {
  .header {
    background-size: cover;
    background-position: 50%
  }
}

.header video {
  position: absolute;
  pointer-events: none !important;
  height: 840px;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  z-index: 1
}

.header .fake-logo {
  width: 450px;
  height: 250px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  opacity: 0;
  background-color: red;
  transform: translate(-100%, -50%)
}

.header .nav {
  height: 102px;
  min-height: 102px;
  display: flex;
  justify-content: center
}

.header .nav:before {
  width: 1810px;
  min-width: 2030px;
  height: 102px;
  background-image: url(../images/bg-menu.png);
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(-55px)
}

.header .nav>.logo-head {
  z-index: 3;
  position: relative;
  width: 155px;
  min-width: 155px;
  max-width: 155px;
  /* margin: 15px 30px auto; */
  margin: 15px 30px -530px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  right: 469px;
  top: -78px;
}

.header .nav>.logo-head:hover {
  transform: scale(1.03)
}

.header .nav ul {
  width: 515px;
  min-width: 515px;
  max-width: 515px;
  z-index: 3;
  position: relative;
  display: flex;
  margin-top: 16px;
}

.header .nav ul a {
  color: inherit;
  font-weight: inherit
}

.header .nav ul li {
  font-size: 13px;
  font-family: Open Sans, sans-serif;
  color: #f9ffbc;
  line-height: 1.2;
  text-align: left;
  transition: .3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .2)
}

.header .nav ul li.active, .header .nav ul li:hover {
  color: #1d1917
}

.header .nav ul.r-menu {
  margin-left: 45px;
  justify-content: flex-start
}

.header .nav ul.r-menu li {
  margin-right: 115px
}

.header .nav ul.l-menu {
  margin-right: 45px;
  justify-content: flex-end;
}

.header .nav ul.l-menu li {
  margin-left: 115px
}

.header .header-dod {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 1260px;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 300px
}

.header .header-dod .download {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  height: 140px;
  margin-right: 15px;
  position: relative;
  right: -98px;
}

.header .header-dod .download:hover:after {
  transform: rotate(10deg);
  filter: brightness(110%)
}

.header .header-dod .download:hover:before {
  filter: brightness(120%)
}

.header .header-dod .download:after {
  transition: .5s;
  background-image: url(../images/download-circle.png);
  width: 162px;
  height: 141px;
  display: block;
  z-index: 1;
  position: absolute;
  top: -1px;
  left: -12px;
  content: ""
}

.header .header-dod .download:before {
  background-image: url(../images/download-content.png);
  width: 51px;
  z-index: 2;
  transition: .3s;
  height: 43px;
  display: block;
  position: absolute;
  background-size: contain;
  background-position: 50%;
  top: 47px;
  left: 45px;
  content: ""
}

.header .header-dod .stat-box {
  width: 294px;
  /* margin-right: 94px; */
  height: 141px;
  z-index: 2;
  display: flex;
  align-items: center;
  background-image: url(../images/header-stat.png);
  position: absolute;
  right: 335px;
}

.header .header-dod .stat-box strong {
  font-size: 30px;
  font-family: Trajan Pro;
  color: #fff4e3;
  font-weight: 700;
  width: 141px;
  margin-left: -13px;
  padding-right: 5px;
  text-align: center;
  line-height: 1.2;
}

.header .header-dod .stat-box span {
  font-size: 10px;
  color: #a4917d;
  line-height: 1.083;
  max-width: 70px;
}

.body {
  background-image: url(../images/content-bg.png);
  width: 100%;
  z-index: 2;
  position: relative;
  margin-top: -110px;
  padding-top: 70px;
  min-width: 1290px
}

.body .container {
  width: 1260px;
  display: flex;
  margin: 0 auto
}

.body .container.main {
  background-color: #0c0906;
  box-shadow: 0 1px 90px 0 rgba(0, 0, 0, .08);
  position: relative
}

.body .container.main:after {
  z-index: 1;
  width: 100%;
  position: absolute;
  height: 1px;
  border-bottom: 1px solid #0c0906;
  background-color: #0c0906;
  content: "";
  display: block;
  bottom: 0;
  left: 0
}

.body .container .box-sm-v1 .heading {
  display: flex;
  height: 54px;
  padding: 0 30px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #413122, #2b2017);
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, .1);
  border-bottom: 1px solid #675950;
  margin-bottom: 2px;
}

.body .container .box-sm-v1 .heading.animv1:after {
  -webkit-animation: rotatenicely-v1 50s linear infinite;
  animation: rotatenicely-v1 50s linear infinite
}

.body .container .box-sm-v1 .heading.animv2:after {
  -webkit-animation: rotatenicely-v1 90s ease-out infinite;
  animation: rotatenicely-v1 90s ease-out infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate
}

.body .container .box-sm-v1 .heading:after {
  content: "";
  height: 140px;
  width: 140px;
  min-width: 140px;
  opacity: .7;
  position: absolute;
  left: -20px;
  display: block;
  background-image: url(../images/h2-v1.png);
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%
}

@-webkit-keyframes rotatenicely-v1 {
  0% {
    transform: translateY(-50%) rotate(0);
    opacity: .8
  }

  50% {
    transform: translateY(-50%) rotate(90deg);
    opacity: .5
  }

  to {
    transform: translateY(-50%) rotate(0deg);
    opacity: .8
  }
}

@keyframes rotatenicely-v1 {
  0% {
    transform: translateY(-50%) rotate(0);
    opacity: .8
  }

  50% {
    transform: translateY(-50%) rotate(90deg);
    opacity: .5
  }

  to {
    transform: translateY(-50%) rotate(0deg);
    opacity: .8
  }
}

.body .container .box-sm-v1 .heading h2 {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-family: Open Sans;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin: auto 0
}

.body .container .box-sm-v1 .heading>div {
  display: flex;
  justify-content: flex-end;
  font-family: Open Sans;
  align-items: center
}

.body .container .box-sm-v1 .heading>div>span {
  font-size: 12px;
  color: #625e5e;
  line-height: 1.2;
  display: block;
  margin-right: 5px
}

.body .container .box-sm-v1 .heading>div>a[href]:hover {
  text-decoration: underline
}

.body .container .box-sm-v1 .heading>div>.p-w-l {
  color: #ecdbc0
}

.body .container .box-sm-v1 .inner.loggedin-box {
  background-image: url(../images/login-box-bg.png)
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .playerdata {
  font-size: 11px;
  font-weight: 400
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .playerdata span.l-1 {
  display: block;
  color: #fff
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .playerdata span.l-1 span {
  color: #ffead7
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .playerdata span.l-2 {
  display: block;
  color: #9d9494
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .playerdata span.l-2 span.unverified {
  color: #ce4c4c
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .playerdata span.l-2 span.verified {
  color: #7bd458
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .coins {
  display: flex;
  align-items: center
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .coins strong {
  position: relative
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .coins strong:after {
  background-image: url(../images/dod-coins.png);
  width: 121px;
  height: 28px;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-70%, -50%);
  display: block
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .coins strong b {
  color: #ffead7;
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .coins .buy {
  height: 12px;
  width: 12px;
  max-width: 12px;
  background-image: url(../images/buy-coins.png);
  display: block;
  transition: .2s
}

.body .container .box-sm-v1 .inner.loggedin-box .topdets .coins .buy:hover {
  filter: brightness(120%)
}

.body .container .box-sm-v1 .inner.loggedin-box .navs {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a {
  padding: 0 30px;
  overflow: hidden;
  font-size: 12px;
  display: flex;
  align-items: center;
  font-weight: 400;
  background-image: url(../images/bg-left-nav.png);
  width: 260px;
  height: 31px;
  color: #9d9494;
  position: relative
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a:before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  background-color: #ce4c4c;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: .2s
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a.active, .body .container .box-sm-v1 .inner.loggedin-box .navs a:hover {
  color: #ffead7
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a.active:before, .body .container .box-sm-v1 .inner.loggedin-box .navs a:hover:before {
  opacity: 1
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a.active span, .body .container .box-sm-v1 .inner.loggedin-box .navs a:hover span {
  transform: translateX(10px)
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a.logout {
  color: #ce4c4c
}

.body .container .box-sm-v1 .inner.loggedin-box .navs a span {
  transition: .2s;
  display: block
}

.body .container .box-sm-v1 .inner.login-box {
  background-image: url(../images/login-box-bg2.png);
  background-color: #0c0906;
}

.body .container .box-sm-v1 .inner.login-box form {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  border-bottom: 1px solid #675950;
}

.body .container .box-sm-v1 .inner.login-box form>label.password, .body .container .box-sm-v1 .inner.login-box form>label.username {
  margin-bottom: 5px;
  background-image: url(../images/input-left-bg.png);
  width: 260px;
  height: 40px;
  min-height: 40px;
  display: flex;
  position: relative
}

.body .container .box-sm-v1 .inner.login-box form>label.password:before, .body .container .box-sm-v1 .inner.login-box form>label.username:before {
  height: 40px;
  width: 40px;
  min-width: 40px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-size: auto;
  background-position: 50%;
  background-repeat: no-repeat
}

.body .container .box-sm-v1 .inner.login-box form>label.password input, .body .container .box-sm-v1 .inner.login-box form>label.username input {
  width: 100%;
  padding: 0 25px 0 60px;
  color: #ffead7;
  font-size: 12px;
  font-weight: 400;
}

.body .container .box-sm-v1 .inner.login-box form>label.password {
  margin-bottom: 15px
}

.body .container .box-sm-v1 .inner.login-box form>label.password:before {
  background-image: url(../images/input-icon-left-password.png)
}

.body .container .box-sm-v1 .inner.login-box form>label.username {
  margin-bottom: 5px
}

.body .container .box-sm-v1 .inner.login-box form>label.username:before {
  background-image: url(../images/input-icon-left-username.png)
}

.body .container .box-sm-v1 .inner.login-box form button {
  display: flex;
  transform: translateX(3px);
  align-items: center;
  justify-content: center;
  background-image: url(../images/login-button.png);
  width: 212px;
  height: 40px;
  transition: .4s;
  color: #ffe265;
}

.body .container .box-sm-v1 .inner.login-box form button b {
  font-size: 12px;
  font-family: Open Sans;
  color: #150f0f;
  font-weight: 700;
  line-height: 1.083;
  text-shadow: 1px 1px 1px #e5d5b3
}

.body .container .box-sm-v1 .inner.login-box form button:hover {
  filter: brightness(120%)
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox {
  position: relative;
  width: 140px;
  max-width: 140px;
  height: 40px;
  max-height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 1px
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox input:checked+span:after {
  opacity: 1
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox span {
  padding-left: 25px;
  font-size: 12px;
  color: #625757;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .15);
  font-weight: 400 !important
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox span b {
  font-weight: 400 !important
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox span:before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  background-image: url(../images/checkbox-bg.png);
  width: 14px;
  height: 14px;
  display: block
}

.body .container .box-sm-v1 .inner.login-box form>label.checkbox span:after {
  opacity: 0;
  transition: .2s;
  content: "";
  position: absolute;
  left: 8px;
  transform: translate(-50%, -50%);
  top: 50%;
  background-image: url(../images/checkbox-check.png);
  width: 37px;
  height: 36px;
  display: block
}

.body .container .box-sm-v1 .inner.login-box .login-add {
  background-color: rgb(12 9 6);
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
}

.body .container .box-sm-v1 .inner.login-box .login-add .lane {
  width: 100%;
  min-width: 100%;
  font-size: 11px;
  font-weight: 400;
  color: #9d9494
}

.body .container .box-sm-v1 .inner.login-box .login-add .lane:not(:last-child) {
  margin-bottom: 5px
}

.body .container .box-sm-v1 .inner.login-box .login-add .lane a:hover {
  text-decoration: underline
}

.body .container .box-sm-v1 .inner.login-box .login-add .lane .c-golden {
  color: #ffead7
}

.body .container .box-sm-v1 .inner.login-box .login-add .lane .c-white {
  color: #fff
}

.body .container .box-sm-v1 .inner.rank {
  background-image: url(../images/login-box-bg.png);
  background-size: cover;
  margin-bottom: 2px;
}

.body .container .box-sm-v1 .inner.rank .pix-tab .order {
  font-size: 12px;
  width: 35px
}

.body .container .box-sm-v1 .inner.rank .pix-tab .username {
  font-size: 12px;
  width: 120px
}

.body .container .box-sm-v1 .inner.rank .pix-tab .kingdom {
  font-size: 12px;
  width: 85px
}

.body .container .box-sm-v1 .inner.rank .pix-tab .level {
  font-size: 12px;
  width: 20px;
  text-align: right
}

.body .container .box-sm-v1 .inner.rank .p-tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane {
  padding: 0 30px;
  display: flex;
  transition: .2s;
  width: 266px;
  position: relative;
  left: -3px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #544336;
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane:hover {
  transform: translateX(3px)
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane:nth-child(2n) {
  background-image: linear-gradient(90deg, #0e0a05, #2d2218);
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane:nth-child(odd) {
  background-image: linear-gradient(90deg, #0c0906, #0c0906);
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .order {
  color: #9d9494
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .username {
  color: #fff
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .kingdom.red {
  color: #d84b4b
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .kingdom.blue {
  color: #5d99f2
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .kingdom.yellow {
  color: #e6af57
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .kingdom img {
  width: 24px
}

.body .container .box-sm-v1 .inner.rank .p-tbody .lane .level {
  color: #ffead7
}

.body .container .box-sm-v1 .inner.rank .p-thead {
  display: flex;
  background-image: -linear-gradient(0deg, #161010 0, #1a1313 100%);
  height: 42px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
}

.body .container .box-sm-v1 .inner.rank .p-thead>* {
  font-size: 11px;
  color: #e8b18b;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .15);
}

.body .container .box-sm-v1 .inner.rank-add {
  background-image: url(../images/show-full-ranking.png);
  width: 320px;
  height: 54px;
  display: flex;
  align-items: center;
  transition: .4s
}

.body .container .box-sm-v1 .inner.rank-add span {
  font-size: 12px;
  color: #ecdbc1;
  line-height: 1.2;
  left: 40px;
  position: relative
}

.body .container .box-sm-v1 .inner.rank-add:hover {
  filter: brightness(110%)
}

.body .container .box-sm-v1 .inner.stats-box {
  margin-bottom: 1px
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat {
  height: 60px;
  width: 320px;
  display: flex;
  align-items: center
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat.l-s-1 {
  background-image: url(../images/stats-lane1.png)
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat.l-s-2 {
  background-image: url(../images/stats-lane2.png)
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat.l-s-3 {
  background-image: url(../images/stats-lane3.png)
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat .text {
  margin-left: 75px;
  line-height: 1.2
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat .text strong {
  font-weight: 700;
  font-size: 16px;
  display: block;
  color: #ffead7
}

.body .container .box-sm-v1 .inner.stats-box .lane-stat .text span {
  font-size: 11px;
  font-weight: 400;
  color: #9d9494;
  display: block
}

.body .container .box-sm-v1 .inner.events-box {
  padding: 30px;
  background-image: url(../images/content-bg3.png);
  background-size: cover;
  min-height: 340px;
  background-color: #0c0906;
}

.body .container .box-sm-v1 .inner.events-box .inside .banner-main {
  margin-bottom: 15px;
  position: relative;
  width: 260px;
  height: 145px;
  display: block;
  transition: .4s
}

.body .container .box-sm-v1 .inner.events-box .inside .banner-main:hover {
  transform: translateY(-3px)
}

.body .container .box-sm-v1 .inner.events-box .inside .banner-main:after {
  left: -1px;
  top: -1px;
  width: 263px;
  height: 147px;
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/event-main-frame.png)
}

.body .container .box-sm-v1 .inner.events-box .inside .banner-main img {
  width: 260px;
  height: 145px;
  -o-object-fit: cover;
  object-fit: cover
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane {
  padding-left: 17px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  transition: .2s
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane:hover .details, .body .container .box-sm-v1 .inner.events-box .inside .other-events .lane:hover .title {
  transform: translateX(3px)
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane:hover:before {
  background-color: #d84b4b
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane:before {
  transition: .2s;
  height: 4px;
  transform-origin: 2px 2px;
  width: 4px;
  border-radius: 50%;
  background-color: #96847a;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%)
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane .title {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 2px;
  transition: .2s;
  color: #fff0d8
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane .title .by {
  font-weight: 400;
  color: #96847a
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane .title .by b {
  font-weight: 400;
  color: #d84b4b
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane .details {
  color: #6a5d56;
  font-size: 11px;
  transition: .2s;
  font-weight: 400
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane .details b {
  color: #9e918a;
  font-weight: 400
}

.body .container .box-sm-v1 .inner.events-box .inside .other-events .lane:not(:last-child) {
  border-bottom: 1px solid #2d2323
}

.body .container .banners-box .banner {
  height: 100px;
  width: 320px;
  display: flex;
  position: relative;
  transition: .4s
}

.body .container .banners-box .banner.banner-1 {
  background-image: url(../images/banner-right.png)
}

.body .container .banners-box .banner.banner-1 span {
  position: absolute;
  left: 30px;
  bottom: 25px;
  text-align: left
}

.body .container .banners-box .banner.banner-2 {
  background-image: url(../images/banner-right-2.png)
}

.body .container .banners-box .banner.banner-2 span {
  position: absolute;
  right: 30px;
  bottom: 25px;
  text-align: right
}

.body .container .banners-box .banner:not(:last-child) {
  margin-bottom: 1px
}

.body .container .banners-box .banner:not(:last-child):after {
  height: 1px;
  display: block;
  width: 320px;
  background-image: linear-gradient(90deg, #312928, #140e0e);
  position: absolute;
  bottom: -1px;
  content: ""
}

.body .container .banners-box .banner span {
  font-size: 16px;
  font-family: Trajan Pro;
  color: #fff;
  font-weight: 700;
  position: absolute
}

.body .container .banners-box .banner:hover {
  filter: brightness(120%)
}

.body .container .button-big-gold {
  height: 92px;
  width: 320px;
  margin-bottom: 2px;
  background-image: url(../images/big-button-gold.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: 50%;
  transition: .4s
}

.body .container .button-big-gold:hover {
  filter: brightness(110%)
}

.body .container .button-big-gold b {
  font-size: 16px;
  font-family: Trajan Pro;
  color: #fff;
  font-weight: 700;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 32px rgba(0, 0, 0, .22), 0 2px 0 rgba(0, 0, 0, .22)
}

.body .container .left-col {
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  position: relative;
  z-index: 3;
  /* background-color: #0c0906; */
  background-image: url(../images/content-bg3.png);
}

.body .container .center-col {
  width: 620px;
  min-width: 620px;
  position: relative;
  z-index: 3;
  max-width: 620px;
  /* background-color: #0a0704; */
  background: url(../images/content-bg2.png);
}

.body .container .right-col {
  width: 320px;
  min-width: 320px;
  position: relative;
  z-index: 3;
  max-width: 320px
}

.center-col .banner-main {
  padding: 5px
}

.center-col .banner-main .inside {
  max-width: 610px;
  min-width: 610px;
  width: 610px
}

.center-col .banner-main .inside img, .center-col .banner-main .inside video {
  -o-object-fit: cover;
  object-fit: cover
}

.center-col .newsfeed {
  margin-top: 25px;
  padding: 0 30px
}

.center-col .newsfeed .news-single {
  margin: 30px 0
}

.center-col .newsfeed .news-single .titlebar {
  background-image: url(../images/single-post-head.png);
  height: 36px;
  width: 509px;
  background-position: 50%;
  background-repeat: no-repeat;
  display: flex;
  margin-left: -9px;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px
}

.center-col .newsfeed .news-single .titlebar>span {
  text-align: left;
  font-weight: 400;
  color: #fff0d8;
  font-size: 12px
}

.center-col .newsfeed .news-single .titlebar>span:last-child {
  text-align: right;
  font-size: 11px
}

.center-col .newsfeed .news-single .titlebar>span>b {
  font-weight: 400;
  color: #96847a
}

.center-col .newsfeed .news-single .titlebar>span>b span {
  color: #d84b4b
}

.center-col .newsfeed .news-single .innertext:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(transparent 100px, #140e0e)
}

.center-col .newsfeed .news-single .innertext {
  position: relative;
  max-height: 118px;
  overflow: hidden;
  color: #96847a
}

.center-col .newsfeed .news-single .innertext img {
  float: left;
  margin-right: 15px
}

.center-col .newsfeed .news-single .innertext a {
  color: #d84b4b
}

.center-col .newsfeed .news-single .innertext a:hover {
  text-decoration: underline
}

.center-col .newsfeed .news-single .innertext p {
  font-size: 12px;
  color: #dab38c;
  line-height: 1.35;
  text-align: justify;
}

.center-col .newsfeed .news-single .innertext p b {
  font-weight: 400;
  color: #d4beb2
}

.center-col .newsfeed .news-single .more {
  text-align: right;
  margin: 5px
}

.center-col .newsfeed .news-single .more a {
  color: #cda27d;
}

.center-col .newsfeed .news-single .more a:hover {
  text-decoration: underline
}

.footer {
  padding-top: 45px;
  overflow: hidden;
  position: relative
}

.footer:after {
  content: "";
  width: 1920px;
  height: 147px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/footerBG.png)
}

@media(max-width:1919px) {
  .footer:after {
    background-size: cover;
    background-position: 50%
  }
}

@media(min-width:1921px) {
  .footer:after {
    background-size: cover;
    width: 100%;
    background-position: 50%
  }
}

.footer .container {
  flex-direction: column;
  position: relative;
  z-index: 2
}

.footer .foot-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px
}

.footer .foot-social span {
  font-size: 11px;
  color: #5e4934;
  line-height: 1.2;
  margin-right: 10px;
}

.footer .foot-social .links {
  display: flex;
  align-items: center;
  font-size: 18px
}

.footer .foot-social .links a {
  color: #d9af6c;
  margin-left: 10px;
  transition: .2s;
}

.footer .foot-social .links a .fa-discord {
  transform: translateY(1px)
}

.footer .foot-social .links a:hover {
  color: #625757
}

.footer .foot-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px
}

.footer .foot-menu ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end
}

.footer .foot-menu ul li {
  font-size: 12px;
  color: #e0d4d4;
  line-height: 1.2;
  text-align: right;
  margin-left: 90px;
  transition: .2s
}

.footer .foot-menu ul li.active, .footer .foot-menu ul li:hover {
  color: #fff
}

.footer .foot-menu ul a {
  color: inherit;
  font-weight: inherit
}

.footer .foot-foot {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 10px
}

.footer .foot-foot>.go-top {
  display: block;
  position: absolute;
  left: 50%;
  cursor: pointer;
  transform: translateX(-50%);
  width: 128px;
  height: 120px;
  z-index: 3;
  bottom: 15px;
  transition: .3s;
  background-image: url(../images/go-top.png)
}

.footer .foot-foot>.go-top:hover {
  filter: brightness(120%)
}

.footer .foot-foot .author {
  display: flex;
  align-items: center;
  position: relative
}

.footer .foot-foot .author:hover>.tiptip {
  opacity: 1;
  transform: translateY(-3PX)
}

.footer .foot-foot .author>.tiptip {
  background-color: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  opacity: 0;
  transition: .3s;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: -37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #090808
}

.footer .foot-foot .author>.tiptip:after {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  bottom: -10px;
  content: "";
  position: absolute;
  right: 16%;
  transform: translate(-50%, -100%)
}

.footer .foot-foot .author>span {
  font-size: 12px;
  color: #b6aab2
}

.footer .foot-foot .author a {
  margin-left: 10px;
  display: flex;
  align-items: center;
  transition: .2s
}

.footer .foot-foot .author a img {
  transition: .2s
}

.footer .foot-foot .author a:hover {
  filter: brightness(1.25)
}

.footer .foot-foot .ownertag {
  display: flex;
  align-items: center;
  color: #e0d4d4;
  font-size: 12px
}

.footer .foot-foot .ownertag b {
  color: #fff
}

.footer .foot-foot .ownertag a {
  color: #fefefe
}

.footer .foot-foot .ownertag a:hover {
  text-decoration: underline
}

.text-uppercase {
  text-transform: uppercase
}

.center-col .heading-main {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #675950;
  background-image: linear-gradient(
90deg
, #3c2d20, #2d2218);
}

.center-col .heading-main strong {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
  padding: 4px;
}

.center-col .heading-main .switch {
  display: flex
}

.center-col .heading-main .switch .option {
  position: relative;
  color: #96847a;
  transition: .3s
}

.center-col .heading-main .switch .option:not(:last-child) {
  margin-right: 25px
}

.center-col .heading-main .switch .option:not(:last-child) span {
  padding-right: 25px;
  border-right: 1px solid #231b1b
}

.center-col .heading-main .switch .option:last-child.active {
  padding-bottom: 20px
}

.center-col .heading-main .switch .option:last-child.active:after {
  transform: translateX(calc(-50% - 4px));
  width: calc(100% + 8px)
}

.center-col .heading-main .switch .option span {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  display: block
}

.center-col .heading-main .switch .option.active {
  padding-bottom: 25px
}

.center-col .heading-main .switch .option.active:after {
  width: 100%;
  left: 50%;
  content: "";
  background-color: #e8bb9c;
  height: 1px;
  position: absolute;
  bottom: 0;
  transform: translateX(calc(-50% - 12.5px));
  display: block;
  box-shadow: 0 -5px 20px 0 rgba(255, 197, 140, .55)
}

.center-col .heading-main .switch .option.active, .center-col .heading-main .switch .option:hover {
  color: #fff0d8
}

.center-col .welcome-box {
  padding: 5px
}

.center-col .welcome-box .inside {
  max-width: 610px;
  min-width: 610px;
  width: 610px;
  background-image: url(../images/welcome-box-bg.png);
  height: 110px;
  display: flex;
  align-items: center
}

.center-col .welcome-box .inside .text {
  padding: 0 30px
}

.center-col .welcome-box .inside .text strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: -2px;
  color: #fff
}

.center-col .welcome-box .inside .text>span {
  font-weight: 400;
  color: #ecdbc0;
  font-size: 14px;
  display: block;
  margin-bottom: 15px
}

.center-col .welcome-box .inside .text .lastvisit {
  position: relative
}

.center-col .welcome-box .inside .text .lastvisit:after {
  background-image: url(../images/dod-welcome.png);
  width: 263px;
  height: 17px;
  content: "";
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  display: block
}

.center-col .welcome-box .inside .text .lastvisit span {
  z-index: 2;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: #736865
}

.center-col .welcome-box .inside .text .lastvisit b {
  font-weight: 400;
  color: #a39592
}

.center-col .sub-page-content {
  margin-top: 25px;
  padding: 0 3px;
}

.center-col .pagination {
  display: flex;
  align-items: center;
  margin: 30px 0;
  justify-content: center;
  overflow: hidden
}

.center-col .pagination .buttons {
  position: relative;
  display: flex;
  align-items: center
}

.center-col .pagination .buttons:before {
  background-image: url(../images/pagination-left.png);
  width: 205px;
  height: 5px;
  display: block;
  position: absolute;
  transform: translate(-100%, -50%);
  left: -15px;
  top: 50%;
  content: ""
}

.center-col .pagination .buttons:after {
  background-image: url(../images/pagination-right.png);
  width: 205px;
  height: 5px;
  display: block;
  position: absolute;
  transform: translate(100%, -50%);
  right: -15px;
  top: 50%;
  content: ""
}

.center-col .pagination .buttons>* {
  margin: 0 2.5px
}

.center-col .pagination .buttons span.dots {
  background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNScgaGVpZ2h0PSczJz48cGF0aCBmaWxsLXJ1bGU9J2V2ZW5vZGQnIGZpbGw9JyMzRTM1MzUnIGQ9J00xMy41IDNhMS41IDEuNSAwIDExLjAwMS0zLjAwMUExLjUgMS41IDAgMDExMy41IDN6bS02IDBhMS41IDEuNSAwIDExLjAwMS0zLjAwMUExLjUgMS41IDAgMDE3LjUgM3ptLTYgMGExLjUgMS41IDAgMTEwLTMgMS41IDEuNSAwIDAxMCAzeicvPjwvc3ZnPg==);
  width: 15px;
  height: 3px;
  display: block
}

.center-col .pagination .buttons span.active {
  border: 1px solid #403021;
  background-color: #150f09;
  position: relative;
  padding: 0 5px 2px;
  height: 17px;
  min-width: 11px;
}

.center-col .pagination .buttons span.active b {
  font-size: 11px;
  color: #ecdbc1;
  text-align: center;
  width: 100%;
  display: block;
  font-weight: 400;
  line-height: 17px
}

.center-col .pagination .buttons a {
  transition: .3s;
  border: 1px solid #2a2222;
  height: 17px;
  min-width: 11px;
  padding: 0 5px 2px;
  position: relative
}

.center-col .pagination .buttons a:hover {
  border-color: #372e2e
}

.center-col .pagination .buttons a b {
  font-size: 11px;
  line-height: 17px;
  font-weight: 400;
  color: #ecdbc1;
  text-align: center;
  display: block;
  width: 100%
}

.center-col .heading-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 30px
}

.center-col .heading-sub:after {
  background-image: url(../images/dod-head-sub.png);
  width: 200px;
  background-size: cover;
  height: 17px;
  content: "";
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-55%, -50%);
  display: block
}

.center-col .heading-sub span {
  font-size: 12px;
  color: #ecdbc0;
  text-align: center;
  position: relative;
  z-index: 2
}

.center-col .heading-sub span:before {
  background-image: url(../images/pagination-left.png);
  transform: translate(-100%, -50%);
  left: -25px
}

.center-col .heading-sub span:after, .center-col .heading-sub span:before {
  width: 205px;
  height: 5px;
  display: block;
  position: absolute;
  top: 50%;
  content: ""
}

.center-col .heading-sub span:after {
  background-image: url(../images/pagination-right.png);
  transform: translate(100%, -50%);
  right: -25px
}

.center-col .textarea-wra {
  margin-top: 30px;
  padding: 0 30px
}

.center-col .textarea-wra b {
  font-weight: 400;
  color: #ecdbc0
}

.center-col .textarea-wra strong {
  font-weight: 400;
  color: #d44c51
}

.center-col .textarea-wra a {
  color: #d44c51;
  text-decoration: underline
}

.center-col .textarea-wra p {
  margin-bottom: 20px;
  font-size: 12px;
  color: #9e9595;
  line-height: 1.667;
  text-align: center
}

.center-col .coins-select {
  margin-left: -4px;
  margin-right: -4px;
  display: flex;
  justify-content: center
}

.center-col .coins-select.topmargin-20 {
  margin-top: 25px
}

.center-col .coins-select .box-box {
  background-image: url(../images/coins-main-bg.png);
  width: 182px;
  height: 141px;
  transition: .3s;
  display: flex;
  margin: 8px 4px;
  position: relative;
  align-items: center;
  justify-content: center
}

.center-col .coins-select .box-box.active, .center-col .coins-select .box-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(231, 214, 179, .03)
}

.center-col .coins-select .box-box .discount {
  background-image: url(../images/coins-discound.png);
  width: 34px;
  height: 22px;
  position: absolute;
  right: -5px;
  top: 10px;
  display: flex;
  z-index: 5;
  align-items: center;
  justify-content: center
}

.center-col .coins-select .box-box .discount b {
  color: #fff;
  font-weight: 700;
  transform: translateY(-4px);
  font-size: 10px
}

.center-col .coins-select .box-box .inside, .center-col .coins-select .box-box .inside form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.center-col .coins-select .box-box .inside strong {
  font-size: 18px;
  color: #ecdbc0;
  font-weight: 700;
  line-height: .889;
  margin-bottom: 10px;
  text-align: center
}

.center-col .coins-select .box-box .inside button {
  height: 25px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/button-coins.png)
}

.center-col .coins-select .box-box .inside button b {
  font-size: 12px;
  font-family: Open Sans;
  color: #150f0f;
  font-weight: 800;
  text-shadow: 1px 1px 1px #e5d5b3
}

.center-col .coins-select label.checkbox {
  position: relative;
  margin-bottom: 10px;
  margin-left: 25px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer
}

.center-col .coins-select label.checkbox input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 1px
}

.center-col .coins-select label.checkbox input:checked+span:after {
  opacity: 1
}

.center-col .coins-select label.checkbox span {
  font-size: 12px;
  color: #625757;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .15);
  font-weight: 400 !important
}

.center-col .coins-select label.checkbox span b {
  font-weight: 400 !important
}

.center-col .coins-select label.checkbox span:before {
  content: "";
  margin-right: 10px;
  margin-bottom: 0;
  background-image: url(../images/checkbox-bg.png);
  width: 14px;
  height: 14px;
  float: left;
  display: block
}

.center-col .coins-select label.checkbox span:after {
  opacity: 0;
  transition: .2s;
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  transform: translate(-50%, -50%);
  background-image: url(../images/checkbox-check.png);
  width: 37px;
  height: 36px;
  display: block
}

.center-col .user-details {
  margin-top: 25px
}

.center-col .user-details>.lane {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  height: 27px;
  background-repeat: no-repeat;
  background-position: 50%
}

.center-col .user-details>.lane:nth-child(odd) {
  background-image: url(../images/user-details-lane.png)
}

.center-col .user-details>.lane:last-child:not(:nth-child(odd)):after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 490px;
  background-image: url(../images/user-details-lane-last.png)
}

.center-col .user-details>.lane>span {
  color: #fff;
  font-size: 12px
}

.center-col .user-details>.lane .nickname {
  color: #ecdbc0
}

.center-col .user-details>.lane .base {
  color: #665d5d
}

.center-col .user-details>.lane .coins {
  color: #ecdbc0
}

.center-col .user-details>.lane .status.ban {
  color: #d44c51
}

.center-col .user-details>.lane .status.active {
  color: #98f491
}

.center-col .user-details>.lane .status.normal {
  color: #665d5d
}

.center-col .user-details>.lane .vip {
  color: #fff
}

.center-col .player-characters {
  display: flex;
  flex-direction: column;
  margin-left: -4px;
  margin-right: -4px;
  align-items: center;
  justify-content: center
}

.center-col .player-characters.topmargin-20 {
  margin-top: 25px
}

.center-col .player-characters .lane {
  display: flex
}

.center-col .player-characters .character {
  background-image: url(../images/character-bg.png);
  width: 267px;
  height: 92px;
  margin: 4px;
  display: flex;
  align-items: center
}

.center-col .player-characters .character img {
  margin-left: 20px;
  margin-right: 15px
}

.center-col .player-characters .character a:first-child:hover b {
  text-decoration: underline
}

.center-col .player-characters .character .fi-1 {
  display: block;
  font-size: 11px;
  color: #fff
}

.center-col .player-characters .character .fi-1 b {
  color: #ecdbc0;
  font-weight: 400
}

.center-col .player-characters .character span.fi-2 {
  color: #fff;
  font-size: 11px
}

.center-col .player-characters .character span.fi-2 b {
  color: #9e9595;
  font-weight: 400
}

.center-col .player-characters .character a:last-child {
  background-image: url(../images/unlock.png);
  height: 25px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
  margin-top: 4px;
  transform: translateX(-3px)
}

.center-col .player-characters .character a:last-child:not(.active) {
  filter: grayscale(.6)
}

.center-col .player-characters .character a:last-child:hover {
  filter: grayscale(0) brightness(110%)
}

.center-col .player-characters .character a:last-child b {
  font-size: 8px;
  transform: translateY(-1px);
  font-weight: 800;
  font-family: Open Sans;
  color: #150f0f;
  text-shadow: 1px 1px 1px #e5d5b3
}

.center-col .referal {
  margin-top: 25px
}

.center-col .referal>span {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 15px
}

.center-col .referal>span:before {
  background-image: url(../images/left-reflink.png);
  transform: translate(-100%, -50%);
  left: 75px
}

.center-col .referal>span:after, .center-col .referal>span:before {
  width: 61px;
  height: 16px;
  display: block;
  position: absolute;
  top: 17px;
  content: ""
}

.center-col .referal>span:after {
  background-image: url(../images/right-reflink.png);
  transform: translate(100%, -50%);
  right: 75px
}

.center-col .referal>span b {
  font-size: 11px;
  color: #9e9595;
  line-height: 1.818;
  display: block;
  font-weight: 400;
  text-align: center
}

.center-col .referal .linkbox {
  background-color: rgba(8, 6, 6, .4);
  width: 560px;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.center-col .referal .linkbox span {
  display: block;
  font-size: 12px;
  color: #ecdbc0;
  text-align: left;
  margin-left: 20px
}

.center-col .referal .linkbox .copy {
  cursor: pointer;
  border: 1px solid #2c2222;
  background-color: #1d1515;
  padding: 4px 10px;
  margin-right: 5px;
  font-size: 10px;
  color: #ecdbc0;
  font-weight: 700
}

.center-col .ranking-big {
  margin-top: 25px
}

.center-col .ranking-big .lane-head {
  color: #96847a;
  font-weight: 400;
  height: 30px;
  position: relative;
  width: 100%;
  align-items: center;
  background-image: linear-gradient(90deg, #140e0e, #241917 50%, #140e0e);
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 10px
}

.center-col .ranking-big .lane-head .order {
  width: 8%;
  padding-right: 10px
}

.center-col .ranking-big .lane-head .face {
  width: 5%;
  padding-right: 10px
}

.center-col .ranking-big .lane-head .guild, .center-col .ranking-big .lane-head .name {
  width: 30%
}

.center-col .ranking-big .lane-head .kingdom {
  width: 17%
}

.center-col .ranking-big .lane-head .level {
  width: 10%
}

.center-col .ranking-big .lane-head .vote-count, .center-col .ranking-big .lane-head .vote-name {
  width: 46%;
  text-align: center
}

.center-col .ranking-big .lane {
  transition: .2s;
  height: 30px;
  position: relative;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 12px
}

.center-col .ranking-big .lane:hover {
  transform: translateX(3px)
}

.center-col .ranking-big .lane:nth-child(odd) {
  background-image: linear-gradient(90deg, #140e0e, #1a1414 50%, #140e0e)
}

.center-col .ranking-big .lane .order {
  color: #96847a;
  width: 8%;
  padding-right: 10px
}

.center-col .ranking-big .lane .face {
  width: 5%;
  padding-right: 10px
}

.center-col .ranking-big .lane .face img {
  height: 26px;
  width: 26px;
  -o-object-fit: cover;
  object-fit: cover
}

.center-col .ranking-big .lane .name {
  width: 30%;
  color: #96847a;
  font-weight: 400
}

.center-col .ranking-big .lane .name.red {
  color: #c95859
}

.center-col .ranking-big .lane .name.yellow {
  color: #e6af57
}

.center-col .ranking-big .lane .name.blue {
  color: #5d99f2
}

.center-col .ranking-big .lane .guild {
  width: 30%;
  color: #96847a
}

.center-col .ranking-big .lane .guild.red {
  color: #c95859
}

.center-col .ranking-big .lane .guild.yellow {
  color: #e6af57
}

.center-col .ranking-big .lane .guild.blue {
  color: #5d99f2
}

.center-col .ranking-big .lane .kingdom {
  width: 17%
}

.center-col .ranking-big .lane .level {
  color: #96847a;
  width: 10%
}

.center-col .ranking-big .lane .level b {
  font-weight: 400;
  color: #fbd9c6
}

.center-col .ranking-big .lane .vote-name {
  width: 46%;
  color: #96847a;
  text-align: center
}

.center-col .ranking-big .lane .vote-name b {
  font-weight: 400;
  color: #fbd9c6
}

.center-col .ranking-big .lane .vote-count {
  width: 46%;
  color: #96847a;
  text-align: center
}

.center-col .ranking-big .lane .vote-count b {
  font-weight: 400;
  color: #fbd9c6
}

.center-col .formbox .alert {
  margin-top: 20px;
  line-height: 1.2;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  padding: 20px 25px
}

.center-col .formbox .alert a {
  color: #fff
}

.center-col .formbox .alert.failed {
  border-color: #501d1d;
  background-color: #220c0c;
  color: #ce4d4d
}

.center-col .formbox .alert.success {
  border-color: #336129;
  background-color: #0c2310;
  color: #7bd458
}

.center-col .formbox .alert.info {
  border-color: #524231;
  background-color: #2f241c;
  color: #e0bc97;
}

.center-col .formbox .register {
  margin-top: 45px
}

.center-col .formbox .default {
  display: flex;
  justify-content: center;
  margin-bottom: 10px
}

.center-col .formbox .default ::-moz-placeholder {
  color: #635555;
  opacity: 1
}

.center-col .formbox .default :-ms-input-placeholder {
  opacity: 1
}

.center-col .formbox .default ::placeholder {
  color: #635555;
  opacity: 1
}

.center-col .formbox .default :-ms-input-placeholder {
  color: #635555
}

.center-col .formbox .default ::-ms-input-placeholder {
  color: #635555
}

.center-col .formbox .default input {
  background-image: url(../images/input-main-bg.png);
  width: 220px;
  height: 40px;
  display: block;
  padding: 0 20px;
  font-size: 12px;
  color: #8d7a7a;
  line-height: 1.2;
}

.center-col .formbox .default select {
  background-image: url(../images/input-main-bg.png);
  width: 260px;
  height: 40px;
  display: block;
  padding: 0 20px;
  font-size: 12px;
  color: #8d7a7a;
  line-height: 1.2;
  border:none;
  border-right:1px #2f2725 solid!important;
}

.center-col .formbox .default textarea {
  background: #100b0b;
  width: 260px;
  height: 200px;
  display: block;
  font-size: 12px;
  color: #8d7a7a;
  line-height: 1.2;
  border:none;
  border:1px #2f2725 solid!important;
}

.center-col .formbox .default input.error {
  background-image: url(../images/input-main-error-bg.png)
}

.center-col .formbox label.checkbox {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 35px;
  align-items: center;
  cursor: pointer
}

.center-col .formbox label.checkbox a {
  color: #a09090
}

.center-col .formbox label.checkbox a:hover {
  text-decoration: underline
}

.center-col .formbox label.checkbox input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 1px
}

.center-col .formbox label.checkbox input:checked+span:after {
  opacity: 1
}

.center-col .formbox label.checkbox span {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  color: #625757;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .15);
  font-weight: 400 !important
}

.center-col .formbox label.checkbox span b {
  font-weight: 400 !important
}

.center-col .formbox label.checkbox span:before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  background-image: url(../images/checkbox-bg.png);
  width: 14px;
  height: 14px;
  display: block
}

.center-col .formbox label.checkbox span:after {
  opacity: 0;
  transition: .2s;
  content: "";
  position: absolute;
  left: 8px;
  transform: translate(-50%, -50%);
  top: 50%;
  background-image: url(../images/checkbox-check.png);
  width: 37px;
  height: 36px;
  display: block
}

.center-col .formbox .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.center-col .formbox .submit button {
  color:#fff;
  padding:30px;
  display: flex;
  transform: translateX(3px);
  align-items: center;
  justify-content: center;
  background-image: url(../images/register-button.png);
  width: 195px;
  height: 57px;
  transition: .4s
}

.center-col .formbox .submit button b {
  font-size: 12px;
  font-family: Open Sans;
  color: #150f0f;
  font-weight: 700;
  line-height: 1.083;
  text-shadow: 1px 1px 1px #ccbfa2
}

.center-col .formbox .submit button:hover {
  filter: brightness(120%)
}
/* sdfsfsdfsdfsdfsdfsd */
.center-col .buttons-vote {
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.center-col .buttons-vote a {
  display: inline-flex;
  cursor: pointer;
  transform: translateX(3px);
  align-items: center;
  margin: 0 36px 15px;
  justify-content: center;
  background-image: url(../images/register-buttonews.png);
  width: 230px;
  height: 57px;
  transition: .4s;
}

.center-col .buttons-vote a b {
  font-size: 10px;
  /* font-family: Open Sans; */
  color: #ffffa5;
  font-weight: 700;
  line-height: 1.083;
  /* text-shadow: 1px 1px 1px #ccbfa2; */
  top: 22px;
  position: absolute;
}

.center-col .buttons-vote a:hover {
  filter: brightness(120%)
}

.center-col .scrollforms {
  margin-top: 30px
}

.center-col .device-s-table {
  margin-top: 40px
}

.center-col .device-s-table .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px
}

.center-col .device-s-table .submit button {
  display: flex;
  transform: translateX(3px);
  align-items: center;
  justify-content: center;
  background-image: url(../images/register-button.png);
  width: 136px;
  height: 42px;
  transition: .4s
}

.center-col .device-s-table .submit button b {
  font-size: 12px;
  font-family: Open Sans;
  color: #150f0f;
  font-weight: 700;
  line-height: 1.083;
  text-shadow: 1px 1px 1px #ccbfa2
}

.center-col .device-s-table .submit button:hover {
  filter: brightness(120%)
}

.center-col .device-s-table .alert {
  margin-top: 20px;
  line-height: 1.2;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  padding: 20px 25px
}

.center-col .device-s-table .alert a {
  color: #fff
}

.center-col .device-s-table .alert.failed {
  border-color: #501d1d;
  background-color: #220c0c;
  color: #ce4d4d
}

.center-col .device-s-table .alert.success {
  border-color: #336129;
  background-color: #0c2310;
  color: #7bd458
}

.center-col .device-s-table .alert.info {
  border-color: #296161;
  background-color: #0c2023;
  color: #58bbd4
}

.center-col .device-s-table .default {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 20px;
  position: relative
}

.center-col .device-s-table .default ::-moz-placeholder {
  color: #635555;
  opacity: 1
}

.center-col .device-s-table .default :-ms-input-placeholder {
  opacity: 1
}

.center-col .device-s-table .default ::placeholder {
  color: #635555;
  opacity: 1
}

.center-col .device-s-table .default :-ms-input-placeholder {
  color: #635555
}

.center-col .device-s-table .default ::-ms-input-placeholder {
  color: #635555
}

.center-col .device-s-table .default span {
  background-image: linear-gradient(0deg, #100b0b, #100b0b 50%, #140e0e 51%, #140e0e);
  font-size: 11px;
  color: #514646;
  line-height: 1.2;
  padding: 0 5px;
  position: absolute;
  top: 0;
  transform: translateY(-53%);
  left: 20px
}

.center-col .device-s-table .default input {
  background-image: url(../images/big-main-input-bg.png);
  width: 560px;
  height: 40px;
  display: block;
  padding: 0 20px;
  font-size: 12px;
  color: #8d7a7a;
  line-height: 1.2
}

.center-col .device-s-table .default input.error {
  background-image: url(../images/big-main-input-error.png)
}

.center-col .device-s-table .lanes {
  margin-bottom: 30px
}

.center-col .device-s-table .t_alias, .center-col .device-s-table .t_id {
  width: 15%;
  max-width: 15%;
  min-width: 15%
}

.center-col .device-s-table .t_authdate {
  width: 17%;
  max-width: 17%;
  min-width: 17%
}

.center-col .device-s-table .t_date, .center-col .device-s-table .t_last-connection {
  width: 20%;
  max-width: 20%;
  min-width: 20%
}

.center-col .device-s-table .t_auth {
  width: 10%;
  max-width: 10%;
  min-width: 10%
}

.center-col .device-s-table .thead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -1px;
  margin-right: -1px
}

.center-col .device-s-table .thead>* {
  background-color: #1d1616;
  height: 26px;
  flex-grow: 1;
  margin: 1px;
  font-size: 11px;
  color: #ecdbc0;
  line-height: 24px;
  text-align: center
}

.center-col .device-s-table .thead .t_last-connection {
  color: #ffd593;
  background-image: linear-gradient(
90deg
, #86500d, #7a4310);
}

.center-col .device-s-table .lane {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -1px;
  margin-right: -1px
}

.center-col .device-s-table .lane:not(:last-child) {
  border-bottom: 1px solid #372e2e
}

.center-col .device-s-table .lane>* {
  height: 34px;
  flex-grow: 1;
  font-size: 11px;
  color: #ecdbc0;
  line-height: 34px;
  text-align: center;
  margin: 10px 1px
}

.center-col .device-s-table .lane .t_alias {
  color: #fff
}

.center-col .device-s-table .lane .t_alias input {
  color: #fff;
  width: 80%
}

.center-col .device-s-table .lane .t_last-connection {
  color: #ffd593
}

.center-col .device-s-table .lane .t_auth {
  display: flex;
  align-items: center;
  justify-content: center
}

.center-col .device-s-table .lane .t_auth input {
  display: none !important
}

.center-col .device-s-table .lane .t_auth input:checked+.btn-activate {
  background-color: #2da25c
}

.center-col .device-s-table .lane .t_auth input:checked+.btn-activate .circle {
  left: 17px
}

.center-col .device-s-table .lane .t_auth .btn-activate {
  background-color: #cd4039;
  width: 36px;
  height: 20px;
  min-width: 36px;
  cursor: pointer;
  position: relative;
  transition: .2s;
  border-radius: 15px
}

.center-col .device-s-table .lane .t_auth .btn-activate .circle {
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 4px;
  top: 2px;
  transition: .2s
}

.center-col .activatesec_s {
  margin-bottom: 40px
}

.center-col .activatesec_s .headb {
  margin-top: 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center
}

.center-col .activatesec_s .headb .a_h_title {
  display: flex;
  align-items: center
}

.center-col .activatesec_s .headb .a_h_title span {
  font-size: 12px;
  color: #ecdbc0;
  margin-right: 20px
}

.center-col .activatesec_s .headb .a_h_title input {
  display: none !important
}

.center-col .activatesec_s .headb .a_h_title input:checked+.btn-activate {
  background-color: #2da25c
}

.center-col .activatesec_s .headb .a_h_title input:checked+.btn-activate .circle {
  left: 17px
}

.center-col .activatesec_s .headb .a_h_title .btn-activate {
  background-color: #cd4039;
  width: 36px;
  height: 20px;
  min-width: 36px;
  cursor: pointer;
  position: relative;
  transition: .2s;
  border-radius: 15px
}

.center-col .activatesec_s .headb .a_h_title .btn-activate .circle {
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 4px;
  top: 2px;
  transition: .2s
}

.center-col .activatesec_s .headb button {
  background-image: url(../images/apply.png);
  width: 88px;
  height: 34px;
  transition: .4s
}

.center-col .activatesec_s .headb button b {
  font-size: 12px;
  font-family: Open Sans;
  color: #150f0f;
  font-weight: 700;
  position: relative;
  top: -1px;
  line-height: 1.083;
  text-shadow: 1px 1px 1px #ccbfa2
}

.center-col .activatesec_s .headb button:hover {
  filter: brightness(120%)
}

.center-col .activatesec_s .default {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative
}

.center-col .activatesec_s .default ::-moz-placeholder {
  color: #635555;
  opacity: 1
}

.center-col .activatesec_s .default :-ms-input-placeholder {
  opacity: 1
}

.center-col .activatesec_s .default ::placeholder {
  color: #635555;
  opacity: 1
}

.center-col .activatesec_s .default :-ms-input-placeholder {
  color: #635555
}

.center-col .activatesec_s .default ::-ms-input-placeholder {
  color: #635555
}

.center-col .activatesec_s .default span {
  background-image: linear-gradient(0deg, #100b0b, #100b0b 50%, #140e0e 51%, #140e0e);
  font-size: 11px;
  color: #514646;
  line-height: 1.2;
  padding: 0 5px;
  position: absolute;
  top: 0;
  transform: translateY(-53%);
  left: 20px
}

.center-col .activatesec_s .default input {
  background-image: url(../images/big-main-input-bg.png);
  width: 560px;
  height: 40px;
  display: block;
  padding: 0 20px;
  font-size: 12px;
  color: #8d7a7a;
  line-height: 1.2
}

.center-col .activatesec_s .default input.error {
  background-image: url(../images/big-main-input-error.png)
}

.center-col .scroll-form .heading-sf {
  background-image: url(../images/single-post-head.png);
  height: 36px;
  width: 509px;
  background-position: 50%;
  background-repeat: no-repeat;
  display: flex;
  margin-left: -9px;
  padding: 0 30px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  transition: .2s
}

.center-col .scroll-form .heading-sf:hover {
  filter: brightness(110%)
}

.center-col .scroll-form .heading-sf>span {
  text-align: left;
  font-weight: 400;
  color: #fff0d8;
  font-size: 12px
}

.center-col .scroll-form .heading-sf>span:last-child {
  text-align: right;
  font-size: 11px
}

.center-col .scroll-form .heading-sf>span>b {
  font-weight: 400;
  color: #96847a
}

.center-col .scroll-form .heading-sf>span>b span {
  color: #d84b4b
}

.center-col .scroll-form .heading-sf.open .icon {
  transform: rotate(45deg)
}

.center-col .scroll-form .heading-sf.open+.inside {
  max-height: unset
}

.center-col .scroll-form .heading-sf .icon {
  height: 21px;
  width: 21px;
  min-width: 21px;
  display: block;
  background-image: url(../images/settings-more.png);
  transition: .2s
}

.center-col .scroll-form .inside {
  max-height: 0;
  overflow: hidden;
  transition: .3s
}

.center-col .scroll-form .inside form {
  margin-bottom: 20px;
  padding-top: 5px
}

.center-col .scroll-form .inside form .submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
  transform: translateX(-4px)
}

.center-col .scroll-form .inside form .submit button {
  display: flex;
  transform: translateX(3px);
  align-items: center;
  justify-content: center;
  background-image: url(../images/register-button.png);
  width: 136px;
  height: 42px;
  transition: .4s
}

.center-col .scroll-form .inside form .submit button b {
  font-size: 12px;
  font-family: Open Sans;
  color: #150f0f;
  font-weight: 700;
  line-height: 1.083;
  text-shadow: 1px 1px 1px #ccbfa2
}

.center-col .scroll-form .inside form .submit button:hover {
  filter: brightness(120%)
}

.center-col .scroll-form .inside form .default {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative
}

.center-col .scroll-form .inside form .default ::-moz-placeholder {
  color: #635555;
  opacity: 1
}

.center-col .scroll-form .inside form .default :-ms-input-placeholder {
  opacity: 1
}

.center-col .scroll-form .inside form .default ::placeholder {
  color: #635555;
  opacity: 1
}

.center-col .scroll-form .inside form .default :-ms-input-placeholder {
  color: #635555
}

.center-col .scroll-form .inside form .default ::-ms-input-placeholder {
  color: #635555
}

.center-col .scroll-form .inside form .default span {
  background-image: linear-gradient(0deg, #100b0b, #100b0b 50%, #140e0e 51%, #140e0e);
  font-size: 11px;
  color: #514646;
  line-height: 1.2;
  padding: 0 5px;
  position: absolute;
  top: 0;
  transform: translateY(-53%);
  left: 20px
}

.center-col .scroll-form .inside form .default input {
  background-image: url(../images/big-main-input-bg.png);
  width: 560px;
  height: 40px;
  display: block;
  padding: 0 20px;
  font-size: 12px;
  color: #8d7a7a;
  line-height: 1.2
}

.center-col .scroll-form .inside form .default input.error {
  background-image: url(../images/big-main-input-error.png)
}

.center-col .scroll-form .inside form .checkbox {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  align-items: center;
  cursor: pointer
}

.center-col .scroll-form .inside form .checkbox a {
  color: #a09090
}

.center-col .scroll-form .inside form .checkbox a:hover {
  text-decoration: underline
}

.center-col .scroll-form .inside form .checkbox input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 1px
}

.center-col .scroll-form .inside form .checkbox input:checked+span:after {
  opacity: 1
}

.center-col .scroll-form .inside form .checkbox span {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  color: #625757;
  line-height: 1.2;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .15);
  font-weight: 400 !important
}

.center-col .scroll-form .inside form .checkbox span b {
  font-weight: 400 !important
}

.center-col .scroll-form .inside form .checkbox span:before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  background-image: url(../images/checkbox-bg.png);
  width: 14px;
  height: 14px;
  display: block
}

.center-col .scroll-form .inside form .checkbox span:after {
  opacity: 0;
  transition: .2s;
  content: "";
  position: absolute;
  left: 8px;
  transform: translate(-50%, -50%);
  top: 50%;
  background-image: url(../images/checkbox-check.png);
  width: 37px;
  height: 36px;
  display: block
}

.center-col .scroll-form .inside .alert {
  margin-top: 20px;
  line-height: 1.2;
  border-width: 1px;
  border-style: solid;
  font-size: 12px;
  padding: 12px 25px
}

.center-col .scroll-form .inside .alert a {
  color: #fff
}

.center-col .scroll-form .inside .alert.failed {
  border-color: #501d1d;
  background-color: #220c0c;
  color: #ce4d4d
}

.center-col .scroll-form .inside .alert.success {
  border-color: #336129;
  background-color: #0c2310;
  color: #7bd458
}

.center-col .scroll-form .inside .alert.info {
  border-color: #296161;
  background-color: #0c2023;
  color: #58bbd4
}

.spinner {
  width: 70px;
  text-align: center;
  margin: 0 auto
}

.spinner>div {
  width: 18px;
  height: 18px;
  background-color: #ff6039;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s ease-in-out infinite both;
  animation: sk-bouncedelay 1.4s ease-in-out infinite both
}

.spinner .bounce1 {
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s
}

.spinner .bounce2 {
  -webkit-animation-delay: -.16s;
  animation-delay: -.16s
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, to {
    -webkit-transform: scale(0)
  }

  40% {
    -webkit-transform: scale(1)
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, to {
    transform: scale(0)
  }

  40% {
    transform: scale(1)
  }
}

.transparent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 100;
  display: none
}

.overlay-content {
  top: 50%;
  position: absolute;
  margin-top: -28px;
  width: 100%
}

.transparent-overlay p {
  text-align: center;
  margin-top: 10px;
  color: #ff6039;
  font-size: 17px
}

snowfall {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50000000;
  display: block;
  font-size: 20px;
  overflow: hidden;
  pointer-events: none
}

snowfall snowflake {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100px;
  height: 100px
}

snowfall snowflake span {
  align-self: center
}

snowfall snowflake img {
  align-self: center;
  width: 20px
}

snowfall snowflake:nth-child(6) {
  -webkit-animation: animation-snowflake-6 linear infinite;
  animation: animation-snowflake-6 linear infinite;
  -webkit-animation-duration: 15.9s;
  animation-duration: 15.9s;
  -webkit-animation-delay: -5.6s;
  animation-delay: -5.6s
}

@-webkit-keyframes animation-snowflake-6 {
  0% {
    left: 99%;
    top: -100px;
    transform: scale(.901) rotate3d(.35, .32, .69, 0deg)
  }

  to {
    left: 130.1%;
    top: calc(100% + 100px);
    transform: scale(.901) rotate3d(1, .72, .36, -810deg)
  }
}

@keyframes animation-snowflake-6 {
  0% {
    left: 99%;
    top: -100px;
    transform: scale(.901) rotate3d(.35, .32, .69, 0deg)
  }

  to {
    left: 130.1%;
    top: calc(100% + 100px);
    transform: scale(.901) rotate3d(1, .72, .36, -810deg)
  }
}

snowfall snowflake:nth-child(5) {
  -webkit-animation: animation-snowflake-5 linear infinite;
  animation: animation-snowflake-5 linear infinite;
  -webkit-animation-duration: 12.6s;
  animation-duration: 12.6s;
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s
}

@-webkit-keyframes animation-snowflake-5 {
  0% {
    left: 93%;
    top: -100px;
    transform: scale(1.094) rotate3d(.89, .32, .37, 0deg)
  }

  to {
    left: 124.1%;
    top: calc(100% + 100px);
    transform: scale(1.094) rotate3d(.17, .56, .49, 1129deg)
  }
}

@keyframes animation-snowflake-5 {
  0% {
    left: 93%;
    top: -100px;
    transform: scale(1.094) rotate3d(.89, .32, .37, 0deg)
  }

  to {
    left: 124.1%;
    top: calc(100% + 100px);
    transform: scale(1.094) rotate3d(.17, .56, .49, 1129deg)
  }
}

snowfall snowflake:nth-child(4) {
  -webkit-animation: animation-snowflake-4 linear infinite;
  animation: animation-snowflake-4 linear infinite;
  -webkit-animation-duration: 15.4s;
  animation-duration: 15.4s;
  -webkit-animation-delay: -6.2s;
  animation-delay: -6.2s
}

@-webkit-keyframes animation-snowflake-4 {
  0% {
    left: 24%;
    top: -100px;
    transform: scale(.74) rotate3d(.24, .33, .44, 0deg)
  }

  to {
    left: 4.3%;
    top: calc(100% + 100px);
    transform: scale(.74) rotate3d(.41, .48, .23, 1113deg)
  }
}

@keyframes animation-snowflake-4 {
  0% {
    left: 24%;
    top: -100px;
    transform: scale(.74) rotate3d(.24, .33, .44, 0deg)
  }

  to {
    left: 4.3%;
    top: calc(100% + 100px);
    transform: scale(.74) rotate3d(.41, .48, .23, 1113deg)
  }
}

snowfall snowflake:nth-child(3) {
  -webkit-animation: animation-snowflake-3 linear infinite;
  animation: animation-snowflake-3 linear infinite;
  -webkit-animation-duration: 11.2s;
  animation-duration: 11.2s;
  -webkit-animation-delay: -.5s;
  animation-delay: -.5s
}

@-webkit-keyframes animation-snowflake-3 {
  0% {
    left: 46%;
    top: -100px;
    transform: scale(.684) rotate3d(.38, .55, .01, 0deg)
  }

  to {
    left: 30.7%;
    top: calc(100% + 100px);
    transform: scale(.684) rotate3d(.57, .07, .7, 1015deg)
  }
}

@keyframes animation-snowflake-3 {
  0% {
    left: 46%;
    top: -100px;
    transform: scale(.684) rotate3d(.38, .55, .01, 0deg)
  }

  to {
    left: 30.7%;
    top: calc(100% + 100px);
    transform: scale(.684) rotate3d(.57, .07, .7, 1015deg)
  }
}

snowfall snowflake:nth-child(2) {
  -webkit-animation: animation-snowflake-2 linear infinite;
  animation: animation-snowflake-2 linear infinite;
  -webkit-animation-duration: 10.2s;
  animation-duration: 10.2s;
  -webkit-animation-delay: -10.1s;
  animation-delay: -10.1s
}

@-webkit-keyframes animation-snowflake-2 {
  0% {
    left: 77%;
    top: -100px;
    transform: scale(.989) rotate3d(.35, .17, .05, 0deg)
  }

  to {
    left: 60.7%;
    top: calc(100% + 100px);
    transform: scale(.989) rotate3d(.57, .13, .29, -1410deg)
  }
}

@keyframes animation-snowflake-2 {
  0% {
    left: 77%;
    top: -100px;
    transform: scale(.989) rotate3d(.35, .17, .05, 0deg)
  }

  to {
    left: 60.7%;
    top: calc(100% + 100px);
    transform: scale(.989) rotate3d(.57, .13, .29, -1410deg)
  }
}

snowfall snowflake:first-child {
  -webkit-animation: animation-snowflake-1 linear infinite;
  animation: animation-snowflake-1 linear infinite;
  -webkit-animation-duration: 12.6s;
  animation-duration: 12.6s;
  -webkit-animation-delay: -13.6s;
  animation-delay: -13.6s
}

@-webkit-keyframes animation-snowflake-1 {
  0% {
    left: 58%;
    top: -100px;
    transform: scale(.885) rotate3d(.37, .55, .45, 0deg)
  }

  to {
    left: 66.6%;
    top: calc(100% + 100px);
    transform: scale(.885) rotate3d(.04, .77, .41, -908deg)
  }
}

@keyframes animation-snowflake-1 {
  0% {
    left: 58%;
    top: -100px;
    transform: scale(.885) rotate3d(.37, .55, .45, 0deg)
  }

  to {
    left: 66.6%;
    top: calc(100% + 100px);
    transform: scale(.885) rotate3d(.04, .77, .41, -908deg)
  }
}

.discord-widget {
  z-index: 9999999999999999999999999;
  position: fixed;
  left: 30px;
  bottom: 20px;
}

@media (max-width:500px) {
  .discord-widget {
    display: none;
  }
}

.pagination {
  display: inline-block;
}

.pagination a,.pagination strong{
  padding: 10px;
  float: left;
  border: 1px dashed;
  font-size:14px;
  font-family: 'Arial';
  color:#e0d4d4;
  margin: 10px;
}

.languagepicker {
  background-color: #FFF;
  display: inline-block;
  padding: 0;
  height: 37px;
  overflow: hidden;
  transition: all .3s ease;
  margin: 30px 0 0 0;
  vertical-align: top;
  float: left;
  position: fixed;
  top:80px;
  right: 0px;
  z-index: 999;
}

.languagepicker:hover {
  height: 81px;
}

.languagepicker a{
  color: #000;
  text-decoration: none;
}

.languagepicker li {
  display: block;
  padding: 0px 10px;
  line-height: 45px;
  border-top: 1px solid #EEE;
}

.languagepicker li:hover{
  background-color: #EEE;
}

.languagepicker a:first-child li {
  border: none;
  background: #FFF !important;
}

.languagepicker li img {
  margin-top: 0px;
}

.roundborders {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.large:hover {
  height: 85px;
}

.d-flex{
  display: flex!important;
}

.justify-content-center{
  justify-content: center!important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

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

.text-white{
  color:#e0d4d4!important;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999999999999999999; /* Sit on top */
  padding-top: 75px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

label>span.text-white{
  width: 160px;
  line-height:40px;
  margin-right:30px;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  /* border: 1px solid #251d1d; */
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #0c0906;
  background-image: linear-gradient(
90deg
, #413222, #2e2319);
}

.table-bordered thead th,
.table-bordered thead td {
  /* border-bottom-width: 2px; */
  background-image: linear-gradient(
90deg
, #271d15, #21170e);
  color: #cb9873;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.text-dark{
  color:#000!important;
}
