@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: calc(1 * 2);
  animation-iteration-count: calc(1 * 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: calc(1 * 3);
  animation-iteration-count: calc(1 * 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: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .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;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 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 {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -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;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -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;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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 {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  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);
  }

  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  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);
  }

  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  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);
  }

  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  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);
  }

  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    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 {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -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 {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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 {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    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;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -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 {
  from {
    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 {
  from {
    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;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    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 {
  from {
    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;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}


/*The box-sizing property allows us to include the padding and border in an element's total width and height.*/
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*body {
    font-family: sans-serif;
}*/

:root {
    /*VIOLA*/
    /*    --rst-bg-opacity: 1;
    --rst-main-color: rgba(99,102,241, var(--rst-bg-opacity));
    --rst-main-color-dark: rgba(67,56,202,var(--rst-bg-opacity));*/
    /*MENTA*/
    --rst-main-color: #3DD9C4;
    --rst-main-color-light: #45F5DD;
    --rst-main-color-dark: #299183;
    /*    --rst-border-radius: 0.375rem;*/

    --rst-border-radius-small:5px;
    --rst-border-radius: 5px;
    --rst-indigo: rgba(99,102,241,1);
    
    /* INPUT BOX*/
    --rst-inputbox-border-radius: 3px;
    --rst-inputbox-height: 30px;
}


.rstCloseAceEditorBtn {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
}

    .rstCloseAceEditorBtn:hover {
        opacity: 1;
    }

    .rstCloseAceEditorBtn:before, .rstCloseAceEditorBtn:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: white;
    }

    .rstCloseAceEditorBtn:before {
        transform: rotate(45deg);
    }

    .rstCloseAceEditorBtn:after {
        transform: rotate(-45deg);
    }

.rst-alert {
    width: 350px;
    height: 150px;
    display: none;
}

.rst-alert-container {
    border-radius: 5px;
    /*background-color: #ff8888d6;*/    
    padding: 20px;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    box-shadow: rgba(0,0,0,0.3) 10px 10px 20px;
    border: 1px solid #919191;
}

.rst-alert-close {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .rst-alert-close:hover {
        color: black;
    }

.rst-alert-info {
    background-color: #77bafbe3;
    color: white;
}
.rst-alert-warning {
    background-color: #d1ca51;
    color: black;
}
.rst-alert-error {
    background-color: #ff8888d6;
    color: white;
}



.rst-arraytextarea-container
{
    width:100%;
}

.rst-arraytextarea-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-arraytextarea-title[disabled] {
        color: silver;
    }

.rst-arraytextarea-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-arraytextarea-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-arraytextarea-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    /*border: 0px;*/
    border: 1px solid silver;
    /*height: var(--rst-inputbox-height);*/
    min-height: 31px;
    width: 100%;
    resize: none;
}

    .rst-arraytextarea-input:focus {
        /*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-arraytextarea-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    /*border: 1px solid silver;*/
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-arraytextarea-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-arraytextarea-required {
    border: 1px solid red;
}

    .rst-arraytextarea-required ~ .rst-arraytextarea-message {
        color: red;
    }


.rst-autocomplete-container {
    width: 100%;
}

.rst-autocomplete-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-autocomplete-title[disabled] {
        color: silver;
    }

.rst-autocomplete-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-autocomplete-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }




/* Dropdown Button */
.rst-autocomplete-btn {
    /*
    background-color: #3498DB;
    color: white;
    border: none;
    */
    background-color: white;
    color: black;
    border: 1px solid silver;
    border-radius: var(--rst-inputbox-border-radius);
    /*    padding: 10px;*/
    cursor: pointer;
    /*width: 200px;*/
    width: 100%;
    text-align: left;
    z-index: 1;
    display: flex;
}

    /* Dropdown button on hover & focus */
    .rst-autocomplete-btn:hover, .rst-autocomplete-btn:focus {
        /*background-color: #2980B9;*/
        background-color: whitesmoke;
    }

/* The container <div> - needed to position the dropdown content */
.rst-autocomplete {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Dropdown Content (Hidden by Default) */
.rst-autocomplete-content {
    /*    padding-top: 5px;
    padding-bottom: 5px;*/
    display: none;
    /*position: absolute;*/
    /*background-color: #f1f1f1;*/
    background-color: white;
    border: 1px solid gainsboro;
    /*max-width: 400px;*/
    /*width: 100%;*/
    width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 15000;
    border-radius: var(--rst-inputbox-border-radius);
    --animate-duration: 0.1s;
    position: fixed;
    min-width: 140px;
    /*    height: 200px;*/
    overflow-y: auto;
    overflow-x: hidden;
    /*    min-height: 43px;*/
    max-height: 250px;
}

    /* Links inside the dropdown */
    .rst-autocomplete-content a {
        color: black;
        text-decoration: none;
        display: block;
        height: 43px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-top: 9.5px;
        padding-left: 15px;
        text-align: start;
    }

        /* Change color of dropdown links on hover */
        .rst-autocomplete-content a:hover {
            background-color: #ddd
        }

.rst-autocomplete-content-selected {
    background-color: mediumpurple;
    color: white !important;
}

.rst-autocompletesearch-defaultvalue-clear-btn {
    display: none;
    border: 1px solid gainsboro;
    border-radius: var(--rst-border-radius);
    /*    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0.75rem;
    font-size: .875rem;
    line-height: 1.25rem;*/
    height: 25px;
    cursor: pointer;
    /*    --tw-bg-opacity: 1;
    background-color: rgba(99,102,241,var(--tw-bg-opacity));*/
    background-color: var(--rst-main-color);
    color: white;
}


    .rst-autocompletesearch-defaultvalue-clear-btn:hover {
        /*        --tw-bg-opacity: 1;
        background-color: rgba(67,56,202,var(--tw-bg-opacity));*/
        background-color: var(--rst-main-color-dark);
    }

.rst-autocomplete-defaultvalue {
    padding: 5px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*width: 145px;*/
    width: 100%;
    height: 25px;
}

.rst-autocomplete-validation-error {
    border: 1px solid red !important;
}

    .rst-autocomplete-validation-error ~ .rst-autocomplete-message {
        color: red !important;
    }

.rst-autocomplete-conteiner .rst-searchbox-input {
    height:29px;
}

.rst-booleanlabel-container {
    margin-top:10px;
}

.rst-booleanlabel {
}

.rst-booleanlabel-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-booleanlabel-title[disabled] {
        color: silver;
    }

.rst-booleanlabel-box {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: gray;
}
.rst-breadcrumb-scroll-container {
    position: absolute;
    left: 40px;
    right: 20px;
    display: inline-block;
    height: 40px;
/*    font-size: 14px;*/
    font-weight: 400;
    color: #475466;
    letter-spacing: 0.2px;
    cursor: default;
    /*overflow: hidden;*/
    background-color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    /*    direction: rtl;*/
}

.rst-breadcrumb-content {
    white-space: nowrap;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    font-weight: 300;
    padding: 0;
    display: inline-block;

    /*    direction: rtl;*/
}

.rst-breadcrumb-caret-icon-container {
    width: 20px;
    display: inline-block;
    font-size: 18px;
    vertical-align: middle;
    line-height: 40px;
    text-align: center;
}
    .rst-breadcrumb-caret-icon-container:hover {
        cursor: pointer;
        color: #1ca1c1;
    }

.rst-breadcrumb-item {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    /*    padding-left: 5px;
    padding-right: 5px;*/
    /*font-size: 16px;*/
    font-size: 1.1em;
    /* TODO Se vuoi impostare gli ellipsis per i testi troopo lunghi --> Scommentare il max-width sottostante */
    /*max-width: 130px;*/
}

    .rst-breadcrumb-item:hover {
        cursor: pointer;
        color: #1ca1c1;
    }

.rst-breadcrumb-content-selected {
    cursor: pointer;
    color: #1ca1c1;
}

.rst-breadcrumb-icon {
    width: 20px;
    display: inline-block;
    text-align: center;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}

.rst-breadcrumb-icon-container {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    text-align: center;
}


.rst-button-md {
    border: 1px solid gainsboro;
    /*border-radius: var(--rst-border-radius);*/
    border-radius: 5px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0.75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    height: 38px;
    cursor: pointer;
}

/*cambiare nome classe in rst-button-colored-01*/
.rst-button-indigo {
    /*    --tw-bg-opacity: 1;
    background-color: rgba(99,102,241,var(--tw-bg-opacity));*/    
    background-color: var(--rst-main-color);
    color: white;
}

    .rst-button-indigo:hover {
/*        --tw-bg-opacity: 1;
        background-color: rgba(67,56,202,var(--tw-bg-opacity));*/
        background-color: var(--rst-main-color-dark);
    }


.rst-button-white {
    color: rgba(55,65,81);
    background-color: white;
    cursor: pointer;
}

    .rst-button-white:hover {
        color: white;
        background-color: silver;
    }


.rst-colorpicker-container {
    width: 100%;
}

.rst-colorpicker-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-colorpicker-title[disabled] {
        color: silver;
    }

.rst-colorpicker-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-colorpicker-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-colorpicker-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;    
}

    .rst-colorpicker-input:focus {
        /*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-colorpicker-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
    max-width: 80px;
}

    .rst-colorpicker-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-colorpicker-required {
    border: 1px solid red;
}

    .rst-colorpicker-required ~ .rst-colorpicker-message {
        color: red;
    }



.rst-contextmenu-container {
    /*position:absolute;*/
    z-index: 118;
    position: fixed;
    background-color: #fff;
    border-radius: 2px;
    /*font-family: Roboto, sans-serif;*/
    /*font-size: 14px;*/
    font-weight: 400;
    color: #475466;
    letter-spacing: 0.2px;
    cursor: default;
    white-space: normal;
    /*box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%), 0 1px 7px 0 rgb(0 0 0 / 10%);*/
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 30%), 0 1px 7px 0 rgb(0 0 0 / 30%);
    --animate-duration: 0.1s;
    /*overflow: auto;*/
    max-height: 210px;
    height: 200px;
    /*    padding-left: var(--rst-border-radius-small);
    padding-right: var(--rst-border-radius-small);*/    
    padding: var(--rst-border-radius-small);
    border-radius: var(--rst-border-radius-small);
}

.rst-contextmenu-item {
    border-bottom: 1px solid #EDEFF0;
    border-color: #EDEFF0;
    border: none;
    text-decoration: none;
    background: #FFFFFF;
    cursor: pointer;
    letter-spacing: 0.2px;
    width: 100%;
}

    .rst-contextmenu-item:hover {
        background-color: #edeff5;
    }

.rst-contextmenu-anchoritem {
    width: 100%;
    overflow: hidden;
    /*color: #94a1b3;*/
    color: #606060;
    display: inline-flex;
    box-sizing: border-box;
    line-height: 31px;
    text-align: left;
    padding: 5px 10px;
    user-select: none;
}

.rst-contextmenu-iconitem {
    display: inline-block;
    margin-right: 7px;
    vertical-align: middle;
    line-height: 1;
    font-style: normal;
    /*font-weight: 100;*/
    font-size: 20px;
}

.rst-contextmenu-border-line {
    display: none;
}


.rst-contextmenu-labelitem {
    font-size: 1em;
    text-overflow: ellipsis;
    overflow: hidden;
}
.rst-contextmenu-shortcutitem {
    font-size: 0.9em;
    float: right;
    padding: 2px;
    font-weight: lighter;
}

.rst-datatable-container {
    display: inline;
}

    .rst-datatable-container table {
        /*font-family: arial, sans-serif;*/
        border-collapse: collapse;
        width: 100%;
    }

    .rst-datatable-container td, .rst-datatable-container th {
        border: 1px solid #dddddd;
        text-align: left;
        padding: 5px;
    }

    .rst-datatable-container tr:nth-child(even) {
        background-color: #dddddd;
    }

/*.rst-repeater-name {
    max-width: 140px;
    border-radius: 7px;
    text-align: center;
    vertical-align: middle;
    font-family: Helvetica, sans-serif, Arial;
    font-size: 0.8em;
    display: inline-block;
    padding: 1px 3px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin-right: 3px;
}*/


.rst-datelabel-container {
    margin-top: 10px;
}

.rst-datelabel {
}

.rst-datelabel-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-datelabel-title[disabled] {
        color: silver;
    }

.rst-datepicker-container {
    width: 100%;
}

.rst-datepicker-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-datepicker-title[disabled] {
        color: silver;
    }

.rst-datepicker-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-datepicker-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-datepicker-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;
}

    .rst-datepicker-input:focus {
        /*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-datepicker-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-datepicker-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-datepicker-validation-error {
    border: 1px solid red;
}

    .rst-datepicker-validation-error ~ .rst-datepicker-message {
        color: red;
    }

.rst-datetimepicker-container {
    width: 100%;
}

.rst-datetimepicker-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-datetimepicker-title[disabled] {
        color: silver;
    }

.rst-datetimepicker-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-datetimepicker-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-datetimepicker-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;
}

    .rst-datetimepicker-input:focus {
        /*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-datetimepicker-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-datetimepicker-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-datetimepicker-validation-error {
    border: 1px solid red;
}

    .rst-datetimepicker-validation-error ~ .rst-datetimepicker-message {
        color: red;
    }

/* contenitore principale */
.rst-diagram-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden
}

/* contenitore principale per scrolling */
.rst-diagram-scroll-container {
    overflow: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transform: scale(1);
    transform-origin: 0 0;
}

/* contenitore per le linee di sfondo*/
.rst-diagram-lines-container {
    overflow: hidden;
    position: relative;
    top: 0px;
    bottom: 0px;
    left: 0px;
    /*right: 0px;*/
    /*height: 1000vh;*/
    height: 8000px;
    width: 8000px;
}

/* contenitore per gli items del diagramma */
.rst-diagram-shapes-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.rst-diagram-shape {
    cursor: pointer;
    position: absolute;
}



.rst-diagram-selection-layer {
    position: absolute;
    pointer-events: none;
    box-sizing: border-box;
    border: 1px solid #1ca1c1;
    box-shadow: inset 0 0 6px -3px #1ca1c1;
}

.rst-diagram-resizer {
    pointer-events: all;
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: -8px 0 0 -8px;
    background-color: #1ca1c1;
    transition-duration: .15s;
    transform: scale(0.5);
    transition-property: transform;
}

    .rst-diagram-resizer:hover {
        pointer-events: all;
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        margin: -8px 0 0 -8px;
        background-color: #1ca1c1;
        transition-duration: .15s;
        transform: scale(1.5);
        transition-property: transform;
    }

.rst-diagram-resizer-top-left:hover {
    cursor:se-resize;
}
.rst-diagram-resizer-top-right:hover {
    cursor: sw-resize;
}
.rst-diagram-resizer-bottom-left:hover {
    cursor: ne-resize;
}
.rst-diagram-resizer-bottom-right:hover {
    cursor: nw-resize;
}

.rst-diagram-text {
    text-align: center;
    color: #475466;
    overflow: hidden;
    padding: 4px 8px;
    position: absolute;
    top: 0;
    left: 0px;
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rst_diagram_text_inner {
    padding: 0 2px;
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rst-diagram-zoom-btn-container {
    position: absolute;
    height: 30px;
    bottom: 20px;
    right: 20px;
}

.rst-diagram-zoomin-btn {
}

.rst-diagram-zoomout-btn {
}



/* OLD */


.mybody {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 6 130 26' width='100%' height='100%'%3E%3Cstyle type='text/css'%3E .st0%7Bstroke:%23A5EF8B; fill:none; stroke-width:12;%7D %3C/style%3E%3Cpath class='st0' d='M-1,12c32.5,0,32.5,12,65,12s32.5-12,69-12'/%3E%3C/svg%3E%0A");
    /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cstyle type='text/css'%3E line %7B stroke: %23ccc; %7D %3C/style%3E%3Cdefs%3E%3Cpattern id='grid' patternUnits='userSpaceOnUse' width='10' height='10' patternTransform='rotate(45)'%3E%3Cline x1='5' y1='0' x2='5' y2='10' /%3E%3Cline x1='0' y1='5' x2='10' y2='5' /%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(../../src/css/#grid)' /%3E%3C/svg%3E");*/
    background-size: 12vw; /*min-height: 100vh*/
}

/*.rst-diagram-container {
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 0px;
    right: 0px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cstyle type='text/css'%3E line %7B stroke: %23ccc; %7D %3C/style%3E%3Cdefs%3E%3Cpattern id='grid' patternUnits='userSpaceOnUse' width='100' height='100' patternTransform='rotate(0) translate(-50 -50)'%3E%3Cline x1='50' y1='0' x2='50' y2='100' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(../../src/css/#grid)' /%3E%3C/svg%3E");
}*/

.rst-diagram-container_old {
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 0px;
    right: 0px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><style type="text/css">line {stroke: #ccc;}</style><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="100" height="100" patternTransform="rotate(0) transform(-50 -50)"><line x1="50" y1="0" x2="50" y2="100" /><line x1="0" y1="50" x2="100" y2="50" /></pattern></defs><rect width="100%" height="100%" fill="url(../../src/css/#grid)"/></svg>');
}

.rst-diagram-lines_old {
    /*background-image: url(/img/grid.svg);*/
    /*background-size:12vw;*/
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cstyle type='text/css'%3E line %7B stroke: %23ccc; %7D %3C/style%3E%3Cdefs%3E%3Cpattern id='grid2' patternUnits='userSpaceOnUse' width='100' height='100' patternTransform='rotate(0) translate(-50 -50)'%3E%3Cline x1='50' y1='0' x2='50' y2='100' /%3E%3Cline x1='0' y1='50' x2='100' y2='50' /%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(../../src/css/#grid2)' /%3E%3C/svg%3E");
}



.rst-dropdownlist-container {
    width: 100%;
}

.rst-dropdownlist-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-dropdownlist-title[disabled] {
        color: silver;
    }

.rst-dropdownlist-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-dropdownlist-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }




/* Dropdown Button */
.rst-dropdownlist-btn {
    /*
    background-color: #3498DB;
    color: white;
    border: none;
    */
    height:30px;
    background-color: white;
    color: black;
    border: 1px solid silver;
    border-radius: var(--rst-inputbox-border-radius);
/*    padding: 10px;*/
    cursor: pointer;
    /*width: 200px;*/
    width: 100%;
    text-align: left;
    z-index: 1;
    display: flex;
}

    /* Dropdown button on hover & focus */
    .rst-dropdownlist-btn:hover, .rst-dropdownlist-btn:focus {
        /*background-color: #2980B9;*/
        background-color: whitesmoke;
    }

/* The container <div> - needed to position the dropdown content */
.rst-dropdownlist {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Dropdown Content (Hidden by Default) */
.rst-dropdownlist-content {
/*    padding-top: 5px;
    padding-bottom: 5px;*/
    display: none;
    /*position: absolute;*/
    /*background-color: #f1f1f1;*/
    background-color: white;
    border: 1px solid gainsboro;
    /*max-width: 400px;*/
    /*width: 100%;*/
    width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 15000;
    border-radius: var(--rst-inputbox-border-radius);
    --animate-duration: 0.1s;
    position: fixed;
    min-width: 140px;
    /*    height: 200px;*/
    overflow-y: auto;
    overflow-x: hidden;
/*    min-height: 43px;*/
    max-height: 250px;
}

    /* Links inside the dropdown */
    .rst-dropdownlist-content a {
        color: black;
        text-decoration: none;
        display: block;
        height: 43px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-top: 9.5px;
        padding-left: 15px;
        text-align: start;
    }

        /* Change color of dropdown links on hover */
        .rst-dropdownlist-content a:hover {
            background-color: #ddd
        }

.rst-dropdownlist-content-selected {
    /*background-color: mediumpurple;*/
    background-color: var(--rst-main-color);
    color: white !important;
}

.rst-dropdownlist-defaultvalue {
    padding: 5px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*width: 145px;*/
    width: 100%;
    height: 25px;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
/*.show {
    display: block;
}*/



.rst-dropdownsearch-container {
    width: 100%;
}

.rst-dropdownsearch-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-dropdownsearch-title[disabled] {
        color: silver;
    }

.rst-dropdownsearch-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-dropdownsearch-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }




/* Dropdown Button */
.rst-dropdownsearch-btn {
    /*
    background-color: #3498DB;
    color: white;
    border: none;
    */
    height:30px;
    background-color: white;
    color: black;
    border: 1px solid silver;
    border-radius: var(--rst-inputbox-border-radius);
/*    padding: 10px;*/
    cursor: pointer;
    /*width: 200px;*/
    width: 100%;
    text-align: left;
    z-index: 1;
    display: flex;
}

    /* Dropdown button on hover & focus */
    .rst-dropdownsearch-btn:hover, .rst-dropdownsearch-btn:focus {
        /*background-color: #2980B9;*/
        background-color: whitesmoke;
    }

/* The container <div> - needed to position the dropdown content */
.rst-dropdownsearch {
    position: sticky;
    top: 0px;
    background-color: white;
    display: inline-block;
    width: 100%;
}

/* Dropdown Content (Hidden by Default) */
/*.rst-dropdownsearch-content {*/
/*    padding-top: 5px;
    padding-bottom: 5px;*/
    /*display: none;*/
    /*position: absolute;*/
    /*background-color: #f1f1f1;*/
    /*background-color: white;
    border: 1px solid gainsboro;*/
    /*max-width: 400px;*/
    /*width: 100%;*/
    /*width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 15000;
    border-radius: var(--rst-inputbox-border-radius);
    --animate-duration: 0.1s;
    position: fixed;
    min-width: 140px;*/
    /*    height: 200px;*/
    /*overflow-y: auto;
    overflow-x: hidden;*/
/*    min-height: 43px;*/
    /*max-height: 250px;
}*/

/* Dropdown Search and Content (Hidden by Default) */
.rst-dropdownsearch-searchcontent-container {
    /*    padding-top: 5px;
    padding-bottom: 5px;*/
    display: none;
    /*position: absolute;*/
    /*background-color: #f1f1f1;*/
    background-color: white;
    border: 1px solid gainsboro;
    /*max-width: 400px;*/
    /*width: 100%;*/
    width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 15000;
    border-radius: var(--rst-inputbox-border-radius);
    --animate-duration: 0.1s;
    position: fixed;
    min-width: 140px;
    /*    height: 200px;*/
    overflow-y: auto;
    overflow-x: hidden;
    /*    min-height: 43px;*/
    max-height: 250px;
}

    /* Links inside the dropdown */
    .rst-dropdownsearch-content a {
        color: black;
        text-decoration: none;
        display: block;
        height: 43px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-top: 9.5px;
        padding-left: 15px;
        text-align: start;
    }

        /* Change color of dropdown links on hover */
        .rst-dropdownsearch-content a:hover {
            background-color: #ddd
        }

.rst-dropdownsearch-content-selected {
    /*background-color: mediumpurple;*/
    background-color: var(--rst-main-color);
    color: white !important;
}

.rst-dropdownsearch-defaultvalue {
    padding: 5px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*width: 145px;*/
    width: 100%;
    height: 25px;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
/*.show {
    display: block;
}*/


.rst-durationbox-container {
    width: 100%;
}

.rst-durationbox-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-durationbox-title[disabled] {
        color: silver;
    }

.rst-durationbox-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-durationbox-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-durationbox-input-hours {
    margin-left: 3px;
    width: 60px;
    border: 0;
    height: calc(var(--rst-inputbox-height) - 2px);
}

    .rst-durationbox-input-hours:focus {
        outline: none;
    }


.rst-durationbox-input-minutes {
    width: 35px;
    border: 0;
    height: calc(var(--rst-inputbox-height) - 2px);
}

    .rst-durationbox-input-minutes:focus {
        outline: none;
    }

.rst-durationbox-input-seconds {
    width: 35px;
    border: 0;
    height: calc(var(--rst-inputbox-height) - 2px);
}

    .rst-durationbox-input-seconds:focus {
        outline: none;
    }


.rst-durationbox-input-container {
    border-radius: 3px;
    border: 1px solid silver;
    transition: border-color 0.4s;
    /*border-bottom: 1px solid gray;*/
    /*transition: border-bottom-color 0.4s;*/
    width: 150px;
    width: 100%;
    height: var(--rst-inputbox-height);
    background-color: white;
}

    .rst-durationbox-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

    /* Chrome, Safari, Edge, Opera */
/*    .rst-durationbox-input-container
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }*/

    /* Firefox */
/*    .rst-durationbox-input-container
    input[type=number] {
        -moz-appearance: textfield;
    }*/


.rst-durationbox-validation-error {
    border: 1px solid red;
}

    .rst-durationbox-validation-error ~ .rst-numericbox-message {
        color: red;
    }


.rst-durationlabel-container {
    margin-top:10px;
}

.rst-durationlabel {
}

.rst-durationlabel-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-durationlabel-title[disabled] {
        color: silver;
    }
/*
.rst-textlabel-tooltip {
    visibility: hidden;
    opacity: 0;
    width: 320px;
    background-color: #303030;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    transition: 0.25s all ease;
}

.rst-textlabel-tooltip-clicked {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}*/

/*.rst-toolbar-button:hover {
    background-color: silver !important;
    color: black !important;
}*/

.rst-codegenerated-table {
    border: 1px solid;
}

    .rst-codegenerated-table > th {
        border: 1px solid;
    }

    .rst-codegenerated-table > td {
        border: 1px solid;
        min-width: 50px;
    }

.rst-editor-container > [contenteditable] {
    outline: 1px solid transparent;
}

.rst-editor-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.rst-editor-content {
    width: 100%;
    height: 95%;
    overflow: auto;
    padding: 10px;
}



.rst-editor-toolbar {
    width: 100%;
    height: 33px;
    /*    
    background-color: #e1e1e1;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    border: 1px solid;
    padding: 10px;
    box-shadow: 0px 5px 8px 0px #888888;
    margin-bottom: 20px;*/
}

    .rst-editor-toolbar > button {
        background-color: #ffffff;
        border: 1px solid #7f7f7f;
        border-radius: 3px;
        font-size: 1.1em;
    }

        .rst-editor-toolbar > button:hover {
            background-color: #29292917 !important;
        }


/* Ovveriding CSS of RstDropdownlist WebComponent*/

.rst-editor-fontsize-dropdown {
    background-color: #ffffff;
}

    /*.rst-dropdownlist-btn {
    padding: 3.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/

    .rst-editor-fontsize-dropdown:hover {
        background-color: #29292917 !important;
    }

.rst-editor-container .rst-dropdownlist-title {
    display: none;
}

.rst-editor-container .rst-dropdownlist-message {
    display: none;
}

.rst-colorpicker-input {
    box-shadow: 0px 5px 8px 0px #888888;
}

.rst-editor-elementstreeview-container {
    box-shadow: 1px 1px 8px 0px #888888;
    position: absolute;
    bottom: 17px;
    left: 0px;
    padding: 8px;
    font-size: 15px;
    /*font-family: monospace;*/
}


.rst-fakeclosabletab-container {
    display: table;
    height: 100%;
}

.rst-fakeclosabletab-tab {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid silver;
    padding-left: 10px;
    padding-right: 10px;
}

.rst-fakeclosabletab-tab-selected {
    background-color: whitesmoke;
}

.rst-fakeclosabletab-xmark {
    float: right;
}

    .rst-fakeclosabletab-xmark:hover {
        color: red;
    }


.rst-faketab-container {
    padding: 10px;
    overflow: hidden;
    height: 43px;
}

.rst-faketab-item {
    cursor: pointer;
    display: inline-block;
    padding-right: 15px;
    padding-bottom: 10px;
    font-size: 1.2em;
}

.rst-faketab-item-margin {
    margin-left: 10px;
}

.rst-faketab-item-selected {
    border-bottom: 3px solid rgb(61, 217, 196);
}

.rst-faketab-item-url {
    outline:0;
    text-decoration:none;
}
.rst-faketab-item-url:hover {
    outline: 0;
    text-decoration: none;
}
.rst-faketab-item-url:visited {
    outline: 0;
    text-decoration: none;
}



.rst-fieldfilterpanel-container {
    z-index: 64000;
    position: fixed;
    /*width: 210px;*/
    border-color: rgba(0,0,0,.08);
    color: #424242;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 3%), 0 4px 5px 0 rgb(0 0 0 / 4%);
    margin: 0;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    padding: 8px;
    border-radius: 5px;
}

.rst-fieldfilterpanel-textbox-div {
    margin-top: 8px;
}

    .rst-fieldfilterpanel-textbox-div > input {
        width: 100%;
        border: 1px solid;
        border-color: rgba(192,192,192,0.8);
        outline: 0;
        background: 0 0;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 4px;
        font-size: 0.90em;
        padding: 5px 8px;
    }

        .rst-fieldfilterpanel-textbox-div > input:focus-within {
            border-color: rgba(192,192,192,.16);
            box-shadow: 0 0 0 2px rgb(0 0 0 / 8%);
        }

        .rst-fieldfilterpanel-textbox-div > input:hover {
            border-color: rgba(192,192,192,1.1);
        }

.rst-fieldfilterpanel-numericbox-div {
    margin-top: 8px;
}

    .rst-fieldfilterpanel-numericbox-div > input {
        width: 100%;
        border: 1px solid;
        border-color: rgba(192,192,192,0.8);
        outline: 0;
        background: 0 0;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 4px;
        font-size: 0.90em;
        padding: 5px 8px;
    }


        .rst-fieldfilterpanel-numericbox-div > input:focus-within {
            border-color: rgba(192,192,192,.16);
            box-shadow: 0 0 0 2px rgb(0 0 0 / 8%);
        }

        .rst-fieldfilterpanel-numericbox-div > input:hover {
            border-color: rgba(192,192,192,1.1);
        }



.rst-fieldfilterpanel-datetime-div {
    margin-top: 8px;
}

    .rst-fieldfilterpanel-datetime-div > input {
        width: 100%;
        border: 1px solid;
        border-color: rgba(192,192,192,0.8);
        outline: 0;
        background: 0 0;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 4px;
        font-size: 0.90em;
        padding: 5px 8px;
    }

        .rst-fieldfilterpanel-datetime-div > input:focus-within {
            border-color: rgba(192,192,192,.16);
            box-shadow: 0 0 0 2px rgb(0 0 0 / 8%);
        }

        .rst-fieldfilterpanel-datetime-div > input:hover {
            border-color: rgba(192,192,192,1.1);
        }

.rst-fieldfilterpanel-filterbutton {
    margin-top: 8px;
    display: inline-block;
    padding: 5px 5px;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    /*background-color: #116fa5;*/
    background-color: var(--rst-main-color);
    border: none;
    /*border-radius: 15px;*/
    border-radius: 5px;
    box-shadow: 0 2px #999;
    user-select: none;
}

    .rst-fieldfilterpanel-filterbutton:hover {
        /*background-color: #16628e;*/
        background-color: var(--rst-main-color-dark);
    }

    .rst-fieldfilterpanel-filterbutton:active {
        background-color: #116fa5;
        box-shadow: 0 2px #666;
        transform: translateY(1px);
    }


.rst-fieldfilterpanel-clearbutton {
    display: inline-block;
    padding: 5px 5px;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: silver;
    border: none;
    /*border-radius: 15px;*/
    border-radius: 5px;
    box-shadow: 0 2px #999;
    user-select: none;
}

    .rst-fieldfilterpanel-clearbutton:hover {
        /*background-color: #16628e;*/
        background-color: var(--rst-main-color-dark);
    }

    .rst-fieldfilterpanel-clearbutton:active {
        background-color: #116fa5;
        box-shadow: 0 2px #666;
        transform: translateY(1px);
    }


.rst-fieldfilterpanel-select {
    border: 1px solid;
    border-color: rgba(192,192,192,0.8);
    outline: 0;
    background: 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    font-size: 0.90em;
    width: 100%;
    padding: 4px 4px;
    cursor: pointer;
}

.rst-fieldfilterpanel-combo-operations-container:hover:not(option) {
    background-color: #c0c0c061;
}

.rst-fieldfilterpanel-combo-operations-container > option {
    padding: 5px;
}


.rst-fieldfilterpanel-checkbox-filter {
    position: absolute;
    cursor: pointer;
    width: 0px;
    height: 0px;
}

    .rst-fieldfilterpanel-checkbox-filter:checked:before {
        content: "";
        display: block;
        position: absolute;
        width: 15px;
        height: 15px;
        border: 2px solid #ccd2d6;
        border-radius: 20px;
        background-color: #445768;
        transition: all 0.2s linear;
    }


    .rst-fieldfilterpanel-checkbox-filter:before {
        content: "";
        display: block;
        position: absolute;
        width: 15px;
        height: 15px;
        border: 2px solid #ccd2d6;
        border-radius: 3px;
        background-color: #445768;
    }


    .rst-fieldfilterpanel-checkbox-filter:after {
        content: "";
        display: block;
        width: 0px;
        height: 0px;
        border: solid #ccd2d6;
        border-width: 0 0px 0px 0;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        position: absolute;
        top: 0px;
        left: 50px;
        transition: all 0.2s linear;
    }

    .rst-fieldfilterpanel-checkbox-filter:checked:after {
        content: "";
        display: block;
        width: 12px;
        height: 21px;
        border: solid #ccd2d6;
        border-width: 0 4px 4px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: -11px;
        left: 5px;
    }

.rst-fieldfilterpanel-combobox-filter {
    border: 1px solid;
    border-color: rgba(192,192,192,0.8);
    outline: 0;
    background: 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    font-size: 0.90em;
    width: 100%;
    padding: 4px 4px;
    cursor: pointer;
}

.rst-filemanager-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
    background-color: #EBEDF0;
}

.rst-breadcrumb-searchbox-container {
    position: absolute;
    top: 51px;
    left: 0px;
    right: 0px;
    height: 41px;
    background-color: white;
    border-bottom: 1px solid silver;
}

.rst-filemanager-treeview-container {
    background-color: #FFFFFF;
    border-top: 0px;
    border-right: 1px solid silver;
    overflow: auto;
    position: absolute;
    /*top: 10px;*/
    /*top: 60px;*/
    top: 92px;
    bottom: 0px;
    width: 241px;
}

.rst-filemanager-toolbar-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 51px;
    background-color: white;
    border-bottom: 1px solid silver;
}

.rst-filemanager-gridview-container {
    position: absolute;
    left: 240px;
    right: 0px;
    /*top: 102px;*/
    top: 92px;
    bottom: 0px;
    background-color: #FFFFFF;
    border-left: 1px solid silver;
}

.rst-gridview-th {
    border-left: none !important;
}


.rst-gridview-pager-container {
    border: none !important;
}

.rst-filemanager-breadcrumb-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 200px;
    height: 40px;
    background-color: white;
}


.rst-filemanager-uploader-container {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    display: inline-block;
}


.rst-filemanager-searchbox-container {
    position: absolute;
    top: 5px;
    width: 200px;
    right: 0px;
    height: 30px;
}

.fa-angle-double-right:hover {
    cursor: pointer;
}
/*
    NON VANNO BENE DATO CHE SOVRASCRIVONO I CSS DELLA RST-TEXTBOX
.rst-searchbox-message {
    height: 0px !important;
}

.rst-textbox-container {
    padding: 10px;
}

.rst-textbox-input-container {
    display: inline-block;    
    width: 90%;    
}
*/
/* Rst InfoPanel */
.rst-infopanel-overallcontainer {
    box-shadow: rgb(0 0 0 / 26%) -2px 0px 5px -1px;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 1px;
    width: 350px;
    background-color: white;
    border-left: 1px solid silver;
    /*font-family: Roboto, sans-serif;*/
    font-size: 14px;
    font-weight: 400;
    color: #475466;
    letter-spacing: 0.2px;
    cursor: default;
    display: none;
    animation-duration: 0.2s;
}

.rst-infopanel-information {
    /*font-family: Roboto, sans-serif;*/
    font-size: 16px;
    font-weight: 500;
    color: #1CA1C1;
    letter-spacing: 0px;
    border: none;
    box-shadow: inset 0 -2px #1ca1c1;
    padding-bottom: 0;
    text-align: center;
    line-height: 45px;
}

.rst-infopanel-detail-img-container {
    position: absolute;
    right: 0px;
    top: 36px;
    bottom: 0px;
    width: 350px;
    overflow-y: auto;
    overflow-x: hidden;
}

.rst-infopanel-img-container {
    display: block;
    width: 350px;
    /* height: 290px; */
    /* padding-left: 15px; */
    padding-top: 48px;
    line-height: 48px;
}

.rst-infopanel-img {
    width: 100%;
    height: 100%;
}

.rst-infopanel-detailscontainer {
    padding: 23px;
    text-align: center;
}

.rst-infopanel-label {
    float: left;
    width: 40%;
    font-weight: 500;
    text-align: right;
    line-height: 40px;
}

    .rst-infopanel-label > span {
        font-weight: 600;
    }

/*.fa-angle-double-right {
    position: relative;
    top: 2px;
    left: 10px;
    color: #1ca1c1;
    font-size: 19px;
    margin-right: 18px;
    font-weight: normal;
    cursor: pointer;
}*/

.rst-infopanel-closearrow {
    height: 36px;
    padding-top: 2px;
    border-bottom: 1px solid #77b9c9;
}

.rst-infopanel-closearrow-span {
    color: #94a1b3;
    cursor: pointer;
    display: inline-block;
    /*font-family: Roboto, sans-serif;*/
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    height: auto;
    letter-spacing: 0.2px;
    line-height: 36px;
    outline-color: rgb(28, 161, 193);
    text-align: start;
    white-space: nowrap;
    width: auto;
}

    .rst-infopanel-closearrow-span:hover {
        color: #1CA1C1;
    }

.rst-infopanel-detail {
    float: right;
    width: 45%;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    overflow: hidden;
    text-align: left;
    line-height: 40px;
}

.rst-infopanel-detailicon-folder {
    font-size: 10em;
    float: left;
    display: block;
    width: 470px;
    height: 290px;
    border-width: 1px;
    padding-left: 105px;
    padding-top: 85px;
    font-weight: lighter;
}

.rst-infopanel-detailicon-file {
    font-size: 10em;
    float: left;
    display: block;
    width: 470px;
    height: 290px;
    border-width: 1px;
    padding-left: 119px;
    padding-top: 80px;
    font-weight: lighter;
}



.rst-filterpanel-checkbox-div {
    min-width: 170px;
}

.rst-filterpanel-datebox-div {
    min-width: 170px;
}

.rst-filterpanel-numericbox-div {
    min-width: 170px;
}

.rst-filterpanel-textbox-div {
    min-width: 170px;
}

.rst-filterpanel-combobox-div {
    min-width: 170px;
}



.rst-filterpanel-autocomplete-div .rst-checkbox-filter {
    vertical-align: top;
}

.rst-autocomplete-filter {
    width: 140px;
    display: inline-block;
}

    .rst-autocomplete-filter .rst-autocomplete-title {
        display: none;
    }

    .rst-autocomplete-filter .rst-autocomplete-message {
        display: none;
    }

.rst-autocomplete-filter .rst-searchbox-input {
    height: 22px;
}
    .rst-autocomplete-filter .rst-autocomplete > div:first-child {
        height: 25px !important;
    }

.rst-combobox-filter {
    border-color: silver;
    border-radius: 3px;
}

/* CSS For FlyoutPanel */

.rst-flyoutpanel-container {
    position: fixed;
    right: 0px;
    height: 370px;
    width: 350px;
    background-color: whitesmoke;
    border-color: silver;
    border-width: 1px 1px 1px;
    border-style: solid;
    display: block;
    padding: 10px;
}

.rst-table-userinfopanel {
    height: 100%;
    width: 100%;
}

.rst-flyoutpanel-informationpanel {
    margin-left: 2px;
    padding: 8px;
    background-color: silver;
    text-align: center;
    display: block;
    color: #fff;
    box-shadow: 0px 1px 5px 3px #8b8b8b;
    cursor: pointer;
    border-radius: 9px;
}

.rst-flyoutpanel-imguserprofile {
    width: 96px;
    height: 96px;
    border-radius: 50px;
    box-shadow: 0px 1px 5px 3px silver;
}

.rst-flyoutpanel-personalsettingsbutton {
    cursor: pointer;
    margin-top: 20px;
}

.rst-flyoutpanel-adminbutton {
    width: 100%;
    padding: 8px;
    text-decoration: none;
    background-color: #b71c1c;
    text-align: center;
    display: block;
    color: #fff;
    height: 35px;
    box-shadow: rgb(0 0 0 / 30%) 3px 3px 5px;
}

    .rst-flyoutpanel-adminbutton:hover {
        background-color: #303030;
        color: #fff;
    }

.rst-flyoutpanel-exitbutton {
    width: 100%;
    padding: 8px;
    background-color: #3f51b5;
    text-align: center;
    display: block;
    color: #fff;
    height: 35px;
    box-shadow: rgb(0 0 0 / 30%) 3px 3px 5px;
    cursor: pointer;
}


    .rst-flyoutpanel-exitbutton:hover {
        background-color: #303030;
        color: #fff;
    }


.rst-flyoutpanel-codeIGSButton {
    width: 100%;
    padding: 4px;
    display: none;
    height: 25px;
    border-radius: 5px;
    border: none;
    background-color: #78909c;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-position: 50% 50%;
    box-shadow: rgb(0 0 0 / 30%) 3px 3px 5px;
}


    .rst-flyoutpanel-codeIGSButton:hover {
        background-color: #303030;
        color: #fff;
    }


.rst-flyoutpanel-mainIGSButton {
    display: none;
    cursor: pointer;
    /*    margin-top: 10px;*/
}


    .rst-flyoutpanel-mainIGSButton:hover {
        background-color: #303030;
        color: #fff;
    }


/* contenitore globale gantt (contenitore principale top level) */
.rst-gantt-container {
    height: 100%;
    /*border: 1px solid #d8d9da;*/
}

/* pannello a sinistra che contiene la grid dei task (header e content)*/
.rst-gantt-left-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 300px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid red;
}
/* contenitore grid header per dati task */
.rst-gantt-grid-header-container {
    display: flex;
    width: 298px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background-color: whitesmoke;
    border-bottom: 1px solid #d8d9da;
}
/* contenitore grid per dati task */
.rst-gantt-grid-row-container {    
    position:absolute;    
    top: 60px;
    bottom:0px;
    left:0px;
    right:0px;
    overflow-y:hidden;
    overflow-x:scroll;
}

/* pannello a destra che contiene i task e le divisioni temporali di gantt e l'header delle divisioni temporali di gantt */
.rst-gantt-right-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 300px;
    right: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    border: 1px solid green;
}

/* header per le divisione temporali di gantt (giorno, settimana, mese, ecc...) */
.rst-gantt-task-header {
    display: flex;
    height: 60px;
    width: 4000px;
    background-color: whitesmoke;
    border-bottom: 1px solid #d8d9da;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px 0px;
}

/* pannello che contiene i task gantt */
.rst-gantt-task-container {
    position: absolute;
    top: 60px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow-y: auto;
    overflow-x: auto;
    /*border: 1px solid red;   */
}
/* contenitore delle taskbar, milestone e delle linee orizzontali e verticali  */
.rst-gantt-task-item-container{

}

/* contenitore righe orizzontali per la divisione dei task in Gantt */
.rst-gantt-background-row-line-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 4000px;
    z-index: 10;
}

/* righe orizzontali per la divisione dei task in Gantt  */
.rst-gantt-background-row-line {
    top: 0px;
    left: 0px;
    right: 0px;
/*    height: 40px;
    min-height: 40px;*/
    border-bottom: 1px solid #d0d3d5;
    z-index: 20;    
    display:flex;    
}
.rst-gantt-text-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* task di test 01 */
.rst-gantt-task-bar {
    position: absolute;    
    margin-top: 5px;
    border-radius: 5px;
    background-color: mediumpurple;
    border: 1px solid silver;    
}

.rst-gantt-task-item {
    position: absolute;
    top: 40px;
    height: 30px;
    width: 500px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: mediumpurple;
    border: 1px solid silver;
    /*transform: translate(200px,0px);*/
}

/* task di test 02 */
/*.rst-gantt-task-item2 {
    position: absolute;
    top: 80px;
    height: 30px;
    left: 450px;
    width: 500px;
    margin-top: 5px;
    border-radius: 5px;
    background-color: deeppink;
    border: 1px solid silver;    
}*/



/* contenitore righe verticali per divisione temporale nel pannello dei task */
.rst-gantt-background-column-line-container {
    display: flex;
    height: 4000px;
    width: 140px;
    min-width: 140px;
}

/* righe verticali minori per divisione temporale nel pannello dei task */
.rst-gantt-background-column-line {
    align-items: center;
    height: 100%;
    border-right: 1px solid #d0d3d5;
    width: 20px;
    min-width: 20px;
    /*transform: translate(200px,0px);*/
}

/* righe verticali maggiori per divisione temporale nel pannello dei task */
.rst-gantt-background-column-line-major {
    border-color: darkgray;
    /*z-index: 1;*/
}


/* GIORNO */
/*  |                         LUNEDÌ 26 DIC 2021                            | */
/*  |-----------------------------------------------------------------------| */
/*  | 08:00 | 09:00 | 10:00 | 11:00 | 12:00 | 13:00 | 14:00 | 15:00 | 16:00 | */


/* SETTIMANA */
/*  |      DOM 26 DIC 2021      | */
/*  |---------------------------| */
/*  | L | M | M | G | V | S | D | */
.rst-gantt-hdr-container {
    width: 140px;
    /*transform: translate(200px,0px);*/
}

.rst-gantt-hdr-timeaxys-day-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 140px;
    min-width: 140px;
    border-top: 1px solid #d8d9da;
    border-bottom: 1px solid #d8d9da;
    border-right: 1px solid darkgray;
    color: #667280;
    font-size: 0.85em;
}

.rst-gantt-hdr-timeaxys-day-cell-container {
    display: flex;
    height: 30px;
    /*border-bottom: 1px solid #d8d9da;*/
}

.rst-gantt-hdr-timeaxys-day-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    border-right: 1px solid #d8d9da;
    font-size: 0.9em;
    text-align: center;
    color: #667280;
}
.rst-gantt-border-right-style {
    border-right: 1px solid darkgray; 
}


/* MESE   (le settimana si accavallno al mese) */
/*  |                DICEMBRE 2019              |    */
/*  |-------------------------------------------|--- */
/*  | LU 02 - VE 06 | LU 09 - VE 13 | .. | .. | .. | */


/* ANNO */
/*  |                       2021                       | */
/*  |--------------------------------------------------| */
/*  | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | */



























.b-sch-dependency-arrow {
    fill: #bbb;
}

/*
.b-ganttbase .b-sch-foreground-canvas > svg .b-sch-dependency {
    marker-end: none;
    marker-start: url(../../src/css/#arrowEnd);
}*/

.b-sch-dependency {
    marker-end: none;
    marker-start: url(../../src/css/#arrowEnd);

    pointer-events: visibleStroke;
    fill: transparent;
    stroke: #bbb;
    stroke-width: 1;
    transition: stroke-width .2s linear;
}

.rst-gaugelabel-container {
    margin-top: 10px;
}

.rst-gaugelabel {
}

.rst-gaugelabel-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-gaugelabel-title[disabled] {
        color: silver;
    }

.rst-gaugelabel-percent-text {
    position: relative;
    /*
    bottom: 105px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    */
    text-align: center;
    vertical-align: middle;
    font-size: 1.2em;
}


/*.rst-grid-layout > *:not(rst-tooltip) {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
}*/

.rst-grid-layout {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
}

.rst-grid-layout-padding {    
    padding: 10px 20px;
}

.rst-grid-col-layout-3 {
    /*grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(200px, 1fr) 1fr;*/
    grid-template-columns: 1fr 1fr 1fr;
}

.rst-grid-col-layout-2 {
    grid-template-columns: 1fr 1fr;
}

.rst-grid-col-layout-1 {
    grid-template-columns: 1fr;
}

.rst-grid-col-span {
}

/* fa il colspan dalla colonna 1 per 2 colonne */
.rst-grid-col-span-2 {
    grid-column: 1 / span 2;
}

/* fa il colspan dalla colonna 1 per 3 colonne */
.rst-grid-col-span-3 {
    grid-column: 1 / span 3;
}


/*.rst-grid-item:nth-child(7) {
    grid-column: span 2;
}*/



/* For SubGrids */

.rst-subgrid-layout {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
}

.rst-subgrid-layout-padding {
    padding: 20px;
}

.rst-subgrid-col-layout-3 {
    /*grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) minmax(200px, 1fr) 1fr;*/
    grid-template-columns: 1fr 1fr 1fr;
}

.rst-subgrid-col-layout-2 {
    grid-template-columns: 1fr 1fr;
}

.rst-subgrid-col-layout-1 {
    grid-template-columns: 1fr;
}


.rst-subgrid-col-span {
}

/* fa il colspan dalla colonna 1 per 2 colonne */
.rst-subgrid-col-span-2 {
    grid-column: 1 / span 2;
}

/* fa il colspan dalla colonna 1 per 3 colonne */
.rst-subgrid-col-span-3 {
    grid-column: 1 / span 3;
}

.rst-gridview-container {
}

.rst-gridview-nodata-row {
}
.rst-gridview-nodata-row:hover {
    background-color:transparent !important;
}

.rst-gridview-header-table-container {
    position: absolute;
    top: 0px;
    /*height: 51px;*/
    height: 50px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px;
    border-bottom: 1px solid var(--rst-main-color);
}



.rst-gridview-header-table {
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
    /*border-right: 1px solid silver;*/
    /*auto: the default. The browser’s automatic algorithm is used to define how a table’s rows, cells, and columns are laid out. The resulting table layout is generally dependent on the content of the table. 
     fixed: With this value, the table’s layout ignores the content and instead uses the table’s width, any specified width of columns, and border and cell spacing values. The column values used are based on widths defined on columns or cells for the first row of the table. 
     inherit: indicates that the value is inherited from the table-layout value of its parent*/
    table-layout: fixed;
}



.rst-gridview-footer-table-container {
    position: absolute;
    height: 51px;    
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-top: 1px solid silver;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 10%) 0px -2px 5px;
    background-color: white;
}

.rst-gridview-footer-table {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
    /*border-right: 1px solid silver;*/
    /*auto: the default. The browser’s automatic algorithm is used to define how a table’s rows, cells, and columns are laid out. The resulting table layout is generally dependent on the content of the table. 
     fixed: With this value, the table’s layout ignores the content and instead uses the table’s width, any specified width of columns, and border and cell spacing values. The column values used are based on widths defined on columns or cells for the first row of the table. 
     inherit: indicates that the value is inherited from the table-layout value of its parent*/
    table-layout: fixed;
}

/* classe usata sui th dell'header */
.rst-gridview-th {
    padding: 0px;
    height: 50px;
    line-height: 50px;
    text-align: left;
    /*font-family: Roboto, sans-serif;*/
    /*font-size: 14px;*/
    font-weight: 600;
    color: #313131;
    letter-spacing: 0.2px;
    background: #F4F5F9;
    /*border-bottom: 1px solid #5ccce7;*/
    border-left: 1px solid silver;
    padding-left: 12px;
    position: relative;
    overflow: hidden;
}

.rst-grid-resizer {
    /* Displayed at the right side of column */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    cursor: col-resize;
    user-select: none;
}

    .rst-grid-resizer:hover, .rst-grid-resizing {
        /*border-right: 5px solid #5ccce7;*/
        border-right: 5px solid var(--rst-main-color);
    }


.rst-gridview-menu-button {
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    cursor: pointer;
    user-select: none;
    float: right;
    padding: 2px;
    font-size: 1.5em;

    /*background-color: green;*/
}

    .rst-gridview-menu-button:hover {
        color: #5ccce7;
    }

.rst-gridview-sort {
    position: absolute;
    top: 0;
    right: 37px;
    bottom: 0;
    user-select: none;
    float: right;
    padding-right: 0px;
    display: none;
    color: black;
    /*color: #808080;*/
    /*color: orange;*/
    /*background-color: red;*/
}

.rst-gridview-header-text {
    /*    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;*/

    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    /*si potrebbe impostare dinamicamente se non ho icona di sort, così avrei un pò più di testo visibile*/
    margin-right: 30px;
    cursor: pointer;
    /*background-color: pink;*/
}


.rst-gridview-data-table-container {
    position: absolute;
    top: 51px;
    bottom: 50px;
    left: 0px;
    right: 0px;
    overflow: auto;
}

.rst-gridview-data-table {
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
    table-layout: fixed;
}


.rst-gridview-tr {
}



/*.rst-gridview-data-table td {*/
.rst-gridview-td {
    cursor: pointer;
    color: #475466;
    height: 35px;
    /*line-height: 35px;*/
    box-sizing: border-box;
    border-bottom: 1px solid silver;
    letter-spacing: 0.2px;
    padding-left: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rst-gridview-footer-td {
    cursor: pointer;
    color: #475466;
    height: 35px;
    box-sizing: border-box;
    letter-spacing: 0.2px;  
    padding: 0px;
    text-align: left;
    /*font-family: Roboto, sans-serif;*/
    position: relative;
    overflow: hidden;
}

.rst-gridview-data-table tr {
    /*background-color: lightgray;*/
}

    .rst-gridview-data-table tr:hover {
        background-color: #edeff5;
    }


.rst-gridview-rowselected {
    /*background-color: #edeff5;*/
    background-color: #edeff5;
    /* background-color: #1ca1c185; */
    /*box-shadow: inset 2px 0 #1ca1c185;*/
    box-shadow: inset 2px 0 var(--rst-main-color);
}

    .rst-gridview-rowselected:hover {
        opacity: 0.7 !important;
        background-color: #edeff5 !important;
/*        border-top: 1px solid #1ca1c185;
        border-bottom: 1px solid #1ca1c185;*/
    }


.rst-grid-cell {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rst-gridview-pager-container {
    position: absolute;
    height: 50px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border: 1px solid silver;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 5px;
}

.rst-grid-link {
    text-decoration: none;
    color: #475466;
    font-weight: 600;
}

input.rst-gridview-rowcheckbox {
    width: 20px;
    height: 20px;
}

.rst-file-system-entries-count {
    position: absolute;
    color: white;
    font-size: 0.75em;
    margin-top: 5px;
    margin-left: 2px;
    float: left;
}


.rst-gridviewsearch-container {
}

.rst-gridviewsearch-toolbar {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    display: none;
    /*border-bottom: 1px solid silver;*/
}
.rst-gridviewsearch-toolbar .rst-toolbar-container {
    border-bottom: 1px solid silver;
}

.rst-gridviewsearch-searchfilter {
    position: absolute;
    top: 0px; /* 0px senza toolbar, 50px con toolbar */
    left: 0px;
    right: 0px;
    height: 50px;
    overflow: hidden;
    padding: 5px;
    padding-top: 8px;
    border-bottom: 1px solid silver;
    background-color: whitesmoke;
}

.rst-gridviewsearch-gridview {
    position: absolute;
    top: 50px; /* 50px senza toolbar, 100px con toolbar */
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: auto;
}

.rst-gridviewsearch-hoverfilterpanel-container {
    position: absolute;
    background: rgb(245 245 245);
    top: 100px;
    right: 0px;
    bottom: 0px;
    width: 200px;
    border-left: 1px solid silver;
    padding: 10px;
    padding-top: 0px
}

/* CSS For HorizontalMenu */

.rst-horizontalmenu-container {
    width: 100%;
    border-width: 0px 0px 1px 0px;
    border-color: silver;
    border-style: solid;
    background-color: whitesmoke;
}

.rst-table-container {
    width: 100%;
    height: 50px;
    margin: 0px;
}

.rst-items-right-container {
    min-width: 40px;
}

.rst-menu-chooser-container {
    font-size: 1.7em;
    cursor: pointer;
}

.rst-hide-first-column-container {
    font-size: 1.7em;
    cursor: pointer;
    margin-top: 2px;
}

.rst-bell-container {
    font-size: 1.7em;
    cursor: pointer;
    margin-top: 2px;
}

.rst-horizontalmenu-left-td {
    width: 50px;
    text-align: center;
}

.rst-horizontalmenu-right-td {
    width: 40px;
    text-align: center;
}


.rst-menu-userprofile-container {
    padding: 0;
    border: none;
    height: 49px;
    width: 50px;
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
}

.rst-user-img-icon {
    width: 49px;
    height: 49px;
    /*    border: 2px solid #c7b9b9;*/
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
    box-shadow: 0px 1px 5px 3px silver;
    border-radius: inherit;
}

.rst-horizontalmenu-badge {
    font-size: 11px;
    z-index: 2;
    position: absolute;
    top: 2px;
    background-color: #e53935;
    display: inline-block;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
}


.rst-horizontalmenu-right-td:hover {
}

.rst-image-container {
}

.rst-image-title {    
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}
    .rst-image-title[disabled] {
        color: silver;
    }


.rst-image-message {
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-image-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-image {
    /*width:100%;*/
}

.rst-imagelabel-container {
    margin-top: 10px;
}

.rst-imagelabel {
}

.rst-imagelabel-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-imagelabel-title[disabled] {
        color: silver;
    }


.rst-kanban {
    
}




.rst-task-kanban-title {
    padding-left: 5px;
    font-size: 0.8em;
    font-weight: bold;
    box-sizing: border-box;
    width: 50%;
    float: left;
}

.rst-task-kanban-total {
    padding-right: 5px;
    font-size: 1.3em;
    color: #505050;
    font-weight: 200;
    box-sizing: border-box;
    width: 50%;
    float: left;
    text-align: right;
}


.rst-kanban-title {
    padding-left: 5px;
    font-size: 0.8em;
    font-weight: bold;
    box-sizing: border-box;
    width: 80%;
    float: left;
    text-transform: uppercase;
}

.rst-kanban-total-time {
    width: 10%;
    float: left;
}

.rst-kanban-total {
    padding-right: 5px;
    font-size: 1.3em;
    color: #505050;
    font-weight: 200;
    box-sizing: border-box;
    width: 10%;
    float: left;
    text-align: right;
}


.rst-kanban-header {
    height: 30px;
    border-bottom: 1px solid silver;
    background-color: white;
    /*new layout margin-left: 10px;*/
    margin-right: 10px;
    cursor: pointer;
}

.rst-kanban-list {
    border: 0px;
    /*overflow-y: hidden;*/
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 30px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: white;
    padding: 10px;
    border-width: 0px;
    box-shadow: none;
}
/*
    .rst-kanban-list::-webkit-scrollbar {
        width: 10px;
    }

    .rst-kanban-list::-webkit-scrollbar-track {
        border-radius: 2px;
    }

    .rst-kanban-list::-webkit-scrollbar-thumb {
        border-radius: 2px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    }

        .rst-kanban-list::-webkit-scrollbar-thumb :hover {            
            background: rgba(255,255,255,0.8);
        }*/






.rst-kanban-hidden-label {
    transform: rotate(90deg);
    white-space: nowrap;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 200;
}

.rst-kanban-hidden-label-total {
    font-size: 1.3em !important;
    margin-left: 10px !important;
}

.rst-kanban-hidden {
    cursor: pointer;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: whitesmoke;
    color: black;
    display: none
}

    .rst-kanban-hidden:hover {
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-color: #303030;
        color: white;
    }


.rst-kanban-item {
    border: 1px solid gainsboro;
    cursor: move;
    background-color: white;
    border-radius: 3px;
    box-shadow: rgba(0,0,0,0.2) 2px 2px 2px;
    margin-bottom: 10px;
}

.rst-kanban-container {
    background-color: white;
    overflow-y: hidden;
}


/*.rst-kanban-containert::-webkit-scrollbar {
    width: 10px;
}

.rst-kanban-container::-webkit-scrollbar-track {    
    border-radius: 2px;
}

.rst-kanban-container::-webkit-scrollbar-thumb {    
    border-radius: 2px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

    .rst-kanban-container::-webkit-scrollbar-thumb :hover {
        background: rgba(255,255,255,0.8);
    }*/

.rst-kanban-list .rst-smallscrollbar::-webkit-scrollbar-track {
    background-color: transparent;    
}

.rst-listview-container {
    width: 100%;
    height: 100%
}



.rst-listview-scroll-container {
    position: absolute;
    top: 0px;
    bottom: 50px;
    left: 0px;
    right: 0px;
    overflow: auto;
}

/* Per l'header della listview */
.rst-listview-header {
    position: absolute;
    /*top: 0px;*/
    left: 0px;
    right: 0px;
    min-height: 35px;
    border-bottom: 1px solid silver;
}

.rst-listview-totalcheckeditems-container {
    display: inline-block;
    padding: 6px;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.rst-listview-allcheckedicon-container {
    display: inline-block;
    margin: 6px;
    vertical-align: top;
}

.rst-listview-nodata {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.rst-listview-data{

}

.rst-listview-row {
    padding: 5px;
    cursor: pointer;
    border-bottom: 1px solid silver;
    display: block;
}

    .rst-listview-row:hover {
        background-color: mediumpurple;
        color: white;
    }

.rst-listview-rowselected {
    background-color: silver;
}

    .rst-listview-rowselected:hover {
        background-color: mediumpurple;
        opacity:0.6;
    }

input.rst-listview-rowcheckbox {
    width: 20px;
    height: 20px;
}

.rst-listview-draggable.rst-listview-dragging {
    opacity: 0.2;
    border: 1px solid red;
}

.rst-listview-pager-container {
    position: absolute;
    height: 50px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-top: 1px solid silver;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 5px;
}

.rst-listview-aggregate-container {
    position: absolute;
    height: 45px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    /*border: 1px solid silver;*/
    border-top: 1px solid silver;
    overflow: hidden;
    /*box-shadow: rgb(0 0 0 / 10%) 0px -2px 5px;*/
    background-color: white;
}


.rst-listviewsearch-container {
}

.rst-listviewsearch-toolbar {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    display: none;
    /*border-bottom: 1px solid silver;*/
}
    .rst-listviewsearch-toolbar .rst-toolbar-container {
        border-bottom: 1px solid silver;
    }

.rst-listviewsearch-searchfilter {
    position: absolute;
    top: 0px; /* 0px senza toolbar, 50px con toolbar */
    left: 0px;
    right: 0px;
    height: 50px;
    overflow: hidden;
    padding: 5px;
    padding-top: 8px;
    border-bottom: 1px solid silver;
    background-color: whitesmoke;
}

.rst-listviewsearch-listview {
    position: absolute;
    top: 50px; /* 50px senza toolbar, 100px con toolbar */
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: auto;
}

.rst-listviewsearch-hoverfilterpanel-container {
    position: absolute;
    background: rgb(245 245 245);
    top: 50px;
    right: 0px;
    bottom: 0px;
    width: 200px;
    border-left: 1px solid silver;
    padding: 10px;
    padding-top: 0px
}





.rst-loginapp-forgot-password{

}

.rst-loginapp-wrong-password {
    text-align: center;
    margin-top: 30px;
    color:red;
}



:root {
    --rst-modal-border-radius: 0.375rem;
    --rst-indigo: rgba(99,102,241,1);
}

.rst-modal-background {
    display: none;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px;
    background-color: darkgrey;
    opacity: 0.7;
    /*z-index: 11400;*/
    z-index: 66000;
}

.rst-modal-background-noz {
    display: none;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0px;
    background-color: darkgrey;
    opacity: 0.7;
}

/*.rst-modal {
    display: none;
    position: relative;
    border: 1px solid darkgrey;
    border-radius: var(--rst-border-radius);
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2);
}*/

/*rst-modal2-dialog*/
.rst-modal {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
/*    border: 1px solid #5192e2;*/
    /*border: 1px solid #3DD9C4;*/
    border: 1px solid var(--rst-main-color);
    background-color: white;
    /*overflow: auto;*/
    overflow: visible;
    box-shadow: rgba(0,0,0,0.3) 10px 10px 20px;
    /*z-index: 11500;*/
    z-index: 66000;
    border-radius: 4px;
    resize: both;
    overflow: auto;
}




.rst-modal-title {
    padding: 5px;
    padding-top: 15px;
    font-size: 1.3em;
    font-weight: 500;
    cursor: move;
}

.rst-header-modal {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    padding-left: 15px;
    background-color: white;
    border-radius: var(--rst-modal-border-radius);
}

.rst-content-modal {
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    /*bottom: 60px;*/
    bottom: 50px;
    overflow: auto;
}

.rst-bottom-modal {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    display: flex;
    justify-content: right;
    padding-right: 15px;
    align-items: center;
    background-color: whitesmoke;
    border-radius: var(--rst-modal-border-radius);
}

.rst-modal-close-times {
    font-size: 1.4em;
    cursor: pointer;
    color: #303030;
}

    .rst-modal-close-times :hover {
        color: var(--rst-indigo);
    }

.rst-modal-maximize {
    cursor: pointer;
}

    .rst-modal-maximize:hover {
        color: var(--rst-indigo);
    }







/*.rst-grid-layout {
    display: grid;
    column-gap: 20px;
    row-gap: 20px;
}


.rst-grid-layout-3 {    
    grid-template-columns: 1fr 1fr 1fr;
}

.rst-grid-layout-2 {
    grid-template-columns: 1fr 1fr;
}

.rst-grid-layout-1 {
    grid-template-columns: 1fr;
}

.rst-grid-span {
}

.rst-grid-span-2 {
    grid-column: span 2;
}

.rst-layout-subgrid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}*/

/*.rst-grid-item:nth-child(7) {
    grid-column: span 2;
}*/

/* fa il rowspan dalla riga 1 per 4 righe */
/*.item1 {
    grid-row: 1 / span 4;
}*/



.rst-multiselect-container {
    width: 100%;
}

.rst-multiselect-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-multiselect-title[disabled] {
        color: silver;
    }

.rst-multiselect-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-multiselect-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }




/* Dropdown Button */
.rst-multiselect-btn {
    /* display: inline; */
    /*background-color: white;*/
    /* color: black; */
    /*border: 1px solid silver;*/
    /* border-radius: var(--rst-inputbox-border-radius); */
    /* padding: 10px; */
    /*cursor: pointer;*/
    /* width: 200px; */
    /*width: 100%;
    text-align: left;
    z-index: 1;*/
    width: 100%;
    text-align: left;
    background-color: transparent;
    border: 0px;
    padding:0px;
}

    /* Dropdown button on hover & focus */
    .rst-multiselect-btn:hover, .rst-multiselect-btn:focus {
        /*background-color: #2980B9;*/
        /*background-color: whitesmoke;*/
        background-color: transparent;
    }

/* The container <div> - needed to position the dropdown content */
.rst-multiselect {
    /*    position: relative;
    display: inline-block;
    width: 100%;*/
    /*padding: .75rem .75rem .375rem;*/
    /*
    background-color: #f9f9f9;    
    border: 1px solid #ddd;
    border-radius: .25rem;
    */
    border-radius: 3px;
    /*font-size: 1.4rem;*/
    overflow: hidden;
    border: 1px solid silver;
    background-color: transparent;
}


/* Dropdown Content (Hidden by Default) */
.rst-multiselect-content {
    /*    padding-top: 5px;
    padding-bottom: 5px;*/
    display: none;
    /*position: absolute;*/
    /*background-color: #f1f1f1;*/
    background-color: white;
    border: 1px solid gainsboro;
    /*max-width: 400px;*/
    /*width: 100%;*/
    width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 20000;
    border-radius: var(--rst-inputbox-border-radius);
    --animate-duration: 0.1s;
    position: fixed;
    min-width: 140px;
    /*    height: 200px;*/
    overflow-y: auto;
    overflow-x: hidden;
    /*    min-height: 43px;*/
    max-height: 250px;
}

    /* Links inside the dropdown */
    .rst-multiselect-content a {
        color: black;
        text-decoration: none;
        display: block;
        height: 43px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        /*        padding-top: 9.5px;
        padding-left: 15px;*/
        text-align: start;
        /*font-size: 1.2rem;*/
    }

        /* Change color of dropdown links on hover */
        .rst-multiselect-content a:hover {
            background-color: #ddd
        }

.rst-multiselect-content-selected {
    background-color: mediumpurple;
    color: white !important;
    display: none !important;
}

.rst-multiselect-highlighted {
    background-color: #008fa1;
    color: white !important;
}

.rst-multiselect-defaultvalue {
    padding: 5px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 145px;
    height: 25px;
}

.rst-multiselect-choises-input {
    background-color: transparent;
    display: inline-block;
    border: 0;
    border-radius: 0;
    /* width: auto; */
    padding: 0.6rem 0 0.5rem 0.2rem;
    /*    position: absolute;*/
}

    .rst-multiselect-choises-input:focus {
        outline: none;
    }

.rst-multiselect-selected-items-container {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
    display: inline-block;
    margin-top: 3px;
}

.rst-multiselect-selected-item {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 2px;
    box-sizing: border-box;
    /*    background-color: #00bcd4;
    border: 1px solid #008fa1;*/
    /*    background-color: #3DD9C4;
    border: 1px solid #237D71;*/
    background-color: var(--rst-main-color);
    border: 1px solid var(--rst-main-color-dark);
    color: #fff;
    padding: 2px;
    border-radius: 20px;
    margin-right: 0.2rem;
}


.rst-multiselect-remove-selected {
    border-left: 1px solid #008fa1;
    padding-left: 6px;
    cursor: pointer;
    color: white;
    vertical-align: middle;
    font-size: 0.65rem;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.rst-multiselect-img {
    float: left;
    border-radius: 30px;
    width: 32px;
    height: 32px;
    /* line-height: 35px; */
    margin-top: 5px;
}
/*
.rst-multiselect-position-content-container {
    transform: rotate(0);
}*/

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
/*.show {
    display: block;
}*/


.rst-noelementselected-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: whitesmoke;
    overflow: hidden;
    z-index: 65000;
}
.rst-noelementselected-text {
    text-align: center;
    color: #bbb
}
.rst-noelementselected-icon {
    font-size: 11em;
    margin-top: 70px;
    margin-left: 0px;
    margin-bottom: 80px;
}

.rst-noelementselected-title {
    font-size: 2.4em;
}

.rst-noelementselected-subtitle {
    font-size: 1.8em
}
.rst-notes-btn-container {    
    padding-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 0px;
    /*border-bottom:1px solid silver;*/
    /*background-color: whitesmoke;*/
}

.rst-notes-btn-newnote {
    cursor: pointer;
    font-size: 1.4em;
    border: 0px;
    background-color: transparent;
}

    .rst-notes-btn-newnote:hover {
        color: rgb(61, 217, 196);
    }

.rst-notes-list-container {
    padding: 10px;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    background-color: white;
    position: relative;
}


.rst-numericbox-container
{
    width:100%;
}

.rst-numericbox-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

.rst-numericbox-title[disabled] {
    color: silver;
}

.rst-numericbox-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-numericbox-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-numericbox-input {
    border-radius: 3px;
    border: 0;
    height: var(--rst-inputbox-height);
    width: 100%;
}

    .rst-numericbox-input:focus {
        outline: none;        
    }


.rst-numericbox-input-container {
    border-radius: 3px;
    border: 1px solid silver;
    transition: border-color 0.4s;
    /*border-bottom: 1px solid gray;*/
    /*transition: border-bottom-color 0.4s;*/
}

    .rst-numericbox-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-numericbox-validation-error {
    border: 1px solid red;
}

    .rst-numericbox-validation-error ~ .rst-numericbox-message {
        color: red;
    }

.rst-pager-button {
    font-size: 1.3em;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 5px;
    display: inline-block;
    border: 1px solid silver;
    /*border-radius: 50%;*/
    border-radius: 3px;
    margin: 10px;
    margin-left: 5px;
    margin-right: 0px;
}

    .rst-pager-button:hover {
        background-color: whitesmoke;
    }


.rst-passwordbox-container
{
    width:100%;
}

.rst-passwordbox-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

.rst-passwordbox-title[disabled] {
    color: silver;
}

.rst-passwordbox-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-passwordbox-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-passwordbox-input {
    border-radius: var(--rst-inputbox-border-radius);
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;
}

    .rst-passwordbox-input:focus {
/*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-passwordbox-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    display: flex;
    flex-wrap: nowrap;
    border: 1px solid silver; /*line*/
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-passwordbox-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/ /*line*/
    }

.rst-passwordbox-required {
    border: 1px solid red;
}

    .rst-passwordbox-required ~ .rst-passwordbox-message {
        color: red;
    }

.rst-passwordbox-icon-eye {
    cursor: pointer;
    padding-top: 7px;
}

    .rst-passwordbox-icon-eye[disabled] {        
        cursor: default;
        color: silver;
    }


/*body {
    font-family: sans-serif;
}*/

.rst-pivot-container {
    /*border-right: 1px solid silver;*/
    background-color: whitesmoke;
}

.rst-pivot-btns {
    padding-left: 0;
    margin-bottom: 0;
    overflow: auto;
    background-color: white;
    /*border-bottom: 1px solid silver;*/
}

    .rst-pivot-btns > div {
        margin: 0px;
        display: inline-block;
        margin-right: -4px;
    }

        /*.rst-multitab-btns > li + li {
            margin-left: 2px;
        }*/

        .rst-pivot-btns > div > a {
            position: relative;
            display: block;
            padding: 10px 15px;
            border-radius: 0px;
            height: 45px; /*prima era commentato*/
        }

            /*.rst-multitab-btns > li > a:focus,*/
            .rst-pivot-btns > div > a:hover {
                text-decoration: none;
                background-color: #eee;
            }

        .rst-pivot-btns > div.disabled > a {
            color: #777;
        }

            /*.rst-multitab-btns > li.disabled > a:focus,*/
            .rst-pivot-btns > div.disabled > a:hover {
                color: #777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
            }

        .rst-pivot-btns > div.active > a,
        /*.rst-multitab-btns > li.active > a:focus,*/
        .rst-pivot-btns > div.active > a:hover {
            text-decoration: none;
            color: #303030;
            border-bottom: 3px solid #3399ff;
        }



.rst-progressbar-container {
}

.rst-progressbar-label {
    font-size: 0.8em;
    margin-left: 20px;    
}

.rst-progressbar {
    display: flex;
    height: 0.8em;
    overflow: hidden;
    background-color: #dee2e6;
    border-radius: 2em;
    margin: 20px;
    /*height: 50px;*/
}

.rst-progressbar-line {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;    
}

.rst-propgressbar-line-color {
    background-color: red;
}


.rst-querybuilder-container {
    
}

.rst-querybuilder-btn-add {
    cursor: pointer;
    padding: 0.5rem;
    line-height: 0.5rem;
    height: 28px;
    margin-left: 0px;
}

.rst-querybuilder-filter-container{
    overflow-y:auto;    
}

.rst-querybuilder-item {
    display: block;
    margin-left: 10px;
}

.rst-querybuilder-filtercombo {
}

.rst-qb-openbracket{

}
.rst-qb-closebracket {
}

.rst-qb-opcombo-string {
    width: 150px;
}
.rst-qb-opcombo-number {
    width: 150px;
}
.rst-qb-opcombo-date {
    width: 150px;
}

.rst-qb-input-text {
    width: 150px;
}
.rst-qb-input-number {
    width: 150px;
}
.rst-qb-input-date {
    width: 150px;
}

.rst-querybuilder-delete-button {
    border: 0px;
    cursor: pointer;
}


/* Hide the checkboxes */
.rst-querybuilder-item > input[type='checkbox'] {
    display: none;
}

    /* Default styling for labels to make them look like buttons */
    .rst-querybuilder-item > input[type='checkbox'] + label {
        display: inline-block;
        /*box-shadow: 1px 1px grey;*/
        border-radius: 3px;
        background-color: #e0e0e0;
        padding: 5px;
        /*font-family: Arial, Helvetica, sans-serif;*/
        cursor: pointer;
    }

    /* Styling for labels when corresponding checkbox is checked */
    .rst-querybuilder-item > input[type='checkbox']:checked + label {
        /*box-shadow: -1px -1px grey;*/
        background-color: #f78d32;
    }

.rst-querybuilder-buttons{
    height:30px;
}

.rst-radiobuttons-container {
    font-size: 0; /*per togliere spazio fra le label introdotto dal CR nell'HTML*/
}

.rst-radiobuttons-radio {
    width: 0px;
    position: absolute;
    border: 1px solid silver;
    margin: 0px;
}

.rst-radiobuttons-label {
    cursor: pointer;
    display: inline-block;
    /*width: 40px;*/
    max-width: 100%;
    text-align: center;
    border: 1px solid silver;
    padding: 5px;
    margin: 0px;
    white-space: nowrap;
    box-sizing: border-box;
    outline-style: none;
    outline-width: 0px;
    outline-offset: 0px;
    line-height: normal;
    font-size: 11px;
}

.rst-radiobuttons-container > input[type="radio"]:checked + label {
    font-weight: bold;
    border: 1px solid silver;
    background-color: rgb(61, 217, 196);
    color: white;
    transition: 0.4s;
}


.rst-recordchangelabel-container {
    margin-top: 10px;
}

.rst-recordchangelabel-created-td {
    vertical-align: top;
}

.rst-recordchangelabel-modified-td {
    vertical-align: top;
    padding-left: 15px;
}

.rst-recordchangelabel-created-title {    
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

.rst-recordchangelabel-modified-title {
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

.rst-recordchangelabel-created-img {
    width: 24px;
    border-radius: 50%;
    display: inline;
}

.rst-recordchangelabel-modified-img {
    width: 24px;
    border-radius: 50%;
    display: inline;
}

.rst-recordchangelabel-created-username {
    display: inline;
    font-size: 0.9em;
}

.rst-recordchangelabel-modified-username {
    display: inline;
    font-size: 0.9em;
}

.rst-recordchangelabel-created-date {
    line-height: 1.1em;
    font-size: 0.7em;
}

.rst-recordchangelabel-modified-date {
    line-height: 1.1em;
    font-size: 0.7em;
}

.rst-recordchangelabel-title {
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-recordchangelabel-title[disabled] {
        color: silver;
    }


.rst-repeater-container {
    display: inline;
}

.rst-repeater-name {
    max-width: 140px;
    border-radius: 7px;
    text-align: center;
    vertical-align: middle;
    /*font-family: Helvetica, sans-serif, Arial;*/
    font-size: 0.8em;
    display: inline-block;
    padding: 1px 3px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin-right: 3px;
}


.rst-myautoscrollbar-booth {
    overflow-x: auto;
    overflow-y: auto;    
}

.rst-myautoscrollbar-booth:hover,
.rst-myautoscrollbar-booth:focus {
    /*overflow-y: auto;*/
    /*transition: overflow-y 0.2s;*/
}

.rst-myautoscrollbar-booth::-webkit-scrollbar {
    width: 10px;
    height: 10px !important
}

.rst-myautoscrollbar-booth::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 2px;
}

.rst-myautoscrollbar-booth::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 2px;
    /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);*/
}

    .rst-myautoscrollbar-booth::-webkit-scrollbar-thumb :hover {
        background: rgba(255,255,255,0.8);
    }





.rst-myautoscrollbar {
    overflow-x: hidden;
    overflow-y: auto;    
}

    .rst-myautoscrollbar:hover,
    .rst-myautoscrollbar:focus {
        /*overflow-y: auto;*/
        /*transition: overflow-y 0.2s;*/
    }

    .rst-myautoscrollbar::-webkit-scrollbar {
        width: 10px;
    }

    .rst-myautoscrollbar::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 2px;
    }

    .rst-myautoscrollbar::-webkit-scrollbar-thumb {
        background-color: lightgray;
        border-radius: 2px;
        /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);*/
    }

        .rst-myautoscrollbar::-webkit-scrollbar-thumb :hover {
            background: rgba(255,255,255,0.8);
        }


.rst-smallscrollbar {
    
}

    .rst-smallscrollbar:hover,
    .rst-smallscrollbar:focus {
        /*overflow-y: auto;*/
        /*transition: overflow-y 0.2s;*/
    }

    .rst-smallscrollbar::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .rst-smallscrollbar::-webkit-scrollbar-track {
        /*background-color: transparent;*/
        background-color: ghostwhite;
        border-radius: 2px;
    }

    .rst-smallscrollbar::-webkit-scrollbar-thumb {
        background-color: lightgray;
        border-radius: 2px;
        /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);*/
    }

        .rst-smallscrollbar::-webkit-scrollbar-thumb :hover {
            background: rgba(255,255,255,0.8);
        }

.rst-searchbox-container {
    width: 100%;
}

.rst-searchbox-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
    display:none;
}

    .rst-searchbox-title[disabled] {
        color: silver;
    }

.rst-searchbox-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-searchbox-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-searchbox-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;
    padding-left: 5px;
}

    .rst-searchbox-input:focus {
        /*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-searchbox-input-container {
    display: flex;
    align-items: center;
    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-searchbox-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-searchbox-required {
    border: 1px solid red;
}

    .rst-searchbox-required ~ .rst-searchbox-message {
        color: red;
    }

.rst-searchbox-lens {
    /*padding: 5px;*/
    padding-left: 10px;
    padding-right: 10px;
    color: silver;
    cursor: pointer;
}
    .rst-searchbox-lens:hover {
        color: black;
    }

.rst-searchbox-clear {
    /*padding: 5px;*/
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    color: silver;
    cursor: pointer;
}

    .rst-searchbox-clear:hover {
        color: black;
    }



input[type='range'] {
    accent-color: #3DD9C4;
}

.rst-slider-container
{
    width:100%;
}

.rst-slider-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-slider-title[disabled] {
        color: silver;
    }

.rst-slider-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-slider-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

/*.rst-slider-input {
    border-radius: var(--rst-inputbox-border-radius);    
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;
}

    .rst-slider-input:focus {
        outline: none;
    }*/


.rst-slider-input-container {
/*    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    transition: border-bottom-color 0.4s;*/
}

    .rst-slider-input-container:focus-within {
        border-color: #02add7;
    }




.rst-slider-internalcontainer {
    /* Content is centered horizontally */
    align-items: center;
    display: flex;
    /* Size */
    height: 1.5rem;
}
.rst-slider-left {
    height: 2px;
    width: 20%;
    background-color: rgba(0, 0, 0, 0.3);
}
.rst-slider-knob {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.rst-slider-right {
    /* Take the remaining width */
    flex: 1;
    height: 2px;
}


.rst-slider-validation-error {
    border: 1px solid red;
}

    .rst-slider-validation-error ~ .rst-slider-message {
        color: red;
    }

.rst-splitter-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.rst-splitter-panel {
    position: absolute;
    top: 0px;
    bottom: 0px;
    border: 1px solid silver;
    z-index: 100;
    opacity: 0.6;
    overflow:auto;
}

.rst-splitter-bar-horizontal {
    cursor: col-resize;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='30'><path d='M2 0 v30 M5 0 v30 M8 0 v30' fill='none' stroke='black'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 10px;
    background-color: #3dd9c4;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
    /*opacity: 0.5;*/
    z-index: 200;
}

.rst-splitter-bar-vertical {
    cursor: row-resize;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='30'><path d='M2 0 v30 M5 0 v30 M8 0 v30' fill='none' stroke='black'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0px;
    right: 0px;
    height: 10px;
    background-color: #3dd9c4;
    border-left: 1px solid silver;
    border-right: 1px solid silver;
    /*opacity: 0.5;*/
    z-index: 200;
}



/*
.rst-splitter {
    width: 100%;
    height: 100px;
    display: flex;    
}

.rst-splitter-separator {
    cursor: col-resize;
    background-color: #aaa;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='30'><path d='M2 0 v30 M5 0 v30 M8 0 v30' fill='none' stroke='black'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    width: 10px;
    height: 100%;
    
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rst-splitter-panel2 {
    height: 100%;
    min-width: 10px;
}

#first {
    background-color: #dde;
    width: 20%;    
}

#second {
    background-color: #eee;
    width: 80%;
}
*/


.rst-stopwatch-container {
    display: inline;
}

.rst-stopwatch-title {
}

.rst-stopwatch-input-container {
    text-align: center;
}

.rst-stopwatch-timer {
    font-size: 1.1em;
    font-weight: bold;
    padding: 3px;
}

.rst-stopwatch-start-button {
}

.rst-stopwatch-stop-button {
}

.rst-stopwatch-pause-button {
}

.rst-stopwatch-reset-button {
}


.rst-switchbox-container {
    width: 100%;
}

.rst-switchbox-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-switchbox-title[disabled] {
        color: silver;
    }

/* The switch - the box around the slider */
.rst-switchbox {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

    /* Hide default HTML checkbox */
    .rst-switchbox input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.rst-switchbox-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    /*right: 0;*/
    bottom: 0;
    width: 60px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.rst-switchbox-slider-readonly {
    cursor: default;
}

.rst-switchbox-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.rst-switchbox-input:checked + .rst-switchbox-slider {
    /* background-color: #2196F3;*/
    background-color: #3DD9C4;
}

.rst-switchbox-input:focus + .rst-switchbox-slider {
    /*    box-shadow: 0 0 1px #2196F3;*/
    box-shadow: 0 0 1px #3DD9C4;
}

.rst-switchbox-input:checked + .rst-switchbox-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.rst-switchbox-slider.rst-switchbox-round {
    border-radius: 30px;
}

    .rst-switchbox-slider.rst-switchbox-round:before {
        border-radius: 50%;
    }

.rst-switchbox-input[disabled] + .rst-switchbox-slider {
    cursor: not-allowed;
    background-color: silver;
}


.rst-switchbox-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-switchbox-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }


.rst-multitab-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-right: 1px solid silver;
}

.rst-multitab-btns-dock {
    height: 45px;
    width: 45px;
}

    .rst-multitab-btns-dock:hover {
        background-color: darkgrey;
        color: white;
    }

.rst-multitab-btns-dock-close {
    cursor: pointer;
    display: inline;
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 45px;
    width: 45px;
    background-color: #f5f5f5;
    color: #303030;
}

    .rst-multitab-btns-dock-close:hover {
        background-color: silver;
        color: white;
    }

.rst-multitab-btns-removetab {
    height: 45px;
    width: 45px;
}

    .rst-multitab-btns-removetab:hover {
        background-color: darkgrey;
        color: red;
    }





.rst-multitab-btns {
    padding-left: 0;
    margin-bottom: 0;
    /*list-style: none;*/
    overflow: auto;
    /*display: block;*/
    /*display: inline-block;*/
}

    .rst-multitab-btns > div {
        /*position: relative;*/
        /*float: left;
            display: block;
        */
        margin: 0px;
        display: inline-block;
        margin-right: -4px;
    }
        
        .rst-multitab-btns > div > a {
            position: relative;
            display: block;
            padding: 10px 15px;
            border-radius: 0px;
            color: white;
            /*font-family: sans-serif;*/
            font-size: 0.9em;
            text-decoration: none;
        }            
            .rst-multitab-btns > div > a:hover {
                text-decoration: none;
                background-color: #eee;
                cursor: pointer;
                color: black;                
            }

        .rst-multitab-btns > div.disabled > a {
            color: #777;
        }
            /*.rst-multitab-btns > li.disabled > a:focus,*/
            .rst-multitab-btns > div.disabled > a:hover {
                color: #777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
                cursor: pointer;
            }


        .rst-multitab-btns > div.active > a,        
        .rst-multitab-btns > div.active > a:hover {
            text-decoration: none;
            color: #303030;
            background-color: whitesmoke;
            cursor: pointer;
        }

.rst-multitab-btns-active-border-first {
    border-right:1px solid silver;
}

.rst-multitab-btns-active-border {
    border-left: 1px solid silver;
    border-right: 1px solid silver;
}

.rst-multitab-btns-top {
}


.rst-tag-container {
    display: inline;
}

.rst-tag-name {
    max-width: 140px;
    border-radius: 7px;
    text-align: center;
    vertical-align: middle;
    /*font-family: Helvetica, sans-serif, Arial;*/
    font-size: 0.8em;
    display: inline-block;
    padding: 1px 3px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 0.5px;
    margin-right:3px;
}



.rst-tagfilterpanel-container .rst-listview-scroll-container {
    position: relative;
}

.rst-tagfilterpanel-container .rst-listview-row {
    border-bottom: 0px;
    border-radius: var(--rst-border-radius-small)
}

    .rst-tagfilterpanel-container .rst-listview-row:hover {
        background-color: gray;
    }

.rst-tagfilterpanel-container .rst-listview-pager-container {
    border: 0px;
}

.rst-tagfilterpanel-new-btn {
    width: 30px;
    font-size: 1.4em;
    cursor: pointer;
    border: 0px;
    background-color: transparent;
}

    .rst-tagfilterpanel-new-btn:hover {
        color: gray;
        /*
        font-size: 1.6em;
        -webkit-transition: all .1s ease;
        -moz-transition: all .1s ease;
        transition: all .1s ease;
*/
    }

.rst-tagfilterpanel-container .rst-contextmenu-container {
    height: 85px !important;
    overflow: hidden !important;
}


.rst-textarea-container
{
    width:100%;
}

.rst-textarea-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-textarea-title[disabled] {
        color: silver;
    }

.rst-textarea-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height: 15px;
}

    .rst-textarea-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-textarea-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    border: 0px;
    /*height: var(--rst-inputbox-height);*/
    min-height:35px;
    width: 100%;
    resize: none;    
}

    .rst-textarea-input:focus {
        /*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-textarea-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-textarea-input-container:focus-within {
        border-color: #02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-textarea-required {
    border: 1px solid red;
}

    .rst-textarea-required ~ .rst-textarea-message {
        color: red;
    }

.rst-textbox-container
{
    width:100%;
}

.rst-textbox-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-textbox-title[disabled] {
        color: silver;
    }

.rst-textbox-message {
    /*font-family: sans-serif;*/
    font-size: 0.7em;
    color: gray;
    height:15px;
}

    .rst-textbox-message[disabled] {
        color: silver;
        /*text-shadow:1px 1px 1px black;*/
    }

