@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;
}
@keyframes hideNavLabels {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.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: 24px;
}
.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: #2f628f;
  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;
}
.flexSameWidth .formButton {
  margin-right: 0px !important;
}
.flexSameWidth .alertMessage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  text-align: justify;
}
.flexSameWidth .alertMessage.center {
  text-align: center;
}
.flexSameWidth .formInputContainer {
  padding-top: 0;
}
.flexGap8px {
  gap: 8px;
}
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;
  overflow-x: hidden;
}
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: scroll;
  flex-flow: column;
  padding: 0px 24px 24px 24px;
  padding-left: 264px;
  position: relative;
  -webkit-transition: padding 0.3s;
  /* Safari */
  -moz-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  -ms-transition: padding 0.3s;
  transition: width padding 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;
}
.commentsOpen {
  padding-right: 400px;
}
#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%;
}
.areaChartDynamic,
.barChart {
  height: 240px;
}
.barChart {
  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 {
  content: "\ebad";
}
.icon-accounts:before {
  content: "\edbc";
  font-size: 1.3rem;
}
.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-yieldMetadata: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,
.icon-bankHistory::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,
.icon-reservations::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,
.icon-bankAccounts::before {
  content: "\ebc4";
}
.icon-recalc:before {
  content: "\ea55";
}
.icon-edit:before {
  content: "\e99d";
}
.icon-help:before {
  content: "\ebf1";
}
.icon-helpOutline::before {
  content: "\ec52";
}
.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-checkNoBorder:before {
  content: "\eb53";
}
.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,
.icon-accommodations::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-unLock2:before {
  content: "\ee08";
}
.icon-stack:before {
  content: "\eda6";
}
.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: "\ec2d";
}
.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-info::before {
  content: "\ebf8";
}
.icon-bar_chart::before {
  content: "\ea3c";
}
.icon-table:before {
  content: "\ea3d";
}
.icon-relate:before {
  content: "\e978";
}
.icon-account_tree:before {
  content: "\ecca";
}
.icon-disable::before {
  content: "\eb6a";
}
.icon-kb:before {
  content: "\e991";
}
.icon-campaign::before {
  content: "\e9a0";
}
.icon-subscribers::before {
  content: "\e957";
}
.icon-copy-clipboard::before {
  content: "\e99a";
  cursor: pointer;
  font-size: 1.25rem;
}
.icon-paste::before {
  content: "\ebd2";
}
.icon-search::before {
  content: "\ec15";
}
.icon-reset::before {
  content: "\ecfc";
}
.icon-done::before {
  content: "\ebe4";
}
.icon-articles::before {
  content: "\ed7c";
}
.icon-arrowLeft::before {
  content: "\eb4d";
}
.icon-arrowRight::before {
  content: "\eb51";
}
.icon-handIn::before {
  content: "\e9b4";
}
.icon-publishRules::before {
  content: "\e9bd";
}
.icon-export::before {
  content: "\ea46";
}
.icon-import::before {
  content: "\ea47";
}
.icon-assigned::before {
  content: "\ebcf";
}
.icon-calls::before {
  content: "\e970";
}
.icon-meetings:before {
  content: "\edee";
  font-size: 1.4rem;
}
.icon-menuDropdown::before {
  content: "\eb4e";
}
.icon-attachment::before {
  content: "\e9fa";
}
.icon-comments:before {
  content: "\e961";
}
.icon-peopleAdd:before {
  content: "\eba2";
}
.icon-favorite::before {
  content: "\ebc1";
}
.icon-favorite-full::before {
  content: "\ebbf";
}
.icon-file-excel::before {
  content: "\ef5a";
}
.icon-file-pdf::before {
  content: "\ef57";
}
.icon-file-word::before {
  content: "\ef59";
}
.icon-file-zip::before {
  content: "\eda3";
}
.icon-file-openoffice::before {
  content: "\ef58";
}
.icon-history-next::before {
  content: "\ead8";
}
.icon-history-back::before {
  content: "\ead7";
}
.icon-purchase::before {
  content: "\eb1e";
}
.icon-crowdfunding-star::before {
  content: "\ebbf";
}
.icon-images::before {
  content: "\ea24";
}
.icon-costs::before {
  content: "\eccb";
}
.icon-costsTemplate::before {
  content: "\eccb";
}
.icon-rooms::before {
  content: "\ed46";
}
.icon-services::before {
  content: "\ed71";
}
.icon-payments::before {
  content: "\edb7";
}
.icon-reservationLines::before {
  content: "\e98f";
}
.icon-images::before,
.icon-imagesMain::before {
  content: "\ea24";
}
.icon-fePlugin::before {
  content: "\eb8e";
}
.icon-notification::before {
  content: "\eba5";
}
.icon-warning::before {
  content: "\ee7f";
}
.icon-tasksTemplate::before {
  content: "\e99c";
}
.icon-keyboard_arrow_left::before {
  content: "\ea57";
}
.icon-keyboard_arrow_right::before {
  content: "\ea58";
}
.icon-bankPayments::before {
  content: "\e9f7";
}
.icon-bankPaymentsLines::before {
  content: "\e98f";
}
.icon-paymentCheck::before {
  content: "\e947";
}
.icon-administration::before {
  content: "\edee";
}
.icon-keyboard_arrow_left::before {
  content: "\ea57";
}
.icon-keyboard_arrow_right::before {
  content: "\ea58";
}
.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+);
}
.swiper-button-next {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iZXk1Nk9hU1lFTHUxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPjxwYXRoIGQ9Ik03Ni44LDIxNy42YzAtMS42MzcuNjI1LTMuMjc0LDEuODc1LTQuNTI0TDE2My43NSwxMjhMNzguNjc1LDQyLjkyNWMtMi41LTIuNS0yLjUtNi41NSwwLTkuMDVzNi41NS0yLjUsOS4wNSwwbDg5LjYwMSw4OS42YzIuNSwyLjUsMi41LDYuNTUxLDAsOS4wNTFsLTg5LjYwMSw4OS42Yy0yLjUsMi41LTYuNTUsMi41LTkuMDUsMC0xLjI1LTEuMjUxLTEuODc1LTIuODg5LTEuODc1LTQuNTI2WiIgdHJhbnNmb3JtPSJtYXRyaXgoLjczNDE3MSAwIDAgMS4xODA0NCAzNC4wMjU3NDUtMjMuMDk2ODgyKSIgZmlsbD0iIzNlODJiZSIgc3Ryb2tlPSIjM2U4MmJlIiBzdHJva2Utd2lkdGg9IjIwIi8+PC9zdmc+);
  background-size: 150%;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-prev {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iZTRBRGlMajc1Y3AxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPjxwYXRoIGQ9Ik03Ni44LDIxNy42YzAtMS42MzcuNjI1LTMuMjc0LDEuODc1LTQuNTI0TDE2My43NSwxMjhMNzguNjc1LDQyLjkyNWMtMi41LTIuNS0yLjUtNi41NSwwLTkuMDVzNi41NS0yLjUsOS4wNSwwbDg5LjYwMSw4OS42YzIuNSwyLjUsMi41LDYuNTUxLDAsOS4wNTFsLTg5LjYwMSw4OS42Yy0yLjUsMi41LTYuNTUsMi41LTkuMDUsMC0xLjI1LTEuMjUxLTEuODc1LTIuODg5LTEuODc1LTQuNTI2WiIgdHJhbnNmb3JtPSJtYXRyaXgoLS43MzQxNzEgMCAwIDEuMTgwNDQgMjIxLjk3NDI2MS0yMy4wOTY4ODIpIiBmaWxsPSIjM2U4MmJlIiBzdHJva2U9IiMzZTgyYmUiIHN0cm9rZS13aWR0aD0iMjAiLz48L3N2Zz4=);
  background-size: 150%;
  background-repeat: no-repeat;
  background-position: center;
}
.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.buttonLoader {
  transform: scale(0.4);
}
.loader:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #2f628f;
  border-color: #2f628f transparent #2f628f transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
