@charset "UTF-8";
/*!
 * 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: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.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(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.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, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.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, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.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(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.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(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.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(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.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(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.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(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.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(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.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(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.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(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.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(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.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(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.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(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.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(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.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(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.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(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.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: 0.75s;
  animation-duration: 0.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: 0.75s;
  animation-duration: 0.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(0.1) rotate(30deg);
    transform: scale(0.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(0.1) rotate(30deg);
    transform: scale(0.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.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(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.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;
}
.flexSection {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
}
.flexBox {
  display: flex;
  width: 100%;
  flex-flow: column;
}
.flexLine {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
}
.flexLineCenter {
  display: flex;
  width: 100%;
  justify-content: center;
}
.flexVerticalCenter {
  display: flex;
  align-items: center;
}
.flexSpaceBetween {
  display: flex;
  flex-flow: row!important;
  width: 100%;
  justify-content: space-between !important;
}
.flexSpaceAroung {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.flexSameWidthPopup {
  background-color: #FFF;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 16px;
}
.flexSameWidth {
  display: flex;
  width: 100%;
  flex-flow: column;
  align-items: stretch;
}
.flexSameWidth .important {
  color: #e10051;
  font-weight: 400;
  padding: 8px 0px 0px 0px;
}
.flexSameWidth > div {
  display: flex;
  justify-content: stretch;
  flex-flow: column;
  align-items: stretch;
  padding: 8px 0px;
}
.flexSameWidth > div.errorMessageContainer {
  color: #e10051;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  height: 20px;
  padding-bottom: 0px;
  padding-top: 4px;
}
.flexSameWidth div.helpContainer {
  color: #3e82be;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  height: 20px;
  margin-bottom: 12px;
  margin-top: 12px;
  cursor: pointer;
}
.flexSameWidth div.helpContainer div {
  font-weight: 400;
}
html {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
* {
  font-weight: 300;
}
BODY,
html {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #EEF0F4;
}
div {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
#app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
}
.bodyContainer {
  width: 100%;
  min-height: 100%;
  display: flex;
  overflow-y: auto;
  flex-flow: column;
  padding: 0px 24px 24px 24px;
  padding-left: 264px;
  position: relative;
  -webkit-transition: padding-left 0.3s;
  /* Safari */
  -moz-transition: padding-left 0.3s;
  -o-transition: padding-left 0.3s;
  -ms-transition: padding-left 0.3s;
  transition: width padding-left 0.3s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
}
.bodyContainer.menuClose {
  padding-left: 84px;
}
#content {
  width: 100%;
  height: 100%;
  padding: 0px 0px 0px 0px;
  position: relative;
  display: flex;
  flex-flow: column;
}
.nowrap {
  white-space: nowrap;
}
b {
  font-weight: 500;
}
.blurFilter {
  filter: blur(0.5px);
}
.lineChart {
  height: 240px;
  width: 100%;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.5rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-eye:before {
  content: "\eae1";
  opacity: 0.5;
}
.icon-lock:before {
  content: "\ebf7";
}
.icon-avatar:before {
  content: "\ebad";
}
.icon-avatarAuth:before {
  content: "\ee73";
}
.icon-profile:before,
.icon-accounts:before {
  content: "\ebad";
}
.icon-contracts:before {
  content: "\ea15";
}
.icon-home:before {
  content: "\ebf4";
}
.icon-downloads:before {
  content: "\ee3f";
}
.icon-downloadsSubpanel:before {
  content: "\ee3f";
}
.icon-setting:before {
  content: "\ec16";
}
.icon-quotes:before {
  content: "\ebce";
}
.icon-reports:before {
  content: "\e908";
}
.icon-report:before {
  content: "\e908";
}
.icon-personalDoc:before {
  content: "\e94f";
}
.icon-addDocument:before {
  content: "\ed28";
}
.icon-yields:before {
  content: "\ea3c";
}
.icon-withdraws:before {
  content: "\e9bc";
}
.icon-Save:before {
  content: "\e9ac";
}
.icon-NewRecord:before {
  content: "\ebae";
}
.icon-Delete:before {
  content: "\ebe1";
}
.icon-transfers:before {
  content: "\ed20";
}
.icon-personalAccounts:before {
  content: "\ebc5";
}
.icon-investAccounts:before {
  content: "\ec3e";
}
.icon-accountHistory:before {
  content: "\e98f";
}
.icon-deactive:before {
  content: "\e998";
}
.icon-close:before {
  content: "\e999";
}
.icon-topBottom {
  transform: rotate(90deg);
}
.icon-topBottom:before {
  content: "\ed20";
  transform: rotate(90deg);
}
.icon-send:before {
  content: "\e9ae";
}
.icon-approved:before {
  content: "\ebbb";
}
.icon-notapproved:before {
  content: "\ebba";
}
.icon-calendar:before {
  content: "\ec87";
}
.icon-deposit:before,
.icon-add:before {
  content: "\e995";
}
.icon-messages:before {
  content: "\e965";
}
.icon-newMessage:before {
  content: "\e96c";
}
.icon-alert:before {
  content: "\ebf9";
}
.icon-calc:before {
  content: "\ea3b";
}
.icon-CreateAccount:before {
  content: "\e914";
}
.icon-templateAccounts:before {
  content: "\e915";
}
.icon-send2:before {
  content: "\eb37";
}
.icon-entryFee:before {
  content: "\ecd2";
}
.icon-companyAccount:before {
  content: "\ebc4";
}
.icon-recalc:before {
  content: "\ea55";
}
.icon-edit:before {
  content: "\e99d";
}
.icon-help:before {
  content: "\ebf1";
}
.icon-burger:before {
  content: "\eb58";
}
.icon-problem:before {
  content: "\e902";
}
.icon-guide:before {
  content: "\ebf1";
}
.icon-filter:before {
  content: "\ec9e";
}
.icon-load:before {
  content: "\e90f";
}
.icon-users:before {
  content: "\ec7e";
}
.icon-partYield:before {
  content: "\ebb3";
}
.icon-pdf:before {
  content: "\eadf";
}
.icon-download:before {
  content: "\edd8";
}
.icon-check:before {
  content: "\ec7f";
}
.icon-block:before {
  content: "\e998";
}
.icon-remove:before {
  content: "\e999";
}
.icon-split:before {
  content: "\e95e";
}
.icon-back:before {
  content: "\eb66";
}
.icon-back2:before {
  content: "\e9a9";
}
.icon-sharedLevels:before {
  content: "\eb9d";
}
.icon-commission:before {
  content: "\eb9d";
}
.icon-accountHistoryCommission:before {
  content: "\eb9d";
}
.icon-error:before {
  content: "\e900";
}
.icon-email:before {
  content: "\e987";
}
.icon-withdraw:before {
  content: "\e9a8";
}
.icon-withdraw2:before {
  content: "\ec3c";
}
.icon-link:before {
  content: "\e9a4";
}
.icon-convertToUser:before {
  content: "\eb34";
}
.icon-qrcode:before {
  content: "\edb0";
}
.icon-dailyParticipation:before {
  content: "\ee12";
}
.icon-verifyDefault:before {
  content: "\ec3f";
}
.icon-verify:before {
  content: "\ec3f";
  color: #259621;
}
.icon-unverify:before {
  content: "\e902";
  color: #d17000;
}
.icon-verifyNumber:before {
  content: "\eb76";
}
.icon-Signed:before {
  content: "\ed7f";
  font-size: 0.9rem;
}
.icon-documentsTemplate:before {
  content: "\ecce";
}
.icon-structures:before {
  content: "\ed41";
}
.icon-exchangeRates:before {
  content: "\e923";
}
.icon-shortcut:before {
  content: "\eb13";
}
.icon-upload:before {
  content: "\ea45";
}
.icon-exit:before {
  content: "\ea5b";
}
.icon-moreOption:before {
  content: "\eb59";
}
.icon-logout:before {
  content: "\ece8";
}
.icon-location:before {
  content: "\e96b";
}
.icon-idIcon:before {
  content: "\ea4a";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.icon-idIconBack:before {
  content: "\e934";
}
.icon-contactInfo:before {
  content: "\e972";
}
.icon-laptop:before {
  content: "\e9d9";
}
.icon-sales:before {
  content: "\ec4e";
}
.icon-file:before {
  content: "\ea21";
}
.icon-shield:before {
  content: "\ecff";
}
.icon-widgets:before {
  content: "\e9e3";
}
.icon-refresh:before {
  content: "\eb5b";
}
.icon-archive:before {
  content: "\e996";
}
.icon-form:before {
  content: "\ea0a";
}
.icon-products:before {
  content: "\e9c4";
}
.icon-crowdfunding:before {
  content: "\e9c4";
}
.icon-invoices:before {
  content: "\e9fb";
}
.icon-dates:before {
  content: "\ec68";
}
.icon-recipe:before {
  content: "\ec13";
}
.icon-invoicesLines:before {
  content: "\e98f";
}
.icon-unLock:before {
  content: "\ec01";
}
.icon-lockRecord:before {
  content: "\ec02";
}
.icon-arrowUp:before {
  content: "\eb5e";
}
.icon-arrowDown:before {
  content: "\eb61";
}
.icon-expectedBizActivity:before {
  content: "\ed01";
}
.icon-tokens:before {
  content: "\e97b";
}
.icon-newTab:before {
  content: "\eef6";
}
.icon-hidden:before {
  content: "\ec4b";
}
.icon-source:before {
  content: "\ebfe";
}
.icon-leads:before {
  content: "\eba1";
}
.icon-tasks:before {
  content: "\ebd3";
}
.icon-maxSize {
  transform: rotate(45deg);
}
.icon-maxSize:before {
  content: "\eb5d";
}
.icon-table-chart::before {
  content: "\ea36";
}
.icon-view-list::before {
  content: "\ec46";
}
.icon-table:before {
  content: "\ea3d";
}
.icon-relate:before {
  content: "\e978";
}
.icon-account_tree:before {
  content: "\ecca";
}
.profileIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMjQ7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGcgaWQ9ImluZm8iLz48ZyBpZD0iaWNvbnMiPjxnIGlkPSJ1c2VyIj48ZWxsaXBzZSBjeD0iMTIiIGN5PSI4IiByeD0iNSIgcnk9IjYiLz48cGF0aCBkPSJNMjEuOCwxOS4xYy0wLjktMS44LTIuNi0zLjMtNC44LTQuMmMtMC42LTAuMi0xLjMtMC4yLTEuOCwwLjFjLTEsMC42LTIsMC45LTMuMiwwLjlzLTIuMi0wLjMtMy4yLTAuOSAgICBDOC4zLDE0LjgsNy42LDE0LjcsNywxNWMtMi4yLDAuOS0zLjksMi40LTQuOCw0LjJDMS41LDIwLjUsMi42LDIyLDQuMSwyMmgxNS44QzIxLjQsMjIsMjIuNSwyMC41LDIxLjgsMTkuMXoiLz48L2c+PC9nPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.profileIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGUgc3Ryb2tlPSIjZmZmZmZmIj5MYXllciAxPC90aXRsZT4gIDxlbGxpcHNlIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0iI2ZmZmZmZiIgaWQ9InN2Z18xIiByeT0iNiIgcng9IjUiIGN5PSI4IiBjeD0iMTIiLz4gIDxwYXRoIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0iI2ZmZmZmZiIgaWQ9InN2Z18yIiBkPSJtMjEuOCwxOS4xYy0wLjksLTEuOCAtMi42LC0zLjMgLTQuOCwtNC4yYy0wLjYsLTAuMiAtMS4zLC0wLjIgLTEuOCwwLjFjLTEsMC42IC0yLDAuOSAtMy4yLDAuOXMtMi4yLC0wLjMgLTMuMiwtMC45Yy0wLjUsLTAuMiAtMS4yLC0wLjMgLTEuOCwwYy0yLjIsMC45IC0zLjksMi40IC00LjgsNC4yYy0wLjcsMS4zIDAuNCwyLjggMS45LDIuOGwxNS44LDBjMS41LDAgMi42LC0xLjUgMS45LC0yLjl6Ii8+IDwvZz48L3N2Zz4=);
  background-size: 100%;
  background-repeat: no-repeat;
}
.searchIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMjQ7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGcgaWQ9ImluZm8iLz48ZyBpZD0iaWNvbnMiPjxwYXRoIGQ9Ik0yMi40LDE5LjZsLTQuOC00LjhjMC45LTEuNCwxLjQtMywxLjQtNC44YzAtNS00LTktOS05cy05LDQtOSw5czQsOSw5LDljMS44LDAsMy40LTAuNSw0LjgtMS40bDQuOCw0LjggICBjMC40LDAuNCwwLjksMC42LDEuNCwwLjZjMS4xLDAsMi0wLjksMi0yQzIzLDIwLjQsMjIuOCwxOS45LDIyLjQsMTkuNnogTTUsMTBjMC0yLjgsMi4yLTUsNS01czUsMi4yLDUsNXMtMi4yLDUtNSw1UzUsMTIuOCw1LDEweiIgaWQ9InNlYXJjaCIvPjwvZz48L3N2Zz4=);
  background-size: 100%;
  background-repeat: no-repeat;
}
.notificationIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMjQ7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGcgaWQ9ImluZm8iLz48ZyBpZD0iaWNvbnMiPjxnIGlkPSJub3RpZmljYXRpb24iPjxwYXRoIGQ9Ik0xMy43LDIwaC0zLjVjLTAuNywwLTEuMywwLjgtMC45LDEuNUM5LjksMjIuNCwxMC45LDIzLDEyLDIzczIuMS0wLjYsMi42LTEuNUMxNSwyMC44LDE0LjUsMjAsMTMuNywyMHoiLz48cGF0aCBkPSJNMjEuOCwxNi43bC0wLjQtMC41QzE5LjgsMTQuMSwxOSwxMS42LDE5LDlWOC4zYzAtMy42LTIuNi02LjgtNi4yLTcuMkM4LjYsMC42LDUsMy45LDUsOHYxYzAsMi42LTAuOCw1LjEtMi40LDcuMiAgICBsLTAuNCwwLjVjLTAuMiwwLjItMC4zLDAuNi0wLjIsMC44QzIuMywxOC40LDMuMSwxOSw0LDE5aDE2YzAuOSwwLDEuNy0wLjYsMS45LTEuNUMyMiwxNy4yLDIxLjksMTYuOSwyMS44LDE2Ljd6Ii8+PC9nPjwvZz48L3N2Zz4=);
  background-size: 100%;
  background-repeat: no-repeat;
}
.homeIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjZmZmZmZmIiBpZD0iaG9tZSIgZD0ibTIzLjYsMTAuM2wtMTAuNCwtNy45Yy0wLjcsLTAuNSAtMS43LC0wLjUgLTIuNSwwbC0xMC4zLDcuOWMtMC44LDAuNiAtMC40LDEuNyAwLjYsMS43bDEsMGwwLDYuMWMwLDIuMSAxLjgsMy45IDQsMy45bDIsMGMwLjYsMCAxLC0wLjQgMSwtMWwwLC00LjljMCwtMS4xIDAuOSwtMi4xIDIsLTIuMWwyLDBjMS4xLDAgMiwxIDIsMi4xbDAsNC45YzAsMC41IDAuNCwxIDEsMWwyLDBjMi4yLDAgNCwtMS44IDQsLTMuOWwwLC02LjFsMSwwYzAuOSwwIDEuMywtMS4xIDAuNiwtMS43eiIvPiA8L2c+PC9zdmc+);
  background-size: 100%;
  background-repeat: no-repeat;
}
.messagesIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjZmZmZmZmIiBpZD0iZW1haWwiIGQ9Im0yMCwzbC0xNiwwYy0yLjIsMCAtNCwxLjggLTQsNGwwLDEwYzAsMi4yIDEuOCw0IDQsNGwxNiwwYzIuMiwwIDQsLTEuOCA0LC00bDAsLTEwYzAsLTIuMiAtMS44LC00IC00LC00em0xLjYsNS44bC03LjksNS4zYy0wLjUsMC4zIC0xLjEsMC41IC0xLjcsMC41cy0xLjIsLTAuMiAtMS43LC0wLjVsLTcuOSwtNS4zYy0wLjQsLTAuMyAtMC41LC0wLjkgLTAuMiwtMS40YzAuMywtMC40IDAuOSwtMC41IDEuNCwtMC4ybDcuOSw1LjNjMC4zLDAuMiAwLjgsMC4yIDEuMSwwbDcuOSwtNS4zYzAuNSwtMC4zIDEuMSwtMC4yIDEuNCwwLjNjMC4yLDAuNCAwLjEsMSAtMC4zLDEuM3oiLz4gPC9nPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
}
.contractsIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMuOTk5OTk5OTk5OTk5OTk2IiBoZWlnaHQ9IjIzLjk5OTk5OTk5OTk5OTk5NiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPGc+ICA8dGl0bGU+YmFja2dyb3VuZDwvdGl0bGU+ICA8cmVjdCBmaWxsPSJub25lIiBpZD0iY2FudmFzX2JhY2tncm91bmQiIGhlaWdodD0iNDAyIiB3aWR0aD0iNTgyIiB5PSItMSIgeD0iLTEiLz4gPC9nPiA8Zz4gIDx0aXRsZT5MYXllciAxPC90aXRsZT4gIDxwYXRoIGZpbGw9IiNmZmZmZmYiIGlkPSJzdmdfMSIgZD0ibTE3LjUsOGMtMS40LDAgLTIuNSwtMS4xIC0yLjUsLTIuNWwwLC0zLjVjMCwtMC42IC0wLjQsLTEgLTEsLTFsLTgsMGMtMi4yLDAgLTQsMS44IC00LDRsMCwxNGMwLDIuMiAxLjgsNCA0LDRsMTIsMGMyLjIsMCA0LC0xLjggNCwtNGwwLC0xMGMwLC0wLjYgLTAuNCwtMSAtMSwtMWwtMy41LDB6bS0zLjUsOWwtNiwwYy0wLjYsMCAtMSwtMC40IC0xLC0xYzAsLTAuNiAwLjQsLTEgMSwtMWw2LDBjMC42LDAgMSwwLjQgMSwxYzAsMC42IC0wLjQsMSAtMSwxem0yLC00bC04LDBjLTAuNiwwIC0xLC0wLjQgLTEsLTFjMCwtMC42IDAuNCwtMSAxLC0xbDgsMGMwLjYsMCAxLDAuNCAxLDFjMCwwLjYgLTAuNCwxIC0xLDF6Ii8+IDwvZz48L3N2Zz4=);
  background-size: 100%;
  background-repeat: no-repeat;
}
.paymentsIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBpZD0ic3ZnXzEiIGZpbGw9Im5vbmUiIGQ9Im0wLDBsNDgsMGwwLDQ4bC00OCwwbDAsLTQ4eiIvPiAgPHBhdGggc3Ryb2tlPSJudWxsIiBmaWxsPSIjZmZmZmZmIiBpZD0ic3ZnXzIiIGQ9Im0zOS4zNjE3NjMsMS42MTA5MzFsLTMwLjg2MDA0MSwwYy0yLjg0MTY5NSwwIC01LjE0MzM0LDIuMDIyMTQ5IC01LjE0MzM0LDQuNTE4NzY5bDAsMzYuMTUwMTUzYzAsMi40OTY2MiAyLjMwMTY0NSw0LjUxODc2OSA1LjE0MzM0LDQuNTE4NzY5bDMwLjg2MDA0MSwwYzIuODQxNjk1LDAgNS4xNDMzNCwtMi4wMjIxNDkgNS4xNDMzNCwtNC41MTg3NjlsMCwtMzYuMTUwMTUzYzAsLTIuNDk2NjIgLTIuMzAxNjQ1LC00LjUxODc2OSAtNS4xNDMzNCwtNC41MTg3Njl6bS0zMC44NjAwNDEsNC41MTg3NjlsMTIuODU4MzUsMGwwLDE4LjA3NTA3N2wtNi40MjkxNzUsLTMuMzg5MDc3bC02LjQyOTE3NSwzLjM4OTA3N2wwLC0xOC4wNzUwNzd6Ii8+IDwvZz48L3N2Zz4=);
  background-size: 100%;
  background-repeat: no-repeat;
}
.settingIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMuOTk5OTk5OTk5OTk5OTk2IiBoZWlnaHQ9IjIzLjk5OTk5OTk5OTk5OTk5NiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPGc+ICA8dGl0bGU+YmFja2dyb3VuZDwvdGl0bGU+ICA8cmVjdCBmaWxsPSJub25lIiBpZD0iY2FudmFzX2JhY2tncm91bmQiIGhlaWdodD0iNDAyIiB3aWR0aD0iNTgyIiB5PSItMSIgeD0iLTEiLz4gPC9nPiA8Zz4gIDx0aXRsZT5MYXllciAxPC90aXRsZT4gIDxwYXRoIGZpbGw9IiNmZmZmZmYiIGlkPSJzZXR0aW5ncyIgZD0ibTIyLjIsMTQuNGwtMS4yLC0wLjdjLTEuMywtMC44IC0xLjMsLTIuNyAwLC0zLjVsMS4yLC0wLjdjMSwtMC42IDEuMywtMS44IDAuNywtMi43bC0xLC0xLjdjLTAuNiwtMSAtMS44LC0xLjMgLTIuNywtMC43bC0xLjIsMC43Yy0xLjMsMC44IC0zLC0wLjIgLTMsLTEuN2wwLC0xLjRjMCwtMS4xIC0wLjksLTIgLTIsLTJsLTIsMGMtMS4xLDAgLTIsMC45IC0yLDJsMCwxLjNjMCwxLjUgLTEuNywyLjUgLTMsMS43bC0xLjIsLTAuNmMtMSwtMC42IC0yLjIsLTAuMiAtMi43LDAuN2wtMSwxLjdjLTAuNSwxIC0wLjIsMi4yIDAuNywyLjhsMS4yLDAuN2MxLjMsMC43IDEuMywyLjcgMCwzLjRsLTEuMiwwLjdjLTEsMC42IC0xLjMsMS44IC0wLjcsMi43bDEsMS43YzAuNiwxIDEuOCwxLjMgMi43LDAuN2wxLjIsLTAuNmMxLjMsLTAuOCAzLDAuMiAzLDEuN2wwLDEuNGMwLDEuMSAwLjksMiAyLDJsMiwwYzEuMSwwIDIsLTAuOSAyLC0ybDAsLTEuM2MwLC0xLjUgMS43LC0yLjUgMywtMS43bDEuMiwwLjdjMSwwLjYgMi4yLDAuMiAyLjcsLTAuN2wxLC0xLjdjMC41LC0xLjEgMC4yLC0yLjMgLTAuNywtMi45em0tMTAuMiwxLjZjLTIuMiwwIC00LC0xLjggLTQsLTRjMCwtMi4yIDEuOCwtNCA0LC00czQsMS44IDQsNGMwLDIuMiAtMS44LDQgLTQsNHoiLz4gPC9nPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
}
.editIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iMTZweCIgaWQ9IkxheWVyXzEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTYgMTYiIHdpZHRoPSIxNnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNMi40NTMsOS4yOTdDMS43NTQsOS45OTYsMSwxMy43MDMsMSwxNGMwLDAuNTIxLDAuNDA2LDEsMSwxYzAuMjk3LDAsNC4wMDQtMC43NTQsNC43MDMtMS40NTNsNS43MjItNS43MjJsLTQuMjUtNC4yNSAgTDIuNDUzLDkuMjk3eiBNMTIsMWMtMC42MDIsMC0xLjQ0OSwwLjE5OS0yLjE0MSwwLjg5MUw5LjU3NSwyLjE3NWw0LjI1LDQuMjVsMC4yODQtMC4yODRDMTQuNzQ2LDUuNTA0LDE1LDQuNjk1LDE1LDQgIEMxNSwyLjM0MywxMy42NTYsMSwxMiwxeiIvPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
}
.saveIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDx0aXRsZS8+IDxkZXNjLz4gPGc+ICA8dGl0bGU+YmFja2dyb3VuZDwvdGl0bGU+ICA8cmVjdCBmaWxsPSJub25lIiBpZD0iY2FudmFzX2JhY2tncm91bmQiIGhlaWdodD0iNDAyIiB3aWR0aD0iNTgyIiB5PSItMSIgeD0iLTEiLz4gPC9nPiA8Zz4gIDx0aXRsZSBmaWxsPSIjZmZmZmZmIiBzdHJva2U9IiNmZmZmZmYiPkxheWVyIDE8L3RpdGxlPiAgPHBhdGggZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSIjZmZmZmZmIiBpZD0iU2hhcGUiIGQ9Im0xNCwwbC0xMiwwYy0xLjEsMCAtMiwwLjkgLTIsMmwwLDE0YzAsMS4xIDAuOSwyIDIsMmwxNCwwYzEuMSwwIDIsLTAuOSAyLC0ybDAsLTEybC00LC00bDAsMHptLTUsMTZjLTEuNywwIC0zLC0xLjMgLTMsLTNjMCwtMS43IDEuMywtMyAzLC0zYzEuNywwIDMsMS4zIDMsM2MwLDEuNyAtMS4zLDMgLTMsM2wwLDB6bTMsLTEwbC0xMCwwbDAsLTRsMTAsMGwwLDRsMCwweiIvPiA8L2c+PC9zdmc+);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.deleteIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDx0aXRsZS8+IDxkZXNjLz4gPGc+ICA8dGl0bGU+YmFja2dyb3VuZDwvdGl0bGU+ICA8cmVjdCBmaWxsPSJub25lIiBpZD0iY2FudmFzX2JhY2tncm91bmQiIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjZmZmZmZmIiBpZD0iU2hhcGUiIGQ9Im0zLDE2YzAsMS4xIDAuOSwyIDIsMmw4LDBjMS4xLDAgMiwtMC45IDIsLTJsMCwtMTJsLTEyLDBsMCwxMmwwLDB6bTEzLC0xNWwtMy41LDBsLTEsLTFsLTUsMGwtMSwxbC0zLjUsMGwwLDJsMTQsMGwwLC0ybDAsMHoiLz4gPC9nPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.closeIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNNDM3LjUsMzg2LjZMMzA2LjksMjU2bDEzMC42LTEzMC42YzE0LjEtMTQuMSwxNC4xLTM2LjgsMC01MC45Yy0xNC4xLTE0LjEtMzYuOC0xNC4xLTUwLjksMEwyNTYsMjA1LjFMMTI1LjQsNzQuNSAgYy0xNC4xLTE0LjEtMzYuOC0xNC4xLTUwLjksMGMtMTQuMSwxNC4xLTE0LjEsMzYuOCwwLDUwLjlMMjA1LjEsMjU2TDc0LjUsMzg2LjZjLTE0LjEsMTQuMS0xNC4xLDM2LjgsMCw1MC45ICBjMTQuMSwxNC4xLDM2LjgsMTQuMSw1MC45LDBMMjU2LDMwNi45bDEzMC42LDEzMC42YzE0LjEsMTQuMSwzNi44LDE0LjEsNTAuOSwwQzQ1MS41LDQyMy40LDQ1MS41LDQwMC42LDQzNy41LDM4Ni42eiIvPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.arrowLeftIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNMzI3LjMsOTguOWwtMi4xLDEuOGwtMTU2LjUsMTM2Yy01LjMsNC42LTguNiwxMS41LTguNiwxOS4yYzAsNy43LDMuNCwxNC42LDguNiwxOS4yTDMyNC45LDQxMWwyLjYsMi4zICBjMi41LDEuNyw1LjUsMi43LDguNywyLjdjOC43LDAsMTUuOC03LjQsMTUuOC0xNi42aDBWMTEyLjZoMGMwLTkuMi03LjEtMTYuNi0xNS44LTE2LjZDMzMyLjksOTYsMzI5LjgsOTcuMSwzMjcuMyw5OC45eiIvPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.arrowLeftStartIcon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPGc+ICA8dGl0bGU+YmFja2dyb3VuZDwvdGl0bGU+ICA8cmVjdCBmaWxsPSJub25lIiBpZD0iY2FudmFzX2JhY2tncm91bmQiIGhlaWdodD0iNDAyIiB3aWR0aD0iNTgyIiB5PSItMSIgeD0iLTEiLz4gPC9nPiA8Zz4gIDx0aXRsZT5MYXllciAxPC90aXRsZT4gIDxwYXRoIGlkPSJzdmdfMSIgZD0ibTMyNy4zLDk4LjlsLTIuMSwxLjhsLTE1Ni41LDEzNmMtNS4zLDQuNiAtOC42LDExLjUgLTguNiwxOS4yYzAsNy43IDMuNCwxNC42IDguNiwxOS4ybDE1Ni4yLDEzNS45bDIuNiwyLjNjMi41LDEuNyA1LjUsMi43IDguNywyLjdjOC43LDAgMTUuOCwtNy40IDE1LjgsLTE2LjZsMCwwbDAsLTI4Ni44bDAsMGMwLC05LjIgLTcuMSwtMTYuNiAtMTUuOCwtMTYuNmMtMy4zLDAgLTYuNCwxLjEgLTguOSwyLjl6Ii8+ICA8cmVjdCBzdHJva2U9IiMwMDAiIHJ4PSIyOCIgaWQ9InN2Z18yIiBoZWlnaHQ9IjMyNS41MTcwOTQiIHdpZHRoPSI0OC4yNzU4MzciIHk9Ijk0LjkxMTcyMyIgeD0iOTYuMzQ0OTExIiBzdHJva2Utd2lkdGg9IjEuNSIgZmlsbD0iIzAwMDAwMCIvPiA8L2c+PC9zdmc+);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.arroRightIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNMTg0LjcsNDEzLjFsMi4xLTEuOGwxNTYuNS0xMzZjNS4zLTQuNiw4LjYtMTEuNSw4LjYtMTkuMmMwLTcuNy0zLjQtMTQuNi04LjYtMTkuMkwxODcuMSwxMDFsLTIuNi0yLjMgIEMxODIsOTcsMTc5LDk2LDE3NS44LDk2Yy04LjcsMC0xNS44LDcuNC0xNS44LDE2LjZoMHYyODYuOGgwYzAsOS4yLDcuMSwxNi42LDE1LjgsMTYuNkMxNzkuMSw0MTYsMTgyLjIsNDE0LjksMTg0LjcsNDEzLjF6Ii8+PC9zdmc+);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.sortIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB3aWR0aD0iMTc5MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQwOCAxMDg4cTAgMjYtMTkgNDVsLTQ0OCA0NDhxLTE5IDE5LTQ1IDE5dC00NS0xOWwtNDQ4LTQ0OHEtMTktMTktMTktNDV0MTktNDUgNDUtMTloODk2cTI2IDAgNDUgMTl0MTkgNDV6bTAtMzg0cTAgMjYtMTkgNDV0LTQ1IDE5aC04OTZxLTI2IDAtNDUtMTl0LTE5LTQ1IDE5LTQ1bDQ0OC00NDhxMTktMTkgNDUtMTl0NDUgMTlsNDQ4IDQ0OHExOSAxOSAxOSA0NXoiLz48L3N2Zz4=);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.showIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGUgZmlsbD0iI2ZmZmZmZiI+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjZmZmZmZmIiBpZD0ic3ZnXzEiIGQ9Im0wLjIsMTBhMTEsMTEgMCAwIDEgMTkuNiwwYTExLDExIDAgMCAxIC0xOS42LDB6bTkuOCw0YTQsNCAwIDEgMCAwLC04YTQsNCAwIDAgMCAwLDh6bTAsLTJhMiwyIDAgMSAxIDAsLTRhMiwyIDAgMCAxIDAsNHoiLz4gPC9nPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.sendIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc5MiIgaGVpZ2h0PSIxNzkyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPiA8Zz4gIDx0aXRsZT5iYWNrZ3JvdW5kPC90aXRsZT4gIDxyZWN0IGZpbGw9Im5vbmUiIGlkPSJjYW52YXNfYmFja2dyb3VuZCIgaGVpZ2h0PSI0MDIiIHdpZHRoPSI1ODIiIHk9Ii0xIiB4PSItMSIvPiA8L2c+IDxnPiAgPHRpdGxlIGZpbGw9IiNmZmZmZmYiPkxheWVyIDE8L3RpdGxlPiAgPHBhdGggZmlsbD0iI2ZmZmZmZiIgaWQ9InN2Z18xIiBkPSJtMTc2NCwxMXEzMywyNCAyNyw2NGwtMjU2LDE1MzZxLTUsMjkgLTMyLDQ1cS0xNCw4IC0zMSw4cS0xMSwwIC0yNCwtNWwtNDUzLC0xODVsLTI0MiwyOTVxLTE4LDIzIC00OSwyM3EtMTMsMCAtMjIsLTRxLTE5LC03IC0zMC41LC0yMy41dC0xMS41LC0zNi41bDAsLTM0OWw4NjQsLTEwNTlsLTEwNjksOTI1bC0zOTUsLTE2MnEtMzcsLTE0IC00MCwtNTVxLTIsLTQwIDMyLC01OWwxNjY0LC05NjBxMTUsLTkgMzIsLTlxMjAsMCAzNiwxMXoiLz4gPC9nPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.lockIcon {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUwMCA1MDAiIGhlaWdodD0iNTAwcHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA1MDAgNTAwIiB3aWR0aD0iNTAwcHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzMS44ODksMTUwLjA2MXY2My41OTdoLTI3LjI1NiAgYy0yMC4wNzksMC0zNi4zNDMsMTYuMjYzLTM2LjM0MywzNi4zNDJ2MTgxLjcxMWMwLDIwLjA3OCwxNi4yNjQsMzYuMzQsMzYuMzQzLDM2LjM0aDI5MC43MzRjMjAuMDc4LDAsMzYuMzQ1LTE2LjI2MiwzNi4zNDUtMzYuMzQgIFYyNTBjMC0yMC4wNzktMTYuMjY3LTM2LjM0Mi0zNi4zNDUtMzYuMzQyaC0yNy4yNTR2LTYzLjU5N2MwLTY1LjIzMi01Mi44ODItMTE4LjExMS0xMTguMTEyLTExOC4xMTEgIFMxMzEuODg5LDg0LjgyOCwxMzEuODg5LDE1MC4wNjF6IE0xNzcuMzE3LDIxMy42NTh2LTYzLjU5N2MwLTQwLjE1NywzMi41MjUtNzIuNjg1LDcyLjY4My03Mi42ODUgIGM0MC4xNTgsMCw3Mi42ODUsMzIuNTI4LDcyLjY4NSw3Mi42ODV2NjMuNTk3SDE3Ny4zMTd6IE0yMTMuNjU4LDMxMy41OTljMC0yMC4wNzgsMTYuMjYzLTM2LjM0MSwzNi4zNDItMzYuMzQxICBzMzYuMzQxLDE2LjI2MywzNi4zNDEsMzYuMzQxYzAsMTIuODEyLTYuNjM0LDI0LjA3OS0xNi42MjUsMzAuNTI5YzAsMCwzLjU1LDIxLjQ0Niw3LjU0Miw0Ni42OTkgIGMwLDcuNTM4LTYuMDg3LDEzLjYyNS0xMy42MjksMTMuNjI1aC0yNy4yNThjLTcuNTQxLDAtMTMuNjI3LTYuMDg3LTEzLjYyNy0xMy42MjVsNy41NDItNDYuNjk5ICBDMjIwLjI5NCwzMzcuNjc4LDIxMy42NTgsMzI2LjQxLDIxMy42NTgsMzEzLjU5OXoiIGZpbGw9IiMwMTAxMDEiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.lockIconWhite {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwLjAwMDAwMDAwMDAwMDA2IiBoZWlnaHQ9IjUwMC4wMDAwMDAwMDAwMDAwNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPGc+ICA8dGl0bGU+YmFja2dyb3VuZDwvdGl0bGU+ICA8cmVjdCBmaWxsPSJub25lIiBpZD0iY2FudmFzX2JhY2tncm91bmQiIGhlaWdodD0iNDAyIiB3aWR0aD0iNTgyIiB5PSItMSIgeD0iLTEiLz4gPC9nPiA8Zz4gIDx0aXRsZT5MYXllciAxPC90aXRsZT4gIDxwYXRoIGlkPSJzdmdfMSIgZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjZmZmZmZmIiBkPSJtMTMxLjg4OSwxNTAuMDYxbDAsNjMuNTk3bC0yNy4yNTYsMGMtMjAuMDc5LDAgLTM2LjM0MywxNi4yNjMgLTM2LjM0MywzNi4zNDJsMCwxODEuNzExYzAsMjAuMDc4IDE2LjI2NCwzNi4zNCAzNi4zNDMsMzYuMzRsMjkwLjczNCwwYzIwLjA3OCwwIDM2LjM0NSwtMTYuMjYyIDM2LjM0NSwtMzYuMzRsMCwtMTgxLjcxMWMwLC0yMC4wNzkgLTE2LjI2NywtMzYuMzQyIC0zNi4zNDUsLTM2LjM0MmwtMjcuMjU0LDBsMCwtNjMuNTk3YzAsLTY1LjIzMiAtNTIuODgyLC0xMTguMTExIC0xMTguMTEyLC0xMTguMTExcy0xMTguMTEyLDUyLjg3OCAtMTE4LjExMiwxMTguMTExem00NS40MjgsNjMuNTk3bDAsLTYzLjU5N2MwLC00MC4xNTcgMzIuNTI1LC03Mi42ODUgNzIuNjgzLC03Mi42ODVjNDAuMTU4LDAgNzIuNjg1LDMyLjUyOCA3Mi42ODUsNzIuNjg1bDAsNjMuNTk3bC0xNDUuMzY4LDB6bTM2LjM0MSw5OS45NDFjMCwtMjAuMDc4IDE2LjI2MywtMzYuMzQxIDM2LjM0MiwtMzYuMzQxczM2LjM0MSwxNi4yNjMgMzYuMzQxLDM2LjM0MWMwLDEyLjgxMiAtNi42MzQsMjQuMDc5IC0xNi42MjUsMzAuNTI5YzAsMCAzLjU1LDIxLjQ0NiA3LjU0Miw0Ni42OTljMCw3LjUzOCAtNi4wODcsMTMuNjI1IC0xMy42MjksMTMuNjI1bC0yNy4yNTgsMGMtNy41NDEsMCAtMTMuNjI3LC02LjA4NyAtMTMuNjI3LC0xMy42MjVsNy41NDIsLTQ2LjY5OWMtOS45OTIsLTYuNDUgLTE2LjYyOCwtMTcuNzE4IC0xNi42MjgsLTMwLjUyOXoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPiA8L2c+PC9zdmc+);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.iconDownload {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDx0aXRsZS8+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBpZD0iUmVjdGFuZ2xlIDIxNyIgZD0ibTEsMTRsMTIsMGwwLC0zbDIsMGwwLDNsMCwybC0xNCwwbDAsLTJ6bTAsLTNsMiwwbDAsM2wtMiwwbDAsLTN6bTUsLTEwbDQsMGwwLDdsMiwwbC00LDVsLTQsLTVsMiwwbDAsLTd6bTAsMCIvPiA8L2c+PC9zdmc+);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
}
.iconWhite:hover .iconDownload {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+IDx0aXRsZS8+IDxnPiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPiAgPHJlY3QgZmlsbD0ibm9uZSIgaWQ9ImNhbnZhc19iYWNrZ3JvdW5kIiBoZWlnaHQ9IjQwMiIgd2lkdGg9IjU4MiIgeT0iLTEiIHg9Ii0xIi8+IDwvZz4gPGc+ICA8dGl0bGUgZmlsbD0iI2ZmZmZmZiI+TGF5ZXIgMTwvdGl0bGU+ICA8cGF0aCBmaWxsPSIjZmZmZmZmIiBpZD0iUmVjdGFuZ2xlIDIxNyIgZD0ibTEsMTRsMTIsMGwwLC0zbDIsMGwwLDNsMCwybC0xNCwwbDAsLTJ6bTAsLTNsMiwwbDAsM2wtMiwwbDAsLTN6bTUsLTEwbDQsMGwwLDdsMiwwbC00LDVsLTQsLTVsMiwwbDAsLTd6bTAsMCIvPiA8L2c+PC9zdmc+);
}
.pageLoad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 11;
}
.pageLoadLoader {
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  margin: 80px auto;
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 64px;
  height: 64px;
}
.pageLoadLoader .loader {
  margin-left: 16px;
}
.loader:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #3e82be;
  border-color: #3e82be transparent #3e82be transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cardsContainer {
  display: flex;
  flex-flow: row wrap;
  flex-shrink: 0;
}
.card {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  box-shadow: 6.31px 5.31px 6px #d8dadd, -6.31px -5.31px 13px #f5f5f5;
  margin-bottom: 16px;
}
.fillBc {
  background-color: #FFF;
}
.cardMaxHeight {
  height: 100%;
  display: flex;
  flex-flow: column;
}
.card.withIcon {
  margin-top: 28px;
}
.content .card.withIcon:first-child {
  margin-top: 20px;
}
.cardMaxHeight.withIcon {
  height: calc(100% - 20px);
}
.card h1 {
  color: #333;
  margin-top: -28px;
  display: flex;
  align-items: flex-end;
  padding-left: 10px;
}
.card h1 span {
  padding-bottom: 6px;
}
.card h2 {
  margin-bottom: 5px;
  padding-bottom: 2px;
}
.card h2.center {
  text-align: center;
}
.card h3 {
  margin-bottom: 4px;
  padding-bottom: 2px;
  padding-left: 6px;
  border-bottom: 2px solid #3e82be;
}
.cardForm {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.cardTab {
  margin-bottom: 8px;
}
.cardForm > .cardTab:last-child {
  margin-bottom: 0px;
}
.cardForm > .cardTab:first-child {
  margin-bottom: 8px;
}
.cardCategory {
  font-size: 1.4rem;
  padding: 0px 0px 4px 0px;
  margin-bottom: 8px;
  border-bottom: 1px solid #3e82be;
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.cardTabIcon,
.cardHeaderIcon {
  background-color: #3e82be;
  box-shadow: 3px 3px 6px #e3e3e3, -3px -3px 6px #ffffff;
  color: #FFF;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 6px;
}
.cardLine {
  font-size: 1rem;
  width: 100%;
  display: flex;
}
.cardLine.right {
  justify-content: flex-end;
}
.cardLine.center {
  justify-content: center;
}
.cardFormField {
  display: flex;
  align-items: center;
  max-width: 50%;
  min-width: 50%;
  min-height: 42px;
  line-height: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.cardForm .cardLine:last-child .cardFormField {
  border-bottom: none;
}
.cardFormField.singleField {
  max-width: 100%;
  min-width: 100%;
}
.cardFormField > .labelContainer {
  min-width: 40%;
  display: flex;
  flex-flow: row nowrap;
}
.cardFormField > .labelContainer > label {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cardFormField > .cardFormFieldValue {
  width: 60%;
  padding-right: 5px;
  padding-left: 3px;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  display: flex;
  align-items: center;
}
.singleField .labelContainer {
  min-width: 20%;
  max-width: 20%;
}
.singleField > label {
  font-weight: 500;
}
.singleField > .cardFormFieldValue {
  width: 80%;
}
.cardFormField.allowEdit,
.cardFormField.allowEdit label {
  cursor: pointer;
}
.error > .cardFormFieldValue {
  background-color: #ffaecb;
  min-height: 41px;
}
.cardFormFieldValue > span {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 20px;
  display: flex;
}
.cardEditIcon {
  color: #DDD;
  font-size: 1.3rem;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  cursor: pointer;
}
.cardFormField.allowEdit:hover {
  background-color: #EEE;
}
.cardFormField.allowEdit:hover > .cardFormFieldValue .cardEditIcon {
  transform: scale(1);
  color: #333;
}
.cardFormFieldEdit {
  width: 60%;
  position: relative;
}
.singleField .cardFormFieldEdit {
  width: 80%;
}
.cardFormFieldEdit .formInput > div > input,
.cardFormFieldEdit .formDate > div > input,
.cardFormFieldEdit .formSelectContainer > div > div {
  padding: 0px 0px 0px 3px;
  height: 41px;
  font-size: 1rem;
}
.cardFormFieldEdit .formSelectContainer > div > div {
  display: flex;
  align-items: center;
}
.cardSpanIcon {
  margin-left: 2px;
  font-size: 1.4rem;
  position: relative;
  top: -1px;
}
.cardSpanIcon.newMessageIcon {
  font-size: 1.3rem;
  top: 1px;
}
.cardFormFieldImageContainer {
  position: relative;
}
.cardFormFieldImage {
  max-height: 140px;
}
.cardFormFieldImageDel {
  position: absolute;
  right: 5px;
  top: 5px;
  opacity: 0;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
.cardFormFieldImageContainer:hover .cardFormFieldImageDel {
  opacity: 1;
}
.cardFormField label span.help {
  color: #999999;
  font-size: 1.2rem;
  padding-left: 2px;
  position: relative;
  top: 2px;
}
.cardFormField.columnDisplay {
  flex-flow: column;
  align-items: flex-start;
}
.cardFormField.columnDisplay .labelContainer {
  padding-top: 12px;
}
.cardFormField.columnDisplay .cardFormFieldValue {
  width: 100%!important;
}
.cardFormField.columnDisplay .cardEditIcon {
  display: none;
}
.cardFormField.columnDisplay .cardFormFieldEdit {
  width: 100%!important;
}
.cardFormField.noLabel .labelContainer {
  display: none;
}
.simpleForm .cardFormFieldEdit .formInput > div > input {
  padding: 4px 0px 4px 3px;
}
.simpleForm .cardFormFieldEdit {
  width: 100%;
}
.simpleForm .cardLine {
  padding: 0px;
  border-top: none;
  margin-bottom: 8px;
}
.simpleForm .cardCategory {
  margin-bottom: 8px;
}
.simpleForm .loaderContainer {
  display: flex;
  justify-content: center;
  padding: 16px 0px;
}
.simpleForm.signDocuments {
  padding: 24px 40px !important;
  max-width: none !important;
}
.ratioDiv {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.ratioDiv.scaleByHeight {
  height: 100% !important;
}
.ratioDivRatio {
  display: block;
  width: 100%;
  padding-top: 100%;
}
.ratioDivContent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.rotateDivContainer {
  width: 100%;
  height: 100%;
  perspective: 1000px;
  position: relative;
  z-index: 2;
}
.rotateDiv {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  transform-style: preserve-3d;
}
.rotateDivFront,
.rotateDivBack {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.rotateDiv.rotated {
  animation: rotateAnimation 0.6s cubic-bezier(0, 0, 1, 1) forwards;
}
.rotateDiv.rotatedBack {
  animation: rotateBackAnimation 0.6s cubic-bezier(0, 0, 1, 1) forwards;
}
.rotateDivBack {
  position: absolute;
  transform: rotateY(180deg) translateZ(1px);
  background: white;
}
@keyframes rotateAnimation {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(90deg) scale(0.8);
  }
  100% {
    transform: rotateY(180deg) scale(1);
  }
}
@keyframes rotateBackAnimation {
  0% {
    transform: rotateY(180deg) scale(1);
  }
  50% {
    transform: rotateY(90deg) scale(0.8);
  }
  100% {
    transform: rotateY(0deg) scale(1);
  }
}
.textScaleDiv {
  width: 100%;
}
.textScaleDivText {
  display: inline-block;
  white-space: nowrap;
}
.loginContainer {
  width: 100%;
  min-height: 100%;
  background-color: #ecf0f3;
  display: flex;
  flex-flow: column;
}
.loginHeader {
  height: 80px;
}
.loginContent {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loginWindow {
  min-height: 552px;
  width: 90%;
  max-width: 400px;
  border-radius: 30px;
  background-color: #ecf0f3;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -ms-transition-duration: 1s;
}
.loginWindow > div {
  opacity: 0;
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
}
.loginWindow.shadow {
  box-shadow: 24px 24px 48px #c6cacc, -24px -24px 48px #ffffff;
}
.loginWindow.shadow > div {
  opacity: 1;
}
.loginWindow.register {
  max-width: 500px;
}
div.loginLogoContainer {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 8px;
}
div.loginLogoContainer img {
  height: 120px;
}
.loginButton {
  border-radius: 30px!important;
  width: 100%;
  padding: 15px 0px !important;
  background-color: #3e82be !important;
}
.logginMessage {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e10051;
  height: 24px;
}
.loginTextButton span {
  color: #797979;
  cursor: pointer;
  margin: 0px 2px;
}
.loginTextButton.registration a {
  color: #3e82be;
  font-weight: 400;
  padding-top: 4px;
  display: block;
}
.loginGetAccessContent {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.loginGetAccessContent h2 {
  color: #3e82be;
  margin: 0px;
}
.loginGetAccessForm {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}
.loginGetAccessForm .formInputContainer {
  margin-bottom: 20px;
}
.loginGetAccessReturnMessage {
  min-height: 25px;
  width: 100%;
  text-align: center;
}
.loginWindowContent {
  padding: 20px 42px 8px 42px;
}
.loginWindowContent .formTabs {
  width: 100%;
  margin-bottom: 12px;
}
.loginWindowContent .formInputContainer {
  margin-bottom: 16px;
}
.loginWindowContent .formInputContainer fieldset,
.loginWindowContent .formInputContainer input {
  border-radius: 30px!important;
}
.loginWindowContent h2 {
  margin-top: 0px;
  text-align: center;
  color: #3e82be;
}
.loginWindowContent p {
  margin-top: 0px;
  text-align: center;
}
.loginCreatePass {
  padding: 0px 50px;
  width: 100%;
  display: flex;
  flex-flow: column;
}
.loginCreatePassDesc {
  color: transparent;
}
.loginCreatePassDescActive {
  color: #e10051;
}
.loginCreatePass p {
  margin: 0px;
  text-align: center;
}
.loginCreatePass h2 {
  margin: 5px;
  text-align: center;
  color: #3e82be;
}
.loginWindowContent .backButton {
  text-align: center;
  margin-top: 10px;
  display: block;
  color: #3e82be;
  cursor: pointer;
}
.loginCreatePass > div {
  padding-bottom: 10px;
}
.loginContactButtonContainer {
  width: 500px;
  display: flex;
  justify-content: flex-end;
  padding: 8px 0px;
  color: #FFF;
  cursor: pointer;
}
.loginFooterButton {
  width: 100%;
  padding: 8px 8px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.loginTwoFactorAutorizationCode {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.loginTwoFactorAutorizationCode .formInputContainer {
  width: 50px!important;
}
.loginTwoFactorAutorizationCode .formInputContainer input {
  font-size: 2rem;
  text-align: center;
}
.twoFactorHeader {
  text-align: center;
  font-size: 1.6rem;
}
.twoFactorHeader .icon-lock {
  font-size: 2.6rem;
  padding-bottom: 8px;
}
.twoFactorText {
  text-align: center;
  padding: 16px 16px;
}
.loginTwoFactorContainer {
  padding: 16px;
}
.loginLoad {
  width: 100%;
  padding-top: 40px!important;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
}
.registerNameLine > div {
  margin-right: 4px;
}
.registerNameLine > div:last-child {
  margin-right: 0px;
}
.registerCheckboxLine {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 8px;
}
.registerCheckboxText {
  display: inline-block;
}
.registerCheckboxText a {
  text-decoration: underline;
  color: #3e82be;
}
.loginWindow {
  overflow: hidden;
}
.loginWindow .language {
  position: relative;
  top: -14px;
}
.loginWindow .formInput {
  background-color: transparent!important;
}
.loginWindow .formSelectContainer.transfer > div > div {
  border: none;
}
.loginWindow .formSelectContainer.transfer > div {
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 30px;
  overflow: hidden;
}
.loginWindow .areteLogo {
  height: 93px;
}
/* Change the white to any color */
.loginWindow input,
.loginWindow input:-webkit-autofill,
.loginWindow input:-webkit-autofill:hover,
.loginWindow input:-webkit-autofill:focus,
.loginWindow input:-webkit-autofill:active,
.loginWindow .formSelectContainer.transfer > div > div {
  -webkit-box-shadow: 0 0 0 30px #f4f9fd inset !important;
  background-color: #f4f9fd;
}
/* NEW*/
.loginCompanyName {
  text-align: center;
  margin-bottom: 8px;
}
.loginPortalName {
  text-align: center;
  margin-bottom: 8px;
}
.registerReturn {
  text-align: center;
  padding-bottom: 20px;
}
.loginTextButton a {
  color: #797979;
}
.loginTextButton a:visited {
  color: #797979;
}
.loginTextButton.registration a {
  color: #3e82be;
}
.loginTextButton.registration a:visited {
  color: #3e82be;
}
header {
  height: 75px;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerMenuContainer {
  display: flex;
  align-items: center;
  color: #21273a;
}
.userMenu {
  font-size: 1.1rem;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.userMenuHeader {
  display: flex;
  align-items: center;
}
.userMenuAvatarIcon {
  margin-right: 12px;
  font-size: 1.8rem;
}
.headerNotificationContainer {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 15px;
}
.userMenuContent {
  position: absolute;
  z-index: 2;
  right: 0px;
  background-color: #333;
  color: #FFF;
  min-width: 200px;
  top: 100%;
  animation-duration: 0.2s!important;
  display: none;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.userMenuContent.show {
  display: flex;
  flex-flow: column;
}
.userMenuLine {
  padding: 12px 12px;
  color: #FFF;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.userMenuLine:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.headerNot {
  width: 24px;
  height: 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 0px 8px 0px 0px;
  font-size: 1.7rem;
}
.breadcrumb .separator {
  font-size: 1.2rem;
  padding: 0px 6px;
  color: #CCC;
}
.breadcrumbIcon {
  background-color: #3e82be;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  color: #FFF;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-right: 8px;
  cursor: pointer;
}
.headerNewTabButton {
  padding: 1px 0px 0px 6px;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.4;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.headerNewTabButton:hover {
  opacity: 1;
}
.navContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 240px;
  flex-shrink: 0;
  height: 100%;
  background-color: #21273a;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: width 0.2s;
  /* Safari */
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -ms-transition: width 0.2s;
  transition: width width 0.2s;
}
.navContainer.min {
  width: 60px;
}
.navContainer.min .buttonsHolder {
  padding: 0px 8px 8px 8px;
}
.navContainer.min .buttonsHolder a {
  justify-content: center;
}
.navContainer.min .buttonsHolder a .navLineIcon {
  margin-right: 0;
}
.navContainer.min .buttonsHolder a > span {
  display: none;
}
.navContainer.min .navHeader {
  display: none;
}
.navContainer.min .menuToogleButton {
  right: 20px;
  top: 12px;
}
.navContainer.min .menuToogleButton::before {
  transform: rotate(90deg);
  margin-top: 1px;
  margin-left: 1px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 24px;
  padding-left: 16px;
  background-color: #21273a;
}
.navContainer.min .logoContainer img {
  display: none;
}
.navContainer.min .navLine {
  width: 36px;
}
.buttonsHolder {
  display: flex;
  flex-flow: column;
  padding: 0px 16px 8px 16px;
  width: 100%;
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.navHeader {
  font-size: 1.2rem;
  padding: 10px 8px;
  border-bottom: 1px solid #fff;
  color: #fff;
  margin-bottom: 6px;
  margin-right: 4px;
  margin-left: 4px;
}
.navLine {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  color: #fff;
  font-weight: 100;
  padding: 12px 12px 12px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 8px;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.navLineIcon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.navLine:hover,
.navLine.select {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 6px 6px 12px #1b2030, -6px -6px 12px #272e44;
}
.navLine span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menuMaskotContainer {
  display: flex;
  width: 100%;
  height: 50%;
  align-items: flex-end;
  justify-content: center;
  padding-top: 16px;
}
.menuMaskot {
  max-height: 280px;
  height: 100%;
}
.menuToogleButton {
  position: absolute;
  width: 28px;
  height: 28px;
  right: 12px;
  top: 21px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 2rem;
  color: #FFF;
}
.logoContainer {
  height: 73px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
}
.logoContainer a {
  height: 100%;
  display: flex;
  align-items: center;
}
.logoContainer img {
  width: 176px;
  height: 51px;
}
.mobileMenuButton {
  display: none;
}
#content.detail {
  padding: 0px;
  display: flex;
  flex-flow: column;
}
.detailViewContainer {
  width: 100%;
  height: 100%;
}
.contractsPrependChart {
  width: 100%;
  height: 250px;
}
.contractsPieChart {
  min-width: 40%;
}
.detailPrependChart {
  width: 100%;
  height: 100%;
}
.detailContent {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
}
.requiredMark {
  margin-left: 2px;
  color: #e10051;
}
.detailRelate {
  color: #3e82be;
}
.detailTopLineChart {
  height: 250px;
  width: 100%;
}
.htmlDescription {
  white-space: normal;
  width: 100%;
}
.relateFieldListContainer {
  position: absolute;
  top: 100%;
  z-index: 2;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  height: auto;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
.relateFieldListLine {
  padding: 8px 8px;
  background-color: #fff;
}
.relateFieldListLine:hover,
.relateFieldListLine.select {
  background-color: #d6e5f2;
}
.detailRedAlert {
  width: 100%;
  color: #e10051;
  background-color: #fff0f6;
  padding: 8px 6px;
  display: flex;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 5px 5px 14px #ebdde2, -5px -5px 14px #ffffff;
  box-sizing: border-box;
}
.detailRedAlert.orange {
  color: #d17000;
  background-color: #fff1e0;
  box-shadow: 5px 5px 14px #ebdece, -5px -5px 14px #fffff2;
}
.detailRedAlert.green {
  color: #259621;
  background-color: #d2f5d1;
  box-shadow: 5px 5px 14px #c1e1c0, -5px -5px 14px #e3ffe2;
}
.detailRedAlert.blue {
  color: #3e82be;
  background-color: #ffffff;
  box-shadow: 5px 5px 14px #c0c8e1, -5px -5px 14px #e2f1ff;
}
.detailRedAlert.importantRed {
  color: #FA1A1A;
  background-color: #fed3d3;
  box-shadow: 5px 5px 14px #ebdde2, -5px -5px 14px #ffffff;
}
.detailRedAlert label {
  font-weight: 400;
}
.detailRedAlert p {
  margin: 0px;
  font-size: 0.9rem;
}
.alertIcon,
.alertButton {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0px 4px;
}
.alertButton > div {
  opacity: 0.5;
  cursor: pointer;
}
.alertContent {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.alertContent .alertButtonElement {
  margin-top: 8px;
}
.alertButtonElement {
  opacity: 1 !important;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}
.red .alertButtonElement {
  background-color: #e10051;
}
.green .alertButtonElement {
  background-color: #259621;
}
.orange .alertButtonElement {
  background-color: #d17000;
}
.personalDocContainer {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
.pbFormNewLine.column .tgButtonPlacer {
  width: 100%;
  padding-bottom: 8px;
}
.pbFormNewLine.column .tgButtonContainer {
  width: 100%;
}
.pbFormNewLine.column .tgButtonWrapper {
  width: 100%;
}
.pbFormNewLine.noBorder {
  border-bottom: none;
}
.errorSpace {
  height: 32px;
}
.personalDocBlock {
  width: 100%;
  padding-right: 8px;
}
.rotateDiv .personalDocBlock {
  padding-right: 0;
}
.personalDocBlock .container {
  width: 100%;
  padding: 8px 0px;
}
.personalDocBlock .container .ratioDiv {
  border: 1px solid #ccc;
  border-radius: 8px;
}
.personalDocBlock .container .ratioDiv.error {
  border: 1px solid #e10051;
}
.personalDocBlock .container .dragAndDropContainer {
  height: 100%;
}
.personalDocBlock .ratioDivContent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.personalDocBlock .ratioDivContent img {
  max-width: 98%;
  max-height: 98%;
}
.personalDocBlock .ratioDivContent iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.personalDocBlock .ratioDivContent .delete {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.detailTextarea {
  width: 100%;
  min-height: 100px;
  height: 100%;
  resize: none;
}
.errorPageContent {
  display: flex;
  align-items: center;
  flex-flow: column;
}
.errorPageIcon {
  color: #e10051;
  font-size: 3rem;
  padding-bottom: 8px;
}
.errorPageText {
  font-weight: 400;
  font-size: 1.2rem;
}
.editViewContainer {
  width: 100%;
  background-color: #FFF;
  min-height: 100px;
  flex-shrink: 1;
}
.viewMenu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 75px;
}
.viewMenuButton {
  padding: 6px 12px 6px 10px;
  height: 33px;
  margin-right: 8px;
  display: flex;
  flex-flow: row nowrap;
  white-space: nowrap;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  -ms-transition-duration: 0.1s;
  user-select: none;
  background: #EEF0F4;
  border: 1px solid #efefef;
  color: #21273a;
  box-shadow: 4px 4px 8px #cfd1d4, -4px -4px 8px #ffffff;
}
.MuiList-root .viewMenuButton {
  margin-right: 0px;
}
.viewMenuButton.back {
  padding: 6px 6px;
  margin-right: 0px;
}
.viewMenuButton.back .viewMenuButtonIcon {
  margin-right: 0px;
}
.viewMenuButtonBorder {
  width: 1px;
  min-width: 1px;
  background-color: #ccc;
  height: 70%;
  margin: 0px 2px;
}
.viewMenuButton:hover {
  background-color: #3e82be;
  border: 1px solid #3e82be;
  color: #fff;
}
.viewMenuButton.main {
  background-color: #259621;
  border: 1px solid #259621;
  color: #fff;
}
.viewMenuButton.green {
  background-color: #259621;
  border: 1px solid #259621;
  color: #fff;
}
.viewMenuButton.red {
  background-color: #e10051;
  border: 1px solid #e10051;
  color: #fff;
}
.viewMenuButton.disabled {
  background: #EEF0F4!important;
  box-shadow: none;
  color: #000;
  opacity: 0.3;
}
.viewMenuButtonIcon {
  margin-right: 4px;
}
.MuiPaper-root {
  padding: 6px 8px;
}
.MuiPaper-root .viewMenuButton {
  border-radius: 0px;
  background-color: #FFF;
  box-shadow: none;
  border: none;
}
.MuiPaper-root .viewMenuButton:hover {
  background-color: #3e82be;
}
.viewMenuMobile {
  display: none;
}
.tabs > div > span {
  background-color: #3e82be;
}
.tabs.MuiTabs-root {
  min-height: 30px;
  margin-bottom: 8px;
}
.tabs .MuiTab-root {
  min-height: 30px;
  padding: 4px 8px;
  min-width: 130px;
}
.tabs .MuiTab-wrapper {
  flex-direction: row;
}
.tabCountAlert {
  background-color: #e10051;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  font-size: 0.8rem;
}
.homeMainPanel {
  width: 100%;
  min-height: 200px;
  background-color: #fff;
}
.homeSelectProductContainer {
  padding: 0px 10px 15px 10px;
  display: flex;
  align-items: center;
}
.homeSelectProductContainer label {
  white-space: nowrap;
  padding-right: 6px;
  font-weight: 600;
  font-size: 1.1rem;
}
.homeSelectProductContainer .formSelect {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.homeSelectProductContainer .formSelect > div > div {
  padding: 11px 32px 9px 8px;
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.homeSelectProductContainer .formSelectContainer > label {
  font-size: 1.4rem;
}
.summaryHomeDashboar {
  width: 100%;
  display: flex;
}
.homePieDashBoardContainer {
  width: 100%;
}
.summaryHomeDashboarBox {
  display: flex;
  flex-flow: column;
  width: 100%;
  padding: 0px 10px 0px 10px;
}
.homeProductDescription {
  width: 100%;
  padding-left: 16px;
}
.homeProductDescription h2 {
  margin-top: 4px;
}
.homeProductDescription table {
  border-collapse: collapse;
  width: 100%;
}
.homeProductDescription td,
.homeProductDescription th {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}
.homeProductDescription .right {
  text-align: right;
}
.chartContainerHeader {
  display: flex;
  padding: 0px 10px 8px 10px;
}
.chartContainerHeaderLabel {
  display: flex;
  flex-flow: column;
  width: 100%;
  border-left: 1px solid #ccc;
  padding: 0px 8px;
}
.chartContainerHeader .chartContainerHeaderLabel:last-child {
  border-right: 1px solid #ccc;
}
.chartContainerHeaderLabel label {
  font-size: 0.9rem;
}
.chartContainerHeaderLabel span {
  font-size: 2rem;
  color: #3e82be;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
}
.chartContainerHeaderLabel .finalValue {
  color: #3e82be;
  font-weight: 600;
}
.chartContainerHeaderLabel .finalValue span {
  margin-left: 4px;
}
.summaryHomeDashboardHeader {
  display: flex;
  justify-content: center;
  padding: 8px;
  font-size: 1.2rem;
}
.chartContainerLegend {
  display: flex;
  justify-content: center;
  position: relative;
  top: 6px;
}
.chartContainerLegend .legenCell {
  display: flex;
  padding: 0px 8px;
}
.chartContainerLegend .legendIcon {
  width: 16px;
  height: 16px;
  border-radius: 10px;
  border: 3px solid #3e82be;
  margin-right: 4px;
}
span.contractNameLabel {
  justify-content: flex-start;
}
.homeColumnsContainer {
  width: 100%;
  padding: 0px 0px 0px 30px;
  display: flex;
  flex-flow: row nowrap;
}
.homeLinesTable {
  min-width: 60%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.homeLinesTable table {
  width: 100%;
  border-collapse: collapse;
}
.homeLinesTable td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}
.homeLinesTable td.green {
  color: #259621;
  font-weight: 500;
}
.homeLinesTable td.red {
  color: #e10051;
  font-weight: 500;
}
.homeLinesTable table tr:last-child td {
  border-bottom: none;
}
.homeLinesTable .header td {
  font-weight: 400;
}
table .left {
  text-align: left;
}
table .center {
  text-align: center;
}
table .right {
  text-align: right;
}
.homeProductDescription th {
  font-weight: 600;
}
.homeProductDescription .LBL_REINVEST .amount {
  font-weight: 600;
  color: #3e82be;
}
.homeSelectAccountContainer {
  padding: 0px 3px 10px 10px;
  font-size: 1.1rem;
}
.homeSelectAccountContainer .homeHeader {
  margin-left: 0px;
  margin-right: 0px;
}
.homeSelectAccountContainer .approvedTable {
  width: 100%;
  border-collapse: collapse;
}
.approvedTable td {
  padding: 8px 8px;
  border: 1px solid #ececec;
  font-size: 1rem;
}
.approvedTable .header td {
  font-weight: 400;
  border: none;
  padding-bottom: 4px;
  padding-top: 4px;
}
.approvedTable a {
  color: #3e82be;
  font-weight: 500;
}
.approvedButtonsContainer {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
}
.approvedButtonsContainer > div {
  cursor: pointer;
}
.approvedButtonsContainer .green {
  color: #259621;
}
.approvedButtonsContainer .red {
  color: #e10051;
}
.homeHeader {
  font-size: 1.2rem;
  padding-left: 8px;
  padding-bottom: 3px;
  padding-top: 6px;
  margin: 0px 8px;
  border-bottom: 2px solid #3e82be;
}
.homeForm table {
  width: 100%;
}
.homeBlock {
  width: 100%;
  display: flex;
  flex-flow: row;
}
.MuiSlider-valueLabel {
  z-index: 0 !important;
}
.homeSideChartForm {
  min-width: 250px;
  display: flex;
  flex-flow: column;
  padding-top: 11px;
  justify-content: space-around;
  padding-bottom: 12px;
}
.homeSideChartFormLine input {
  font-size: 1.5rem;
  padding: 8px;
}
.homeSideChartFormLine .formSelect > div:first-child {
  font-size: 1.5rem;
  padding-bottom: 12px;
  padding-top: 12px;
}
.homeSideChartFormLine {
  padding-bottom: 8px;
}
.homeSideChartFormLineHeader {
  padding-bottom: 8px;
  padding-left: 4px;
}
.homeMaxTr td {
  font-size: 1.7rem;
}
.homeSideChartHeader {
  font-size: 1.5rem;
  border-bottom: 2px solid #3e82be;
  margin-bottom: 8px;
  padding: 4px;
}
.homeMainPanel a.button {
  padding: 0px 16px;
  height: 36px;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  background-color: #3e82be;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeMainPanel a.button div {
  padding-right: 4px;
}
.homeCardSection {
  display: flex;
  flex-flow: row nowrap;
  padding-bottom: 18px;
}
.homeCardBox {
  display: flex;
  width: 100%;
}
.homeCardBoxDelimiter {
  min-width: 12px;
}
.homeCardSection > .homeCardBoxDelimiter:last-child {
  min-width: 0;
}
.homeCard {
  width: 100%;
  padding: 12px 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  box-shadow: 6.31px 6.31px 6px #d8dadd, -6.31px -6.31px 13px #f5f5f5;
}
.homeCard.button {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  user-select: none;
}
.homeCardButtonIcon {
  margin-right: 8px;
  background-color: #3e82be;
  border-radius: 8px;
  color: #fff;
  padding: 6px;
  background: #3e82be;
  box-shadow: inset 5px 5px 12px #3671a5, inset -5px -5px 12px #4693d7;
}
.homeCardButtonIcon::before {
  display: block;
  width: 20px;
}
.profileBox {
  display: flex;
}
.profileDefaultInfo {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.profileAvatarImage {
  width: 270px;
  height: 250px;
  padding: 0px 10px;
}
.profileAvatarImage .profileIcon {
  width: 100%;
  height: 100%;
  border: 1px solid #E0E0E0;
  background-size: 80%;
  border-radius: 200px;
}
.profileName {
  font-size: 2.3rem;
  font-weight: 600;
}
.userDataField {
  width: 50%;
  display: flex;
}
.userDataField label {
  width: 50%;
  display: block;
  font-weight: 600;
}
.profileSubmitContainer {
  height: 100px;
  width: 100%;
  padding-top: 20px;
  padding-left: 5px;
  display: flex;
  align-items: flex-start;
}
.popupContainer {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 10;
}
.popupContainer.hidePopup {
  opacity: 0;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.popupBc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.45);
  animation-name: showPopup;
  animation-duration: 0.2s;
}
.force .popupBc {
  background-color: rgba(0, 0, 0, 0.7);
}
.force .popupCloseIcon {
  display: none;
}
.popup {
  min-width: 360px;
  margin-top: 150px;
  max-height: calc(100% - 160px);
  border-radius: 10px;
  overflow: hidden;
  animation-name: showPopupContent;
  animation-duration: 0.3s;
  position: relative;
  display: flex;
  flex-flow: column;
  box-shadow: 17px 17px 45px #787878, -17px -17px 45px #a0a0a0;
}
.popup .pbFormNewPopup {
  overflow: auto;
}
.force .popup {
  box-shadow: 4px 4px 20px #787878, -7px -7px 40px #a0a0a0;
}
.popupHeader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popupHeader .header {
  width: 100%;
}
.popupHeader h2 {
  margin: 0px;
  background-color: #3e82be;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 16px 16px 14px 16px;
}
.headerIcon {
  margin-right: 4px;
}
.popupFooter {
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  padding: 14px 12px;
}
.popupContent {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5f5f5f;
  font-size: 1.2rem;
  min-height: 130px;
}
.popupContent.alert {
  max-width: 450px;
  text-align: center;
  padding: 8px;
}
.popupCloseIcon {
  height: 21px;
  width: 21px;
  position: absolute;
  right: 8px;
  color: #fff;
  cursor: pointer;
}
#app .popupFooter > .formButton {
  background-color: #3e82be;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 4px 14px;
  line-height: inherit;
}
.dateTimePickerContainer {
  display: flex;
  justify-content: center;
  padding: 32px 24px;
  background-color: #fff;
}
.dateTimePickerHours,
.dateTimePickerMinutes {
  max-width: 100px;
}
.dateTimePickerDate {
  max-width: 150px;
}
.popupSubmitButton {
  width: 100%;
  padding: 15px 8px !important;
  border-radius: 0px !important;
}
@keyframes showPopup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes showPopupContent {
  from {
    opacity: 0;
    top: -50px;
  }
  to {
    opacity: 1;
    top: 0px;
  }
}
.postWithPassContainer {
  width: 100%;
  max-width: 380px;
  padding: 24px 32px 24px 32px;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.postWithPassContainer input {
  width: 100%;
}
.postWithPassContainer p {
  text-align: center;
}
.postWithPassContainer h2 {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.postWithPassContainer h2 div {
  position: relative;
  top: -3px;
  padding-right: 5px;
}
.postPassInputContainer {
  width: 100%;
}
.postPassCheckboxContainer {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
  align-items: center;
  padding: 4px 0px;
}
.yieldTable {
  width: 98%;
  max-width: 1000px;
  height: calc(100% - 100px);
  margin-top: 50px;
}
.yieldTable .summaryHeader {
  display: flex;
  flex-flow: column;
}
.yieldTable .summaryHeaderLine {
  display: flex;
  flex-flow: row;
  height: 87px;
}
.summaryHeaderLine > button {
  margin-right: 0px !important;
}
.yieldTableClients {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  position: relative;
}
.yieldTableTable {
  display: table;
  width: 100%;
}
.yieldTableLine {
  display: table-row;
}
.yieldTableCell {
  display: table-cell;
  padding: 8px;
}
.yieldTableCell.percentCell {
  width: 45px;
  text-align: center;
}
.header > .yieldTableCell {
  font-weight: 400;
  border-bottom: 1px solid #21273a;
  background-color: #fff;
  position: sticky;
  top: 0;
}
.footer > .yieldTableCell {
  font-weight: 400;
  border-bottom: 1px solid #21273a;
  background-color: #fff;
  position: sticky;
  bottom: 0;
}
.yieldTableCell.right {
  text-align: right;
}
.yieldTableContainer {
  padding: 8px;
  height: 100%;
  display: flex;
  flex-flow: column;
  overflow-y: auto;
  background-color: #fff;
}
.yieldTableButtonContainer {
  width: 100%;
  display: flex;
  flex-flow: row;
}
.yieldPartsContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: row wrap;
  padding-bottom: 16px;
  overflow-x: scroll;
}
.yieldPartItemContainer {
  width: 14.2%;
  padding: 0px 2px 0px 0px;
  margin-top: 4px;
}
.yieldPartItem {
  width: 100%;
  height: 19%;
  border: 1px solid #ccc;
  display: flex;
  flex-flow: column;
}
.yieldPartItem.positive {
  background-color: #c6f2c4;
}
.yieldPartItem.negative {
  background-color: #ffe1ec;
}
.yieldPartHeader {
  padding: 4px;
}
.yieldPartBody {
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 4px;
}
.yieldSummaryLine {
  border-bottom: 1px solid #ccc;
}
.yieldSummaryYieldParsContainet {
  display: flex;
  flex-flow: row wrap;
  padding-top: 4px;
}
.yieldSummaryYieldParsContainet > div {
  padding: 2px 4px;
  border: 1px solid #ccc;
  margin-right: 2px;
  margin-bottom: 2px;
  background-color: #fdfefe;
}
.yieldSummaryLine {
  padding: 4px 0px;
}
.yieldSummaryLineHeader {
  font-size: 1.2rem;
  padding: 8px 0px 4px 0px;
  background-color: #fdfefe;
}
.yieldFooterButtons {
  border-top: 1px solid #000;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding-top: 8px;
}
.yieldFooterButtons .left {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.yieldFooterButtons .right {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
.yieldSummaryClients {
  height: 100%;
  overflow-y: auto;
}
.popupInputAlertMessage {
  width: 100%;
  height: 18px;
  overflow: visible;
  color: #e10051;
  text-align: right;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
.popupInputAlertMessage span {
  cursor: pointer;
}
.popupInputAlertMessage span:hover {
  text-decoration: underline;
}
.popupBankTransfer h2 {
  margin: 0px;
}
.popupBankTransfer img {
  height: 245px;
}
.popupBankTransfer .flexLine {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  font-size: 1.2rem;
  justify-content: space-between;
}
.popupBankTransfer label {
  min-width: 160px;
}
.popupBankTransfer .priceLine {
  font-size: 1.7rem;
}
.popupBankTransfer .priceLine span {
  white-space: nowrap;
}
.popupText {
  min-height: 100px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  padding-top: 16px;
}
.popupTextArea {
  margin-top: 16px;
}
.downloadPopup {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 4px 16px 16px 16px;
}
.downloadPopup .button {
  font-size: 8rem;
  padding: 32px;
  color: #3e82be;
  cursor: pointer;
}
.downloadPopup .formButton {
  margin-right: 0px;
  background-color: #259621 !important;
  border-radius: 50px !important;
  margin-bottom: 20px;
  width: 80%;
}
.popupImgContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup.popupImage {
  max-width: 92vw;
  max-height: 92vh;
  margin: auto !important;
}
.popup.popupImage img {
  max-width: 92vw;
  max-height: 92vh;
}
.popup.popupImage .icon-close.popupCloseIcon {
  background: rgba(0, 0, 0, 0.4);
  top: 2%;
  border-radius: 10px;
}
.popupImage {
  background-color: transparent;
}
.MuiCheckbox-colorSecondary.Mui-checked {
  color: #3e82be !important;
}
.postWithPassContainer .progressBar {
  width: 100%;
}
.popup.signedDocuments {
  margin-top: 56px;
  width: 70%;
  height: calc(100% - 160px);
}
.popup.signedDocuments .contactForm {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.popup .productItem {
  width: 100%;
  margin: 0px !important;
  box-shadow: none;
}
.popup .productItem .formButton {
  background-color: #259621 !important;
  padding: 16px 32px !important;
}
.popup .productItem .productItemFooter {
  padding: 12px 0px;
}
.popup .productItem:hover {
  transform: scale(1);
}
.userAuthContentDiv {
  background-color: #FFF;
  display: flex;
  flex-flow: column;
  padding: 16px;
  overflow: hidden;
  height: 100%;
}
.userAuthContentDiv .pbFormNew {
  padding: 0px;
  min-width: unset;
}
.phoneVerificationContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.phoneVerificationContainer p {
  margin: 0px;
}
.phoneVerificationContainer .phoneCode {
  width: 140px !important;
  text-align: center;
}
.phoneVerificationContainer .phoneVerifyInputs {
  display: flex;
  flex-flow: row;
  align-items: center;
  height: 56px;
  padding: 0px 8px;
  width: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 4px 4px 8px #cfd1d4, -4px -4px 8px #ffffff;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.phoneVerificationContainer .phoneVerifyInputs.error {
  background-color: #fff0f6;
}
.phoneVerificationContainer .pbFormNewLine {
  border-bottom: none;
}
.personalDocContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.personalDocContainer p {
  margin: 0px;
}
.personalDocContainer .tgButtonPlacer {
  width: 100%;
  padding-bottom: 8px;
  height: 64px;
}
.personalDocContainer .tgButtonContainer {
  width: 100%;
}
.personalDocContainer .tgButtonWrapper {
  width: 100%;
}
.personalDocContainer .tgButtonWrapper.active {
  background-color: #3e82be;
  color: #fff;
}
.kycContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.kycContainer p {
  margin: 0px;
}
.kycContainer .dragAndDropContainer {
  min-height: 56px;
  box-shadow: 4px 4px 8px rgba(207, 209, 212, 0.659), -4px -4px 8px #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0px 8px;
}
.popup.userAuthentication {
  max-width: 500px;
  width: 500px;
}
.userAuthStepHeader {
  width: 100%;
  text-align: center;
  font-weight: 400;
  margin: 16px 0px 6px 0px;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.flagCode {
  display: inline-block;
  margin-left: 8px;
  font-weight: 400;
}
.popupStandardizedContent {
  background-color: #FFF;
  display: flex;
  flex-flow: column;
  padding: 16px;
  overflow: hidden;
  height: 100%;
  align-items: center;
}
.popupStandardizedContent .dragAndDropContainer {
  min-height: 56px;
  box-shadow: 4px 4px 8px rgba(207, 209, 212, 0.659), -4px -4px 8px #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0px 8px;
}
.qrContainer .flexSameWidth > div {
  padding: 0;
}
.qrContainer img {
  padding: 16px;
}
.qrContainer .flexSameWidth {
  background-color: #fff;
  width: 400px;
  padding-bottom: 16px;
  align-items: center;
}
.qrContainer button {
  width: 300px;
  margin: 0 !important;
}
.commissionTableContainer {
  margin-top: 5%;
  height: 90%;
  width: 90%;
  max-width: 728px;
}
.commissionTable {
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 8px;
}
.commissionTableAccount {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.commissionTableAccountHeader {
  background-color: #3e82be;
  color: #FFF;
  padding: 8px;
}
.commissionTableAccountContent {
  padding: 8px;
  padding-bottom: 0px;
}
.commissionTableUser {
  border: 1px solid #CCC;
  margin-bottom: 8px;
}
.commissionTableUser .formInput {
  background-color: transparent!important;
}
.commissionTableUserHeader {
  padding: 4px;
  background-color: #EEE;
}
.commissionTableUser.empty .commissionTableUserHeader {
  background-color: #e10051;
  border-color: #e10051;
  color: #FFF;
}
.commissionTableUser.empty .commissionTableUserCommission {
  background-color: #ffe1ec;
}
.commissionTableUserCommission {
  width: 100%;
  display: flex;
  flex-flow: row;
  padding: 6px;
}
.commissionTableUserCommission > div {
  width: 100%;
}
.commissionTableSaveButton {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.commissionTableSaveButton button {
  width: 100%;
  margin-right: 0px;
}
.freeCommissionLabel {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 2px;
}
#content.list {
  padding: 0px;
  overflow-y: auto;
  display: flex;
  flex-flow: column;
}
.listViewContainer {
  width: 100%;
  height: 100%;
  min-height: 0px;
  display: flex;
  flex-flow: column;
}
.listview {
  height: 100%;
  display: flex;
  flex-flow: column;
}
.listTable > table {
  width: 100%;
}
.listTable th {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}
.listTable th,
.listTable td {
  padding: 5px;
}
.listTable td {
  border: 1px solid #EFEFEF;
}
.listviewSearch {
  width: 100%;
  padding: 0px 10px 20px 10px;
  display: flex;
  justify-content: space-between;
}
.listViewInputContainer {
  width: 50%;
  max-width: 300px;
}
.listTable {
  width: 100%;
  height: 100%;
  min-height: 0px;
  border-bottom: none;
  display: flex;
  flex-flow: column;
}
.tableHeader {
  display: flex;
  border: 1px solid #ECECEC;
}
.tableBody {
  width: 100%;
  height: 100%;
  flex-flow: column;
  display: flex;
  align-items: flex-start;
  overflow-y: scroll;
  border-bottom: 1px solid #ECECEC;
}
.tableTrHeader {
  height: 50px;
  align-items: flex-end;
}
.tableCellHeader {
  padding: 0px 8px;
  padding-bottom: 7px;
  padding-top: 7px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.orderTh {
  cursor: pointer;
}
.orderTh:hover {
  background-color: #EEE;
}
.tableCellHeader .formInput {
  background-color: transparent!important;
}
.headerText {
  width: 100%;
  font-weight: 500;
  font-size: 1rem;
}
.tableCell {
  padding: 8px 8px;
  border-right: 1px solid #ECECEC;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.tableCellContent {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tableCell.right {
  justify-content: flex-end;
}
.tableTr > .tableCell:last-child {
  border-right: none;
}
.tableTr > .tableCellHeader:last-child {
  border-right: none;
}
.tableTr {
  display: flex;
  border-bottom: 1px solid #ECECEC;
  width: 100%;
}
.tableFooter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 32px;
  height: 35px;
}
.paginationContainer {
  display: flex;
  align-items: center;
}
.paginationButton {
  width: 22px;
  height: 22px;
  border-radius: 12px;
  cursor: pointer;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.paginationButton.allRecords {
  opacity: 0;
  cursor: default;
}
.paginationButton:hover {
  background-color: #CCC;
}
.paginationButton.arrowLeftStartIcon {
  position: relative;
  left: 5px;
}
.paginationNumber {
  padding: 0px 3px;
}
.firstCell {
  max-width: 50px;
  width: 50px;
  justify-content: center;
  display: flex;
}
.headerSort {
  width: 15px;
  height: 15px;
}
.lastCell {
  max-width: 50px;
  min-width: 35px;
  display: flex;
  justify-content: center;
}
.tableShowIcon {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #3e82be;
  background-size: 79%;
  opacity: 0.5;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  cursor: pointer;
}
.tableShowIcon:hover {
  opacity: 1;
}
.tableCell a {
  color: #3e82be;
  font-weight: 500;
}
.yieldTopChart {
  width: 100%;
  height: 200px;
}
.filterToogleButton {
  cursor: pointer;
}
.orderTh .formInput input {
  padding-left: 4px;
}
.orderTh .formInput label {
  padding-left: 8px;
}
.orderTh .formSelectContainer label {
  top: -1px;
  padding-left: 6px;
}
.listViewHeaderFieldEdit {
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.listViewHeaderFieldEdit .headerSort {
  margin: 8px 8px 8px 8px;
}
.orderTh.actFiltering:hover {
  background-color: transparent;
}
.settingContainer {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: auto;
  flex-flow: column;
}
.settingMenu {
  min-width: 200px;
  border-right: 1px solid #CCC;
  height: 100%;
}
.settingContent {
  width: 100%;
  height: 100%;
  padding: 18px;
}
.settingMenuButton {
  height: 32px;
  padding: 0px 4px;
  display: flex;
  align-items: center;
  border-left: 3px solid transparent;
  color: #21273a;
  font-size: 1.15rem;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.settingMenuButton:hover {
  background-color: #F0F0F0;
}
.settingMenuButton.active {
  border-color: #3e82be;
  background-color: #F0F0F0;
}
.settingForm .cardCategory {
  margin-bottom: 8px;
}
.passChangeContainer {
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.settingForm .cardFormFieldEdit {
  width: 100%;
}
.settingForm .cardLine {
  padding: 0px;
  border-top: none;
  margin-bottom: 8px;
  align-items: center;
}
.settingForm .cardFormFieldEdit .formInput > div > input {
  padding: 4px 0px 4px 3px;
}
.passChangeErrorMessage {
  font-size: 0.9rem;
  color: #e10051;
  text-align: center;
}
.settingDetailLine {
  display: flex;
  width: 100%;
  height: 36px;
  flex-flow: row;
  align-items: center;
}
.settingDetailLine label {
  min-width: 30%;
}
.settingDetailLine .field {
  width: 100%;
}
.settingDetailLine h2 {
  width: 100%;
}
.settingDetailFooter {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
}
.settingDetailFooter > button {
  margin-left: 8px;
  margin-right: 0px!important;
}
.settingForm label {
  min-width: 100px;
}
.downloadAppContainer {
  display: flex;
  background-color: #000;
  border-radius: 8px;
  color: #FFF;
  padding: 16px;
  align-items: center;
  max-width: 375px;
}
.storeIconContainer img {
  width: 100%;
  max-width: 130px;
}
.storeTextContainer {
  font-size: 1.5rem;
  white-space: nowrap;
  padding: 0px 8px;
}
.storeQrContainer img {
  min-width: 100%;
  max-height: 130px;
}
.towFactorQrDataContainer {
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 12px;
}
.towFactorQrDataContainer img {
  height: 180px;
}
.settingContent.language {
  padding: 0;
  height: calc(100% - 30px);
  display: flex;
  overflow: hidden;
  flex-flow: column;
}
.settingTableWrapper {
  display: flex;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: auto;
}
.settingTable {
  width: 99%;
  height: 100%;
  border-collapse: collapse;
}
.settingTable thead {
  background: #FFF;
  position: sticky;
  top: -1px;
  box-shadow: inset 0px 0px 0px 1px #000000;
}
.settingTable td {
  padding: 4px;
  max-width: 224px;
  border: 1px solid #EFEFEF;
  overflow: hidden;
  text-overflow: ellipsis;
}
.settingTable td textarea {
  width: 100%;
  box-sizing: border-box;
}
.settingTable td textarea::-webkit-scrollbar {
  display: none;
}
.tableTextarea {
  padding: 0 !important;
}
/*NON-WEBKIT*/
html {
  scrollbar-color: rgba(136, 136, 136, 0.31) rgba(241, 241, 241, 0);
  scrollbar-width: thin;
}
/* width */
html::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
html::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
html::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.content::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.content::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.content::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.detailViewContainer::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.detailViewContainer::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.detailViewContainer::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.tableBody::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.tableBody::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.tableBody::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.scrollbarClass::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.scrollbarClass::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.scrollbarClass::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.widgetTableContainer::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.widgetTableContainer::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.widgetTableContainer::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.bodyContainer::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.bodyContainer::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.bodyContainer::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.buttonsHolder::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.buttonsHolder::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.buttonsHolder::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.pbFormNewContent::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.pbFormNewContent::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.pbFormNewContent::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.kanbanContainer::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.kanbanContainer::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.kanbanContainer::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.widgetTable::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.widgetTable::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.widgetTable::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
#app .formInputContainer {
  width: 100%;
  position: relative;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
#app .formInputContainer input::-webkit-outer-spin-button,
#app .formInputContainer input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#app .formInputContainer input[type="number"] {
  -moz-appearance: textfield;
}
#app .formInputContainer.center input {
  text-align: center;
}
#app .formInput {
  width: 100%;
  background-color: #fff;
}
#app .formInput.right input {
  text-align: right;
}
#app .formInput.center input {
  text-align: center;
}
#app .formInput > div::after {
  border-bottom-color: #3e82be;
}
#app .formInput.focus > label {
  color: #3e82be;
}
#app .formInput.error > div::after {
  border-bottom-color: #e10051 !important;
}
#app .formInput.focus.error > label {
  color: #e10051 !important;
}
#app .formInput.prepenIconActive input {
  padding-left: 40px;
}
#app .prependIconContainer {
  position: absolute;
  left: 12px;
  z-index: 2;
  color: #333;
}
#app .appendIconContainer {
  position: absolute;
  right: 12px;
  top: 16px;
  z-index: 2;
  color: #333;
}
#app .settingContent .appendIconContainer {
  top: 50%;
}
#app .outlined .prependIconContainer {
  top: 16px;
}
#app .prepenIconActive .MuiInputLabel-outlined {
  transform: translate(40px, 20px) scale(1);
}
#app .prepenIconActive .MuiInputLabel-outlined.MuiInputLabel-shrink {
  transform: translate(14px, -6px) scale(0.75);
}
#app .error .prependIconContainer {
  color: #e10051;
}
#app .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #3e82be;
}
#app .noMaterial .MuiInput-underline:after {
  display: none;
}
#app .noMaterial .MuiInput-underline:before {
  border-bottom: none;
}
#app .noMaterial .formInput {
  background-color: transparent;
}
#app .formInputContainer.smsKey {
  width: 40px;
  height: 56px;
}
#app .formInputContainer.smsKey input {
  box-shadow: 4px 4px 8px #cfd1d4, -4px -4px 8px #ffffff !important;
  border-radius: 8px;
  border: 1px solid #3e82be59;
  padding: 0px;
  height: 56px;
  text-align: center;
  font-size: 2rem;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
#app .formInputContainer.smsKey input:focus {
  background-color: #d3e9ff;
}
#app .formButton {
  background-color: #3e82be;
  color: #FFF;
  box-shadow: none;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  margin-right: 3px;
  min-height: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 2px;
}
#app .formButton.large {
  padding: 10px 16px;
  font-size: 1.1rem;
}
#app .formButton.inactive {
  opacity: 0.5;
}
#app .formButton.active {
  opacity: 1;
}
#app .formButton.neumorphic {
  box-shadow: 4px 4px 8px #cfd1d4, -4px -4px 8px #ffffff;
  border-radius: 8px;
  height: 48px;
  opacity: 1;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, opacity 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
#app .formButton.neumorphic.disable {
  opacity: 0.5;
}
#app .formButton:hover {
  background-color: #508ec6;
  color: #FFF;
}
#app .formButton.disabled {
  background-color: #676767;
}
#app .formButton.disabled:hover {
  background-color: #676767;
}
#app .formButton.red {
  background-color: #e10051;
}
#app .formButton.red:hover {
  background-color: #fb005a;
}
#app .formButton.green {
  background-color: #259621;
}
#app .formButton.green:hover {
  background-color: #2aab26;
}
#app .formButton:active {
  box-shadow: none;
}
#app .formButton .icon,
#app .acmButton .fas,
#app .acmButton .far {
  font-size: 20px;
}
#app .formButton .icon {
  margin-right: 5px;
}
#app .formButton .iconMore {
  margin-right: 10px;
}
#app .buttonIcon {
  margin-right: 4px;
  margin-left: 4px;
}
.formTextarea {
  width: calc(100% - 16px);
  min-height: 100px;
  padding: 8px;
  resize: none;
  font-size: 0.9rem;
  border: 1px solid #0000006b;
}
.formTextarea.error {
  outline: 2px solid #e10051;
  border: none;
}
.formTextarea:focus {
  outline: 2px solid #3e82be;
}
.formTextarea.error:focus {
  outline: 2px solid #e10051;
}
#app .formSelectContainer {
  width: 100%;
}
#app .formSelect {
  width: 100%;
}
#app .formSelectContainer > div::after {
  border-bottom-color: #3e82be;
}
#app .formSelectContainer.focus > label {
  color: #3e82be;
}
#app .formSelectContainer.error > div:after {
  border-bottom-color: #e10051;
}
#app .formSelectContainer.error > div:before {
  border-bottom-color: #e10051;
  border-bottom-width: 2px;
}
#app .formSelectContainer.withBorder {
  border: 1px solid #e4e4e4;
}
#app .formSelectContainer.withBorder > div::before {
  border-bottom: none;
}
#app .formSelectContainer.withBorder > div:hover::before {
  border-bottom: none !important;
}
#app .formSelectContainer .right > div:first-child {
  text-align: right;
  padding-right: 24px !important;
}
#app .formSelectContainer.neumorphic {
  box-shadow: 4px 4px 8px rgba(207, 209, 212, 0.659), -4px -4px 8px #ffffff;
  border-radius: 8px;
  border: 1px solid #ccc;
  overflow: hidden;
}
#app .formSelectContainer.neumorphic label + .MuiInput-formControl {
  margin-top: 0px;
}
#app .formSelectContainer.neumorphic .MuiSelect-select.MuiSelect-select {
  padding: 21px 24px 11px 16px;
}
#app .formSelectContainer.neumorphic .MuiInputLabel-formControl {
  top: 4px;
  left: 14px;
  z-index: 1;
}
#app .formSelectContainer.neumorphic .MuiSelect-icon {
  top: calc(50% - 12px);
  right: 4px;
  font-size: 2rem;
}
#app .formSelectContainer.neumorphic.error {
  border: 1px solid #e10051;
}
#app .formSelectContainer.neumorphic.error .MuiSelect-select.MuiSelect-select {
  background-color: #ffe1ec;
}
.mui-fixed .formSelectHeader {
  font-weight: 600;
  color: #333;
  opacity: 1;
  background-color: #ccc;
}
.mui-fixed ul[role="listbox"] {
  padding-top: 0px;
}
.MuiMenuItem-root {
  min-height: 33px !important;
}
#app .formCheckBox > span:first-child {
  color: #3e82be;
}
#app .formCheckBox.error > span:first-child {
  color: #e10051;
}
.formDate {
  min-height: 33px;
  width: 100%;
}
.formDate > div {
  min-height: 33px;
}
.MuiPickersModal-dialogRoot {
  padding: 0;
}
.MuiPickersDay-daySelected {
  background-color: #3e82be !important;
}
.MuiPickersToolbar-toolbar {
  background-color: #3e82be !important;
}
.MuiInput-underline:after {
  border-bottom-color: #3e82be !important;
}
.formDate .MuiInput-underline.Mui-error:after {
  transform: scaleX(1);
  border-bottom-color: #f44336!important;
}
#app .formTabs > div > span {
  background-color: #3e82be;
}
#app .formTabs .MuiTab-root {
  padding: 4px 4px;
  min-width: auto;
}
.formSliderContainer {
  width: 100%;
  min-width: 100px;
  display: flex;
  align-items: flex-end;
  height: 56px;
}
.formSliderContainer .MuiSlider-rail {
  height: 4px;
  border-radius: 4px;
}
.formSliderContainer .MuiSlider-track {
  height: 4px;
  -webkit-transition: width 0.17s;
  /* Safari */
  -moz-transition: width 0.17s;
  -o-transition: width 0.17s;
  -ms-transition: width 0.17s;
  transition: width width 0.17s;
}
.formSliderContainer .MuiSlider-thumb {
  width: 15px;
  height: 15px;
  -webkit-transition: left 0.17s;
  /* Safari */
  -moz-transition: left 0.17s;
  -o-transition: left 0.17s;
  -ms-transition: left 0.17s;
  transition: width left 0.17s;
}
.formSliderContainer .MuiSlider-root {
  color: #3e82be;
  padding: 0px;
}
.contactForm {
  padding: 0px 16px;
  padding-bottom: 16px;
  max-width: 360px;
  background-color: #FFF;
}
.subpanelsContainer {
  padding: 0px 0px 0px 0px;
}
.subpanel {
  background-color: #FFF;
  margin-bottom: 16px;
}
.subpanelsContainer > .subpanel:last-child {
  margin-bottom: 0px;
}
.subpanelHeader {
  display: flex;
  flex-flow: row;
  border-bottom: 1px solid #3e82be;
  padding-bottom: 4px;
}
.subpanelHeader h2 {
  margin: 0px;
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.subpanel .tableBody,
.subpanel .listTable {
  height: auto;
}
.subpanel .tableBody {
  overflow-y: auto;
  border-bottom: none;
}
.subpanel .cardHeaderIcon {
  font-size: 1rem;
}
.subpanel .tableFooter {
  padding-right: 15px;
}
.newTransferPopup {
  padding: 0px;
  width: 100%;
  min-width: 100px;
  max-width: 380px;
}
.newTransfer {
  background-color: #FFF;
  display: flex;
  flex-flow: column;
  padding: 24px 32px 32px 32px;
}
.newTransfer .loaderContainer {
  width: 100%;
  display: flex;
  margin-top: 40px;
  margin-bottom: 30px;
  justify-content: center;
}
.newTransfer .formContainer {
  width: 100%;
}
.newTransfer .formLine {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  flex-flow: row;
}
.newTransfer .formLine:last-child {
  margin-bottom: 0;
}
.newTransfer .formLine.right {
  justify-content: flex-end;
}
.newTransfer .accountBox {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.newTransfer .accountBoxHeader {
  margin: 0px 16px;
  padding: 12px 0px 8px 0px;
  font-size: 1.2rem;
  color: #3e82be;
  border-bottom: 1px solid #3e82be;
}
.newTransfer .accountBoxBody {
  font-size: 1.2rem;
}
.newTransfer .accountBoxBody.second {
  padding-bottom: 8px;
}
.buttonContainer {
  padding-top: 20px;
  width: 100%;
}
.buttonContainer.inLine {
  display: flex;
  flex-flow: row;
}
.transferButton {
  width: 100%;
  padding: 10px 0px !important;
  font-size: 1.1rem!important;
  display: flex;
  align-items: center;
}
.transferButton > span {
  display: flex;
  align-items: flex-start;
}
.replaceAccountContainer {
  width: 100%;
  height: 1px;
  position: relative;
}
.replaceAccountButton {
  width: 28px;
  height: 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 1;
  background-color: #3e82be;
  box-shadow: 0px 1px 3px 0px #6d6d6d;
}
.replaceAccountButton > div {
  font-size: 1rem;
  color: #FFF;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.replaceAccountButton:hover div {
  transform: rotate(270deg);
}
.formSelectContainer.transfer > div {
  margin: 15px 0px 0px 0px;
}
.formSelectContainer.transfer > div > div {
  border: 1px solid #0000008a;
  padding: 16px;
  height: 20px;
  display: flex;
  align-items: center;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.formSelectContainer.transfer > div.right > div {
  padding-right: 26px;
}
.formSelectContainer.transfer > div > div:hover {
  background-color: #eaf1f8;
}
.formSelectContainer.transfer > div::before {
  border-bottom: none;
}
.formSelectContainer.transfer > div:hover::before {
  border-bottom: none!important;
}
.formSelectContainer.transfer > label:first-child {
  top: 8px;
  left: 8px;
  padding: 0px 6px;
  background-color: #FFF;
  font-size: 1.2rem;
  z-index: 2;
}
.formSelectContainer.transfer.error > label:first-child {
  color: #e10051;
}
.formSelectContainer.transfer.error > div > div {
  border-color: #e10051;
}
.formSelectContainer.transfer svg {
  right: 8px!important;
}
.formInputContainer.transfer {
  margin: 15px 0px 0px 0px;
}
.formInputContainer.transfer > div > label:first-child {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.54) !important;
  white-space: nowrap;
  background-color: #FFF;
  padding-right: 4px;
}
.formInputContainer.transfer.error > div > label:first-child {
  color: #e10051 !important;
}
.formInputContainer.transfer fieldset {
  border-radius: 0px!important;
  border-color: #0000008a!important;
  border-width: 1px!important;
}
.formInputContainer.transfer fieldset.MuiOutlinedInput-root.Mui-focused.MuiOutlinedInput-notchedOutline {
  border-color: #3e82be;
}
.formInputContainer.transfer.error fieldset {
  border-color: #e10051 !important;
}
.formInputContainer.transfer .formInput input {
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.formInputContainer.transfer .formInput input:hover {
  background-color: #eaf1f8 !important;
}
.formInputContainer.transfer.max input {
  font-size: 2rem;
}
.dateTimePickerContainer.transfer {
  padding: 0px;
  margin: 15px 0px;
}
.dateTimePickerContainer.transfer input {
  border-top: 1px solid #0000008a;
  border-bottom: 1px solid #0000008a;
  padding: 20px 20px;
}
.dateTimePickerContainer.transfer .datePicker input {
  border-left: 1px solid #0000008a;
}
.dateTimePickerContainer.transfer .datePicker > div::before,
.dateTimePickerContainer.transfer .formInput > div:before {
  border-bottom: none;
}
.dateTimePickerContainer.transfer .time input {
  border-right: 1px solid #0000008a;
}
.dateTimePickerContainer.transfer .MuiInputLabel-formControl {
  top: 10px;
  left: 4px;
}
.dateTimePickerContainer.transfer .MuiInputLabel-shrink {
  top: 10px;
  left: 8px;
  font-size: 1.2rem;
  background-color: #FFF;
  z-index: 2;
  padding: 0px 8px;
}
.transferInputInLine {
  display: flex;
  flex-flow: row nowrap;
}
.transferInputInLine .amount {
  width: 70%!important;
  margin-right: 2px;
}
.transferInputInLine .fee {
  width: 30%!important;
}
div#driver-popover-item {
  display: none;
  position: absolute;
  background: #fff;
  color: #2d2d2d;
  margin: 0;
  padding: 15px;
  border-radius: 5px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000000000;
}
div#driver-popover-item .driver-popover-tip {
  border: 5px solid #fff;
  content: "";
  position: absolute;
}
div#driver-popover-item .driver-popover-tip.bottom {
  bottom: -10px;
  border-color: #fff transparent transparent;
}
div#driver-popover-item .driver-popover-tip.bottom.position-center {
  left: 49%;
}
div#driver-popover-item .driver-popover-tip.bottom.position-right {
  right: 20px;
}
div#driver-popover-item .driver-popover-tip.left {
  left: -10px;
  top: 10px;
  border-color: transparent #fff transparent transparent;
}
div#driver-popover-item .driver-popover-tip.left.position-center {
  top: 46%;
}
div#driver-popover-item .driver-popover-tip.left.position-bottom {
  top: auto;
  bottom: 20px;
}
div#driver-popover-item .driver-popover-tip.right {
  right: -10px;
  top: 10px;
  border-color: transparent transparent transparent #fff;
}
div#driver-popover-item .driver-popover-tip.right.position-center {
  top: 46%;
}
div#driver-popover-item .driver-popover-tip.right.position-bottom {
  top: auto;
  bottom: 20px;
}
div#driver-popover-item .driver-popover-tip.top {
  top: -10px;
  border-color: transparent transparent #fff;
}
div#driver-popover-item .driver-popover-tip.top.position-center {
  left: 49%;
}
div#driver-popover-item .driver-popover-tip.top.position-right {
  right: 20px;
}
div#driver-popover-item .driver-popover-tip.mid-center {
  display: none;
}
div#driver-popover-item .driver-popover-footer {
  display: block;
  margin-top: 10px;
}
div#driver-popover-item .driver-popover-footer button {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #d4d4d4;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  color: #2d2d2d;
  font: 11px / normal sans-serif;
  cursor: pointer;
  outline: 0;
  background-color: #f1f1f1;
  border-radius: 2px;
  zoom: 1;
  line-height: 1.3;
}
div#driver-popover-item .driver-popover-footer button.driver-disabled {
  color: grey;
  cursor: default;
  pointer-events: none;
}
div#driver-popover-item .driver-popover-footer .driver-close-btn {
  float: left;
}
div#driver-popover-item .driver-popover-footer .driver-btn-group,
div#driver-popover-item .driver-popover-footer .driver-close-only-btn {
  float: right;
}
div#driver-popover-item .driver-popover-title {
  font: 19px / normal sans-serif;
  margin: 0 0 5px;
  font-weight: 700;
  display: block;
  position: relative;
  line-height: 1.5;
  zoom: 1;
}
div#driver-popover-item .driver-popover-description {
  margin-bottom: 0;
  font: 14px / normal sans-serif;
  line-height: 1.5;
  color: #2d2d2d;
  font-weight: 400;
  zoom: 1;
}
.driver-clearfix:after,
.driver-clearfix:before {
  content: "";
  display: table;
}
.driver-clearfix:after {
  clear: both;
}
.driver-stage-no-animation {
  -webkit-transition: none!important;
  -moz-transition: none!important;
  -ms-transition: none!important;
  -o-transition: none!important;
  transition: none!important;
  background: transparent!important;
  outline: 5000px solid rgba(0, 0, 0, 0.75);
}
div#driver-page-overlay {
  background: #000;
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  zoom: 1;
  filter: alpha(opacity=75);
  opacity: .75;
  z-index: 100002 !important;
}
div#driver-highlighted-element-stage,
div#driver-page-overlay {
  top: 0;
  left: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all 0.3s;
}
div#driver-highlighted-element-stage {
  position: absolute;
  height: 50px;
  width: 300px;
  background: #fff;
  z-index: 100003!important;
  display: none;
  border-radius: 2px;
}
.driver-highlighted-element {
  z-index: 100004 !important;
}
.driver-position-relative {
  position: relative !important;
}
.driver-fix-stacking {
  z-index: auto!important;
  opacity: 1!important;
  -webkit-transform: none!important;
  -moz-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
  -webkit-filter: none!important;
  -moz-filter: none!important;
  -ms-filter: none!important;
  -o-filter: none!important;
  filter: none!important;
  -webkit-perspective: none!important;
  -moz-perspective: none!important;
  -ms-perspective: none!important;
  -o-perspective: none!important;
  perspective: none!important;
  -webkit-transform-style: flat!important;
  -moz-transform-style: flat!important;
  -ms-transform-style: flat!important;
  transform-style: flat!important;
  -webkit-transform-box: border-box !important;
  -moz-transform-box: border-box !important;
  -ms-transform-box: border-box !important;
  -o-transform-box: border-box !important;
  transform-box: border-box !important;
  will-change: unset !important;
}
.guideDriverButton {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: #3e82be;
  cursor: pointer;
  font-size: 2rem;
  opacity: 0.5;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.guideDriverButton:hover {
  opacity: 1;
}
div#driver-highlighted-element-stage {
  background-color: #ffffff0d!important;
}
div#driver-popover-item {
  border-radius: 0px;
  max-width: 250px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}