.rst-textbox-input {
    border-radius: var(--rst-inputbox-border-radius);
    /*border-radius: 0px;*/
    border: 0px;
    height: var(--rst-inputbox-height);
    width: 100%;
}

    .rst-textbox-input:focus {
/*        border: none;
        border-bottom: 1px solid gray;        
        transition: 0.4s;
        padding-bottom: 1px;*/
        outline: none;
    }


.rst-textbox-input-container {
    border-radius: var(--rst-inputbox-border-radius);
    border: 1px solid silver;
    /*border-bottom: 1px solid gray;*/
    transition: border-bottom-color 0.4s;
}

    .rst-textbox-input-container:focus-within {
        border-color:#02add7;
        /*border-bottom: 1px solid #02add7;*/
    }

.rst-textbox-validation-error {
    border: 1px solid red;
}

    .rst-textbox-validation-error ~ .rst-textbox-message {
        color: red;
    }

.rst-textlabel-container {
    margin-top:10px;
}

.rst-textlabel {
}

.rst-textlabel-title {
    /*font-family: sans-serif;*/
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-textlabel-title[disabled] {
        color: silver;
    }
/*
.rst-textlabel-tooltip {
    visibility: hidden;
    opacity: 0;
    width: 320px;
    background-color: #303030;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    transition: 0.25s all ease;
}

.rst-textlabel-tooltip-clicked {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}*/

.rst-threecolumn {
}

.rst-closerightpanel-button-new {
/*    background-color: #303030;*/
    background-color: var(--rst-main-color);
    color: white;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    height: 50px;
    width: 50px;
    /*z-index: 15004;*/
    z-index: 15004;
    display: none;
    position: absolute;
    /*top: 5px;*/
    bottom: 25px;
    right: 5px;
    border-radius: 25px;
    box-shadow: rgba(0,0,0,0.3) 3px 3px 5px;
    cursor: pointer;
}

    .rst-closerightpanel-button-new:hover {
        /*background-color: #909090;*/
        background-color: var(--rst-main-color-dark);
        color: white;
    }

    .rst-closerightpanel-button-new > i {
        font-size: 1.4em;
    }

.rst-closeleftpanel-button-new {
    color: black;
    background-color: transparent;
    border: none;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    height: 50px;
    width: 50px;
    z-index: 15004;    
    display: none;
    position: absolute;
    top: 0px;    
    left: 0px;
    cursor: pointer;
}

    .rst-closeleftpanel-button-new:hover {
        color: #909090;        
    }

    .rst-closeleftpanel-button-new > i {
        font-size: 1.4em;
    }


.rst-tileview-container {

}

.rst-tileview-scroll-container {
    position: absolute;
    top: 0px;
    bottom: 50px;
    left: 0px;
    right: 0px;
    overflow: auto;
}

.rst-tileview-nodata {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.rst-tileview-data{

}

.rst-tileview-row {
    width:175px;
    height:175px;

    padding: 5px;
    margin:5px;
    cursor: pointer;
    border: 1px solid silver;
    display: inline-block;
}

    .rst-tileview-row:hover {
        background-color: mediumpurple;
        color: white;
    }

.rst-tileview-rowselected {
    background-color: silver;
}

    .rst-tileview-rowselected:hover {
        background-color: mediumpurple;
        opacity:0.6;
    }

input.rst-tileview-rowcheckbox {
    width: 20px;
    height: 20px;
}

.rst-tileview-draggable.rst-tileview-dragging {
    opacity: 0.2;
    border: 1px solid red;
}

.rst-tileview-pager-container {
    position: absolute;
    height: 50px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border: 1px solid silver;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 5px;
}

.rst-toolbar-container {
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    /*commentato igor*/
    /*border: 1px solid silver;*/
    /*height: 52px;*/
    height: 50px;
    overflow: hidden;
    display: flex;
}

.rst-toolbar-content {
    /*commentato igor*/
    /*background: #ff000000;*/
    /*    height: 52px;*/
    overflow: hidden;
}

.rst-toolbar-item-container {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.rst-toolbar-button {
    display: block;
    /*    height: 50px;*/
    min-width: 50px;
    cursor: pointer;
    /*padding: 5px;*/
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
    border: 0px;
    /*background: #ff000000;*/
    /*text-align: center;*/
    /*margin-left: 0px;*/
    /*background-color: white;*/
    background-color: transparent;
}


    /*.rst-toolbar-button:hover {

    }*/
    
    .rst-toolbar-button:hover:not([disabled]) {
        background-color: silver;
        color: black;
    }


    .rst-toolbar-button > div {
        height: 30px;
    }


.rst-toolbar-button-label {
    font-size: 0.9em;
    overflow: hidden;
    height: 15px;
}

.rst-toolbar-colorpicker {
    display: block;
    /*    height: 50px;*/
    min-width: 50px;
    cursor: pointer;
    /*padding: 5px;*/
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
    border: 0px;
    background-color: transparent;
    /*background-color: white;*/
    /*text-align: center;*/
    /*margin-left: 0px;*/
}

    .rst-toolbar-colorpicker.colorpicker:hover {
        background-color: silver;
        color: black;
    }

    .rst-toolbar-colorpicker > div {
        height: 30px;
    }

.rst-colorpicker-title {
    display: none;
}

.rst-toolbar-contextmenu-button {
    border: none;
    background: transparent;
    cursor: pointer;
}

/*ATTENZIONE!!! non va bene altrimenti tutte le rst-textbox-title e rst-textbox-message sno nascoste */
/*.rst-textbox-title {
    display: none;
}

.rst-textbox-message {
    display: none;
}*/

.rst-toolbar-item-container button .rst-textbox-title {
    display: none;
}

.rst-toolbar-item-container button .rst-textbox-message {
    display: none;
}

/*.rst-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .rst-tooltip ~ .rst-tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;*/
/* Position the tooltip */
/*position: absolute;
        z-index: 1;
    }

    .rst-tooltip:hover ~ .rst-tooltiptext {
        visibility: visible;
    }

    .rst-tooltip ~ .rst-tooltiptext::after {
        content: " ";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: black transparent transparent transparent;
    }*/

/*.rst-input > .rst-tooltip ~ .rst-tooltiptext {*/
/*.rst-input > .rst-tooltiptext {
    visibility: hidden;
    opacity: 0;
    width: 320px;
    background-color: #303030;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;*/
/*transition-delay: 0.6s;*/
/*transition: 1.25s all ease;
}

.rst-input > .rst-tooltip:hover ~ .rst-tooltiptext {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}

.rst-input > .rst-tooltip ~ .rst-tooltiptext:hover {
    visibility: visible;
    opacity: 1;
}*/

.rst-tooltip {
}

.rst-tooltip-text {
    visibility: hidden;
    opacity: 0;
    overflow-wrap: break-word;
    max-width: 320px;
    font-size: 0.95em;
    /*    background-color: #303030;
    color: #fff;*/
    background-color: white;
    color: black;
    padding: 5px;
    text-align: left;
    border-radius: 6px;
    /*    border: 1px solid #3DD9C4;*/
    border: 1px solid var(--rst-main-color);
    -webkit-box-shadow: 0px 0px 50px -7px rgba(0,0,0,0.86);
    -moz-box-shadow: 0px 0px 50px -7px rgba(0,0,0,0.86);
    box-shadow: 0px 0px 50px -7px rgba(0,0,0,0.86);
    padding: 5px;
    position: absolute;
    z-index: 1;
    /*transition-delay: 0.6s;*/
    transition: 0.65s all ease;
}

    /*.rst-tooltip-text {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}*/
    .rst-tooltip-text:hover {
        visibility: visible;
        opacity: 1;
        transition-delay: 0.4s;
    }

.rst-tooltip-text-show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}


/*
.rst-treefolderfilter-container .rst-listview-scroll-container {
    position: relative;
}

.rst-treefolderfilter-container .rst-listview-row {
    border-bottom: 0px;
}

    .rst-treefolderfilter-container .rst-listview-row:hover {
        background-color: gray;
    }

.rst-treefolderfilter-container .rst-listview-pager-container {
    border: 0px;
}*/

.rst-treefolderfilter-new-btn {
    width: 30px;
    font-size: 1.4em;
    cursor: pointer;
    border: 0px;
    background-color: transparent;
}

    .rst-treefolderfilter-new-btn:hover {
        color: gray;
    }

.rst-treefolderfilter-container .rst-contextmenu-container {
    height: 85px !important;
    overflow: hidden !important;
}


.rst-treeview-container {
    font-size: 0.9em;
    /*font-family: sans-serif;*/
    /*display: inline-block;*/
}

    .rst-treeview-container ul li {
        list-style-type: none;
    }

.rst-treeview-root {
    padding-left: 0px;
}

.rst-treeview-li {
    padding-left: 5px;
    padding-right: 5px;
}

.rst-treeview-children {
    /*display: none;*/
    padding-left: 20px;
}

.rst-treeview-span {
    white-space: nowrap;
    /*text-overflow: ellipsis;*/
    /*display: inline-block;*/
    /*    overflow: hidden;
    width: 90px;*/
    vertical-align: bottom;
    user-select: none;
    display: inline;
    padding-right: 10px;
}

.rst-spanicon-container {
    display: inline-block;
    padding-left: 10px;
}

.rst-treeview-folder {
    display: inline-block;
    padding-right: 5px;
    padding-right: 5px;
    font-weight: normal;
    font-size: 17px;
    vertical-align: bottom;
}

.rst-treeview-arrow {
    width: 30px;
    display: inline-block;
}

.rst-treeview-no-arrow {
    width: 30px;
    display: inline-block;
    padding-left: 9px;
}

.rst-treeview-item {
    cursor: pointer;
    padding: 2px;
    border: 2px solid transparent;
    /*font-family: Roboto, sans-serif;*/
    font-size: 14px;
    font-weight: 400;
    color: #475466;
    letter-spacing: 0.2px;
    display: inline-block;
    white-space: nowrap;
}

    .rst-treeview-item > i {
        text-align: center;
    }

    .rst-treeview-item:hover {
        /*background-color: gainsboro;*/
        border-radius: 5px;
        border: 2px solid rgba(200,200,211);
    }

.rst-treeview-item-selected {
    background-color: rgb(42 42 42 / 19%);
    border-radius: 5px;
}

.rst-collapsible {
    /*overflow: hidden;*/
    transition: all 0.2s ease-in-out;
    height: auto;
    width: 100%;
}

    /*
        chained class, applicata agli elementi che hanno entrmbi le classi p.e. class="rst-collapsible rst-collapsed" 
        https://carlanderson.xyz/how-to-animate-on-height-auto/
    */
    .rst-collapsible.rst-collapsed {
        /*height: 0;*/
        display: none;
    }

.rst-treeview-arrow {
    transition: transform .2s ease-in-out;
}

/*.rst-treeview-collapsed {
    max-height: 0;
    transition: max-height 3.15s ease-out;
    overflow: hidden;    
}

.rst-treeview-expanded {
    max-height: 500px;
    transition: max-height 2.7s ease-in;
}*/



:root {
    /*===== Colores =====*/
    --title-color: #F2F2F3;
    --body-color: #0F0F10;
    --form-container-color: #181B1B;
    --first-color: #3B3E40;
    --second-color: #141515;
    /*===== Fuente y tipografia =====*/
    --body-font: sans-serif;
    --bigger-font-size: 3.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .75rem;
}


.rst-uploader-progress {
    width: 100%;
    background-color: #ddd;
    height: 2px;
    border-radius: 10px;
}

.rst-uploader-bar {
    width: 1%;
    height: 7px;
    background-color: #00c589db;
}

.rst-uploader-container {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.rst-uploader-dropcontainer {
    /*    position: absolute;*/
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.rst-uploader-labelinputcontainer-draganddrop-mode {
    width: 100%;
    height: 100%;
    user-select: none;
    cursor: pointer;
    /*font-size: 12pt;
    font-family: monospace;*/
    color: transparent;
}

.rst-uploader-droptitle {
    position: absolute;
    top: 45%;
    left: 45%;
    /*font-family: sans-serif;*/
    font-size: 2em;
    color: #606667;
}

.rst-uploader-inputfile-selectfiles-mode {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: none;
}

.rst-uploader-inputfile-draganddrop-mode {
    background-color: #f0f0f0;
    width: 100%;
    height: 100%;
    display: block;
    color: #f0f0f0;
    visibility: hidden;
}

.dropzone {
}

    /*   .dropzone.dragover {
        background-color: #f0f0f0;
        font-weight: bold;
        line-height: 95px;
        color: #999;
        border: 2px dashed #ccc;
        transition: transform 0.3s;
    }*/

    .dropzone.dragover {
        background-color: #cccccc8c;
        font-weight: bold;
        line-height: 95px;
        color: #999;
        border: 2px dashed #ccc;
        transition: transform 0.3s;
    }



/* Pannello di Visualizzazione dei File in Upload */

.rst-uploader-filestatus-container {
    /*    position: absolute;
    right: 0px;
    top: 0px;*/
    display: flex;
    align-items: center;
    justify-content: start;
    /*background: linear-gradient(#f3faff, #b3b3b3);*/
    background: whitesmoke;
    flex-direction: column;
    width: 300px;
    height: 100%;
    /*border: 1px solid #1ca1c185;*/
    border-left: 1px solid silver;
    /*padding-left: 14.5px;*/
    animation-duration: 0.2s;
    overflow-y: auto;
}


/*.rst-uploader-labels-input-container {
    border-bottom: 1px solid #1ca1c1;
}*/

.rst-uploader-labels-input-container {
    width: 100%;
    padding: 15px 0px 15px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /*justify-content: center;    
    text-align: center;*/
    gap: 15px;
    border-bottom: 1px solid #1ca1c1;
}

    .rst-uploader-labels-input-container::-webkit-scrollbar {
        width: 8px;
        height: 5.5px;
        background: linear-gradient(#f3faff, #b3b3b3);
    }

    .rst-uploader-labels-input-container::-webkit-scrollbar-thumb {
        background: #0e0e0e4d;
        border-radius: 10px;
    }

.rst-uploader-hidefilestatus {
    font-size: 1.2em;
    cursor: pointer;    
}

    .rst-uploader-hidefilestatus:hover {
        color: #1ca1c1;
    }


.rst-uploader-labelinputcontainer-selectfiles-mode {
    border: 1px solid #999;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    color: #606667;
    padding: 6px;
    white-space: nowrap;
}

.rst-uploader-labelinputcontainer-selectfolders-mode {
    border: 1px solid #999;
    border-radius: 3px;
    user-select: none;
    cursor: pointer;
    color: #606667;
    padding: 6px;
    white-space: nowrap;
}

.rst-uploader-labeltxtandicon-container {
    /*    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100px;*/
}


.rst-uploader-row {
    width: 100%;
    /*background: linear-gradient(#434343,#f3faff);*/
    background-color: white;
    list-style: none;
    padding: 10px 10px;
/*    display: flex;
    align-items: center;
    justify-content: space-between;*/
    /*border-radius: 0.5rem;
    margin-bottom: 12px;*/
    border-bottom: 1px solid gray;
}
.rst-uploader-row-aborted {
    width: 100%;
   /* background: linear-gradient(#434343,#f3faff);*/
    background-color: gainsboro;
    list-style: none;
    padding: 10px 10px;
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
    /*border-radius: 0.5rem;
    margin-bottom: 12px;*/
}


/* IGOR
    .rst-uploader-row {
    width: 100%;    
    background-color: white;
    list-style: none;
    padding: 15px 15px;
    color:black;
}

.rst-uploader-row-aborted {
    width: 100%;    
    background-color: white;
    list-style: none;
    padding: 15px 15px;    
}*/

/*.rst-uploader-details span {
    font-size: var(--normal-font-size);*/
    /*color: white;*/
    /*text-overflow: ellipsis;
    overflow: hidden;
    width: 240px;
    white-space: nowrap;
}*/

.rst-uploader-name {
    font-size: var(--normal-font-size);
    /*color: white;*/
    text-overflow: ellipsis;
    overflow: hidden;
    width: 200px;
    white-space: nowrap;
}

.rst-uploader-percent {
    font-size: var(--normal-font-size);
}

.rst-uploader-progress-area .row .content {
    width: 100%;
    /*    margin-left: 15px;*/
}

.rst-uploader-progress-area {
    width: 100%;
    height: 100%;
    overflow-y: auto;
/*    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;*/
}

/*
    .rst-uploader-progress-area::-webkit-scrollbar {
        width: 5px;
        height: 8px;
    }

    .rst-uploader-progress-area::-webkit-scrollbar-track {
        background: linear-gradient(#5b5b5b, #f3faff);
    }

    .rst-uploader-progress-area::-webkit-scrollbar-thumb {
        background: #ffffff;
        border-radius: 10px;
    }*/

    .rst-uploader-progress-area .row-aborted .content {
        width: 100%;
        /*    margin-left: 15px;*/
    }


    .rst-uploader-progress-area .details {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14.5px;
    }

    .rst-uploader-progress-area .content .progress-bar {
        height: 6px;
        width: 100%;
        margin-bottom: 4px;
        background: #fff;
        border-radius: 30px;
    }

.rst-uploader-progress-bar-aborted {
    height: 6px;
    width: 100%;
    margin-bottom: 4px;
    background: red;
    border-radius: 30px;
}


.rst-uploader-content .rst-uploader-progress-bar .rst-uploader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(#f3faff, #000000);
    border-radius: inherit;
}

.rst-uploader-progress-aborted {
    height: 100%;
    width: 50%;
    background: linear-gradient(var(--first-color), var(--second-color));
    border-radius: inherit;
}

.rst-uploader-progress-area .details .percent {
    width: 110px;
    text-align: end;
}

.rst-uploader-progress-area .details .size {
    color: white;
    font-style: italic;
    /* font-size: 11px; */
}
/*
.uploading-title {
    padding-bottom: 7px;
    color: white;
    font-family: monospace;
    font-weight: bolder;
}*/


/*.rst-uploader-uploaded-area {
    max-height: 100%;
    overflow-y: scroll;*/
/* overflow: hidden; */
/*}

    .rst-uploader-uploaded-area.onprogress {*/
/*max-height: 150px;*/
/*}

    .rst-uploader-uploaded-area::-webkit-scrollbar {
        width: 0px;
    }

    .rst-uploader-uploaded-area .row .content {
        display: flex;
        align-items: center;
    }

    .rst-uploader-uploaded-area .row .details {
        display: flex;
        margin-left: 15px;
        flex-direction: column;
    }

    .rst-uploader-uploaded-area .row-aborted .content {
        display: flex;
        align-items: center;
    }

    .rst-uploader-uploaded-area .row-aborted .details {
        display: flex;
        margin-left: 15px;
        flex-direction: column;
    }*/




/* CSS For VerticalMenu */

.rst-verticalmenu-container {    
    position: absolute;
/*    top: 0;
    bottom: 0;
    background-color: #fff;
    border-width: 0 1px 0 0;
    border-color: #c0c0c0;
    border-style: solid;*/
    z-index: 9300;
/*    width: 200px;*/
}


.rst-verticalmenu-scrollbar {
    background-color: white;
    overflow-x: hidden;
    overflow-y: auto;
    right: 0px;
    left: 0px;
}


.rst-verticalmenu-root {
    list-style-type: none;
    /*padding: 5px;*/
    padding: 0px;
}


.rst-verticalmenu-li {
    cursor: pointer;
}

.rst-verticalmenu-tableitem {
    width: 100%;
    height: 35px;
    border: none;
    border-spacing: unset;
    border-collapse: collapse;
}

.rst-verticalmenu-tableitem-title {
    width: 100%;
    height: 35px;
    border: none;
    cursor: text;
}

.rst-verticalmenu-titleitem {
    /*font-size: 19px;*/
    font-size: 1.2em;
    /*font-family: Helvetica, sans-serif;*/
    color: black;
    cursor: text;
}

.rst-verticalmenu-tableitem:hover .rst-verticalmenu-modulename {
    /*color: #fff;*/
}

.rst-verticalmenu-tableitem:hover {
    background-color: #dcdcdc;
    color: black;
}

.rst-verticalmenu-item {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 5px;
}
.rst-verticalmenu-item td {    
    padding: 0px;
}

.rst-verticalmenu-tableitem-selected {
    background-color: #dcdcdc;
    color: #000;
}


/* stile dell'icona nella modalità title (quando la voce di menu è un titolo non cliccabile) */
.rst-verticalmenu-icon-title {
    font-size: 1.2em;
    text-align: center;
    width: 35px;
    /*   color: silver;*/
    /*    display: none;*/
}

/* stile icona del menu */
.rst-verticalmenu-icon {    
    /*font-size: 1.2em;*/
    text-align: center;
    width: 35px;
    text-decoration: none;
    color: black;
    /*color: silver;*/
}

/* testo della voce di menu */
.rst-verticalmenu-modulename {
    /*font-size: 16px;*/
    width: 80px;
    /*font-family: Helvetica, sans-serif;*/
    cursor: pointer;
    color: black;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
}

/* freccia per sottomenu */
.rst-verticalmenu-arrow {
    color: #000;
    width: 40px;
    text-align: center;
}

    .rst-verticalmenu-arrow:hover {
        background-color: silver;
    }






/*CSS For VerticalSubMenu*/


.rst-subnav-verticalmenu-root {
    background-color: #fff;
    list-style-type: none;
    padding-left: 55px;
}


.rst-subnav-verticalmenu-li {
    cursor: pointer;
}


.rst-verticalmenu-subtableitem {
    width: 100%;
    border: none;
}


.rst-verticalmenu-subicon {
    text-align: center;
    width: 40px;
    color: black;
    margin-right: 5px;
}


.rst-verticalmenu-submodulename {
    width: 80px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    /*font-family: Helvetica, sans-serif;*/
    /*    font-size: 0.95em;*/
    cursor: pointer;
    color: black;
}

.rst-subnav-verticalmenu-li:hover .rst-verticalmenu-submodulename {
    /*text-decoration: underline;*/
}

.rst-verticalmenu-subitem {
    text-decoration: none;
}

.rst-verticalmenu-td-cell {
    padding: 0px;
}




.rst-verticalmenu-expand-button {
    border-radius: 3px;
    border: 1px solid silver;
    background-color: #0B4A6F;
    color:white;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 0px;
    margin-right: -10px;
    padding-top: 1px;
    text-align: center;
    cursor: pointer;
}

    .rst-verticalmenu-expand-button:hover {
        background-color: #026AA2;        
    }



/*.rst-vertical-menu ul li.hover, .rst-vertical-menu ul li:hover {
        z-index: 599; 
        cursor: default;
        border-radius: 2px;
    }

    .rst-vertical-menu:after { 
        display: table; 
        clear: both;
    }

    .rst-vertical-menu a {
        display: block; 
        padding: 15px 20px; 
        text-decoration: none;
        letter-spacing: 2px;
        border-bottom: 1px solid #ffffff;
    }

    .rst-vertical-menu > ul {
        width: 200px;
    }

    .rst-vertical-menu > ul > li > a {
        border-left: 4px solid #095586; 
        color: #095586;
    }

    .rst-vertical-menu > ul > li a:hover {
        background: #095586; 
        color:#f1f1f1;
        border-radius: 2px;
    }


    .rst-vertical-menu:hover .rst-subnav-verticalmenu {
        display: block;
    }

    .rst-subnav-verticalmenu {
        display: none;*/
/*position: absolute;
        left: 0px;
        width: 100%;*/
/*z-index: 1;
        background: #095586; 
        color:#f1f1f1;
    }
    
    .rst-sublist-verticalmenu {
        position: relative; 
        left: 30px; 
        background-color: #f1f1f1; 
        width: 160px;
        font-size: 15px;
        color: #095586;
        letter-spacing: 2px;
    }
    
    .rst-anchor-verticalmenu {
        font-size: 15px;
        color: #095586;
    }

    .rst-anchor-verticalmenu:hover {
        font-size: 15px;
        color: #095586;
        position: relative; 
        left: 10px; 
        transform:scale(1.106);
    }

    .rst-verticalmenu-icon {
        padding-right: 12px;
        color: #FFB74D;  
    }
    
    .rst-verticalmenu-arrow {
        padding-left: 2px; 
    }*/


.rst-worflowstephistorylabel-container {
    margin-top:10px;
}


.rst-worflowstephistorylabel-title {    
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-worflowstephistorylabel-title[disabled] {
        color: silver;
    }

.rst-worflowstephistorylabel-data {
    display:inline;
}
.rst-worflowstephistorylabel-box {
    margin-right:10px;
    display: inline-block;
}

.rst-workflowstephistorylabel {
    display: inline;
    padding: .2em .2em .2em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    background-color: #dcdcdc;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    text-shadow: 0 1px 3px rgb(0 0 0 / 20%);
}
.rst-worflowstephistorylabel-date {
    margin-top:3px;
    font-size: 0.6em;
}


.rst-worflowsteplabel-container {
    margin-top: 10px;
}

.rst-worflowsteplabel-box {
    display: inline;
    padding: .4em .4em .4em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    background-color: #dcdcdc;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    text-shadow: 0 1px 3px rgb(0 0 0 / 20%);
}

.rst-worflowsteplabel-title {    
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    height: 20px;
}

    .rst-worflowsteplabel-title[disabled] {
        color: silver;
    }
.rst-worflowsteplabel{
}

.rst-workflowfilterpanel-container {
    overflow: auto;
}

.rst-workflowfilterpanel-item {
    cursor: pointer;
    padding: 5px;
    border-radius: var(--rst-border-radius-small);
}

.rst-workflowfilterpanel-item-margin {
    margin-left: 10px;
}

.rst-workflowfilterpanel-item-selected {
    background-color: rgb(61, 217, 196);
}

.rst-workflowfilterpanel-item-square {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background-size: 100%;
    margin-right: 5px;
    border-radius: 2px;
}

.rst-workflowfilterpanel-item-count {
    font-weight: 500;
    font-size: 1.1em;
}

.rst-workflowfilterpanel-item-label {
    font-size: 0.8em;
    color: black;
    text-transform: uppercase;
}