.buttonLoader.loader:after {
  border: 5px solid white;
  border-color: white transparent white transparent;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
:root {
  --swiper-navigation-size: 54px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-button-next:after {
  content: none;
}
.swiper-button-prev:after {
  content: none;
}
.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%;
  min-height: 0;
  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 #2f628f;
}
.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 #2f628f;
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.cardTabIcon,
.cardHeaderIcon {
  background-color: #2f628f;
  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;
  max-width: 100%;
}
.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;
}
.cardFromFieldButton {
  width: 100%;
  border-radius: 8px !important;
  white-space: nowrap;
}
.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: #2f628f !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: #2f628f;
  font-weight: 400;
  padding-top: 4px;
  display: block;
}
.loginGetAccessContent {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.loginGetAccessContent h2 {
  color: #2f628f;
  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 .loginWindowContentInput {
  width: 100%;
}
.loginWindowContent .formTabs {
  width: 100%;
  margin-bottom: 12px;
}
.loginWindowContent .formInputContainer {
  width: 100%;
  margin-bottom: 16px;
}
.loginWindowContent .formInputContainer fieldset,
.loginWindowContent .formInputContainer input {
  border-radius: 30px !important;
}
.loginWindowContent h2 {
  margin-top: 0px;
  text-align: center;
  color: #2f628f;
}
.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: #2f628f;
}
.loginWindowContent .backButton {
  text-align: center;
  margin-top: 10px;
  display: block;
  color: #2f628f;
  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 16px 8px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.loginTwoFactorAuthorizationCode {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.loginTwoFactorAuthorizationCode .formInputContainer {
  width: 50px !important;
}
.loginTwoFactorAuthorizationCode .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;
}
.loginTwoFactorAuthorizationCode .flexSpaceBetween {
  padding-bottom: 0 !important;
  padding-top: 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: #2f628f;
}
.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 .loginLogoPlaceholder {
  height: 40px;
  visibility: hidden;
}
/* 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;
  font-weight: 400;
}
.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;
}
.createPassTooltip {
  width: max-content;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
.createPassTooltip .flexLine {
  gap: 8px;
}
.createPassTooltip .createPassTooltipSymbols {
  font-size: 1rem;
}
.createPassTooltip .createPassIconCorrect {
  color: #259621;
}
.createPassTooltip .createPassIconIncorrect {
  color: #e10051;
}
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;
}
.userMenuName {
  white-space: nowrap;
}
.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;
  width: 100%;
  align-items: center;
  padding: 0px 8px 0px 0px;
  font-size: 1.7rem;
  overflow: hidden;
}
.breadcrumb .moduleName {
  white-space: nowrap;
}
.breadcrumbNameContainer {
  width: 100%;
  overflow: hidden;
}
.breadcrumbName {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb .separator {
  font-size: 1.2rem;
  padding: 0px 6px;
  color: #ccc;
}
.breadcrumbIcon {
  background-color: #2f628f;
  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;
}
.heartBeatForever {
  animation: heartBeat 1500ms infinite linear;
}
.bellAnimation {
  animation: swing 1.5s;
}
.headerViewMenuPlaceholder {
  flex-shrink: 0;
}
.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;
  padding: 12px 12px 12px 8px;
}
.navContainer.min .navLine span {
  opacity: 0;
  animation: hideNavLabels 0.5s;
}
.buttonsHolder {
  padding: 0px 16px 8px 16px;
  width: 100%;
  position: relative;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.navHeader {
  font-size: 1.2rem;
  padding: 10px 8px;
  border-bottom: 1px solid #ffffff54;
  color: #fff;
  margin-bottom: 6px;
  margin-right: 4px;
  margin-left: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navHeader .icon-menuDropdown {
  font-size: 2rem;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
}
.navHeader.closed .icon-menuDropdown {
  transform: rotate(90deg);
}
.navHeader.closing {
  pointer-events: none;
}
.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;
  justify-content: space-between;
  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 .icon-favorite,
.navLine .icon-favorite-full {
  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;
}
.navLine:hover,
.navLine.select {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 6px 6px 12px #1b2030, -6px -6px 12px #272e44;
}
.navLine:hover .icon-favorite {
  opacity: 1;
}
.navLine:hover .icon-favorite-full {
  opacity: 1;
}
.icon-favorite:hover::before {
  content: "\ebbf";
}
.icon-favorite-full.hasHover:hover::before {
  content: "\e999";
}
.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;
}
.menuGroupContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.menuOverflowContainer {
  overflow: hidden;
}
.navContainer .buttonGroupContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
}
.navContainer .buttonGroupContainer.hiding {
  margin-top: -150%;
}
#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: #2f628f;
}
.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: #a8c7e2;
}
.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: #2f628f;
  background-color: #dae7f3;
  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;
}
.detailBottomIframe object {
  border: none;
  width: 100%;
  height: 100%;
}
.detailBottomIframe .detailBottomIframeLoader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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: #2f628f;
  border: 1px solid #2f628f;
  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: #2f628f;
}
.viewMenuMobile {
  display: none;
}
.onlyMyToggle .tgButtonWrapper {
  padding: 6px 12px;
}
.onlyMyToggle .tgButtonWrapper.active {
  color: #fff;
  background-color: #2f628f;
}
.MuiMenu-paper .viewMenuButton {
  color: #000;
}
.MuiMenu-paper .viewMenuButton:hover {
  color: #fff;
}
.tabs > div > span {
  background-color: #2f628f;
}
.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: #2f628f;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
}
.chartContainerHeaderLabel .finalValue {
  color: #2f628f;
  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 #2f628f;
  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: #2f628f;
}
.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: #2f628f;
  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 #2f628f;
}
.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 #2f628f;
  margin-bottom: 8px;
  padding: 4px;
}
.homeMainPanel a.button {
  padding: 0px 16px;
  height: 36px;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  background-color: #2f628f;
  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: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
  box-shadow: 6.31px 6.31px 6px #d8dadd, -6.31px -6.31px 13px #f5f5f5;
}
.homeCard.leftHalf {
  margin-right: 8px;
}
.homeCard.rightHalf {
  margin-left: 8px;
}
.homeCard.select {
  padding: 0;
  box-shadow: none;
}
.homeCard.select .neumorphic {
  border: none !important;
}
.homeCard.select .neumorphic .MuiInput-input {
  font-size: 1.3rem;
}
.homeCard.select .neumorphic .MuiInputLabel-shrink {
  font-size: 1.4rem;
}
.homeCard.select .MuiInputLabel-formControl {
  padding-top: 7px;
}
.homeCard.select .MuiInput-underline::before {
  content: none;
}
.homeCard.select .MuiSelect-select.MuiSelect-select {
  padding: 31px 24px 11px 16px !important;
}
.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: #2f628f;
  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;
}
.homeWidgetDiv {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.homeWidgetDiv > :first-child {
  width: 65%;
}
.homeWidgetDiv > :last-child {
  width: 33%;
}
.homeColumn {
  display: flex;
  flex-flow: column;
}
.homeColumn > div {
  margin-bottom: 16px;
}
.investButton {
  background: #e1fae4;
}
.homeCard.buttonWidget {
  padding: 0 !important;
  border: none;
  cursor: pointer;
}
.svgIconContainer {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 8px;
}
.widgetContactForm {
  display: flex;
  flex-flow: column nowrap;
  height: 160px;
  padding: 0 8px 8px 8px;
}
.widgetContactForm > textarea {
  resize: none;
  height: 120px;
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid transparent;
}
.widgetContactForm > textarea.error {
  border: 1px solid #e10051;
}
.bottomText {
  margin: 0;
}
.investButton .bottomText {
  color: #49df5f;
  font-weight: 600;
}
.chartMoneyLabel {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.innerColumn .widgetHeader {
  border-bottom: none;
  justify-content: center;
  font-size: 1.4rem;
}
.placeholderText {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  padding: 8px 8px 0px 8px;
}
.resultTable .textScaleDiv {
  text-align: right !important;
}
.createAccButton {
  background-color: #afcce5;
}
.createAccButton .bottomText {
  color: #2f628f;
  font-weight: 600;
}
.withdrawButton {
  background-color: #ffdeb8;
}
.withdrawButton .bottomText {
  color: #d17000;
  font-weight: 600;
}
.swiper-slide .lineChart {
  padding: 24px;
  display: flex;
  justify-content: center;
}
.swiper-slide .areaChartDynamic {
  padding: 24px;
}
.swiper-slide .barChart {
  padding: 24px;
}
.swiper-slide .detailPieChart {
  padding-top: 16px;
}
.whiteOnBlueCircle {
  color: #ecf0f3;
  background-color: #2f628f;
  padding: 4px;
  border-radius: 24px;
  margin-right: 8px;
  font-size: 2rem;
}
.widgetTd {
  text-align: center;
}
.widgetTd.right {
  text-align: right;
}
.widgetCardContainer {
  display: flex;
  flex-flow: row;
}
.widgetsMainPanel {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.widgetsMainPanel .switchWidgetTabContainer {
  display: flex;
  width: 100%;
  padding-bottom: 10px;
  overflow-x: scroll;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButton {
  border-radius: 16px !important;
  text-transform: none;
  min-width: 88px;
  max-width: 150px;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButton .MuiButton-label {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButton.selected {
  background-color: #3c7cb5 !important;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButtonCopy {
  display: flex;
  width: auto;
  background-color: #2f628f;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 6px 10px;
  min-width: 88px;
  max-width: 150px;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButtonCopy .tabLabel {
  font-size: 0.875rem;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButtonCopy .iconContainer {
  display: flex;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButtonCopy .iconContainer div {
  cursor: pointer;
}
.widgetsMainPanel .switchWidgetTabContainer .switchTabButtonCopy.selected {
  background-color: #3c7cb5 !important;
}
.tabNameInput {
  color: #fff;
  background-color: inherit !important;
}
.tabNameInput .MuiInput-underline:before {
  border-bottom: 1px solid #fff !important;
}
.tabNameInput .MuiInput-underline:after {
  border-bottom: 1px solid #fff !important;
}
.tabNameInput input {
  padding: 0px !important;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 300;
}
.chartProfitableContainer {
  height: 170px;
}
.chartProfitableCharts {
  display: flex;
  flex-flow: row;
  padding-top: 12px;
}
.chartProfitableCharts > div {
  width: 100%;
}
.chartProfitableCharts .chartProfitableChartsLabel {
  text-align: center;
  padding-top: 4px;
}
.yieldsBarCharts {
  display: flex;
  flex-flow: row wrap;
}
.yieldsBarChart {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 4px 4px;
}
.chartYieldDescContainerLabel,
.yieldsBarChartLabel {
  font-weight: 400;
}
.emptyWidget {
  max-width: 30em;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  background-color: #2f628f;
  padding: 1.125em 1.5em;
  font-size: 1.25em;
  border-radius: 1rem;
}
.emptyWidget::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  right: 1.5em;
  border: 0.75rem solid transparent;
  border-top: none;
  border-bottom-color: #2f628f;
}
.emptyWidget .emptyWidgetText {
  font-size: 1.2rem;
}
.emptyWidget.emptyWidgetLayout {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
}
.emptyWidget.emptyWidgetLayout::before {
  right: 50%;
  transform: translateX(50%);
}
.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: 96px;
  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;
}
.popup.shrink {
  margin: 2rem;
  margin-right: calc(384px + 2rem);
}
.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: #2f628f;
  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;
  display: flex;
  justify-content: center;
}
.popupFooter button.neumorphic {
  margin: 0px 16px 8px 16px !important;
}
.popupFooter button.neumorphic.lastButton {
  margin-bottom: 0px !important;
}
.popupCloseIcon {
  height: 21px;
  width: 21px;
  position: absolute;
  right: 8px;
  color: #fff;
  cursor: pointer;
}
#app .popupFooter > .formButton {
  background-color: #2f628f;
  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: #cee0ef;
}
.yieldSummaryLine {
  padding: 4px 0px;
}
.yieldSummaryLineHeader {
  font-size: 1.2rem;
  padding: 8px 0px 4px 0px;
  background-color: #cee0ef;
}
.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: #2f628f;
  cursor: pointer;
}
.downloadPopup .formButton {
  margin-right: 0px;
  background-color: #259621 !important;
  margin-bottom: 16px;
  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: #2f628f !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:hover {
  transform: scale(1);
}
.userAuthContentDiv {
  background-color: #fff;
  display: flex;
  flex-flow: column;
  padding: 16px;
  overflow: auto;
  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;
}
.popup .personalDocContainer {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.popup .personalDocContainer p {
  margin: 0px;
}
.popup .personalDocContainer .tgButtonPlacer {
  width: 100%;
  padding-bottom: 8px;
  height: 64px;
}
.popup .personalDocContainer .tgButtonContainer {
  width: 100%;
}
.popup .personalDocContainer .tgButtonWrapper {
  width: 100%;
}
.popup .personalDocContainer .tgButtonWrapper.active {
  background-color: #2f628f;
  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.middlePopup {
  max-width: 504px;
  width: 98%;
}
.popup.largePopup {
  max-width: 1004px;
  width: 98%;
}
.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;
}
.popup .productItem {
  margin-bottom: 0;
  margin-right: 0;
  width: 100%;
  max-width: 400px;
}
.popup.bondCatalog {
  margin-top: 5%;
  background: #fff;
  width: 90%;
  max-width: 1000px;
}
.popup.bondCatalog .productItem {
  width: 32%;
  margin: 0 0 24px 0;
}
.popup.bondCatalog .productItem .formButton {
  background-color: #259621 !important;
  padding: 16px 32px !important;
}
.popup.bondCatalog .productItem .productItemFooter {
  padding: 12px 0px;
}
.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: 808px;
}
.commissionTable {
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 8px;
}
.commissionTableAccount {
  width: 100%;
  margin-bottom: 8px;
}
.commissionTableAccountHeader {
  cursor: pointer;
  background-color: #2f628f;
  color: #fff;
  padding: 8px;
  display: flex;
  justify-content: space-between;
}
.commissionTableAccountHeaderButtons {
  display: flex;
  flex-flow: row;
}
.commissionTableAccountHeaderButtons > div {
  color: #fff;
  margin-left: 4px;
}
.commissionTableAccountContent {
  padding: 8px;
  border: 1px solid #ccc;
  border-top: none;
  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 6px 4px 6px;
}
.commissionTableUserCommission > div {
  width: 100%;
}
.commissionTableSaveButton {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.commissionTableSaveButton button {
  width: 100%;
  margin-right: 0px;
}
.commissionTableAddRow {
  padding: 4px;
}
.commissionTableAddRow .formButton {
  width: 100%;
  padding: 4px 0px !important;
}
.commissionTableUserCommissionDeleteContainer {
  max-width: 27px;
  align-items: flex-end;
  padding-bottom: 4px;
  justify-content: center;
  display: flex;
}
.commissionTableUserCommissionDeleteContainer > div {
  cursor: pointer;
}
.commissionTableAccount.error .commissionTableAccountHeader {
  background-color: #e10051;
}
.commissionTableUser.error .commissionTableUserHeader {
  background-color: #e10051;
  color: #fff;
}
.freeCommissionLabel {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3px;
  padding-right: 5px;
  font-weight: 400;
  color: #e10051;
}
.popupContent.listview .tableCell.lastCell {
  visibility: hidden;
}
.showDocumentPopup {
  height: 90vh;
}
.showDocumentPopup .popupContent {
  height: 100%;
}
.showDocumentPopup .popupContent .showDocumentLoaderContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.showDocumentPopup .popupContent .showDocumentContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
  margin: 0;
  border: 0;
  height: 100%;
}
.showDocumentPopup .popupContent .showDocumentIframe {
  border: none;
  margin: 0;
  width: 100%;
  height: 100%;
}
.publishRulesContainer {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 12px;
}
.publishRulesContainer .flexSameWidth {
  max-width: 240px;
  gap: 12px;
}
.publishRulesButtonContainer {
  display: flex;
  flex-flow: column;
  max-width: 400px;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.publishRulesBody {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 12px;
}
.publishRuleGroup {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 12px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.publishRuleGroup .tgButtonPlacer {
  min-height: 0;
  padding-right: 0;
  max-width: 360px;
}
.publishRuleGroup .tgButtonPlacer .tgButtonWrapper {
  background-color: #2f628f;
  color: #fff;
}
.publishRuleGroup .tgButtonPlacer .tgButtonSeparator {
  border: none;
}
.publishRuleLine {
  position: relative;
  display: flex;
  width: 100%;
}
.publishRuleLine .formSelectContainer {
  width: 32% !important;
}
.publishRuleLine .formInputContainer {
  display: flex;
  align-items: flex-end;
  width: 32% !important;
}
.ruleGroupDeleteButton {
  position: absolute;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  color: #e10051;
  top: 11px;
  right: 8px;
}
.ruleLineDeleteButton {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 20px;
}
.publishRuleTopContainer {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: center;
}
.publishRuleTopContainer .icon-info {
  cursor: pointer;
}
.publishRuleTopContainer .publishRulesOperatorDesc {
  position: absolute;
  right: -24px;
  top: 6px;
}
.publishRuleTopWrapper {
  width: 360px;
  position: relative;
}
.publishRuleTextContainer {
  display: flex;
  width: 32%;
}
.publishRuleTextContainer .formInputContainer {
  width: 70% !important;
}
.importTextContainer {
  display: flex;
  width: 100%;
  max-width: 300px;
  padding: 16px 0 16px 0;
  flex-flow: column;
  gap: 16px;
}
.importTextContainer textarea {
  min-height: 160px;
  max-height: 400px;
  resize: vertical;
}
.importTextContainer .importDescription {
  text-align: center;
}
.exportFormContainer {
  padding: 16px 0px;
  width: 320px;
}
.exportFormContainer .exportFormError {
  color: #e10051;
  font-size: 1.1rem;
  text-align: center;
}
.popupRealteImagesContainer {
  width: 100%;
  height: 70vh;
  display: flex;
  gap: 16px;
}
.popupRelateImagesHeader {
  padding: 4px 0px 2px 0px;
  margin-bottom: 6px;
  border-bottom: 2px solid #2f628f;
}
.popupRelateImagesContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}
.popupRelateImages {
  width: 70%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
.popupRelateImages .popupImageUpload {
  width: 100%;
  height: 140px;
  flex-shrink: 0;
  padding-bottom: 8px;
}
.popupRelateImages .popupImage {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.popupRelateImages .popupImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
}
.popupRelateImages .popupImage .popupImageSelectBorder {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0px solid #2f628f;
  z-index: 1;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.popupRelateImages .popupImage .popupImageSelectBorder > div {
  background-color: #2f628f;
  padding: 4px;
  color: #fff;
}
.popupRelateImages .popupImage:hover img {
  transform: scale(1.1);
}
.popupRelateImages .popupImage.select .popupImageSelectBorder {
  border: 6px solid #2f628f;
  opacity: 1;
}
.popupRelateSelectImages {
  width: 30%;
  height: 100%;
  display: flex;
  flex-flow: column;
}
.popupRelateSelectImages .popupImage {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.popupRelateSelectImages .popupImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popupRelateSelectImages .popupRelateSelectImagesContent {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.popupNewCostContent {
  background-color: #fff;
  padding: 1rem;
  width: 1004px;
}
.popupNewCostContent.init {
  width: 32rem;
  height: 16rem;
  display: flex;
  flex-flow: column;
}
.popupNewCostContent.init .messageAddresserContainer.attachment {
  height: 100%;
}
.popupNewCostContent.init .allowedFiles {
  color: #a2a2a2;
  text-align: center;
}
.popupNewCostContent .popupNewCostContainer {
  display: flex;
  flex-flow: row;
  gap: 1rem;
}
.popupNewCostContent .popupNewCostContainer .loaderContainer {
  min-width: 600px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popupNewCostContent .popupNewCostContainer .pdfPreviewContainer {
  position: relative;
}
.popupNewCostContent .popupNewCostContainer .pdfPreviewContainer .btnDelete {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}
.popupNewCostContent .popupNewCostContainer .pdfPreviewContainer .pdfPreviewUpload {
  width: 600px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.popupNewCostContent .popupNewCostContainer .pdfPreviewContainer .pdfPreviewUpload .messageAddresserContainer.attachment {
  height: 100%;
}
.popupNewCostContent .popupNewCostContainer .pdfPreviewContainer .pdfPreviewUpload .allowedFiles {
  color: #a2a2a2;
  text-align: center;
}
.popupNewCostContent .popupNewCostContainer .popupNewCostForm {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.popupNewCostContent .popupNewCostContainer .popupNewCostForm .popupNewCostFormSubmit {
  display: flex;
  justify-content: flex-end;
}
.popupNewCostContent .popupNewCostContainer .popupNewCostForm .MuiOutlinedInput-input {
  padding: 8px 12px;
}
.syncPaymentLinesMenu {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0px 16px 8px;
}
.syncPaymentLines {
  display: flex;
  flex-flow: column;
  gap: 8px;
  overflow-y: scroll;
}
.syncPaymentLine {
  display: flex;
  flex-flow: row;
  align-items: flex-end;
  padding: 8px 8px 12px 0px;
  width: 100%;
  gap: 8px;
  border-radius: 12px;
  border-bottom: 1px solid #CCC;
  background-color: rgba(0, 0, 0, 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;
}
.syncPaymentLine > div {
  padding: 0px 8px;
}
.syncPaymentLine .syncPaymentLineName {
  white-space: nowrap;
}
.syncPaymentLine .syncPaymentLineSelect {
  width: 100%;
  min-width: 200px;
}
.syncPaymentLine .formButton.neumorphic {
  box-shadow: none !important;
}
.syncPaymentLines .syncPaymentLine:last-child {
  border-bottom: none;
}
.syncPaymentLine.green {
  background-color: #9de99a;
}
.syncPaymentLine.red {
  background-color: #ffaecb;
}
.syncPaymentLine.orange {
  background-color: #ffd29e;
}
#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;
  color: #000;
}
.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;
}
.tableCell.hasColoredField {
  padding: 4px 8px;
}
.tableCell.hasColoredField .tableCellContent {
  width: 100%;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
}
.tableCell.downloadLine .tableCellContent {
  display: flex;
}
.tableCell.downloadLine .tableCellContent .icon-download {
  padding-right: 6px;
  font-size: 1.2rem;
  color: #555;
  cursor: pointer;
}
.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%;
}
.tableTr .translateContainer {
  display: flex;
  flex-flow: row;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
}
.tableTr .translateContainer div {
  display: flex;
  max-width: 42px;
  min-width: 42px;
}
.tableTr .translateContainer .icon-eye {
  cursor: pointer;
}
.tableTr:hover .translateContainer {
  transform: translate(-47px);
}
.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: 28px;
  display: flex;
}
.headerSort {
  width: 15px;
  height: 15px;
}
.lastCell {
  max-width: 50px;
  min-width: 35px;
  display: flex;
  justify-content: center;
}
.lastCell .icon-close {
  cursor: pointer;
}
.tableShowIcon {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #2f628f;
  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: #2f628f;
  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 .dateRangeFilter {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.dateRangeFilterContainer {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.dateRangeFilterDateSelect {
  display: flex;
  flex-flow: row;
  gap: 8px;
  align-items: center;
}
.dateRangeFilter {
  height: 100%;
}
.dateRangeFilter .MuiFormControl-root .MuiFormLabel-root.Mui-disabled {
  color: rgba(0, 0, 0, 0.54);
}
.dateRangeFilter .MuiFormControl-root .MuiInput-underline.Mui-disabled:before {
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  border-bottom-style: solid;
}
.dateRangeFilter .MuiFormControl-root .MuiInputBase-root.Mui-disabled {
  color: black;
}
.dateRangeFilter .MuiFormControl-root input {
  cursor: pointer;
}
.moreOptionChild {
  width: 100%;
  height: 100%;
}
.listViewHeaderFieldEdit .formSelect .MuiInput-input {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.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: #2f628f;
  background-color: #F0F0F0;
}
.settingForm .cardCategory {
  margin-bottom: 8px;
}
.passChangeContainer {
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.passChangeContainer .resetPassFooter {
  display: flex;
  justify-content: flex-end;
}
.passChangeContainer .resetPassFooter .passDoNotMatchError {
  color: #e10051;
}
.passChangeContainer .resetPassFooter:has( > :nth-child(2):last-child) {
  justify-content: space-between;
}
.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: auto;
  flex-flow: column;
}
.langCategoryContainer {
  margin-bottom: 8px;
}
.langCategoryHeader {
  width: 100%;
  padding: 8px;
  background-color: #2f628f;
  color: #FFF;
  cursor: pointer;
}
.langCategoryContent {
  padding: 4px;
}
.settingLangGroupsContainer {
  overflow: auto;
}
.langCategoryAddRow {
  display: flex;
}
.langCategoryAddRow .formButton {
  white-space: nowrap;
}
.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;
}
.errorMessageContainer {
  color: #e10051;
}
.settingContent.language .tgButtonPlacer {
  min-height: 56px;
}
/*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;
}
/*NON-WEBKIT*/
textarea {
  scrollbar-color: rgba(136, 136, 136, 0.31) rgba(241, 241, 241, 0);
  scrollbar-width: thin;
}
/* width */
textarea::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
textarea::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
textarea::-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 */
.dailyWrapper::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.dailyWrapper::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.dailyWrapper::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.dailyTimeLineWrapper::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.dailyTimeLineWrapper::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.dailyTimeLineWrapper::-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;
}
/* width */
.bondCatalogContainer::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.bondCatalogContainer::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.bondCatalogContainer::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.widgetLibraryWidgets::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.widgetLibraryWidgets::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.widgetLibraryWidgets::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.sidebarInner::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.sidebarInner::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.sidebarInner::-webkit-scrollbar-thumb {
  background: #88888850;
  opacity: 0.2;
  border-radius: 6px;
}
/* width */
.popupContent::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
/* Track */
.popupContent::-webkit-scrollbar-track {
  background: #f1f1f100;
}
/* Handle */
.popupContent::-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.hidden {
  height: 0px;
}
#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: #2f628f;
}
#app .formInput.focus > label {
  color: #2f628f;
}
#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!important;
}
#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: #2f628f;
}
#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;
  width: 40px;
  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 .MuiInputAdornment-positionEnd {
  margin-left: 3px;
}
#app .formInputContainer.neumorphic {
  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;
}
#app .formInputContainer.neumorphic .prependIconContainer {
  top: 16px;
}
#app .formInputContainer.neumorphic .MuiInputLabel-shrink {
  transform: translate(8px, 4px) scale(0.75);
}
#app .formInputContainer.neumorphic .prepenIconActive .MuiInputLabel-shrink {
  transform: translate(40px, 4px) scale(0.75);
}
#app .formInputContainer.neumorphic input {
  padding: 10px 0px 10px 12px;
}
#app .formInputContainer.neumorphic .prependIconContainer {
  top: 19px;
}
#app .formInputContainer.neumorphic .MuiInputLabel-formControl {
  padding-left: 12px;
}
#app .formInputContainer.neumorphic.smsKey {
  border: none;
  box-shadow: none;
}
#app .formInputContainer.neumorphic.smsKey input {
  padding: 0;
}
#app .formInputContainer.neumorphic.error {
  border: 1px solid #e10051;
  background-color: #ffe1ec;
}
#app .formButton,
.MuiPaper-root .formButton {
  background-color: #2f628f;
  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,
.MuiPaper-root .formButton.large {
  padding: 10px 16px;
  font-size: 1.1rem;
  height: 52px !important;
}
#app .formButton.inactive,
.MuiPaper-root .formButton.inactive {
  opacity: 0.5;
}
#app .formButton.active,
.MuiPaper-root .formButton.active {
  opacity: 1;
}
#app .formButton.neumorphic,
.MuiPaper-root .formButton.neumorphic {
  box-shadow: 4px 4px 8px #cfd1d4, -4px -4px 8px #ffffff;
  border-radius: 8px;
  height: 36px;
  opacity: 1;
  margin-right: 0;
  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,
.MuiPaper-root .formButton.neumorphic.disable {
  opacity: 0.5;
}
#app .formButton:hover,
.MuiPaper-root .formButton:hover {
  background-color: #356fa2;
  color: #FFF;
}
#app .formButton.disabled,
.MuiPaper-root .formButton.disabled {
  background-color: #676767;
}
#app .formButton.disabled:hover,
.MuiPaper-root .formButton.disabled:hover {
  background-color: #676767;
}
#app .formButton.red,
.MuiPaper-root .formButton.red {
  background-color: #e10051;
}
#app .formButton.red:hover,
.MuiPaper-root .formButton.red:hover {
  background-color: #fb005a;
}
#app .formButton.green,
.MuiPaper-root .formButton.green {
  background-color: #259621;
}
#app .formButton.green:hover,
.MuiPaper-root .formButton.green:hover {
  background-color: #2aab26;
}
#app .formButton:active,
.MuiPaper-root .formButton:active {
  box-shadow: none;
}
#app .formButton .icon,
.MuiPaper-root .formButton .icon,
#app .acmButton .fas,
.MuiPaper-root .acmButton .fas,
#app .acmButton .far,
.MuiPaper-root .acmButton .far {
  font-size: 20px;
}
#app .formButton .icon,
.MuiPaper-root .formButton .icon {
  margin-right: 5px;
}
#app .formButton .iconMore,
.MuiPaper-root .formButton .iconMore {
  margin-right: 10px;
}
#app .buttonIcon,
.MuiPaper-root .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;
  font-family: inherit;
}
.formTextarea.error {
  outline: 2px solid #e10051;
  border: none;
}
.formTextarea:focus {
  outline: 2px solid #2f628f;
}
.formTextarea.error:focus {
  outline: 2px solid #e10051;
}
#app .formSelectContainer {
  width: 100%;
}
#app .formSelect {
  width: 100%;
}
#app .formSelectContainer > div::after {
  border-bottom-color: #2f628f;
}
#app .formSelectContainer.focus > label {
  color: #2f628f;
}
#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;
}
.formSelectContainer.outlined {
  position: relative;
}
.formSelectContainer.outlined .MuiSelect-select {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.formSelectContainer.outlined .MuiSelect-select:focus,
.formSelectContainer.outlined .MuiSelect-select:hover {
  border: 1px solid #000000;
  background-color: #fff;
}
.formSelectContainer.outlined label + .MuiInput-formControl {
  margin-top: 0px;
}
.formSelectContainer.outlined label {
  position: absolute;
  top: -16px;
  margin-left: 12px;
}
.formSelectContainer.outlined .MuiSelect-root {
  padding-left: 8px;
}
.formSelectContainer.outlined label.Mui-focused,
.formSelectContainer.outlined label.MuiInputLabel-shrink {
  position: absolute;
  top: -8px;
  font-weight: 600;
  color: #0000008f;
  background-color: #ffffff;
  opacity: 1;
  padding: 0px 4px;
  margin-left: 8px;
  z-index: 2;
}
.formSelectContainer.outlined.error .MuiSelect-select {
  border: 1px solid red;
}
.formSelectContainer.outlined.error label.Mui-focused,
.formSelectContainer.outlined.error label.MuiInputLabel-shrink {
  color: red;
}
#app .formCheckBox > span:first-child {
  color: #2f628f;
}
#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: #2f628f !important;
}
.MuiPickersToolbar-toolbar {
  background-color: #2f628f !important;
}
.MuiInput-underline:after {
  border-bottom-color: #2f628f !important;
}
.formDate .MuiInput-underline.Mui-error:after {
  transform: scaleX(1);
  border-bottom-color: #f44336 !important;
}
.MuiTabs-root.MuiPickerDTTabs-tabs {
  background-color: #2f628f !important;
}
.MuiPickersClockPointer-pointer {
  background-color: #2f628f !important;
}
.MuiPickersClock-pin {
  background-color: #2f628f !important;
}
.MuiButton-textPrimary {
  color: #2f628f !important;
}
.MuiPickersClockPointer-noPoint {
  background-color: #2f628f !important;
}
.MuiPickersClockPointer-thumb {
  border-color: #2f628f !important;
}
.MuiPickerDTTabs-tabs .MuiTabs-indicator {
  background-color: #81aed6 !important;
}
.formInputContainer.outlined {
  position: relative;
}
.formInputContainer.outlined .formDate div.MuiInputBase-root {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.formInputContainer.outlined .formDate div.MuiInputBase-root:hover,
.formInputContainer.outlined .formDate div.MuiInputBase-root.Mui-focused {
  border: 1px solid #000000;
  background-color: #fff;
}
.formInputContainer.outlined .formDate label + .MuiInput-formControl {
  margin-top: 0px;
}
.formInputContainer.outlined .formDate .MuiInput-input {
  padding-left: 8px;
}
.formInputContainer.outlined .formDate label {
  position: absolute;
  top: -16px;
  margin-left: 12px;
}
.formInputContainer.outlined .formDate label.Mui-focused,
.formInputContainer.outlined .formDate label.MuiInputLabel-shrink {
  position: absolute;
  top: -8px;
  font-weight: 600;
  color: #0000008f;
  background-color: #ffffff;
  opacity: 1;
  padding: 0px 4px;
  margin-left: 8px;
  z-index: 2;
}
.formInputContainer.outlined.error .formDate div.MuiInputBase-root {
  border: 1px solid red;
}
.formInputContainer.outlined.error label {
  color: red;
}
.selectMonth {
  position: relative;
  width: 100%;
}
.selectMonth .MuiFormControl-root {
  width: 100%;
}
.selectMonthDialog {
  position: absolute;
  padding: 1rem;
  z-index: 5;
  background-color: #fff;
  box-shadow: 6.31px 5.31px 6px #d8dadd, -6.31px -5.31px 13px #f5f5f5;
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.selectMonthDialog .MuiFormControl-root {
  width: 100%;
}
#app .formTabs > div > span {
  background-color: #2f628f;
}
#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: #2f628f;
  padding: 0px;
}
.contactForm {
  padding: 0px 16px;
  padding-bottom: 16px;
  max-width: 360px;
  background-color: #FFF;
  overflow: auto;
}
.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 #2f628f;
  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: #2f628f;
  border-bottom: 1px solid #2f628f;
}
.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: #2f628f;
  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: #bbd3e9;
}
.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: #2f628f;
}
.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: #bbd3e9 !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: 0.75;
  z-index: 100002 !important;
}
div#driver-highlighted-element-stage,
div#driver-page-overlay {
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.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: #2f628f;
  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: #2f628f;
  text-shadow: none;
  border: none;
}
div#driver-popover-item .driver-popover-footer button.driver-disabled {
  color: #FFF;
  background-color: #11314d;
}
.helperContainer {
  position: fixed;
  bottom: 49px;
  right: 8px;
  z-index: 9;
}
.helperOpenButton {
  width: 45px;
  height: 45px;
  border-radius: 25px;
  background-color: #2f628f;
  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: #2f628f;
  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: #356fa2;
  -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: #2f628f !important;
}
#app .pbStepper .MuiStepIcon-completed {
  color: #259621;
}
#app .pbStepper .MuiStepConnector-active > span {
  border-color: #2f628f;
}
.pbFormContainer {
  min-height: 200px;
  width: 100%;
  padding: 4px;
}
.pbForm {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.pbFormHeader {
  width: 100%;
  border-bottom: 2px solid #2f628f;
  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: #a8c7e2;
}
.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 #2f628f;
  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 #2f628f;
  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: #2f628f;
}
.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: #a8c7e2;
}
.pbFormNewLine.disabled:hover {
  cursor: default;
  background-color: transparent;
}
.pbFormNewLine h3 {
  margin: 0px;
  border-bottom: 1px solid #2f628f;
  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: #2f628f;
  cursor: pointer;
  font-size: 1rem;
}
.pbFormNewFormButton {
  color: #2f628f;
  cursor: pointer;
  font-size: 1rem;
}
.pbFormAuthQRbutton {
  font-weight: 400;
  color: #3e82be;
  cursor: pointer;
  font-size: 0.9rem;
}
.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: #2f628f;
  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: #2f628f;
}
.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: #2f628f;
  font-size: 1.5rem;
  padding-top: 8px;
}
.pbFormSteps .pbFormNewLine {
  flex-flow: row !important;
  align-items: center !important;
  border-bottom: 1px solid #ccc !important;
}
.pbFormNewLine .textButton {
  color: #2f628f;
  cursor: pointer;
}
.progressBar .MuiLinearProgress-barColorPrimary {
  background-color: #2f628f;
}
.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: #a8c7e2;
  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: #2f628f;
  color: #fff;
}
.accordionLineHeaderNumber {
  background-color: #2f628f;
  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: #2f628f;
}
.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;
}
.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 #2f628f;
  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: #2f628f;
}
.widgetIconTwo {
  justify-content: space-around;
  padding: 0px 2px;
}
.widgetIconOne:before {
  content: '';
  width: 90px;
  height: 14px;
  background-color: #2f628f;
}
.widgetIconTwo:before {
  content: '';
  width: 42px;
  height: 14px;
  background-color: #2f628f;
}
.widgetIconTwo:after {
  content: '';
  width: 42px;
  height: 14px;
  background-color: #2f628f;
}
.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;
}
.widget.empty {
  height: 90%;
  transition: 250ms;
}
.widget.empty:hover {
  background-color: #f4f8fc;
  border-color: #f4f8fc;
}
.widgetContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  container: widgetContainer / inline-size;
}
.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 {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  text-align: center;
  opacity: 0.2;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.widgetsLibrary {
  width: 100%;
  max-width: 800px;
  height: auto;
  height: 500px;
  overflow: auto;
  display: flex;
  flex-flow: row;
  padding: 12px;
}
.widgetLibraryCategories {
  background-color: #2f628f;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  width: 184px;
}
.widgetsLibrary .formInputContainer {
  padding: 0 12px;
}
.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: #f4f8fc;
}
.widgetsLibrary > .widgetsLibraryItem:last-child {
  border-bottom: none;
}
.widgetsLibraryItem.widgetCategory {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #fff;
  background-color: #2f628f;
  border-bottom: none;
  flex-flow: row;
  align-items: center;
}
.widgetsLibraryItem.widgetCategory:hover {
  background-color: #81aed6;
}
.widgetsLibraryItem.widgetCategory.active {
  background-color: #81aed6;
  box-shadow: 6px 6px 12px #28537a, -6px -6px 12px #3671a4;
}
.widgetLibraryWidgets {
  width: 100%;
  max-width: 592px;
  min-width: 592px;
  height: auto;
  max-height: 500px;
  overflow: auto;
  display: flex;
  flex-flow: column;
  padding: 0 8px 0 12px;
}
.widgetHeader {
  width: 100%;
  border-bottom: 1px solid #2f628f;
  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;
}
.widgetContent table thead td {
  font-weight: 400;
  padding: 0px 4px;
}
.widgetContent table tbody td {
  padding: 6px 4px;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.widgetContent table td.red {
  color: #e10051;
  font-weight: 400;
}
.widgetContent table td.green {
  color: #259621;
  font-weight: 400;
}
.widgetContent table tbody tr > td:last-child {
  border-right: none;
}
.widgetContent table tbody tr:last-child > td {
  border-bottom: none;
}
.widgetContent table .nowrapTd {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 0;
}
.widgetContent table .nowrapTd .nowrapTdContent {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 6px;
}
.widgetContent table .nowrapTd .nowrapTdContent .icon-eye {
  cursor: pointer;
  opacity: 0.4;
  font-size: 1.4rem;
}
.widgetContent table .nowrapTd.amountTd {
  text-align: right;
}
.nowrapTdContent .textOverflowTd {
  overflow: hidden;
  text-overflow: ellipsis;
}
.widgetContent table .nowrapTd.hasColored {
  padding: 3px 4px;
  max-width: none;
  width: 168px;
}
.widgetContent table .nowrapTd.hasColored div {
  width: 100%;
  padding: 3px 0px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
.widgetContent table .total td {
  font-weight: 400;
  font-size: 1.2rem;
}
.widgetContent table td a {
  color: #2f628f;
  font-weight: 400;
}
.widgetContent table .buttonContainer button {
  width: 100%;
  box-shadow: none !important;
  padding: 8px 6px !important;
}
.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: #2f628f;
  height: 16px;
}
.widgetProgressBarHeader {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.widgetProgressBarHeader span {
  font-weight: 600;
  color: #2f628f;
}
.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: #2f628f;
  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 #2f628f;
}
.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;
}
.investedContainer {
  display: flex;
  width: 100%;
  padding: 24px 0;
  justify-content: space-around;
}
.investedLine {
  display: flex;
  flex-flow: column;
  text-align: center;
}
.investedLineValue {
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: center;
  font-size: 1.2rem;
}
.investedLineValue span {
  color: #2f628f;
  font-weight: 400;
}
.investedLineLabel {
  font-size: 1.2rem;
}
.TableMainLine {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
}
.TableMainLine.hidden {
  display: none;
}
.TableMainLine.header {
  max-height: 32px;
  flex-flow: row !important;
}
.TableRestLine {
  display: flex;
  flex-flow: column;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
}
.TableNameLine {
  display: flex;
  align-items: center;
  max-width: 40%;
  min-width: 40%;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 8px 0 8px 8px;
}
.TableNameLine > a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}
.TableNameLine > a:visited {
  color: #000;
}
.TableNameLine.header {
  font-weight: 400;
  border: none;
  height: 32px;
  background: none !important;
}
.TableNameLine.product {
  min-width: 50%;
  max-width: 50%;
}
.TableNameLine.invested {
  min-width: 50%;
  max-width: 50%;
  justify-content: flex-end;
  text-align: right;
  padding: 8px 8px 8px 0;
  border-right: none;
}
.TableNameLine.structure {
  min-width: 20%;
  max-width: 20%;
  background-color: #cee0ef;
  border: none;
}
.TableNameLine.person {
  min-width: 30%;
  max-width: 30%;
}
.TableNameLine.user {
  background-color: #ebebeb;
  border: none;
}
.tableTotalLine {
  padding: 8px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #21273a;
  font-weight: 400;
}
.tableTotalLine span {
  font-weight: 400;
}
.tableTotalLine.structure {
  background-color: #cee0ef;
}
.tableTotalLine.user {
  background-color: #ebebeb;
}
.TableFooter {
  padding: 8px;
  display: flex;
  font-size: 1.2rem;
  justify-content: space-between;
}
.TableFooter .TableFooterName {
  display: flex;
  align-items: center;
  font-weight: 400;
}
.TableFooter .TableFooterValues {
  display: flex;
  flex-flow: column;
}
.TableFooter .TableFooterValues span {
  font-weight: 400;
  text-align: right;
}
.structureCompareBody {
  width: 100%;
}
.structureCompareBody .swiper {
  padding-bottom: 16px;
}
.structureCompareInTimeChart {
  height: 360px;
}
.structureCompareInTimeLegend {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 8px 0px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #5B5B5B;
}
.structureCompareSlide {
  width: 100%;
}
.structureCompareCurrencyHeader {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #2f628f;
}
.CrowdfundingInfoHeader {
  display: flex;
  align-items: center;
}
.CrowdfundingInfoHeader a {
  color: #000 !important;
  font-size: 1.3rem;
  padding-right: 4px;
}
.widget33 {
  width: 33.3%;
}
.widget40 {
  width: 40%;
}
.widget50 {
  width: 50%;
}
.widget60 {
  width: 60%;
}
.widget100 {
  width: 100%;
}
.widgetOptions {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 12px;
  padding-bottom: 8px;
}
.widgetOptions .widgetOptionLine {
  display: flex;
  width: 100%;
}
.widgetOptions .widgetOptionLine .tgButtonPlacer {
  min-height: auto;
  padding-left: 0px;
  padding-bottom: 8px;
}
.widgetOptions .widgetOptionLine .tgButtonWrapper.active {
  background-color: #2f628f;
  color: #fff;
}
.widgetBankAccBalance {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.5rem;
  padding-top: 8px;
  padding-bottom: 16px;
}
.nowrapTdContent.header {
  min-height: 21px;
  cursor: pointer;
  font-weight: 400;
}
.widgetTripleSelect {
  display: flex;
  flex-flow: row;
  width: 100%;
}
#app div.widgetDateButton.flexSection > button:nth-child(3) {
  margin-right: 0;
}
.widgetDateButton {
  margin-top: 4px;
}
.interestContainer {
  width: 120px;
  height: 220px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.interestValues {
  display: flex;
  flex-flow: row;
}
.investedLine.interestValue {
  width: 100%;
  height: 33%;
  border-bottom: #bbd3e9 solid 1px;
  padding-bottom: 8px;
}
.investedLine.interestValue:last-child {
  border-bottom: none;
  padding: 0;
}
.widgetTableWrapper {
  width: 100%;
}
.widgetTotalLineContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px;
}
.widgetTotalLineContainer .widgetTotalLineHeader {
  font-weight: 400;
}
.widgetTotalLineContainer .widgetTotalLines {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.widgetTotalLineContainer .widgetTotalLines .widgetTotalLine {
  font-size: 1.2rem;
}
@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;
  }
  .widget33,
  .widget40,
  .widget50,
  .widget60 {
    width: 100% !important;
  }
}
@container widgetContainer (width < 560px) {
  .widgetLine {
    flex-flow: column !important;
  }
  .widgetLine .tgButtonPlacer {
    min-height: 56px;
    padding-left: 0;
  }
}
@container widgetContainer (width < 440px) {
  .investCalcTable {
    display: none;
  }
}
.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: #2f628f;
  font-weight: 400;
  margin-left: 16px;
  margin-right: 16px;
  border-bottom: 2px solid #2f628f;
  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: #2f628f;
  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: #2f628f;
  font-size: 1.7rem;
  font-weight: 400;
  padding-bottom: 8px;
  text-align: center;
}
.companyBondLine {
  display: flex;
  flex-flow: column;
}
.companyBondHeader {
  text-align: center;
  font-size: 2rem;
  color: #2f628f;
  margin: 1% 0;
}
.companyBondCardsContainer {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 2%;
}
.companyBondCardsContainer > .productItem {
  margin-right: 2%!important;
}
.companyBondCardsContainer > .productItem:nth-child(3) {
  margin-right: 0px!important;
}
.bondCatalogContainer {
  overflow-y: auto;
}
.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;
}
.crowdfundingContainer {
  display: flex;
  flex-flow: column;
  align-self: flex-start;
  width: 100%;
}
.popupContent.crowdfundingCatalog {
  overflow-y: scroll;
}
.crowdfundingImagesContainer {
  display: flex;
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 300px;
  border-radius: 16px;
  overflow: hidden;
}
.crowdfundingImagesContainer .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.crowdfundingImagesContainer .projectImage {
  min-width: 100%;
  min-height: 100%;
}
.crowdfundingOuterContainer {
  display: flex;
  width: 100%;
  padding: 0 16px;
}
.crowdfundingLineContainer {
  display: flex;
  width: 100%;
  padding: 24px 0;
  border-bottom: 2px solid #cccccc73;
}
.crowdfundingInfoContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
  padding: 16px;
  gap: 16px;
}
.crowdfundingTopContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.crowdfundingBottomContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.crowdfundingPercentDoneLine {
  height: 16px;
  background-color: #2f628f;
  border-radius: 200px;
  width: 0;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -ms-transition-duration: 1s;
}
.crowdfundingPercentDoneContainer {
  display: flex;
  width: 100%;
  height: 18px;
  border: 1px solid #6666;
  border-radius: 200px;
}
.crowdfundingName {
  font-size: 2rem;
  color: #21273a;
  padding-right: 6px;
}
.crowdfundingDesc {
  color: #21273a;
  text-align: justify;
}
.crowdfundingDownloadContainer {
  display: flex;
  width: 100%;
}
.crowdfundingDownloadButton {
  border-radius: 1000px !important;
}
.crowdfundingDownloadButton .MuiButton-label {
  max-width: 140px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.crowdfundingFinanceContainer {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.crowdfundingInfoValue {
  font-size: 1.5rem;
  color: #2f628f;
  font-weight: 500;
}
.crowdfundingBottomLineContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
  padding: 0 16px;
}
.crowdfundingPercent {
  color: #2f628f;
  padding-left: 4px;
  font-weight: 500;
}
.crowdfundingRaisedLine {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 4px;
}
.crowdfundingRaisedLine span {
  font-weight: 400;
}
.crowdfundingLineWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.crowdfundingInfoDelimiter {
  width: 1px;
  border: 1px solid #cccccc73;
}
.crowdfundingNameContainer {
  display: flex;
  align-items: center;
}
.crowdfundingRating {
  display: flex;
  color: #ffe802;
}
.crowdfundingCheckoutContainer {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 400px;
  min-width: 400px;
  justify-content: center;
  align-items: center;
}
.crowdfundingCheckoutContainer .icon-close {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
.crowdfundingCheckoutImages {
  display: flex;
  height: 100%;
  max-height: 300px;
  max-width: 400px;
  width: 100%;
}
.crowdfundingCheckoutImages .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.crowdfundingCheckoutImages .projectImage {
  min-width: 100%;
  min-height: 100%;
}
.crowdfundingCheckoutInfo {
  padding: 16px;
  display: flex;
  text-align: center;
  gap: 16px;
  width: 100%;
}
.crowdfundingAmountLine .formInputContainer.neumorphic .MuiInputLabel-formControl {
  padding-left: 4px !important;
}
.crowdfundingAmountLine .formInputContainer.neumorphic .MuiInputLabel-shrink {
  transform: translate(8px, 6px) scale(0.75) !important;
}
.crowdfundingAmountLine .MuiFormLabel-root {
  font-size: 1.4rem;
}
.crowdfundingAmountLine .MuiInput-formControl {
  font-size: 1.4rem;
}
.crowdfundingAmountLine .MuiTypography-root {
  font-size: 1.4rem;
}
.crowdfundingCheckoutColumn {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 12px;
}
.crowdfundingCheckoutBottom {
  max-width: 336px;
  padding-bottom: 12px;
}
.crowdfundingAmountLine {
  padding: 8px 32px;
}
.crowdfundingErrorMsg {
  text-align: center;
  color: #e10051;
}
.crowdfundingCheckoutName {
  font-size: 1.5rem;
  color: #2f628f;
  padding-top: 8px;
  font-weight: 500;
}
.crowdfundingInvestButtonContainer .icon-check {
  margin-bottom: 3px;
  margin-right: 2px;
}
.crowdfundingAmountInput .MuiInputBase-formControl {
  justify-content: center;
}
.crowdfundingAmountInput .MuiInput-input {
  text-align: right;
}
.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: #a8c7e2;
}
.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: #2f628f;
}
.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;
}
.calendarContainer {
  min-height: 620px;
  container: calendarContainer / inline-size;
}
.calendarSeeStructureContainer .tgButtonPlacer {
  min-height: 0;
  width: 100%;
  justify-content: flex-end;
}
.calendarSeeStructureContainer .tgButtonPlacer .tgButtonContainer {
  box-shadow: none;
}
.calendarSeeStructureContainer .tgButtonPlacer .tgButtonSeparator {
  display: none;
}
.calendarSeeStructureContainer .tgButtonPlacer .tgButtonWrapper {
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  color: #21273a;
  background-color: #ecf0f3;
  opacity: 1;
}
.calendarSeeStructureContainer .tgButtonPlacer .tgButtonWrapper.active {
  color: #F0F0F0;
  background-color: #2f628f;
}
.calendarSeeStructureContainer .tgButtonPlacer .tgButtonWrapper:hover {
  background-color: #4889c3;
  color: #F0F0F0;
}
.calendarEventDescBg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
}
.calendarEventDesc {
  position: absolute;
  width: 400px;
  min-height: 200x;
  z-index: 5;
  box-shadow: 0px 0px 5px 4px #b2b0b0a8;
  border-radius: 8px;
}
.calendarEventDesc.birthdays {
  min-height: 200px;
}
.calendarEventDesc.birthdays .calendarDescBody {
  min-height: 168px;
}
.calendarEventDesc.load {
  min-height: 200px;
}
.calendarEventDesc.load .calendarDescBody {
  min-height: 168px;
}
.calendarDescHeader {
  display: flex;
  width: 100%;
  height: 48px;
  background: #2f628f;
  border-radius: 8px 8px 0 0;
  padding: 12px;
}
.calendarDescHeaderContent {
  width: 100%;
  display: flex;
  font-size: 1.5rem;
  font-weight: 400;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  color: #fff;
}
.calendarDescHeaderContent .calendarEventName {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.calendarDescBody {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  min-height: 200px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  padding: 4px 8px;
}
.calendarDescLine {
  display: flex;
  flex-flow: row nowrap;
  white-space: nowrap;
  margin: 12px 0;
  justify-content: space-evenly;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 6px;
}
.calendarDescLine.description {
  margin: 12px 0;
  justify-content: flex-start;
  border-bottom: none;
}
.calendarDescLine.description .calendarDescItem {
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.calendarDescLine.description .calendarDescLabel {
  width: 100%;
}
.calendarDescLine.description .calendarDescValue {
  width: 100%;
  overflow: auto;
  white-space: normal;
}
.calendarDescLine.description .calendarDescValue p {
  margin: 0;
}
.calendarDescItem {
  width: 100%;
  display: flex;
  align-items: center;
}
.calendarDescLabel {
  width: 50%;
}
.calendarDescLabel span {
  font-weight: 500;
}
.calendarDescValue {
  width: 50%;
}
.calendarDescButtonContainer {
  display: flex;
  justify-content: center;
  padding: 8px 0px;
}
.calendarDescButton {
  width: 75%;
  height: 38px !important;
}
.rbc-btn {
  color: inherit;
  font: inherit;
  margin: 0;
}
button.rbc-btn {
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled].rbc-btn {
  cursor: not-allowed;
}
button.rbc-input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.rbc-calendar {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.rbc-calendar *,
.rbc-calendar *:before,
.rbc-calendar *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.rbc-abs-full,
.rbc-row-bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.rbc-ellipsis,
.rbc-show-more,
.rbc-row-segment .rbc-event-content,
.rbc-event-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rbc-rtl {
  direction: rtl;
}
.rbc-off-range {
  color: #999999;
}
.rbc-off-range-bg {
  background: #e6e6e6;
}
.rbc-time-view .rbc-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.rbc-header {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 1.2rem !important;
  min-height: 0;
  border-bottom: 1px solid #ddd;
}
.rbc-header + .rbc-header {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-header + .rbc-header {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-header > a,
.rbc-header > a:active,
.rbc-header > a:visited {
  color: inherit;
  text-decoration: none;
}
.rbc-button-link {
  color: inherit;
  background: none;
  margin: 0;
  padding: 4px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.rbc-row-content {
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  z-index: 4;
}
.rbc-row-content-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.rbc-row-content-scrollable .rbc-row-content-scroll-container {
  height: 100%;
  overflow-y: scroll;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.rbc-row-content-scrollable .rbc-row-content-scroll-container::-webkit-scrollbar {
  display: none;
}
.rbc-today {
  background-color: #eaf6ff;
}
.rbc-toolbar {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0px;
  font-size: 16px;
}
.rbc-toolbar > :first-child {
  width: 33%;
  order: 1;
  justify-content: start;
}
.rbc-toolbar > :nth-child(2) {
  order: 2;
  width: 33%;
}
.rbc-toolbar > :last-child {
  order: 3;
  width: 33%;
  justify-content: end;
  border-radius: 8px;
}
.rbc-toolbar > :first-child > :first-child {
  order: 2;
}
.rbc-toolbar > :first-child > :nth-child(2) {
  order: 1;
}
.rbc-toolbar :first-child > :nth-child(3) {
  order: 3;
}
.rbc-toolbar .rbc-toolbar-label {
  padding: 0 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.rbc-toolbar button {
  color: #F0F0F0;
  background-color: #2f628f;
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  background-image: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
}
.rbc-toolbar > :nth-child(3) {
  gap: 0;
}
.rbc-toolbar > :nth-child(3) button {
  border-radius: 0;
  color: #21273a;
  background-color: #ecf0f3;
}
.rbc-toolbar > :nth-child(3) button.rbc-active {
  color: #F0F0F0;
  background-color: #2f628f;
}
.rbc-toolbar > :nth-child(3) button:hover {
  color: #F0F0F0;
  background-color: #4889c3;
}
.rbc-toolbar > :nth-child(3) :first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.rbc-toolbar > :nth-child(3) :last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.rbc-toolbar > :first-child button:focus {
  background-color: #4889c3;
}
.rbc-toolbar > :first-child button:hover {
  background-color: #4889c3;
}
.rbc-btn-group {
  display: flex;
  gap: 2px;
  white-space: nowrap;
}
.rbc-btn-group button + button {
  margin-left: -1px;
}
.rbc-rtl .rbc-btn-group button + button {
  margin-left: 0;
  margin-right: -1px;
}
.rbc-btn-group + .rbc-btn-group,
.rbc-btn-group + button {
  margin-left: 10px;
}
.rbc-event,
.rbc-day-slot .rbc-background-event {
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 2px 5px;
  background-color: #3174ad;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.rbc-slot-selecting .rbc-event,
.rbc-slot-selecting .rbc-day-slot .rbc-background-event,
.rbc-day-slot .rbc-slot-selecting .rbc-background-event {
  cursor: inherit;
  pointer-events: none;
}
.rbc-event-label {
  font-size: 80%;
}
.rbc-event-overlaps {
  -webkit-box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
  box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
}
.rbc-event-continues-prior {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.rbc-event-continues-after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rbc-event-continues-earlier {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.rbc-event-continues-later {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.rbc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.rbc-row-segment {
  overflow: hidden;
  padding: 0 1px 1px 1px;
}
.rbc-selected-cell {
  background-color: rgba(0, 0, 0, 0.1);
}
.rbc-show-more {
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 4;
  font-weight: bold;
  font-size: 85%;
  height: auto;
  line-height: normal;
  color: #3174ad;
}
.rbc-show-more:hover,
.rbc-show-more:focus {
  color: #265985;
}
.rbc-month-view {
  position: relative;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  width: 100%;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  height: 100%;
  min-height: 400px;
}
.rbc-month-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.rbc-month-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -ms-flex-preferred-size: 0px;
  flex-basis: 0px;
  overflow: hidden;
  height: 100%;
}
.rbc-month-row + .rbc-month-row {
  border-top: 1px solid #ddd;
}
.rbc-date-cell {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 5px;
  text-align: right;
}
.rbc-date-cell.rbc-now {
  font-weight: bold;
}
.rbc-date-cell > a,
.rbc-date-cell > a:active,
.rbc-date-cell > a:visited {
  color: inherit;
  text-decoration: none;
}
.rbc-row-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: hidden;
}
.rbc-day-bg {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}
.rbc-day-bg + .rbc-day-bg {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-day-bg + .rbc-day-bg {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-overlay {
  position: absolute;
  z-index: 5;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  padding: 10px;
}
.rbc-overlay > * + * {
  margin-top: 1px;
}
.rbc-overlay-header {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px -10px 5px -10px;
  padding: 2px 10px;
}
.rbc-agenda-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: auto;
}
.rbc-agenda-view table.rbc-agenda-table {
  width: 100%;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-collapse: collapse;
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
  padding: 5px 10px;
  vertical-align: top;
}
.rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
  padding-left: 15px;
  padding-right: 15px;
  text-transform: lowercase;
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
  border-top: 1px solid #ddd;
}
.rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  padding: 3px 5px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  text-align: right;
}
.rbc-agenda-time-cell {
  text-transform: lowercase;
}
.rbc-agenda-time-cell .rbc-continues-after:after {
  content: ' »';
}
.rbc-agenda-time-cell .rbc-continues-prior:before {
  content: '« ';
}
.rbc-agenda-date-cell,
.rbc-agenda-time-cell {
  white-space: nowrap;
}
.rbc-agenda-event-cell {
  width: 100%;
}
.rbc-agenda-empty {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.rbc-time-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}
.rbc-time-column .rbc-timeslot-group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.rbc-timeslot-group {
  border-bottom: 1px solid #ddd;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.rbc-time-gutter,
.rbc-header-gutter {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.rbc-label {
  padding: 0 5px;
}
.rbc-day-slot {
  position: relative;
}
.rbc-day-slot .rbc-events-container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  margin-right: 10px;
  top: 0;
}
.rbc-day-slot .rbc-events-container.rbc-rtl {
  left: 10px;
  right: 0;
}
.rbc-day-slot .rbc-event,
.rbc-day-slot .rbc-background-event {
  border: 1px solid #265985;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 100%;
  min-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow: hidden;
  position: absolute;
}
.rbc-day-slot .rbc-background-event {
  opacity: 0.75;
}
.rbc-day-slot .rbc-event-label {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-right: 5px;
  width: auto;
}
.rbc-day-slot .rbc-event-content {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  word-wrap: break-word;
  line-height: 1;
  height: 100%;
  min-height: 1em;
}
.rbc-day-slot .rbc-time-slot {
  border-top: 1px solid #f7f7f7;
}
.rbc-time-view-resources .rbc-time-gutter,
.rbc-time-view-resources .rbc-time-header-gutter {
  position: sticky;
  left: 0;
  background-color: white;
  border-right: 1px solid #ddd;
  z-index: 10;
  margin-right: -1px;
}
.rbc-time-view-resources .rbc-time-header {
  overflow: hidden;
}
.rbc-time-view-resources .rbc-time-header-content {
  min-width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -ms-flex-preferred-size: 0px;
  flex-basis: 0px;
}
.rbc-time-view-resources .rbc-time-header-cell-single-day {
  display: none;
}
.rbc-time-view-resources .rbc-day-slot {
  min-width: 140px;
}
.rbc-time-view-resources .rbc-header,
.rbc-time-view-resources .rbc-day-bg {
  width: 140px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  -ms-flex-preferred-size: 0 px;
  flex-basis: 0 px;
}
.rbc-time-header-content + .rbc-time-header-content {
  margin-left: -1px;
}
.rbc-time-slot {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.rbc-time-slot.rbc-now {
  font-weight: bold;
}
.rbc-day-header {
  text-align: center;
}
.rbc-slot-selection {
  z-index: 10;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 75%;
  width: 100%;
  padding: 3px;
}
.rbc-slot-selecting {
  cursor: move;
}
.rbc-time-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 0 0;
  width: 100%;
  border: 1px solid #ddd;
  min-height: 0;
}
.rbc-time-view .rbc-time-gutter {
  white-space: nowrap;
  text-align: right;
}
.rbc-time-view .rbc-allday-cell {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  position: relative;
}
.rbc-time-view .rbc-allday-cell + .rbc-allday-cell {
  border-left: 1px solid #ddd;
}
.rbc-time-view .rbc-allday-events {
  position: relative;
  z-index: 4;
}
.rbc-time-view .rbc-row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 20px;
}
.rbc-time-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.rbc-time-header.rbc-overflowing {
  border-right: 1px solid #ddd;
}
.rbc-rtl .rbc-time-header.rbc-overflowing {
  border-right-width: 0;
  border-left: 1px solid #ddd;
}
.rbc-time-header > .rbc-row:first-child {
  border-bottom: 1px solid #ddd;
}
.rbc-time-header > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #ddd;
}
.rbc-time-header-cell-single-day {
  display: none;
}
.rbc-time-header-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-time-header-content {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-time-header-content > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #ddd;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.rbc-time-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  border-top: 2px solid #ddd;
  overflow-y: auto;
  position: relative;
}
.rbc-time-content > .rbc-time-gutter {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.rbc-time-content > * + * > * {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-time-content > * + * > * {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-time-content > .rbc-day-slot {
  width: 100%;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.rbc-current-time-indicator {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #74ad31;
  pointer-events: none;
}
@container calendarContainer (width < 824px) {
  .rbc-toolbar {
    padding: 0 16px ;
  }
  .calendarSeeStructureContainer {
    padding-right: 16px;
    padding-top: 16px;
  }
  .calendarSeeStructureContainer {
    position: absolute;
    padding-top: 0;
    top: 144px;
    right: 16px;
  }
  .calendarSeeStructureContainer .tgButtonPlacer {
    padding-left: 24px;
  }
  .rbc-toolbar {
    flex-flow: column;
    gap: 24px;
  }
  .rbc-toolbar > :first-child {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-right: 24px;
  }
  .rbc-toolbar > :nth-child(2) {
    order: 1;
    width: 100%;
  }
  .rbc-toolbar > :last-child {
    order: 2;
    justify-content: center;
    width: auto;
  }
}
.kanbanContainer {
  position: relative;
  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: 240px;
  padding: 0 16px;
}
.kanbanHeaderContainer {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.kanbanColumnHeader {
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  color: #21273a;
  padding: 0px 16px;
  min-width: 240px;
  background-color: #ecf0f3;
  padding-bottom: 1rem;
}
.kanbanColumnBody {
  display: flex;
  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;
  cursor: pointer;
}
.kanbanCardHeader {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.kanbanCardLabel {
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  color: #21273a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kanbanCardBody {
  display: flex;
  flex-direction: column;
}
.kanbanCardDesc {
  margin: 0;
  padding-top: 8px;
  overflow-wrap: break-word;
}
.kanbanCardFooter {
  border-top: 1px solid #c8c8c8;
  padding-top: 8px;
  margin-top: 8px;
}
.kanbanFooterDate {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666666;
}
.dayWords {
  font-weight: 400;
  text-align: right;
}
.dayWords.alert {
  color: #fa1a1a;
}
.dayWords.timeRemaining {
  color: #259621;
}
.kanbanCardPriority {
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 8px;
  height: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #ecf0f3;
}
.kanbanCardPriority.blue {
  background-color: #cee0ef;
  color: #2f628f;
}
.kanbanCardPriority.orange {
  background-color: #ffead1;
  color: #d17000;
}
.kanbanCardPriority.red {
  background-color: #ffe1ec;
  color: #e10051;
}
.kanbanCardPriority.importantRed {
  background-color: #fee2e2;
  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: #11314d;
  margin-right: 8px;
}
.paginationDot.active {
  background-color: #2f628f;
}
.kanbanColumnLoadMore {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 250ms;
  color: #c8c8c8;
}
.kanbanColumnLoadMore:is(:hover, :focus) {
  background-color: #f4f8fc;
  border-color: #f4f8fc;
}
.kanbanContainer.mobile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
.kanbanContainer.mobile .kanbanColumnLoadMore {
  margin-bottom: 5rem;
}
.kanbanContainer.mobile .kanbanColumnContainer {
  padding: 0 3rem;
  overflow-y: scroll;
  height: calc(100% - 32px);
}
.kanbanContainer.mobile .kanbanColumnMobileWrapper {
  height: 90vh;
}
.tgButtonPlacer {
  display: flex;
  align-items: center;
  min-height: 75px;
  padding-left: 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;
}
.tgButtonPlacer.fullWidth {
  width: 100%;
}
.tgButtonPlacer.fullWidth .tgButtonContainer {
  width: 100%;
}
.tgButtonPlacer.fullWidth .tgButtonContainer .tgButtonWrapper {
  width: 100%;
}
.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 !important;
  -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;
}
.orgChartOverflowContainer {
  width: 100%;
  overflow: auto;
  height: 100%;
}
.orgChartContainer {
  display: flex;
  flex-flow: column;
  height: 100%;
  width: fit-content;
  min-width: 100%;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.orgChartRow {
  display: flex;
  flex-flow: row nowrap;
  padding: 16px;
  justify-content: center;
}
.userCard {
  cursor: pointer;
  padding: 16px;
  margin: 36px 24px;
  border: 3px solid #2f628f;
  display: flex;
  flex-flow: column;
  border-radius: 15px;
}
.userCard.selectedAcc {
  background-color: #cee0ef;
}
.userCard.newUpper {
  background-color: #81aed6;
}
.userCardContainer {
  display: flex;
  justify-content: center;
}
.childCardContainer {
  display: flex;
  justify-content: center;
}
.orgChartRoleLabel {
  font-size: 0.9rem;
  cursor: default;
}
.orgChartRole {
  font-size: 0.9rem;
  font-weight: 500;
}
.orgChartLine {
  stroke: #2f628f;
  stroke-width: 2px;
}
.userCard a,
.userCard a:visited {
  text-decoration: none;
  color: #000;
  text-align: center;
}
.popup.orgChart {
  width: 90%;
  height: 90%;
  margin-top: 100px;
}
.orgChartButtonsContainer {
  display: flex;
  flex-flow: column;
  position: absolute;
  right: 0;
  top: 64px;
  max-width: 480px;
  z-index: 2;
}
.orgChartButtons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.orgChartButtons .formButton.neumorphic {
  height: 48px !important;
}
.orgChartButtons .lastButton {
  margin: 0px 12px 0 8px !important;
  min-width: 0;
}
.orgChartButtons .lastButton .MuiButton-label {
  width: auto;
}
.orgChartLegend {
  text-align: center;
  padding-top: 16px;
}
.formButton.orgChartButton {
  margin: 0 8px !important;
}
.formButton.goToUserButton {
  background-color: #2f628f;
  color: #FFF;
}
.formButton.goToUserButton:hover {
  background-color: #356fa2;
}
.timelineContainer {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}
.timelineLabelContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 8px;
}
.timelineAxisContainer {
  display: flex;
  width: 100%;
  padding-bottom: 16px;
}
.timelineTask {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.timelineTaskText {
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  padding-bottom: 8px;
}
.timelineTaskText > span {
  display: block;
  width: 100%;
}
.timelineDot {
  height: 48px;
  width: 48px;
  border-radius: 24px;
  margin-right: -1px;
  flex-shrink: 0;
  transform: scale(1.1);
  cursor: pointer;
}
.timelineDot.notComplete {
  color: gray !important;
  background-color: gray !important;
}
.timelineLine {
  display: flex;
  height: 10px;
  width: 100%;
}
.timelineLine.notComplete {
  color: gray !important;
  background-color: gray !important;
}
.timelineLineHolder {
  display: flex;
  align-items: center;
  width: 100%;
}
.timelineSpacer {
  width: 100%;
}
.timelineLabelContainer :last-child {
  display: none;
}
.timelineInnerCircle {
  width: 36px;
  height: 36px;
  border: solid 4px #FFF;
  border-radius: 20px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.timelineAxisContainer > :first-child .timelineLine.left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.timelineAxisContainer > :last-child .timelineLine.right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.timelineInnerCircle > .icon {
  color: #FFF;
  font-size: 1.1rem;
}
.MuiSnackbarContent-message {
  width: 100%;
}
.snackbarInner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.snackbarInner .icon-close {
  cursor: pointer;
}
.snackbarInner .snackbarMessageContainer {
  display: flex;
  align-items: center;
}
.snackbarInner .snackbarMessageContainer div {
  padding-right: 6px ;
}
.snackbarInner .snackbarMessageContainer span {
  height: 15px;
}
.MuiSnackbar-anchorOriginBottomLeft {
  bottom: 48px !important;
  left: 32px !important;
}
.MuiSnackbarContent-root {
  padding: 8px 18px!important;
  border-radius: 8px !important;
}
.MuiSnackbar-root.info .MuiSnackbarContent-root {
  background-color: #2f628f;
  color: #fff;
}
.MuiSnackbar-root.success .MuiSnackbarContent-root {
  background-color: #259621;
  color: #fff;
}
.MuiSnackbar-root.warning .MuiSnackbarContent-root {
  background-color: #d17000;
  color: #fff;
}
.MuiSnackbar-root.alert .MuiSnackbarContent-root {
  background-color: #e10051;
  color: #fff;
}
.contentEditorContainer {
  display: flex;
  justify-content: center;
  width: 100%;
}
.contentEditor {
  display: flex;
  gap: 18px;
}
.contentEditAddSection {
  width: 40px;
  height: 40px;
  font-size: 40px;
  cursor: pointer;
}
.contentEditAddSection:hover {
  color: #2f628f;
}
.contentBody {
  display: flex;
  flex-flow: column;
  max-width: 740px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 6.31px 5.31px 6px #d8dadd, -6.31px -5.31px 13px #f5f5f5;
  padding: 16px;
  margin: auto auto 80px auto;
}
.contentSectionWrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.contentSectionWrapper .arrowContainer {
  position: absolute;
  right: -40px;
}
.contentSection {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: stretch;
}
.contentSection > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.addContentRowContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 24px 0;
}
.sectionDeleteButton {
  position: absolute;
  right: -8px;
  display: block;
  cursor: pointer;
  background-color: #e10051;
  border-radius: 12px;
  color: #fff;
  width: 20px !important;
  height: 20px;
  display: flex;
  align-items: center;
  line-height: 18px;
  font-size: 14px;
  padding-left: 3px;
}
.blockTypeContainer {
  display: flex;
  width: 100%;
  flex-flow: column;
  padding: 12px;
}
.blockTypeContainer .blockTypeLine {
  font-size: 1rem;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-flow: column;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.blockTypeContainer .blockTypeLine .blockTypeHeader {
  margin: 0;
  color: #21273a;
  font-weight: 400;
  padding: 4px;
}
.blockTypeContainer .blockTypeLine .blockTypeDesc {
  margin: 2px 0;
}
.blockTypeContainer .blockTypeLine:hover {
  background-color: #f4f8fc;
}
.blockTypeContainer :last-child {
  border-bottom: none;
}
.addContentBlockButton {
  font-size: 3rem;
  opacity: 0.2;
  cursor: pointer;
  padding: 24px;
}
.videoBlockUrlContainer {
  display: flex;
  margin: auto !important;
  flex-flow: column;
  width: 100%;
  height: 100%;
  margin: 0;
  justify-content: center;
  align-items: stretch !important;
  max-width: 400px;
  padding: 0 16px;
}
.videoBlockUrlContainer .errorMessage {
  min-height: 2.5rem;
  padding: 8px 0;
  color: #e10051;
  font-size: 0.9rem;
  text-align: center;
}
.videoBlockUrlContainer .formInputContainer {
  margin-bottom: 8px;
  box-shadow: none !important;
}
.videoBlockUrlContainer .formInputContainer .MuiInput-formControl {
  background-color: #fff;
  border-radius: 10px;
}
.videoBlockUrlContainer .formInputContainer input {
  text-align: center;
}
.videoBlockUrlContainer .formButton {
  box-shadow: none !important;
}
.contentBlock {
  position: relative;
  border: 1px solid transparent;
}
.contentBlock:hover {
  background-color: rgba(158, 208, 255, 0.651);
}
.contentBlock.selected {
  border: 1px solid #2f628f;
}
.contentBlock.image {
  flex-flow: column;
}
.contentBlock .imageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.contentBlockActivateArea {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.contentDeleteButton {
  display: block;
  position: absolute;
  top: -10px;
  z-index: 1;
  cursor: pointer;
  background-color: #e10051;
  border-radius: 12px;
  color: #fff;
  width: 20px !important;
  height: 20px;
  display: flex;
  align-items: center;
  line-height: 18px;
  font-size: 14px;
}
.blockMenuContainer {
  z-index: 2;
  flex-flow: column;
  position: absolute;
  top: -1px;
  left: -30px;
  background-color: #2f628f;
  color: #fff;
  width: fit-content !important;
}
.blockMenuContainer .blockMenuItem {
  cursor: pointer;
  padding: 4px;
}
.blockMenuContainer .blockMenuItem:hover {
  background-color: #6ea2cf;
}
.textEditorContainer {
  height: 100%;
  width: 100%;
  padding: 4px;
}
.separatorLine {
  width: 100%;
  height: 1px;
  background-color: #000;
}
.buttonBlockContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.addTitleContainer {
  display: flex;
  justify-content: center;
  padding: 12px;
}
.addTitleContainer .formInputContainer {
  padding-right: 12px;
}
.buttonOptionsContainer {
  display: flex;
  padding: 8px 0;
  flex-flow: column;
  width: 100%;
  max-width: 400px;
  align-items: stretch !important;
}
.buttonOptionsContainer .errorMessage {
  text-align: center;
  min-height: 2.5rem;
  padding: 8px 0;
  color: #e10051;
  font-size: 0.9rem;
}
.buttonOptionsContainer .formInputContainer {
  margin-bottom: 8px;
  box-shadow: none !important;
}
.buttonOptionsContainer .formInputContainer .MuiInput-formControl {
  background-color: #fff;
  border-radius: 10px;
}
.buttonOptionsContainer .formInputContainer input {
  text-align: center;
}
.buttonOptionsContainer .formButton {
  box-shadow: none !important;
}
.contentText {
  overflow-wrap: break-word;
  width: 100%;
  height: 100%;
}
.contentText h1,
.contentText h1 span {
  font-weight: 400 !important;
  font-size: 46px !important;
  margin: 0;
}
.contentText h2,
.contentText h2 span {
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 24px;
  margin: 0;
}
.contentText h3,
.contentText h3 span {
  font-weight: 400 !important;
  font-size: 18px !important;
  margin: 0;
}
.contentText p,
.contentText p span,
.contentText span {
  font-size: 16px !important;
  line-height: 32px !important;
  margin: 0;
}
.contentText strong {
  font-weight: 400 !important;
  margin: 0;
}
.contentImage {
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
}
.separatorLine {
  width: 100%;
}
.imageLabel {
  margin-top: 12px;
  color: #717171;
  text-align: center;
}
.fileContainer {
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 8px 0px;
  color: #21273a !important;
}
.fileContainer a {
  color: #21273a !important;
}
.fileContainer a:visited {
  color: #21273a !important;
}
.fileContainer .contentFile {
  font-size: 2.5rem;
  padding-bottom: 8px;
}
.fileContainer .fileName {
  padding-top: 4px;
}
.sidebarContainer {
  display: flex;
  align-content: center;
  max-width: 240px;
  min-width: 240px;
  background: #21273a;
  color: #fff;
  padding: 128px 0px 0px 0px;
  position: relative;
  overflow: hidden;
}
.sidebarInner {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 8px 16px 8px;
}
.sidebarButtonContainer {
  position: absolute;
  top: 12px;
  left: 28px;
  width: 184px;
}
.sidebarButton {
  width: 100%;
  margin-bottom: 8px !important;
}
.sidebarOption {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.sidebarOption .react-colorful {
  width: 100%;
  height: 100%;
  min-height: 184px;
  max-height: 184px;
}
.sidebarOption .formSliderContainer {
  margin-bottom: 24px;
  height: 48px;
  padding: 0 8px;
}
.sidebarOption .colorInputContainer {
  padding: 8px 0;
  display: flex;
}
.sidebarOption .colorInputContainer input {
  width: 100%;
  display: flex;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 8px;
  background-color: #21273a;
  color: #fff;
}
.sidebarOptionHeader {
  padding: 8px 0;
}
.alignPickerContainer {
  position: relative;
  height: 96px;
  width: 100%;
  display: flex;
  flex-flow: column;
  cursor: pointer;
}
.alignPickerContainer .rectangle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 31px;
  text-align: center;
  background-color: #46537b;
}
.alignPickerContainer .centerOption {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 34px;
  top: calc(50% - 17px);
  left: calc(50% - 36px);
  text-align: center;
  background-color: #21273a;
}
.alignPickerContainer .trapezoid {
  z-index: 2;
  position: absolute;
  width: 64px;
  height: 50px;
  top: calc(50% - 25px);
  text-align: center;
  background-color: #58699c;
}
.alignPickerContainer .downOption {
  bottom: 0;
}
.alignPickerContainer .upOption {
  top: 0;
}
.alignPickerContainer .leftOption {
  left: 11px;
  transform: perspective(48px) rotateY(45deg);
}
.alignPickerContainer .rightOption {
  right: 11px;
  transform: perspective(48px) rotateY(315deg);
}
.alignPickerContainer .icon-arrowLeft {
  position: absolute;
  z-index: 2;
  top: calc(50% - 0.75rem);
  left: 12px;
}
.alignPickerContainer .icon-arrowRight {
  position: absolute;
  z-index: 2;
  top: calc(50% - 0.75rem);
  right: 12px;
}
.alignPickerContainer > .valueLabel {
  position: absolute;
  top: 40px;
  z-index: 6;
}
.alignPickerContainer > .valueLabel.right {
  right: 14px;
}
.alignPickerContainer > .valueLabel.left {
  left: 14px;
}
.alignPickerContainer > div:hover {
  background-color: #cee0ef;
  color: #21273a;
}
.alignPickerContainer .hover {
  background-color: #cee0ef;
  color: #21273a;
}
.marginPaddingContainer {
  position: relative;
  height: 152px;
  width: 100%;
  display: flex;
  flex-flow: column;
  cursor: pointer;
}
.marginPaddingContainer > .rectangle {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50%;
  text-align: center;
  background-color: #46537b;
}
.marginPaddingContainer > .trapezoid {
  z-index: 2;
  position: absolute;
  width: 64px;
  height: 79px;
  top: 36px;
  text-align: center;
  background-color: #58699c;
}
.marginPaddingContainer .downOption {
  padding-bottom: 4px;
  align-items: flex-end;
  bottom: 0;
}
.marginPaddingContainer .upOption {
  padding-top: 4px;
  align-items: flex-start;
  top: 0;
}
.marginPaddingContainer .leftOption {
  left: 11px;
  transform: perspective(48px) rotateY(45deg);
}
.marginPaddingContainer .rightOption {
  right: 11px;
  transform: perspective(48px) rotateY(315deg);
}
.marginPaddingContainer .headerLabel {
  position: absolute;
  font-size: 0.9rem;
  color: #fff !important;
  z-index: 6;
  padding: 4px;
  background-color: transparent !important;
  opacity: 0.7;
}
.marginPaddingContainer > .valueLabel {
  position: absolute;
  top: 68px;
  z-index: 6;
}
.marginPaddingContainer > .valueLabel.right {
  right: 8px;
}
.marginPaddingContainer > .valueLabel.left {
  left: 8px;
}
.marginPaddingContainer > div:hover {
  background-color: #a8c7e2;
}
.marginPaddingContainer .hover {
  background-color: #a8c7e2;
  color: #21273a;
}
.marginPaddingContainer .upOption:hover {
  color: #21273a;
}
.marginPaddingContainer .downOption:hover {
  color: #21273a;
}
.marginPaddingContainer .selected {
  background-color: #cee0ef !important;
  color: #21273a !important;
}
.paddingContainer {
  position: absolute;
  top: 27px;
  height: 98px;
  width: 70%;
  left: 15%;
  z-index: 3;
  border: 1px solid #fff;
  box-sizing: content-box;
}
.paddingContainer .rectangle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 32px;
  text-align: center;
  background-color: #3d486b;
}
.paddingContainer .centerOption {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 33px;
  text-align: center;
  background-color: #21273a;
}
.paddingContainer .trapezoid {
  z-index: 2;
  position: absolute;
  width: 49px;
  height: 49px;
  top: 24px;
  text-align: center;
  background-color: #4f5e8b;
}
.paddingContainer .leftOption {
  left: 10px;
  transform: perspective(35px) rotateY(45deg);
}
.paddingContainer .rightOption {
  right: 10px;
  transform: perspective(35px) rotateY(315deg);
}
.paddingContainer > div:hover {
  background-color: #a8c7e2;
  color: #21273a;
}
.paddingContainer .hover {
  background-color: #a8c7e2;
  color: #21273a;
}
.paddingContainer > .valueLabel {
  position: absolute;
  top: 40px;
  z-index: 6;
}
.paddingContainer > .valueLabel.right {
  right: 14px;
}
.paddingContainer > .valueLabel.left {
  left: 14px;
}
.paddingContainer .selected {
  background-color: #cee0ef !important;
  color: #21273a !important;
}
.rangeSelectContainer {
  display: flex;
  align-items: center;
}
.rangeSelectContainer .tgButtonPlacer {
  min-height: 0;
  height: fit-content;
  padding-right: 0;
  padding-left: 12px;
}
.rangeSelectContainer .tgButtonContainer {
  box-shadow: none;
}
.sizePickerContainer .sizePickerLine {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sizePickerContainer .sizePickerLine .tgButtonPlacer {
  min-height: 0;
  height: fit-content;
  padding-right: 0;
  padding-left: 12px;
}
.sizePickerContainer .tgButtonContainer {
  box-shadow: none;
}
.sizePickerContainer .sizePickerLabel {
  padding-bottom: 8px;
}
.HTMLPreview {
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}
.HTMLPreview .contentImage {
  cursor: pointer;
}
.contentPreviewContainer .contentBody,
.contentEditorContainer.preview .contentBody {
  margin: auto auto auto auto;
}
.contentPreviewContainer .MuiButton-root,
.contentEditorContainer.preview .MuiButton-root {
  color: rgba(0, 0, 0, 0.87);
  padding: 6px 16px;
  font-size: 0.875rem;
  min-width: 64px;
  box-sizing: border-box;
  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;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  font-weight: 500;
  line-height: 1.75;
  border-radius: 4px;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
}
.contentPreviewContainer .MuiButtonBase-root,
.contentEditorContainer.preview .MuiButtonBase-root {
  color: inherit;
  border: 0;
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  outline: 0;
  padding: 0;
  position: relative;
  align-items: center;
  user-select: none;
  border-radius: 0;
  vertical-align: middle;
  -moz-appearance: none;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.contentPreviewContainer .contentBlock:hover,
.contentEditorContainer.preview .contentBlock:hover {
  background-color: transparent;
}
.contentPreviewContainer .contentBlock.selected,
.contentEditorContainer.preview .contentBlock.selected {
  border: none;
}
.contentPreviewContainer .contentBlockActivateArea,
.contentEditorContainer.preview .contentBlockActivateArea {
  display: none;
}
.contentPreviewContainer .addTitleContainer,
.contentEditorContainer.preview .addTitleContainer {
  display: none;
}
.contentPreviewContainer .blockMenuContainer,
.contentEditorContainer.preview .blockMenuContainer {
  display: none;
}
.contentPreviewContainer .sectionDeleteButton,
.contentEditorContainer.preview .sectionDeleteButton {
  display: none;
}
.contentPreviewContainer .arrowContainer,
.contentEditorContainer.preview .arrowContainer {
  display: none;
}
.contentPreviewContainer .addContentBlockButton,
.contentEditorContainer.preview .addContentBlockButton {
  display: none;
}
.contentPreviewContainer .addContentRowContainer,
.contentEditorContainer.preview .addContentRowContainer {
  display: none;
}
.sidebarSwitchContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formSwitch .MuiSwitch-colorSecondary.Mui-checked {
  color: #2f628f;
}
.formSwitch .MuiSwitch-track {
  background-color: #2f628f !important;
}
.rightPanel {
  animation: 0.5s rightPanelShow;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-flow: column;
  height: 100vh;
  width: 90%;
  max-width: 800px;
  overflow: auto;
  position: absolute;
  right: 0;
  z-index: 9;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.35);
}
.rightPanel .rightPanelHeader {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #2f628f;
  color: #fff;
}
.rightPanel .rightPanelHeader .rightPanelIconContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rightPanel .rightPanelHeader .rightPanelIconContainer .icon-arrowLeft {
  padding-right: 10px;
}
.rightPanel .rightPanelHeader .rightPanelIconContainer div[class^='icon-'] {
  cursor: pointer;
}
.rightPanel .rightPanelHeader .rightPanelIconContainer .disabled {
  cursor: default !important;
  color: #e7e7e7;
}
.rightPanel .rightPanelHeader .rightPanelHeaderContainer {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.rightPanel .rightPanelHeader .rightPanelHeaderContainer .rightPanelHeaderText {
  font-size: 1.2rem;
  font-weight: 400;
}
.rightPanel .rightPanelContent {
  height: 100%;
  width: 100%;
  background: #eef0f4;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px;
  padding-top: 0px;
}
.rightPanel .rightPanelContent .viewMenu {
  position: static;
  justify-content: flex-end;
  height: 56px;
}
.rightPanel .rightPanelContent .rightPanelPlaceholder {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.rightPanel.small {
  max-width: 500px;
  animation-duration: 0.3s;
}
.rightPanel.small .rightPanelContent {
  padding: 0px;
}
.rightPanel.comments {
  max-width: 384px;
  animation-duration: 0.3s;
  z-index: 10;
}
.rightPanel.comments .rightPanelContent {
  padding: 0px;
}
.rightPanel.hide {
  animation: 0.3s rightPanelHide;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes rightPanelShow {
  from {
    transform: translate(100%);
  }
  to {
    transform: translate(0%);
  }
}
@keyframes rightPanelHide {
  from {
    transform: translate(0%);
  }
  to {
    transform: translate(100%);
  }
}
.multipleAssigned {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 16px 16px;
}
.multipleAssignedUser {
  width: 100%;
  padding: 16px;
  box-shadow: 3px 3px 12px #b1b3b6ab, -5.71px -5.71px 15px #ffffff;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  margin-bottom: 16px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.multipleAssignedUserDel {
  cursor: pointer;
}
.popup.newTaskPopup {
  max-width: 744px;
}
.popup.newTaskPopup .newTaskContainer {
  background-color: #fff;
  padding: 8px;
  padding-top: 16px;
  position: relative;
  overflow: hidden;
}
.newTaskContainer .MuiOutlinedInput-input {
  padding: 8px 12px;
}
.newTaskContainer .newTaskDescriptionEditor.error .tox-tinymce {
  border-color: red;
}
.newTaskContainer .tox-tinymce {
  border-radius: 4px;
  height: 300px !important;
  transition: height 0.2s ease-in-out;
}
@media screen and (max-height: 700px) {
  .newTaskContainer .tox-tinymce {
    height: 200px !important;
  }
}
@media screen and (max-height: 600px) {
  .newTaskContainer .tox-tinymce {
    height: 100px !important;
  }
}
.popup.newTaskPopup .newTaskContainer.success {
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  gap: 1rem;
}
.newTaskContainer .loaderContainer {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0px;
}
.newTaskContainerForm {
  display: flex;
  flex-flow: column;
  height: 100%;
  gap: 8px;
}
.newTaskContainerForm .newTaskContainerRow {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 8px;
}
.newTaskContainerForm .newTaskContainerRow .newTaskSelect {
  height: 100%;
}
.newTaskContainerForm .formInputContainer.outlined .MuiFormControl-root {
  /* .MuiInputBase-root.MuiOutlinedInput-root  .MuiOutlinedInput-input{
                outline: none;
            } */
}
.newTaskContainerForm .formInputContainer.outlined .MuiFormControl-root .MuiFormLabel-root.Mui-focused {
  color: #0000008f;
}
.newTaskContainerForm .formInputContainer.outlined .MuiFormControl-root .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #000000 !important;
  border-width: 1px;
}
.newTaskContainer > .hide {
  display: none;
}
.searchContainer {
  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;
}
.searchContainer 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;
}
.searchContainer .inputContainer {
  width: 100%;
  position: relative;
}
.searchContainer .inputContainer input {
  width: 100%;
}
.searchContainer input {
  border: none;
}
.searchContainer input:focus {
  outline: none;
}
.searchContainer .searchResultsContainer {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 5;
  background-color: #fff;
  border: 1px solid #ccc;
}
.searchContainer .searchResultsContainer > div {
  padding: 6px 4px;
  white-space: nowrap;
  cursor: pointer;
}
.searchContainer .searchResultsContainer > div.select,
.searchContainer .searchResultsContainer > div:hover {
  background-color: #a8c7e2;
}
.searchContainer:hover,
.searchContainer.focus {
  border: 1px solid rgba(0, 0, 0, 0.829);
}
.searchContainer.error {
  border: 1px solid red;
}
.searchContainer.error legend {
  color: red;
}
.tasksContent {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.tasksContentNewTask {
  display: flex;
  flex-flow: column;
}
.tasksContentNewTaskText {
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
}
.tasksContentNewTaskText textarea {
  width: calc(100% - 6px);
  min-height: 72px;
  resize: vertical;
  border: none;
}
.tasksContentNewTaskText.error {
  border: 1px solid red !important;
}
.tasksContentNewTaskButton {
  height: 42px;
}
.tasksContentNewTaskButton button {
  width: 100%;
  height: 100%;
}
.tasksContentNewTaskButton.row {
  display: flex;
  flex-flow: row;
}
.tasksContentNewTaskButton.row .MuiButton-root {
  flex: 1;
}
#app .tasksContentNewTaskButton.row button:first-child {
  background-color: #5b95c9;
}
#app .tasksContentNewTaskButton.row button:first-child:hover,
#app .tasksContentNewTaskButton.row button:first-child:focus {
  background-color: #6ea2cf;
}
#app .tasksContentNewTaskButton.row button:last-child {
  margin-right: 0;
}
.taskContentLine {
  width: 100%;
  height: 42px;
  align-items: center;
  display: flex;
  border-bottom: 1px solid #ccc;
}
.taskContentLine.edit {
  height: auto;
}
.taskContentLine.edit .taskContentIndex {
  border-right: none;
}
.taskContentIndex {
  width: 28px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  height: 100%;
}
.taskContentIndexGroup {
  width: 56px;
  display: flex;
  flex-flow: row;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
}
.taskContentIndexGroup > div {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.taskContentIndexEye {
  cursor: pointer;
}
.taskContentLineDesc {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0px 8px;
  border-left: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.taskContentLineDesc:hover {
  background-color: #eee;
  cursor: pointer;
}
.taskContentLineDescText {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.taskContentLine.expanded {
  height: 100%;
  /* .taskContentLineState {
        height: 42px;
    } */
}
.taskContentLine.expanded .taskContentLineDesc {
  padding: 8px;
  height: auto;
  min-height: 42px;
}
.taskContentLine.expanded .taskContentLineDesc .taskContentLineDescText {
  text-overflow: unset;
  white-space: unset;
  overflow: unset;
}
.taskContentLine.expanded .taskContentLineDesc .taskContentLineDescText h1,
.taskContentLine.expanded .taskContentLineDesc .taskContentLineDescText h2,
.taskContentLine.expanded .taskContentLineDesc .taskContentLineDescText h3,
.taskContentLine.expanded .taskContentLineDesc .taskContentLineDescText strong {
  all: revert;
}
.taskContentLineDescEdit {
  width: 100%;
  border-top: 1px solid #ccc;
}
.taskContentLine:hover .taskContentIndexGroup {
  transform: translateX(-28px);
}
.taskContentLine.edit:hover .taskContentIndexGroup {
  transform: translateX(0px);
}
.taskContentLineState {
  height: 32px;
  width: 140px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  background-color: #2f628f;
  color: #fff;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.taskContentLineState div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.taskContentLineEnumState {
  height: 42px;
  width: 124px;
  justify-content: center;
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 3px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.taskContentLineEnumState:last-child {
  margin-bottom: none;
}
.taskContentLineEnumState.new,
.taskContentLineState.new {
  background-color: #2f628f;
}
.taskContentLineEnumState.in_progress,
.taskContentLineState.in_progress {
  background-color: #d17000;
}
.taskContentLineEnumState.done,
.taskContentLineState.done {
  background-color: #259621;
}
.taskContentLineAttachment {
  display: flex;
  align-items: center;
  padding: 0px 4px;
  opacity: 0.7;
}
.taskContentLineAttachment div {
  font-size: 1.1rem;
  opacity: 0.7;
}
.taskContentLineEdit,
.taskContentLineDelete {
  padding: 0px 4px;
  cursor: pointer;
}
.taskContentLineEdit div,
.taskContentLineDelete div {
  font-size: 1.2rem;
}
.tasksContent .tox-tinymce {
  border: none !important;
}
.commentsContainer {
  display: flex;
  flex-flow: column;
  height: 100%;
}
.commentsContent {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  flex-flow: column;
  justify-content: flex-end;
  padding: 8px;
}
.commentsNewComment {
  width: 100%;
  height: 282px;
  flex-shrink: 0;
}
.commentsNewComment .newComment {
  width: 100%;
  height: 42px;
  border-radius: 0px!important;
}
.commentLine {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.commentContainer {
  width: 80%;
  padding: 12px;
  background-color: #d1d2d9;
  margin-top: 10px;
  border-radius: 12px;
  box-shadow: 0px 1px 3px 0px #979797;
}
.owner > .commentContainer {
  background-color: #a8c7e2;
}
.commentContainerHeader {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.commentLine.owner {
  justify-content: flex-end;
}
.commentContainerHeader {
  opacity: 0.5;
}
.commentContainerMessage p {
  margin: 2px;
}
.subpanel .cardHeaderIcon.icon-rooms::before {
  font-size: 1.5rem;
}
.subpanel .cardHeaderIcon.icon-reservations::before {
  font-size: 1.3rem;
}
/* SCREEN SIZES */
.helperContainer.viewMenuMobile {
  display: none;
}
@media screen and (max-width: 1047px) {
  .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: 7;
  }
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0px 0px 4px #d8dadd;
  }
  .bodyContainer {
    padding: 64px 12px 30px 12px !important;
    overflow-y: auto;
  }
  .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: 7;
    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%;
  }
  .cardFormField > .cardFormFieldValue {
    overflow: hidden;
  }
  /*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: 0px;
  }
  .popup.bondCatalog .productItem {
    margin: 0 0 24px 0;
  }
  #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;
  }
  .widgetContent table .nowrapTd.hasColored {
    width: 64px;
  }
  /*DLUHOPISY POPUP*/
  .companyBondCardsContainer {
    justify-content: space-between;
  }
  .popup.bondCatalog .productItem {
    width: 49%;
    margin-right: 0px !important;
  }
  .companyBondCardsContainer {
    justify-content: space-between;
  }
  .calendarWrapper .tgButtonPlacer {
    top: 16px;
    right: 16px;
  }
  .calendarWrapper .modeWrapper {
    padding: 16px;
    padding-top: 0px;
  }
  .calendarWrapper .calendarHeader {
    padding: 0 16px;
  }
  .popupNewCostContent {
    width: 100%;
  }
  .popupNewCostContent .popupNewCostContainer {
    flex-flow: column;
  }
  .popupNewCostContent .popupNewCostContainer .pdfPreviewContainer {
    height: 10rem;
    width: 600px;
  }
  .popupNewCostContent .popupNewCostContainer .pdfPreviewContainer .pdfPreviewUpload {
    height: 100%;
    width: 100%;
  }
  .popupNewCostContent .flexLine {
    display: flex;
    flex-flow: column;
  }
  .popupNewCostContent.init {
    width: 100%;
  }
  .popupNewCostContent.init .messageAddresserContainer.attachment {
    height: 100%;
    width: 100%;
  }
  .calendarContainer {
    padding: 16px !important;
  }
  .documentContainer {
    grid-template-columns: 2.6rem 1fr;
  }
  .documentContainer .hamburgerToggle {
    display: block;
  }
  .documentContainer.expandMenu {
    display: flex;
    justify-content: center;
  }
  .documentContainer.expandMenu .documentPage {
    width: 100%;
    margin-left: 2.6rem;
  }
  .documentContainer.expandMenu .documentTabs {
    position: absolute;
    top: 0;
    left: 0;
    width: 16rem;
    z-index: 10;
  }
  .documentContainer.expandMenu .documentPageTab {
    border-right: solid 1px #ccc;
  }
}
@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;
  }
  .createPassTooltip .flexLine {
    display: flex;
  }
  .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;
  }
  /*BANK TRANSFER POPUP*/
  .popupBankTransfer .flexSection {
    flex-flow: column;
  }
  .contactForm.simpleForm {
    overflow-y: auto;
  }
  .contactForm.simpleForm .accordionLineContent {
    overflow: auto;
  }
  .popupBankTransfer img {
    height: 155px;
    width: 155px;
    align-self: center;
  }
  /*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;
  }
  .emptyWidget {
    display: none;
  }
  /*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;
    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*/
  .widgetLibraryCategories {
    display: none;
  }
  .widgetLibraryWidgets {
    max-width: none;
    min-width: 0;
  }
  .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: 50% !important;
  }
  .widgetTripleSelect {
    flex-flow: column;
  }
  /*HIDE REPORTS*/
  a[href='#list/reports'] {
    display: none;
  }
  /*CALENDAR*/
  /*KANBAN*/
  /*  .kanbanColumnContainer {
        width: 100% !important;
    } */
  .kanbanColumnHeader {
    padding: 0;
  }
  /*HOME DASHBOARD CLIENT*/
  .homeWidgetDiv {
    flex-flow: column;
    justify-content: inherit;
  }
  .homeColumn {
    width: 100% !important;
  }
  .widgetCardContainer {
    flex-flow: column;
  }
  .homeCard.leftHalf {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .homeCard.rightHalf {
    margin-left: 0;
  }
  .swiper-slide .lineChart {
    padding: 8px;
  }
  .swiper-slide .areaChartDynamic,
  .swiper-slide .barChart {
    padding: 8px;
  }
  .popup.bondCatalog .companyBondCardsContainer > :last-child {
    margin-bottom: 0;
  }
  .crowdfundingLineContainer {
    flex-flow: column;
    align-items: center;
  }
  .crowdfundingFinanceContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
  }
  .crowdfundingTopContainer {
    flex-flow: column;
    align-items: center;
  }
  .crowdfundingBottomContainer {
    flex-flow: column;
    gap: 16px;
  }
  .crowdfundingInfoDelimiter {
    display: none;
  }
  .crowdfundingCheckoutContainer {
    min-width: 0;
  }
  .popupContent.crowdfundingCheckout {
    overflow-y: hidden;
  }
  .notificationsHeader {
    flex-flow: column;
    align-items: normal !important;
  }
  .calendarWrapper .modeWrapper {
    padding: 16px;
  }
  .popupNewCostContent {
    width: 100%;
  }
  .popupNewCostContent .popupNewCostContainer {
    flex-flow: column;
  }
  .popupNewCostContent .popupNewCostContainer .loaderContainer {
    min-width: unset;
    max-width: unset;
    width: 100% !important;
  }
  .popupNewCostContent .popupNewCostContainer .pdfPreviewContainer {
    height: 10rem;
    width: 100%;
  }
  .popupNewCostContent .popupNewCostContainer .pdfPreviewContainer .pdfPreviewUpload {
    width: 100%;
    height: 100%;
  }
  .popupNewCostContent .flexLine {
    display: flex;
    flex-flow: column;
  }
  .popupNewCostContent.init {
    width: 100%;
  }
  .popupNewCostContent.init .messageAddresserContainer.attachment {
    height: 100%;
    width: 100%;
  }
  .administrationContainer .administrationCategoryTableRowText {
    flex-flow: column !important;
    gap: 4px;
    align-items: flex-start !important;
  }
  .administrationContainer .administrationCategoryTableRowName {
    white-space: nowrap;
  }
}
@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;
  }
  .emptyWidget {
    display: none;
  }
  /*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;
  }
}
.tooltipWrapper {
  position: relative;
}
.tooltip {
  position: absolute;
  max-width: 30em;
  z-index: 10;
  background-color: #fff;
  padding: 1.125em 1.5em;
  font-size: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
}
.tooltip::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}
.tooltip.left::before {
  right: 100%;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-right: 0.75rem solid #fff;
  filter: drop-shadow(-2px 0px 1px rgba(0, 0, 0, 0.15));
}
.tooltip.left.al-center::before {
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.left.al-left::before {
  bottom: 1.5em;
}
.tooltip.left.al-right::before {
  top: 1.5em;
}
.tooltip.right::before {
  left: 100%;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 0.75rem solid #fff;
  filter: drop-shadow(2px 0px 1px rgba(0, 0, 0, 0.15));
}
.tooltip.right.al-center::before {
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right.al-left::before {
  top: 1.5em;
}
.tooltip.right.al-right::before {
  bottom: 1.5em;
}
.tooltip.top::before {
  bottom: 100%;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-bottom: 0.75rem solid #fff;
  filter: drop-shadow(0 -2px 1px rgba(0, 0, 0, 0.1));
}
.tooltip.top.al-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top.al-left::before {
  left: 1.5em;
}
.tooltip.top.al-right::before {
  right: 1.5em;
}
.tooltip.bottom::before {
  top: 100%;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-top: 0.75rem solid #fff;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.15));
}
.tooltip.bottom.al-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.bottom.al-left::before {
  left: 1.5em;
}
.tooltip.bottom.al-right::before {
  right: 1.5em;
}
.notificationsToggle {
  margin-right: 8px;
  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;
}
.notificationsToggle .notificationsToggleIcon {
  font-size: 1.8rem;
}
.notificationsContainer {
  width: 380px;
  height: 520px;
  display: flex;
  flex-flow: column;
}
.notificationsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notificationsHeaderTitle {
  display: flex;
  align-items: center;
}
h1.notificationsHeaderText {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}
.notificationsHeaderIcon {
  font-size: 1.8rem;
}
.notificationsHeaderControls {
  display: flex;
  align-items: center;
}
.notificationsHeaderControls label {
  font-size: 12px;
  color: #666666;
}
.notificationsBody {
  height: 100%;
  overflow: hidden;
  padding-top: 1rem;
}
.notificationsLoader {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notificationsList {
  height: 100%;
  display: flex;
  flex-flow: column;
  overflow-y: scroll;
}
.notificationsItemHeader {
  display: flex;
  align-items: center;
}
.notificationsItem {
  display: flex;
  flex-flow: column;
  gap: 4px;
  padding: 1rem;
  border-left: solid 4px #2f628f;
  border-bottom: 1px solid #fff;
  background-color: #cee0ef;
  color: #000;
  cursor: pointer;
}
.notificationsItem:hover {
  background-color: #bbd3e9;
}
.notificationsItem.loading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border: none;
  background-color: #fff;
}
.notificationsItemBadge {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #fff;
  padding: 4px 8px;
  border-radius: 0.5rem;
}
.notificationsItemBadge.icon-warning {
  background-color: #d17000;
}
.notificationsItemBadge.icon-error {
  background-color: #e10051;
}
.notificationsItemBadge.icon-info {
  background-color: #2f628f;
}
.notificationsItemBadge.icon-check {
  background-color: #259621;
}
.notificationsItem.seen {
  border-left: none;
  border-bottom: 1px solid #2f628f;
  background-color: #fff;
}
.notificationsItem.seen:hover {
  background-color: #eee;
}
.notificationsItem.seen.last {
  border-bottom: 1px solid #fff;
  background-color: #fff;
}
.notificationsItem.seen.last:hover {
  background-color: #eee;
}
.notificationsItemDate {
  font-size: 0.8rem;
  color: #666666;
  align-self: flex-end;
}
.tooltip.notificationsTooltip {
  border-radius: 8px;
  animation: showNotificationsContainer 0.2s;
}
.notificationsEmpty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.2rem;
  color: #666666;
}
@keyframes showNotificationsContainer {
  from {
    opacity: 0;
    transform: translate(0, -20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.popup .textEditor {
  background-color: #fff;
  padding: 8px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.textEditor.error .tox-tinymce {
  border: 1px solid #ff0000;
}
.textEditor .tox-tinymce {
  border-radius: 4px;
}
.textEditorControls {
  display: flex;
  flex-flow: row;
}
.textEditorControls button {
  width: 100%;
  height: 48px;
}
.pdfPreview {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 4px;
}
.pdfPreview:hover .pdfPreviewControls {
  display: flex;
}
.pdfPreview .react-pdf__Page__canvas {
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.pdfPreview .react-pdf__Page__textContent {
  margin: 0 auto;
}
.pdfPreview .react-pdf__Page__annotations {
  margin: 0 auto;
}
.pdfPreview .react-pdf__Document {
  height: 100%;
}
.pdfPreview .react-pdf__message {
  margin: 0 auto;
  width: 600px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pdfPreviewControls {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: max-content;
  display: none;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 8px;
}
.pdfPreviewControls .pdfPreviewControlsBtn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pdfPreviewPage {
  height: 100%;
  overflow: scroll;
}
.pdfPreviewPage.pagination {
  max-height: 640px;
}
/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
:root {
  --react-pdf-annotation-layer: 1;
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
  --input-focus-border-color: Highlight;
  --input-focus-outline: 1px solid Canvas;
  --input-unfocused-border-color: transparent;
  --input-disabled-border-color: transparent;
  --input-hover-border-color: black;
  --link-outline: none;
}
@media screen and (forced-colors: active) {
  :root {
    --input-focus-border-color: CanvasText;
    --input-unfocused-border-color: ActiveText;
    --input-disabled-border-color: GrayText;
    --input-hover-border-color: Highlight;
    --link-outline: 1.5px solid LinkText;
  }
  .annotationLayer .textWidgetAnnotation :is(input, textarea):required,
  .annotationLayer .choiceWidgetAnnotation select:required,
  .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
    outline: 1.5px solid selectedItem;
  }
  .annotationLayer .linkAnnotation:hover {
    backdrop-filter: invert(100%);
  }
}
.annotationLayer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: 0 0;
  z-index: 3;
}
.annotationLayer[data-main-rotation='90'] .norotate {
  transform: rotate(270deg) translateX(-100%);
}
.annotationLayer[data-main-rotation='180'] .norotate {
  transform: rotate(180deg) translate(-100%, -100%);
}
.annotationLayer[data-main-rotation='270'] .norotate {
  transform: rotate(90deg) translateY(-100%);
}
.annotationLayer canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}
.annotationLayer section {
  position: absolute;
  text-align: initial;
  pointer-events: auto;
  box-sizing: border-box;
  margin: 0;
  transform-origin: 0 0;
}
.annotationLayer .linkAnnotation {
  outline: var(--link-outline);
}
.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a:hover {
  opacity: 0.2;
  background: #ffff00;
  box-shadow: 0 2px 10px #ffff00;
}
.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.annotationLayer .textWidgetAnnotation :is(input, textarea),
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  background-image: var(--annotation-unfocused-field-background);
  border: 2px solid var(--input-unfocused-border-color);
  box-sizing: border-box;
  font: calc(9px * var(--scale-factor)) sans-serif;
  height: 100%;
  margin: 0;
  vertical-align: top;
  width: 100%;
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):required,
.annotationLayer .choiceWidgetAnnotation select:required,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
  outline: 1.5px solid red;
}
.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}
.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}
.annotationLayer .textWidgetAnnotation textarea {
  resize: none;
}
.annotationLayer .textWidgetAnnotation :is(input, textarea)[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled] {
  background: none;
  border: 2px solid var(--input-disabled-border-color);
  cursor: not-allowed;
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover {
  border: 2px solid var(--input-hover-border-color);
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
  border-radius: 2px;
}
.annotationLayer .textWidgetAnnotation :is(input, textarea):focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus {
  background-image: none;
  background-color: transparent;
}
.annotationLayer .buttonWidgetAnnotation.checkBox :focus {
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}
.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  border: 2px solid var(--input-focus-border-color);
  outline: var(--input-focus-outline);
}
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  background-color: CanvasText;
  content: '';
  display: block;
  position: absolute;
}
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  height: 80%;
  left: 45%;
  width: 1px;
}
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before {
  transform: rotate(45deg);
}
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: rotate(-45deg);
}
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}
.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}
.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
     * Letter spacing is placed on the right side of each character. Hence, the
     * letter spacing of the last character may be placed outside the visible
     * area, causing horizontal scrolling. We avoid this by extending the width
     * when the element has focus and revert this when it loses focus.
     */
  width: 103%;
}
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  appearance: none;
}
.annotationLayer .popupTriggerArea {
  height: 100%;
  width: 100%;
}
.annotationLayer .fileAttachmentAnnotation .popupTriggerArea {
  position: absolute;
}
.annotationLayer .popupWrapper {
  position: absolute;
  font-size: calc(9px * var(--scale-factor));
  width: 100%;
  min-width: calc(180px * var(--scale-factor));
  pointer-events: none;
}
.annotationLayer .popup {
  position: absolute;
  max-width: calc(180px * var(--scale-factor));
  background-color: #ffff99;
  box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor)) #888888;
  border-radius: calc(2px * var(--scale-factor));
  padding: calc(6px * var(--scale-factor));
  margin-left: calc(5px * var(--scale-factor));
  cursor: pointer;
  font: message-box;
  white-space: normal;
  word-wrap: break-word;
  pointer-events: auto;
}
.annotationLayer .popup > * {
  font-size: calc(9px * var(--scale-factor));
}
.annotationLayer .popup h1 {
  display: inline-block;
}
.annotationLayer .popupDate {
  display: inline-block;
  margin-left: calc(5px * var(--scale-factor));
}
.annotationLayer .popupContent {
  border-top: 1px solid #333333;
  margin-top: calc(2px * var(--scale-factor));
  padding-top: calc(2px * var(--scale-factor));
}
.annotationLayer .richText > * {
  white-space: pre-wrap;
  font-size: calc(9px * var(--scale-factor));
}
.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}
.annotationLayer section svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.annotationLayer .annotationTextContent {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: transparent;
  user-select: none;
  pointer-events: none;
}
.annotationLayer .annotationTextContent span {
  width: 100%;
  display: inline-block;
}
/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
:root {
  --react-pdf-text-layer: 1;
  --highlight-bg-color: #b400aa;
  --highlight-selected-bg-color: #006400;
}
@media screen and (forced-colors: active) {
  :root {
    --highlight-bg-color: Highlight;
    --highlight-selected-bg-color: ButtonText;
  }
}
[data-main-rotation='90'] {
  transform: rotate(90deg) translateY(-100%);
}
[data-main-rotation='180'] {
  transform: rotate(180deg) translate(-100%, -100%);
}
[data-main-rotation='270'] {
  transform: rotate(270deg) translateX(-100%);
}
.textLayer {
  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: hidden;
  line-height: 1;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  z-index: 2;
}
.textLayer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  margin: 0;
  transform-origin: 0 0;
}
/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
   * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}
.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  border-radius: 4px;
}
.textLayer .highlight.appended {
  position: initial;
}
.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}
.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}
.textLayer .highlight.middle {
  border-radius: 0;
}
.textLayer .highlight.selected {
  background-color: var(--highlight-selected-bg-color);
}
/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::selection {
  background: transparent;
}
.textLayer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  cursor: default;
  user-select: none;
}
.textLayer .endOfContent.active {
  top: 0;
}
.administrationContainer {
  overflow: auto;
}
.administrationCategory {
  padding: 1rem 0;
}
.administrationCategory:first-child {
  padding-top: 0;
}
.administrationCategory:last-child {
  padding-bottom: 0;
}
.administrationCategoryHeader {
  display: flex;
  flex-flow: row;
  gap: 1rem;
  padding-bottom: 1rem;
}
.administrationCategoryHeaderIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: 8px;
}
.administrationCategoryHeaderText {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.administrationCategoryHeaderTitle {
  font-size: 1.2rem;
  font-weight: 500;
}
.administrationCategoryTableRow {
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background-color: #f4f8fc;
}
.administrationCategoryTableRow:nth-child(odd) {
  background-color: #e9f1f8;
}
.administrationCategoryTableRow:hover {
  background-color: #cee0ef;
}
.administrationCategoryTableRowText {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.administrationCategoryTableRowName {
  color: #2f628f;
  font-weight: 500;
  width: 35%;
  margin-right: 1rem;
}
.administrationCategoryTableRowIcon {
  font-size: 1.5rem;
  margin-right: 8px;
}
.administrationCategoryTableRowDescription {
  width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.documentContainer {
  position: relative;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  display: grid;
  grid-template-columns: calc(100% - 595px - 2rem) 1fr;
  background-color: #fff;
}
.documentTabs {
  height: 100%;
}
.documentPageTab {
  width: 100%;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #ededed;
}
.documentPageTab .accordionLineHeaderNumber {
  min-width: 20px;
  max-width: 20px;
}
.documentPageTab .accordionLineHeaderText {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.documentPageTab.noContent {
  height: 100%;
  padding: 0;
  border-bottom: none;
}
.documentPageTab.open {
  border-right: none;
  background-color: #fff;
}
.documentPage {
  overflow-y: auto;
  overflow-x: hidden;
}
.documentPage.load {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburgerToggle {
  display: none;
}
.loginContainer .administrationLabel {
  display: flex;
  justify-content: center;
  padding-top: 0px;
  font-weight: 400;
}