div#driver-popover-item .driver-popover-footer button {
  color: #FFF;
  background-color: #3e82be;
  text-shadow: none;
  border: none;
}
div#driver-popover-item .driver-popover-footer button.driver-disabled {
  color: #FFF;
  background-color: #215f96;
}
.helperContainer {
  position: fixed;
  bottom: 49px;
  right: 8px;
  z-index: 9;
}
.helperOpenButton {
  width: 45px;
  height: 45px;
  border-radius: 25px;
  background-color: #3e82be;
  color: #FFF;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 0px 0px #000;
}
.helperMenuLines {
  position: absolute;
  bottom: 45px;
  right: 0;
  padding-bottom: 8px;
  display: flex;
  flex-flow: column;
  flex-direction: column-reverse;
}
.helperMenuLine {
  position: relative;
  white-space: nowrap;
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
  background-color: #3e82be;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: transform 0.2s;
  /* Safari */
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  transition: width transform 0.2s;
}
.helperMenuLine:hover {
  background-color: #508ec6;
  -moz-transform: translate(-8px, 0px);
  -webkit-transform: translate(-8px, 0px);
  -o-transform: translate(-8px, 0px);
  -ms-transform: translate(-8px, 0px);
  transform: translate(-8px, 0px);
}
.helperMenuLineIcon {
  margin-right: 8px;
}
.helperMenuBc {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;
}
.customReport {
  width: 100%;
  height: 100%;
  border: none;
}
#app .pbStepper {
  padding: 16px 0px;
}
#app .pbStepper .MuiStepIcon-active {
  color: #3e82be !important;
}
#app .pbStepper .MuiStepIcon-completed {
  color: #259621;
}
#app .pbStepper .MuiStepConnector-active > span {
  border-color: #3e82be;
}
.pbFormContainer {
  min-height: 200px;
  width: 100%;
  padding: 4px;
}
.pbForm {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.pbFormHeader {
  width: 100%;
  border-bottom: 2px solid #3e82be;
  font-size: 1.1rem;
  padding: 8px 4px 2px 4px;
}
.pbFormLine {
  display: table-row;
  width: 100%;
}
.pbForm {
  margin-bottom: 4px;
}
.pbFormLineLabel {
  display: table-cell;
  padding-left: 4px;
}
.pbFormLineInputsTd {
  display: table-cell;
  padding-top: 4px;
  padding-right: 2px;
  vertical-align: bottom;
}
.pbFormLine .pbFormLineInputsTd:last-child {
  padding-right: 0px;
}
#app .pbFormLineInputsTd .formButton {
  display: inline-flex;
}
.pbFormLineInputs {
  display: flex;
  flex-flow: row nowrap;
}
.pbFormLineInput {
  display: flex;
  align-items: flex-end;
}
.pbFormLineInput {
  padding-right: 4px;
}
.pbFormLineInputs .pbFormLineInput:last-child {
  padding-right: 0px;
}
.pbFormTh {
  display: table-cell;
  padding-top: 8px;
}
.pbFormSuccessMessage {
  width: 100%;
  text-align: center;
  color: #259621;
}
.pbFormErrorMessage {
  width: 100%;
  text-align: center;
  color: #e10051;
}
.pbFormNewPopup {
  margin-top: 30px;
}
.pbFormNew {
  min-width: 500px;
  max-width: 600px;
  min-height: 150px;
  padding: 16px;
  display: flex;
  flex-flow: column;
  background-color: #fff;
  -webkit-transition: height 0.2s;
  /* Safari */
  -moz-transition: height 0.2s;
  -o-transition: height 0.2s;
  -ms-transition: height 0.2s;
  transition: width height 0.2s;
}
.pbFormNew .loaderContainer {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pbFormNewContent {
  overflow-y: scroll;
  overflow-x: hidden;
}
.pbFormNewLine {
  padding: 8px 4px;
  border-bottom: 1px solid #ccc;
  min-height: 30px;
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.pbFormNewFooter {
  padding: 16px 0px 0px 0px;
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.pbFormNewLine.href {
  cursor: pointer;
}
.pbFormNewLine.disabled {
  opacity: 0.5;
  cursor: default;
}
.pbFormNewLine.justify {
  text-align: justify;
}
.pbFormNewLine.href:hover {
  background-color: #d6e5f2;
}
.pbFormNewLine .inputContainer {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: column;
}
.pbFormNewLine .inputContainer .errorMessage {
  color: #e10051;
  font-size: 0.8rem;
  font-weight: 600;
}
.pbFormNewFormHeader {
  width: 100%;
  font-size: 1.3rem;
  padding: 8px 2px 4px 3px;
  border-bottom: 2px solid #3e82be;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.pbFormNewHeader {
  width: 100%;
  font-size: 1.2rem;
  padding: 8px 2px 4px 3px;
  border-bottom: 2px solid #3e82be;
  display: flex;
}
.pbFormNewHeader div {
  padding-left: 4px;
}
.pbFormNewLine .label {
  min-width: 200px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pbFormLineHelper {
  padding-right: 4px;
  font-size: 1.35rem;
  cursor: pointer;
  color: #3e82be;
}
.pbFormNewLine.column {
  flex-flow: column;
}
.pbFormNewLine.column .label {
  min-width: 100%;
  max-width: 100%;
}
.pbFormNewLine.column .inputContainer {
  padding: 8px 0px;
}
.pbFormNewLine.center {
  justify-content: center;
}
.pbFormNewLine.center p {
  text-align: center;
}
.pbFormNewLine.right {
  justify-content: flex-end;
}
.pbFormNewLine.justify p {
  text-align: justify;
  margin-top: 6px;
}
.pbFormNewLine.scroll {
  overflow-y: auto;
}
.pbFormNewLine .singleInput {
  width: 360px !important;
  margin-bottom: 8px;
}
.pbFormNewTextBox {
  display: flex;
  width: 100%;
  flex-flow: column;
}
.pbFormNewLine.padding {
  padding-left: 16px;
  padding-right: 16px;
}
.pbFormNewLine.hover {
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.pbFormNewLine.hover:hover {
  cursor: pointer;
  background-color: #d6e5f2;
}
.pbFormNewLine.disabled:hover {
  cursor: default;
  background-color: transparent;
}
.pbFormNewLine h3 {
  margin: 0px;
  border-bottom: 1px solid #3e82be;
  width: 100%;
}
.pbFormNewTextBoxHeader {
  font-size: 1.1rem;
  font-weight: bold;
}
.pbFormUploadLine {
  width: 100%;
}
.pbFormUploadLine .dragAndDropContainer {
  border: solid 1px #a2a2a2;
  border-radius: 10px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.pbFormUploadLine .dragAndDropContainer table {
  width: 100%;
}
.pbFormNewSpace {
  height: 20px;
}
.pbFormNewDownloadLink {
  color: #3e82be;
  cursor: pointer;
  font-size: 1rem;
}
.pbFormNewFormButton {
  color: #3e82be;
  cursor: pointer;
  font-size: 1rem;
}
.pbFormAuthQRbutton {
  color: #3e82be;
  cursor: pointer;
}
.pbFormNewTextBoxHeaderDesc.big {
  font-size: 1.8rem;
}
.pbFormNewTextBoxHeaderDesc.right {
  text-align: right;
}
.pbFormNewLine.infoText {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.pbFormNewLine.infoText h3 {
  margin: 0px;
  border-bottom: 1px solid #3e82be;
  width: 100%;
}
.pbFormNewLine.infoText p {
  text-align: justify;
  margin-top: 6px;
  margin-bottom: 4px;
}
.pbFormNewLine.header {
  border-bottom: none;
  padding: 16px 4px 4px 4px;
}
.pbFormNewLine.header h3 {
  margin: 0px;
  border-bottom: 1px solid #3e82be;
  width: 100%;
}
.pbFormNewLine.step {
  flex-flow: row;
  align-items: center;
  padding: 12px 4px;
}
.pbFormNewLine.step .stepNumber {
  background-color: #3e82be;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 16px;
  flex-shrink: 0;
  margin-right: 8px;
}
.pbFormNewLine.step .stepContent {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
}
.pbFormNewLine.step .stepContent h4 {
  margin: 0px;
  font-weight: 500;
}
.pbFormNewLine.step .stepContent p {
  margin: 0px;
  font-size: 0.9rem;
}
.pbFormNewLine.step .stepContent p.right {
  text-align: right;
}
.pbFormNewLine.step .stepContent p.big {
  font-size: 1.8rem;
  color: #3e82be;
}
.pbFormNewLine.step .stepContent.inLine {
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.buyProductImage {
  flex-flow: column;
  align-items: center;
}
.buyProductImage img {
  max-width: 176px;
  max-height: 176px;
}
.buyProductImage label {
  color: #3e82be;
  font-size: 1.5rem;
  padding-top: 8px;
}
.pbFormSteps .pbFormNewLine {
  flex-flow: row !important;
  align-items: center !important;
  border-bottom: 1px solid #ccc !important;
}
.progressBar .MuiLinearProgress-barColorPrimary {
  background-color: #3e82be;
}
.progressBar .MuiLinearProgress-root {
  height: 12px;
}
.progressBar .MuiBox-root {
  border-radius: 8px;
  overflow: hidden;
}
.dragAndDropContainer {
  width: 100%;
  height: 100%;
  min-height: 140px;
  position: relative;
  display: flex;
}
.dragAndDropContainer.error {
  background-color: #ffe1ec;
  border-color: #e10051;
  border-radius: 8px;
}
.dragAndDropArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d6e5f2;
  animation-name: zoomIn;
  animation-duration: 0.3s;
}
.dragAndDropLabel {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  color: #a2a2a2;
  cursor: pointer;
}
.dragAndDropLabel .error {
  color: #e10051;
}
.dragAndDropLabel > div {
  white-space: break-spaces;
}
.dragAndDropContainer .hidden {
  display: none;
}
.dragAndDropContainer > table {
  width: 100%;
  margin-top: 4px;
  font-size: 1rem;
  border-collapse: collapse;
}
.dragAndDropContainer > table thead td {
  font-weight: 500;
}
.dragAndDropContainer > table td {
  vertical-align: baseline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.dragAndDropTableLineDel {
  width: 10px;
}
.dragAndDropTableLineDel div {
  cursor: pointer;
}
.accordionContainer {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
.accordionLine {
  width: 100%;
}
.accordionLineHeader {
  width: 100%;
  padding: 8px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 1px solid #ccc;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.accordionContainer > .accordionLine:first-child .accordionLineHeader {
  border-top: none;
}
.accordionLine.done .accordionLineHeader {
  background-color: #d2f5d1;
  color: #333;
}
.accordionLine.done .accordionLineHeader .accordionLineHeaderNumber {
  background-color: #259621;
  color: #fff;
}
.open > .accordionLineHeader {
  border-top: none;
  background-color: #3e82be;
  color: #fff;
}
.accordionLineHeaderNumber {
  background-color: #3e82be;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.8rem;
  margin-right: 8px;
}
.accordionLineHeaderNumber .MuiSvgIcon-root {
  font-size: 1rem;
}
.open > .accordionLineHeader .accordionLineHeaderNumber {
  background-color: #fff;
  color: #3e82be;
}
.accordionLineContent {
  overflow: hidden;
}
.accordionLine .accordionLineContent {
  padding: 0px 16px 0px 16px;
  max-height: 0;
  transition-duration: 0.8s;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
}
.accordionLine.open .accordionLineContent {
  padding: 8px 16px 16px 16px;
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-flow: column;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -ms-transition-duration: 1s;
}
.accordionLineContent.noPadding {
  padding: 0px!important;
}
.accordionContainer.maxHeight {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
.accordionContainer.maxHeight .accordionLine {
  width: 100%;
  height: 37px;
  overflow: hidden;
}
.accordionContainer.maxHeight .accordionLine.open {
  height: 100%;
  display: flex;
  flex-flow: column;
}
.accordionContainer.maxHeight .accordionLineContent {
  max-height: none;
  height: 100%;
}
.accordionIframe {
  border: none;
  margin: 0px;
  width: 100%;
  height: 100%;
}
.widgetsContainer {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.widgetsMainPanel {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.widgetsMainPanelRight {
  width: 100%;
  justify-content: flex-end;
}
.widgetsSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.widgetsSection.edit > .widgetsSectionDeleteButton {
  right: -16px;
  top: -10px;
}
.widgetIconOne,
.widgetIconTwo,
.widgetIconThree {
  width: 100px;
  height: 20px;
  border: 1px solid #3e82be;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.widgetIconThree {
  justify-content: space-around;
  padding: 0px 2px;
}
.widgetIconThree > div {
  width: 28px;
  height: 14px;
  background-color: #3e82be;
}
.widgetIconTwo {
  justify-content: space-around;
  padding: 0px 2px;
}
.widgetIconOne:before {
  content: "";
  width: 90px;
  height: 14px;
  background-color: #3e82be;
}
.widgetIconTwo:before {
  content: "";
  width: 42px;
  height: 14px;
  background-color: #3e82be;
}
.widgetIconTwo:after {
  content: "";
  width: 42px;
  height: 14px;
  background-color: #3e82be;
}
.widgetIconTwo.left:before {
  width: 52px;
}
.widgetIconTwo.left:after {
  width: 32px;
}
.widgetIconTwo.right:before {
  width: 32px;
}
.widgetIconTwo.right:after {
  width: 52px;
}
.viewMenuButton:hover .widgetIconTwo:after,
.viewMenuButton:hover .widgetIconTwo:before,
.viewMenuButton:hover .widgetIconOne:before {
  background-color: #fff;
}
.viewMenuButton:hover .widgetIconOne,
.viewMenuButton:hover .widgetIconTwo,
.viewMenuButton:hover .widgetIconThree {
  border-color: #fff;
}
.viewMenuButton:hover .widgetIconThree > div {
  background-color: #fff;
}
.widget {
  width: 100%;
  min-height: 200px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  box-shadow: 6.31px 5.31px 6px #d8dadd, -6.31px -5.31px 13px #f5f5f5;
  margin-bottom: 16px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.widgetsSectionDeleteButton {
  position: absolute;
  top: -6px;
  right: calc(50% - 8px);
  cursor: pointer;
  background-color: #e10051;
  border-radius: 12px;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  line-height: 18px;
  font-size: 14px;
  padding-left: 3px;
}
.widgetsSectionDeleteButton:hover {
  opacity: 1;
}
.widgetsSectionMoveMenu {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.widgetsSectionMoveMenuButton {
  padding-top: 8px;
  cursor: pointer;
}
.widgetsSeparator {
  width: 16px;
  flex-shrink: 0;
}
.widgetEmptyButton {
  font-size: 3rem;
  opacity: 0.2;
  cursor: pointer;
}
.widgetsLibrary {
  width: 100%;
  height: auto;
  max-height: 500px;
  overflow: auto;
  display: flex;
  flex-flow: column;
  padding: 16px;
}
.widgetsLibraryItem {
  display: flex;
  cursor: pointer;
  flex-flow: column;
  border-bottom: 1px solid #ccc;
  padding: 4px 0px;
  font-size: 1rem;
  user-select: none;
}
.widgetsLibraryItem h3 {
  margin: 0px;
  color: #21273a;
  font-weight: 400;
}
.widgetsLibraryItem p {
  margin: 2px 0px;
}
.widgetsLibraryItem:hover {
  background-color: #ffffff;
}
.widgetsLibrary > .widgetsLibraryItem:last-child {
  border-bottom: none;
}
.widgetHeader {
  width: 100%;
  border-bottom: 1px solid #3e82be;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0px 0px 4px 0px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.widgetContent {
  width: 100%;
  min-height: 144px;
  display: flex;
  align-items: flex-start;
}
.widgetContent.center {
  align-items: center;
}
.widgetContent.column {
  flex-flow: column;
}
.widgetHeaderButtons {
  display: flex;
}
.widgetHeaderButtons > div {
  opacity: 0;
  cursor: pointer;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.widgetContent .widgetTableContainer {
  max-height: 328px;
  overflow-y: auto;
  width: 100%;
}
.widget.maxSize .widgetContent .widgetTableContainer {
  max-height: none;
}
.widgetContent table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.widgetContent table thead {
  background-color: #FFF;
  position: sticky;
  top: 0;
}
.widgetContent table tfoot {
  background: linear-gradient(0deg, #ffffff 97%, rgba(0, 0, 0, 0.65169818) 100%);
  position: sticky;
  bottom: 0;
  font-weight: 400;
}
.widgetContent table tfoot td {
  font-weight: 400;
  padding-top: 6px;
}
.widget table thead td {
  font-weight: 400;
  padding: 0px 4px;
}
.widget table tbody td {
  padding: 6px 4px;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.widget table td.red {
  color: #e10051;
  font-weight: 400;
}
.widget table td.green {
  color: #259621;
  font-weight: 400;
}
.widget table tbody tr > td:last-child {
  border-right: none;
}
.widget table tbody tr:last-child > td {
  border-bottom: none;
}
.widget table .nowrapTd {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
}
.widget table .total td {
  font-weight: 400;
  font-size: 1.2rem;
}
.widget table td a {
  color: #3e82be;
  font-weight: 400;
}
.widget:hover .widgetHeaderButtons > div {
  opacity: 0.2;
}
.widgetHeaderButtons > div:hover {
  opacity: 0.5 !important;
}
.widgetTableLegendIcon {
  min-width: 10px;
  min-height: 10px;
  border-radius: 5px;
  margin-right: 4px;
}
.widgetMenu {
  width: 100%;
  height: auto;
  padding-bottom: 8px;
  display: flex;
  flex-flow: column;
}
.widgetMenuLine {
  display: flex;
  flex-flow: row nowrap;
}
.widgetNoData {
  width: 100%;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
.widgetContent .label.right {
  text-align: end;
}
.widgetContentRow.summary {
  font-size: 2rem;
}
.widgetProgressBarContainer {
  width: 100%;
  height: 16px;
  background-color: #CCCCCC;
  border-radius: 8px;
  overflow: hidden;
}
.widgetProgressBarProgress {
  background-color: #3e82be;
  height: 16px;
}
.widgetProgressBarHeader {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.widgetProgressBarHeader span {
  font-weight: 600;
  color: #3e82be;
}
.widgetProgressBarHeader .separator {
  margin-right: 8px;
  margin-left: 8px;
  color: #21273a;
  font-weight: 300;
}
.bondInfo {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #CCC;
}
.bondInfoHeader span {
  font-weight: 600;
}
.widgetLine {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
  padding-bottom: 16px;
}
.widgetCalcSelect {
  display: flex;
  flex-flow: column;
  min-width: 240px;
}
.widgetCalcSelect .tgButtonContainer {
  width: 100%;
}
.widgetCalcSelect .tgButtonWrapper.active {
  background-color: #3e82be;
  color: #fff;
}
.widgetCalcResultContainer {
  display: flex;
  flex-flow: column;
  height: 100%;
  min-width: 240px;
  justify-content: space-between;
  padding: 16px 0px;
}
.widgetLineChart {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.widgetLineChart .lineChart {
  height: 100%;
}
.widgetBox {
  width: 100%;
}
.widgetCalcResultLine {
  display: flex;
  flex-flow: row nowrap;
  border-bottom: #ccc solid 2px;
}
.widgetCalcResult {
  display: flex;
  width: 100%;
  align-items: center;
}
.widgetPieChart {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.finalValueContainer {
  display: flex;
  flex-flow: column;
  padding-top: 8px;
}
.widgetCalcLabel {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);
  font-size: 10px;
  padding-top: 16px ;
}
.tgButtonPlacer.widgetCalc {
  justify-content: center;
}
.finalValueNumber {
  font-weight: 500;
  font-size: 1.5rem;
}
.widgetTable {
  width: 100%;
  height: 100%;
  max-height: 400px;
  overflow-y: auto;
}
.widgetTable table tbody :last-child td {
  font-weight: 600;
}
.paginationContainer.widgetPagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.widgetSelect > input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.widgetSelect input[type=number] {
  -moz-appearance: textfield;
}
.bondInfoUser {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.bondInfoUserHeader {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 8px 0px 2px 0px;
  border-bottom: 2px solid #3e82be;
}
.bondInfoUser .bond {
  padding: 6px 0px;
  display: flex;
  justify-content: space-between;
}
.bondInfoUser .bond span {
  font-weight: 400;
}
.bondInfoUser .bond.total {
  border-top: 1px solid #000;
  font-weight: 400;
  font-size: 1.1rem;
}
.widgetAlertText {
  color: #e10051 !important;
}
.widgetBoldText {
  font-weight: 400!important;
}
@media only screen and (max-width: 1000px) {
  .widgetsSection {
    flex-flow: column;
    align-items: center;
  }
  .widgetsSeparator {
    display: none;
  }
  .widgetsSectionMoveMenu {
    margin: auto;
    position: relative;
    top: -18px;
    right: 2px;
  }
}
.productItemsContainer {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 16px 16px 24px 16px;
}
.productItem {
  display: flex;
  flex-flow: column;
  width: 30%;
  box-shadow: 6px 8px 34px #d4d4d4, -6px -5px 34px #ffffff;
  border-radius: 12px;
  overflow: auto;
  margin-bottom: 12px;
  margin-right: 5%;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.productItem .popupCloseIcon {
  height: 25px;
  width: 25px;
  z-index: 1;
  right: 10px;
  top: 11px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.productItemsContainer .productItem:nth-child(3n+3) {
  margin-right: 0px;
}
.productItem:hover {
  transform: scale(1.03);
}
.productItem:hover .formButton {
  background-color: #259621 !important;
}
.productItemDelimiter {
  width: 5%;
}
.productItemsContainer > .productItemDelimiter:last-child {
  width: 0px;
}
.productItemImgContainer {
  width: 100%;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productItemImgContainer img {
  width: 100%;
}
.productItemInfoContainer {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 16px;
}
.productCompanyHeader h2 {
  margin: 0px;
  font-size: 1.7rem;
  color: #3e82be;
  font-weight: 400;
  margin-left: 16px;
  margin-right: 16px;
  border-bottom: 2px solid #3e82be;
  padding-bottom: 4px;
}
.productItemHighlights {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: column;
}
.productItemHighlight {
  width: 100%;
  display: flex;
  flex-flow: column;
  border-top: 1px solid #efefef;
  padding: 4px 0px;
}
.productItemHighlightValue {
  font-size: 1.7rem;
  color: #3e82be;
  font-weight: 400;
  text-align: right;
}
.productItemFooter {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.productItemFooter > div {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4px 0px;
}
.productItemFooter > div .formButton {
  padding: 12px 24px !important;
}
.productItemFooterRight {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.productItemCounterContainer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-right: 8px;
}
.productItemCounterContainer .count {
  width: 50px !important;
  margin-left: 8px;
}
.productItemCounterContainer .count input {
  text-align: center;
}
.productItemContent {
  display: flex;
  flex-flow: column;
}
.productItemContent h3 {
  border-bottom: none;
  margin: 0px;
  padding-left: 0px;
  color: #3e82be;
  font-size: 1.7rem;
  font-weight: 400;
  padding-bottom: 8px;
  text-align: center;
}
.crfItemHeader {
  font-size: 1.2rem;
}
.crfItemImgGalleryItem img {
  max-width: 100%;
  max-height: 100%;
}
.crfItemImgGalleryItem {
  height: 200px;
}
.crfItemDescTable {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.crfItemDescTableRow {
  width: 100%;
  display: flex;
  flex-flow: row;
}
.crfItemDescTableItem {
  width: 33%;
  display: flex;
  flex-flow: column;
}
.popup.newMessage {
  margin-top: 5%;
  height: 80%;
  max-height: 750px;
  background-color: #fff;
}
.newMessageContainer {
  padding: 8px;
  max-width: 794px;
  position: relative;
  overflow: hidden;
}
.newMessageContainer .MuiOutlinedInput-input {
  padding: 8px 12px;
}
.newMessageContainer .formInputContainer {
  margin-bottom: 12px;
}
.newMessageContainer .tox-tinymce {
  border-radius: 4px;
}
.newMessageContainerForm {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.newMessageContainerSending {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 10%;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.newMessageContainerMessage {
  height: 17px;
  position: absolute;
  width: 100%;
  text-align: center;
  font-weight: 400;
  bottom: 40px;
}
.newMessageContainerMessage.red {
  color: #e10051;
}
.newMessageContainerMessage.green {
  color: #259621;
}
.newMessageContainer .loaderContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0px;
}
.newMessageContainer > .hide {
  display: none;
}
.messageAddresserContainer {
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0px;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 4px 8px 6px 8px;
  border: 1px solid rgba(0, 0, 0, 0.23);
  cursor: text;
  margin-bottom: 12px;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
}
.messageAddresserContainer legend {
  width: auto;
  height: 11px;
  display: block;
  padding: 0;
  font-size: 0.75em;
  text-align: left;
  max-width: 1000px;
  transition: max-width 100ms cubic-bezier(0, 0, 0.2, 1) 50ms;
  color: #0000008f;
  cursor: text;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  line-height: 1.1875em;
  letter-spacing: 0.00938em;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 400;
}
.messageAddresserContainer .inputContainer {
  position: relative;
}
.messageAddresserContainer .inputContainer input {
  min-width: 200px;
}
.messageAddresserContainer input {
  border: none;
}
.messageAddresserContainer input:focus {
  outline: none;
}
.messageAddresserContainer .searchResultsContainer {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background-color: #fff;
  border: 1px solid #ccc;
}
.messageAddresserContainer .searchResultsContainer > div {
  padding: 6px 4px;
  white-space: nowrap;
  cursor: pointer;
}
.messageAddresserContainer .searchResultsContainer > div.select,
.messageAddresserContainer .searchResultsContainer > div:hover {
  background-color: #d6e5f2;
}
.messageAddresserContainer .selectItem {
  padding: 2px 6px 2px 8px;
  border-radius: 15px;
  background-color: #000;
  display: flex;
  color: #fff;
  align-items: center;
  margin-right: 4px;
}
.messageAddresserContainer .selectItem.group {
  background-color: #259621;
}
.messageAddresserContainer .selectItem.record {
  background-color: #3e82be;
}
.messageAddresserContainer .removeItem {
  font-size: 1rem;
  width: 12px;
  height: 14px;
  margin-left: 3px;
  cursor: pointer;
}
.messageAddresserContainer:hover {
  border: 1px solid rgba(0, 0, 0, 0.829);
}
.messageAddresserContainer.error {
  border-color: #e10051;
}
.messageAddresserContainer.error legend {
  color: #e10051;
}
.messageAddresserContainer.attachment {
  margin-top: 4px;
}
.messageAddresserContainer .dragAndDropContainer {
  min-height: 48px;
}
.newMessageContainer .popupFooter {
  padding: 8px 12px;
}
.kanbanContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  overflow: auto;
}
.kanbanBodyContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.kanbanColumnContainer {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  min-width: 100px;
  height: 100%;
  padding: 0 16px;
}
.kanbanHeaderContainer {
  display: flex;
  flex-direction: row;
}
.kanbanColumnHeader {
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  color: #21273a;
  padding: 0px 16px;
}
.kanbanColumnBody {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-top: 16px;
}
.kanbanCard {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  box-shadow: 6.31px 5.31px 6px #d8dadd, -6.31px -5.31px 13px #f5f5f5;
  margin-bottom: 16px;
}
.kanbanCardHeader {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.kanbanCardLabel {
  font-size: 1.1rem;
  text-decoration: none;
  color: #21273a;
}
.kanbanCardLabel :visited {
  color: #21273a;
}
.kanabanCardBody {
  display: flex;
  flex-direction: column;
}
.kanbanCardDesc {
  margin: 0;
  padding: 8px 0;
  overflow-wrap: break-word;
}
.kanbanFooterDate {
  display: flex;
  justify-content: space-between;
}
.dayWords {
  font-weight: 400;
  text-align: right;
}
.dayWords.alert {
  color: #FA1A1A;
}
.dayWords.timeRemaining {
  color: #259621;
}
.kanbanCardPriority {
  padding: 2px 8px;
  border-radius: 12px;
  height: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #ecf0f3;
}
.kanbanCardPriority.blue {
  background-color: #3e82be;
}
.kanbanCardPriority.orange {
  background-color: #d17000;
}
.kanbanCardPriority.red {
  background-color: #e10051;
}
.kanbanCardPriority.importantRed {
  background-color: #FA1A1A;
}
.kanbanPaginationContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  right: 50%;
  bottom: 2%;
  transform: translate(50%, 0);
}
.paginationDot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #215f96;
  margin-right: 8px;
}
.paginationDot.active {
  background-color: #3e82be;
}
.tgButtonPlacer {
  display: flex;
  align-items: center;
  height: 75px;
  padding-right: 8px;
}
.tgButtonContainer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  height: 33px;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 4px 4px 8px #cfd1d4, -4px -4px 8px #ffffff;
}
.tgButtonWrapper {
  display: flex;
  padding: 6px;
  height: 100%;
  align-items: center;
  justify-content: center;
  user-select: none;
  background: #eef0f4;
  opacity: 0.2;
  color: #21273a;
}
.tgButtonWrapper.active {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  /* Safari */
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: width opacity 0.2s;
}
.tgButtonSeparator {
  height: 100%;
  border: 1px solid #97979724;
}
.orgChartContainer {
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: center;
  overflow: auto;
  position: relative;
}
.orgChartRow {
  display: flex;
  flex-flow: row nowrap;
  padding: 16px;
  justify-content: center;
}
.userCard {
  padding: 16px;
  margin: 16px;
  border: 1px solid #3e82be;
  display: flex;
  flex-flow: column;
}
.orgChartRole {
  text-align: center;
  font-size: 0.9rem;
}
.orgChartLine {
  stroke: #3e82be;
}
.userCard a,
.userCard a:visited {
  text-decoration: none;
  color: #000;
}
.popup.orgChart {
  width: 90%;
  height: 90%;
  margin-top: 100px;
}
/* SCREEN SIZES */
.helperContainer.viewMenuMobile {
  display: none;
}
@media screen and (max-width: 1047px) {
  .productItem {
    width: 47.5%;
  }
  .productItemsContainer .productItem:nth-child(3n + 3) {
    margin-right: 5%;
  }
  .productItemsContainer .productItem:nth-child(2n + 2) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 824px) {
  .navContainer {
    z-index: 2;
  }
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0px 0px 4px #d8dadd;
  }
  .bodyContainer {
    padding: 64px 12px 30px 12px !important;
    overflow-y: auto;
  }
  .navHeader {
    display: block;
  }
  .navContainer {
    left: -240px;
    -webkit-transition: left 0.2s;
    /* Safari */
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -ms-transition: left 0.2s;
    transition: width left 0.2s;
  }
  .navContainer.mobileOpen {
    left: 0;
  }
  .navContainer.min.mobileOpen .navLine {
    width: 100%;
    justify-content: flex-start;
  }
  .navContainer.min.mobileOpen .navLine .navLineIcon {
    margin-right: 8px;
  }
  .navContainer.min {
    width: 240px;
  }
  .navContainer.min .buttonsHolder a > span {
    display: block;
  }
  .navContainer.min .logoContainer img {
    display: block;
  }
  .menuToogleButton {
    display: none;
  }
  .breadcrumb {
    padding-left: 58px;
  }
  .breadcrumbIcon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    font-size: 1.7rem;
  }
  .mobileMenuButton {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 60px;
    height: 56px;
    padding-left: 8;
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    -webkit-transition: left 0.2s;
    /* Safari */
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -ms-transition: left 0.2s;
    transition: width left 0.2s;
  }
  .mobileMenuButton.open {
    color: #fff;
    left: 178px;
    top: 8px;
  }
  /*HIDDEN CLASS*/
  .tablet-hidden {
    display: none;
  }
  /*HOME INVEST CALC*/
  .homeSideChartForm {
    padding: 0 10px;
  }
  .pbFormNewLine.mobile-scroll {
    overflow: auto;
    min-height: 0;
  }
  .popup.pbFormNewPopup {
    height: 100%;
    box-shadow: none;
  }
  .pbFormNew {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .homeLinesTable table tr:last-child td {
    white-space: nowrap;
  }
  /*HELPER*/
  .viewMenu {
    display: none;
  }
  .helperContainer {
    display: none;
  }
  .helperContainer.viewMenuMobile {
    display: block !important;
    right: 20px;
    bottom: 24px;
  }
  .helperMenuLine {
    font-size: 1.25rem;
  }
  /*DETAIL VIEW*/
  .cardLine {
    flex-flow: column;
  }
  .cardFormField {
    max-width: 100%;
  }
  .editViewContainer {
    width: 100% !important;
  }
  .card.editViewContainer {
    margin-right: 0 !important;
    background: #fff !important;
  }
  /*DOCS*/
  .personalDocContainer {
    flex-flow: column;
    height: 100%;
  }
  .personalDocBlock {
    padding-right: 0;
  }
  .popupImgContainer img {
    width: 100%;
  }
  .singleField .labelContainer {
    min-width: 40%;
  }
  /*BREADCRUMB*/
  .userMenuName {
    display: none;
  }
  .breadcrumb {
    justify-content: flex-start;
    white-space: nowrap;
    overflow: hidden;
  }
  .separator {
    width: 8px !important;
  }
  .breadcrumb span {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
  }
  /*HOME BONDS*/
  .productCompanyHeader h2 {
    padding-top: 16px;
  }
  .productItemsContainer {
    flex-flow: wrap;
    padding: 0;
  }
  .productItemDelimiter {
    display: none;
  }
  .productItem {
    width: 45%;
    margin: 2.5%;
    transition: none;
  }
  .popup .productItem {
    margin-bottom: 0px !important;
  }
  #content .card {
    padding: 0;
  }
  .productItem:hover {
    transform: none;
  }
  .homeContent .card .MuiTabs-root {
    margin: 8px 0 8px 16px;
  }
  /* SETTINGS*/
  .settingContainer .MuiTabs-root .MuiTabs-scroller {
    overflow-x: scroll !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .settingContainer .MuiTabs-root .MuiTabs-scroller::-webkit-scrollbar {
    display: none;
  }
  .CardLine.flexSpaceAroung {
    display: flex !important;
    flex-flow: column;
  }
  .settingContainer .MuiTabs-root {
    margin: 8px;
  }
  .downloadAppContainer {
    margin-bottom: 10px;
    width: 90% !important;
    justify-content: center;
  }
  .settingContent {
    height: fit-content !important;
  }
  /*ALERT*/
  .detailRedAlert {
    margin-bottom: 8px;
  }
  /*ADMIN LOGIN*/
  .administrationLabel {
    margin-bottom: 16px;
  }
  /*ADMIN SUBPANELS*/
  .subpanelsContainer {
    padding-bottom: 40px;
  }
  .subpanelsContainer:empty {
    padding-bottom: 0;
  }
  /*WIDGETS*/
  .widgetsSection.edit > .widgetsSectionDeleteButton {
    right: -8px;
  }
  .widget {
    min-height: auto !important;
    width: 100% !important;
  }
  .widget.empty {
    min-height: 200px !important;
  }
  .viewMenuEdit {
    display: block;
    position: fixed;
    z-index: 10;
    right: 8px !important;
    top: auto;
    bottom: 2vh;
    height: auto;
  }
  .viewMenuEdit .icon-edit {
    background-color: #2f628f;
    color: #fff;
    width: 45px;
    height: 45px;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: center;
    border-radius: 22px !important;
  }
}
@media screen and (max-height: 800px) {
  .popup {
    max-height: 95%;
    margin-top: 20px !important;
  }
  .pbFormNewPopup {
    margin-top: 1%;
  }
  #app .pbStepper {
    padding: 8px 0px;
  }
  .pbFormNewFooter {
    padding-top: 6px;
  }
  .popupText {
    min-height: 56px;
  }
  .popup.signedDocuments {
    height: 95%;
    margin-top: 1%;
  }
}
@media screen and (max-width: 440px) {
  /*FUNC CLASSES*/
  .mobile-hidden {
    display: none;
  }
  .mobile-scroll {
    overflow: auto;
  }
  /* LOGIN */
  .loginWindow.shadow {
    box-shadow: none;
  }
  .loginContainer {
    overflow-y: auto;
  }
  .loginWindow {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  div.loginLogoContainer {
    display: flex;
    position: relative;
    margin-bottom: 8px;
  }
  .sizer {
    height: 70%;
    margin-top: 10%;
  }
  .loginWindowContent {
    display: flex;
    padding: 0;
    flex-direction: column;
    flex-shrink: 1;
    max-height: 100%;
  }
  .loginFooterButton {
    padding: 0;
    margin: 0;
  }
  /* REGISTER */
  .register {
    overflow-y: hidden;
  }
  .flexLine {
    display: block;
  }
  .loginWindowContent {
    max-width: 90%;
    margin: auto;
  }
  .loginButtonContainer {
    position: absolute;
    top: 97%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .loginTextButton {
    margin-bottom: 4%;
  }
  /* POPUP WRONG EMAIL*/
  .popup {
    min-width: 80%;
    max-width: 95%;
    max-height: 90%;
    margin-top: 5%;
  }
  .popupContent {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    align-items: flex-start;
  }
  .popupContent.alert {
    align-items: center !important;
  }
  /* POPUP VERIFICATION*/
  .pbFormNew .pbFormNewContent .pbFormNewLine {
    flex-flow: column;
    align-items: flex-start;
    border-bottom: none;
  }
  .pbFormNew .pbFormNewContent .pbFormNewLine .label {
    max-width: 100%;
  }
  .pbFormNew .pbFormNewContent .pbFormNewLine .label span {
    font-weight: 500;
  }
  .pbFormNew .pbFormNewContent .pbFormNewLine .enum .label {
    padding-bottom: 8px;
  }
  .pbFormNewLine.country .label {
    justify-content: flex-start;
  }
  .pbFormNewLine.center {
    align-items: center !important;
  }
  .pbFormNewLine.checkbox {
    flex-flow: row !important;
    align-items: center !important;
    border-bottom: 1px solid #ccc !important;
  }
  .pbFormNewLine.checkbox .label {
    width: 100%;
  }
  .pbFormNewLine.checkbox .inputContainer {
    width: auto;
  }
  .pbFormNewLine.column.center p {
    margin: 8px 0;
  }
  .popup.pbFormNewPopup {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
    margin: 0 !important;
    border-radius: 0;
  }
  .popup.pbFormNewPopup .pbFormNew {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .pbFormNew {
    min-width: 0 !important;
    min-height: 0;
    height: 100%;
    padding: 4px 8px;
  }
  .userAuthContentDiv {
    min-width: 0 !important;
    min-height: 0;
    height: 100%;
    padding: 4px 8px;
  }
  .popupBc .pbFormNewPopup {
    margin-top: 0;
  }
  .pbFormNewLine .label {
    min-width: 150px;
  }
  .MuiStepLabel-labelContainer {
    display: none;
  }
  .pbFormNewline p {
    margin-block-start: 0.2rem;
  }
  .popupCloseIcon {
    right: 20px;
  }
  .pbFormNewContent {
    overflow-x: hidden;
  }
  .scrollbarClass .accordionLineContent {
    display: flex;
    flex-flow: column-reverse;
  }
  .accordionLineContent p {
    overflow: auto;
  }
  .pbFormNewLine .inputContainer {
    align-items: flex-end;
  }
  /*MBY REDUNDANT*/
  .signedDocuments .accordionLineContent {
    flex-flow: column;
  }
  /*DOWNLOAD POPUP*/
  .downloadPopup {
    align-items: center;
  }
  /*DETAIL VIEW*/
  .userMenuName {
    display: none;
  }
  /*ALERT*/
  .alertIcon {
    display: none;
  }
  .settingForm .detailRedAlert.green .alertIcon {
    display: flex;
  }
  .detailRedAlert {
    display: flex;
    flex-flow: column;
  }
  .alertButton {
    padding: 0;
    margin: 8px 0;
  }
  .alertButtonElement {
    width: 100%;
    text-align: center;
  }
  /*HOME INVEST CALC*/
  .homeCardSection {
    display: block;
  }
  .homeCardBox {
    margin-bottom: 5%;
  }
  .homeBlock {
    display: block;
    padding-top: 16px;
  }
  .homeColumnsContainer {
    display: block;
  }
  .chartContainer {
    display: none;
  }
  .homeMaxTR {
    white-space: nowrap;
  }
  .homeMaxTR td {
    white-space: nowrap;
  }
  /*HOME BONDS*/
  .productItemsContainer {
    flex-flow: column;
    padding: 4px;
    margin: 15px 0;
    box-shadow: none;
  }
  .LBL_PRODUCT_CATALOG.card {
    padding: 0;
    background: none;
    box-shadow: none;
  }
  .productItem {
    width: 100% !important;
    margin: 0 0 16px 0 !important;
    transition: none;
    box-shadow: none;
  }
  .productItem:hover {
    transform: none;
  }
  .homeContent .card .MuiTabs-root {
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    margin: 0 0 8px 0 !important;
  }
  .homeContent .card .MuiTabs-root .MuiTabs-scroller .MuiTabs-flexContainer .MuiButtonBase-root {
    padding-left: 0;
  }
  .productCompanyHeader h2 {
    display: none;
  }
  .pbFormNew .loaderContainer {
    padding-bottom: 32px;
  }
  /*SIGN DOCS*/
  .popup.signedDocuments {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    margin-top: 0 !important;
  }
  .contactForm.simpleForm {
    padding: 0 8px 8px 8px;
  }
  /*SETTINGS*/
  .storeTextContainer {
    display: none;
  }
  /*LIST VIEW ADMIN*/
  .tableCell.lastCell {
    display: none;
  }
  .tableCellHeader.lastCell {
    display: none;
  }
  /*PAGINATION*/
  .paginationButton {
    width: 28px;
    height: 28px;
  }
  .paginationNumber {
    font-size: 1.2 rem;
  }
  /*SUBPANELS ADMIN*/
  .card.editViewContainer {
    padding: 8px;
  }
  .subpanel.card {
    padding: 8px;
  }
  .cardFormFieldImage {
    width: 100%;
  }
  /*WIDGETS*/
  .widget.invested_amount .widgetContent {
    flex-flow: column;
    align-items: center;
  }
  .widget.invested_amount .widgetContent .widgetContentRow:first-child {
    width: 100% !important;
  }
  .widget.invested_amount .widgetContent .widgetContentRow:last-child {
    width: 35% !important;
  }
  /*HIDE REPORTS*/
  a[href="#list/reports"] {
    display: none;
  }
  /*KANBAN*/
  .kanbanColumnContainer {
    width: 100% !important;
  }
  .kanbanColumnHeader {
    padding: 0;
  }
}
@media screen and (max-width: 824px) {
  /*FUNC CLASSES*/
  .tablet-scroll {
    overflow: auto;
  }
  /*HIDDEN CLASS*/
  .tablet-hidden {
    display: none;
  }
  /*POPUP*/
  .pbFormNewLine.center {
    flex-shrink: 0;
  }
  .pbFormNewLine.column.center {
    flex-shrink: 0;
  }
  /*HOME INVEST CALC*/
  .homeSideChartForm {
    padding: 0 10px;
  }
  .popup.pbFormNewPopup {
    height: 100%;
    box-shadow: none;
  }
  .pbFormNew {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .homeLinesTable table tr:last-child td {
    white-space: nowrap;
  }
  /*HELPER*/
  .viewMenu {
    display: none;
  }
  .helperContainer {
    display: none;
  }
  .helperContainer.viewMenuMobile {
    display: block !important;
    right: 20px;
    bottom: 24px;
  }
  .helperMenuLine {
    font-size: 1.25rem;
  }
  /*DETAIL VIEW*/
  .cardLine {
    flex-flow: column;
  }
  .cardFormField {
    max-width: 100%;
  }
  .editViewContainer {
    width: 100% !important;
  }
}
