@import url(../../../../../../../cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&amp;display=swap);
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    -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);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    -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);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-name: headShake;
  animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInDown {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInLeft {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInRight {
  0% {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes backInUp {
  0% {
    opacity: 0.7;
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
  }
  80% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}
@keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}
@keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}
@keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}
@keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
  }
  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
  }
  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
@keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
  }
  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
.animate__animated.animate__flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    -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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInDown {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInLeft {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInRight {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
@keyframes zoomInUp {
  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);
    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);
  }
  60% {
    -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);
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
@keyframes zoomOutDown {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
.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% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
@keyframes zoomOutUp {
  40% {
    -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);
    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);
  }
  to {
    -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);
    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);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:after,
.nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:after {
  content: "";
}
.notificationx-shortcode-wrapper > .nx-bar,
.notificationx-shortcode-wrapper > .nx-bar .nx-bar-inner .notificationx-close,
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:after,
.nx-bar,
.nx-bar .nx-bar-inner .notificationx-close,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:after {
  position: absolute;
}
.notificationx-shortcode-wrapper > .nx-bar .nx-bar-inner .nx-bar-content-wrap,
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper,
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-inner-content-wrapper,
.nx-bar .nx-bar-inner .nx-bar-content-wrap,
.nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-countdown-wrapper,
.nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-inner-content-wrapper {
  align-items: center;
  display: flex;
}
#notificationx-frontend,
#notificationx-frontend-crosssite,
.notificationx-frontend {
  color: #000;
  font-family: Open Sans, sans-serif;
  text-shadow: none;
}
#notificationx-frontend .nx-container,
#notificationx-frontend-crosssite .nx-container,
.notificationx-frontend .nx-container {
  display: flex;
  flex-direction: column;
  pointer-events: none;
  position: fixed;
  z-index: 99998;
}
#notificationx-frontend .nx-container.nxc-bottom_left,
#notificationx-frontend-crosssite .nx-container.nxc-bottom_left,
.notificationx-frontend .nx-container.nxc-bottom_left {
  align-items: flex-start;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 480px) {
  #notificationx-frontend .nx-container.nxc-bottom_left,
  #notificationx-frontend-crosssite .nx-container.nxc-bottom_left,
  .notificationx-frontend .nx-container.nxc-bottom_left {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
#notificationx-frontend .nx-container.nxc-bottom_right,
#notificationx-frontend-crosssite .nx-container.nxc-bottom_right,
.notificationx-frontend .nx-container.nxc-bottom_right {
  align-items: flex-end;
  bottom: 30px;
  left: 0;
  right: 30px;
}
@media only screen and (max-width: 480px) {
  #notificationx-frontend .nx-container.nxc-bottom_right,
  #notificationx-frontend-crosssite .nx-container.nxc-bottom_right,
  .notificationx-frontend .nx-container.nxc-bottom_right {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
#notificationx-frontend .nx-container.nxc-top_right,
#notificationx-frontend-crosssite .nx-container.nxc-top_right,
.notificationx-frontend .nx-container.nxc-top_right {
  align-items: flex-end;
  right: 30px;
  top: 30px;
}
@media only screen and (max-width: 480px) {
  #notificationx-frontend .nx-container.nxc-top_right,
  #notificationx-frontend-crosssite .nx-container.nxc-top_right,
  .notificationx-frontend .nx-container.nxc-top_right {
    left: 10px;
    right: 10px;
    top: 10px;
  }
}
#notificationx-frontend .nx-container.nxc-top_left,
#notificationx-frontend-crosssite .nx-container.nxc-top_left,
.notificationx-frontend .nx-container.nxc-top_left {
  align-items: flex-end;
  left: 30px;
  top: 30px;
}
@media only screen and (max-width: 480px) {
  #notificationx-frontend .nx-container.nxc-top_left,
  #notificationx-frontend-crosssite .nx-container.nxc-top_left,
  .notificationx-frontend .nx-container.nxc-top_left {
    left: 10px;
    right: 10px;
    top: 10px;
  }
}
#notificationx-frontend .nx-container .nx-notification,
#notificationx-frontend-crosssite .nx-container .nx-notification,
.notificationx-frontend .nx-container .nx-notification {
  pointer-events: auto;
}
.notification-item.nx-notification.position-bottom_right {
  bottom: 0 !important;
  left: auto !important;
  right: 0 !important;
}
@keyframes SlideBottom {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(1000%);
  }
}
@keyframes SlideTop {
  0% {
    transform: translateY(1000%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.notification-item {
  animation-fill-mode: forwards;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: auto;
  min-width: 300px;
  position: relative;
  z-index: 99998;
}
.notification-item audio {
  display: none;
}
.notification-item:not(.notification-item:last-child) {
  margin-bottom: 30px;
}
.notification-item.exit {
  opacity: 0;
}
.notification-item.button-link .notificationx-link {
  background: #5612d6;
  left: inherit;
  padding: 6px 15px;
}
.notification-item.button-link .notificationx-link,
.notification-item.button-link .yt-notificationx-link {
  border-radius: 4px;
  bottom: inherit;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  right: 15px;
  text-decoration: none;
  top: -35px;
}
.notification-item.button-link .yt-notificationx-link {
  left: auto;
  position: absolute;
}
.notification-item.themes-pa-theme-four.button-link .notificationx-link {
  background-color: red;
}
.notification-item .notificationx-inner {
  align-items: center;
  display: flex;
}
.notification-item .notificationx-image {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-basis: 100px;
  justify-content: center;
  min-width: 100px;
  overflow: hidden;
  padding: 12px;
  width: 100px;
}
.notification-item .notificationx-image > img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.notification-item .notificationx-image.image-circle img {
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.notification-item .notificationx-image.image-rounded img {
  border-radius: 10px;
}
.notification-item .notificationx-image .notificationx-image-badge {
  opacity: 0;
  visibility: hidden;
}
.notification-item .notificationx-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 14px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 0;
}
.notification-item .notificationx-content:first-child {
  margin-left: 25px;
}
.notification-item .notificationx-content .notificationX-theme-five-shape {
  display: none;
}
.notification-item .notificationx-content > p {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
}
.notification-item .notificationx-content > p a {
  position: relative;
  z-index: 9;
}
.notification-item .notificationx-content > p:not(:last-of-type) {
  margin-bottom: 5px;
}
.notification-item .notificationx-content > p > span {
  margin-right: 5px;
}
.notification-item .notificationx-content > p > span p {
  margin-bottom: 0;
  margin-top: 0;
}
.notification-item .notificationx-content > p.nx-first-row {
  font-size: 13px;
  line-height: 1.2;
}
.notification-item .notificationx-content > p.nx-first-row * {
  line-height: 1.2;
}
.notification-item .notificationx-content > p.nx-second-row {
  font-size: 14px;
  line-height: 1.2;
}
.notification-item .notificationx-content > p.nx-third-row {
  font-size: 13px;
  line-height: 1.2;
}
.notification-item .notificationx-content > p.nx-third-row * {
  line-height: 1.2;
}
.notification-item .notificationx-content.adv-template > p > span {
  width: 100%;
}
.notification-item .notificationx-content.adv-template > p.nx-third-row {
  align-items: center;
  display: flex;
}
.notification-item .notificationx-content.adv-template > p.nx-third-row > span {
  flex-grow: 1;
  width: auto;
}
.notification-item .notificationx-content .nx-branding {
  align-items: center;
  display: flex;
  z-index: 9;
}
.notification-item .notificationx-content .nx-branding > * {
  margin-right: 5px;
}
.notification-item .notificationx-content .nx-branding > a {
  display: inline-block;
  z-index: 999;
}
.notification-item .notificationx-content .nx-branding > a > svg {
  fill: #5614d5;
  display: block;
  height: 16px;
  width: 80px;
}
.notification-item .notificationx-content .nx-branding > a:hover > svg {
  fill: #b18ef4;
  transition: fill 0.3s ease 0s;
}
.notification-item .notificationx-close {
  align-self: start;
  display: inline-flex;
  margin-top: 5px;
  order: 2;
  padding: 10px 15px 10px 10px;
  z-index: 9;
}
.notification-item .notificationx-close svg {
  fill: #000;
  cursor: pointer;
}
.notification-item.img-position-right .notificationx-close {
  order: 0;
}
.notification-item.img-position-right .notificationx-content {
  order: 1;
}
.notification-item.img-position-right .notificationx-image {
  order: 2;
}
.notification-item .notificationx-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.notification-item.themes-page_analytics_pa-theme-three,
.notification-item.themes-page_analytics_pa-theme-three .notificationx-inner,
.notification-item.themes-review_saying,
.notification-item.themes-review_saying .notificationx-inner,
.notification-item.themes-reviewed,
.notification-item.themes-reviewed .notificationx-inner,
.notification-item.themes-theme-two,
.notification-item.themes-theme-two .notificationx-inner,
.notification-item.themes-total-download,
.notification-item.themes-total-download .notificationx-inner {
  border-radius: 100px;
}
.notification-item.themes-page_analytics_pa-theme-three:not(.img-position-right)
  .notificationx-content:first-child,
.notification-item.themes-review_saying:not(.img-position-right)
  .notificationx-content:first-child,
.notification-item.themes-reviewed:not(.img-position-right)
  .notificationx-content:first-child,
.notification-item.themes-theme-two:not(.img-position-right)
  .notificationx-content:first-child,
.notification-item.themes-total-download:not(.img-position-right)
  .notificationx-content:first-child {
  margin-left: 25px;
}
.notification-item.themes-page_analytics_pa-theme-three.img-position-right
  .notificationx-content:first-child,
.notification-item.themes-review_saying.img-position-right
  .notificationx-content:first-child,
.notification-item.themes-reviewed.img-position-right
  .notificationx-content:first-child,
.notification-item.themes-theme-two.img-position-right
  .notificationx-content:first-child,
.notification-item.themes-total-download.img-position-right
  .notificationx-content:first-child {
  margin-right: 25px;
}
.notification-item.themes-page_analytics_pa-theme-three
  .notificationx-image:not(.image-circle),
.notification-item.themes-review_saying .notificationx-image:not(.image-circle),
.notification-item.themes-reviewed .notificationx-image:not(.image-circle),
.notification-item.themes-theme-two .notificationx-image:not(.image-circle),
.notification-item.themes-total-download
  .notificationx-image:not(.image-circle) {
  flex-basis: 80px;
  margin: 10px 0 10px 10px;
  padding: 15px;
  width: 80px;
}
.notification-item.themes-page_analytics_pa-theme-three
  .notificationx-image:not(.image-circle).position-left,
.notification-item.themes-review_saying
  .notificationx-image:not(.image-circle).position-left,
.notification-item.themes-reviewed
  .notificationx-image:not(.image-circle).position-left,
.notification-item.themes-theme-two
  .notificationx-image:not(.image-circle).position-left,
.notification-item.themes-total-download
  .notificationx-image:not(.image-circle).position-left {
  margin-left: 10px;
  margin-right: 0;
}
.notification-item.themes-page_analytics_pa-theme-three
  .notificationx-image:not(.image-circle).position-right,
.notification-item.themes-review_saying
  .notificationx-image:not(.image-circle).position-right,
.notification-item.themes-reviewed
  .notificationx-image:not(.image-circle).position-right,
.notification-item.themes-theme-two
  .notificationx-image:not(.image-circle).position-right,
.notification-item.themes-total-download
  .notificationx-image:not(.image-circle).position-right {
  margin-left: 0;
  margin-right: 10px;
}
.notification-item.themes-page_analytics_pa-theme-three .notificationx-close,
.notification-item.themes-review_saying .notificationx-close,
.notification-item.themes-reviewed .notificationx-close,
.notification-item.themes-theme-two .notificationx-close,
.notification-item.themes-total-download .notificationx-close {
  align-self: center;
  margin-top: 0;
}
.notification-item.themes-page_analytics_pa-theme-three.img-position-right
  .notificationx-close,
.notification-item.themes-review_saying.img-position-right .notificationx-close,
.notification-item.themes-reviewed.img-position-right .notificationx-close,
.notification-item.themes-theme-two.img-position-right .notificationx-close,
.notification-item.themes-total-download.img-position-right
  .notificationx-close {
  order: 0;
  padding: 10px 10px 10px 15px;
}
.notification-item.themes-page_analytics_pa-theme-three.img-position-right
  .notificationx-content,
.notification-item.themes-review_saying.img-position-right
  .notificationx-content,
.notification-item.themes-reviewed.img-position-right .notificationx-content,
.notification-item.themes-theme-two.img-position-right .notificationx-content,
.notification-item.themes-total-download.img-position-right
  .notificationx-content {
  order: 1;
}
.notification-item.themes-page_analytics_pa-theme-three.img-position-right
  .notificationx-image,
.notification-item.themes-review_saying.img-position-right .notificationx-image,
.notification-item.themes-reviewed.img-position-right .notificationx-image,
.notification-item.themes-theme-two.img-position-right .notificationx-image,
.notification-item.themes-total-download.img-position-right
  .notificationx-image {
  order: 2;
}
.notification-item.themes-page_analytics_pa-theme-three .notificationx-link,
.notification-item.themes-review_saying .notificationx-link,
.notification-item.themes-reviewed .notificationx-link,
.notification-item.themes-theme-two .notificationx-link,
.notification-item.themes-total-download .notificationx-link {
  border-radius: 100px;
}
.notification-item.themes-theme-three .notificationx-image {
  border-left: none;
  border-right: 1px solid #f2f2f2;
}
.notification-item.themes-theme-three .notificationx-image.position-right {
  border-left: 1px solid #f2f2f2;
  border-right: none;
}
.notification-item.themes-email_subscription_theme-three .notificationx-image,
.notification-item.themes-email_subscription_theme-three
  .notificationx-image.position-right {
  border-left: none;
  border-right: none;
}
.notification-item.themes-theme-six-free
  .notificationx-inner
  div.notificationx-image {
  border-color: #f2f2f2;
}
.notification-item.themes-review-comment-2,
.notification-item.themes-theme-seven-free {
  border-radius: 100px;
}
.notification-item.themes-review-comment-2:not(.img-position-right)
  .notificationx-content:first-child,
.notification-item.themes-theme-seven-free:not(.img-position-right)
  .notificationx-content:first-child {
  margin-left: 25px;
}
.notification-item.themes-review-comment-2.img-position-right
  .notificationx-content:first-child,
.notification-item.themes-theme-seven-free.img-position-right
  .notificationx-content:first-child {
  margin-right: 25px;
}
.notification-item.themes-review-comment-2 .notificationx-inner,
.notification-item.themes-theme-seven-free .notificationx-inner {
  border-radius: 100px;
}
.notification-item.themes-review-comment-2
  .notificationx-image:not(.image-circle),
.notification-item.themes-theme-seven-free
  .notificationx-image:not(.image-circle) {
  padding: 19px;
}
.notification-item.themes-review-comment-2 .notificationx-image,
.notification-item.themes-theme-seven-free .notificationx-image {
  background: #fae8f4;
  border-radius: 100px !important;
  overflow: initial;
  padding: 8px;
  position: relative;
}
.notification-item.themes-review-comment-2 .notificationx-image:after,
.notification-item.themes-theme-seven-free .notificationx-image:after {
  align-items: center;
  background: #ff66bc;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 0 5px 10px rgba(255, 102, 188, 0.4);
  color: #fff;
  content: "";
  display: inline-flex;
  font-family: FontAwesome;
  font-size: 7px;
  height: 20px;
  justify-content: center;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 20px;
}
.notification-item.themes-review-comment-2 .notificationx-close,
.notification-item.themes-theme-seven-free .notificationx-close {
  align-self: center;
  margin-top: 0;
}
.notification-item.themes-review-comment-2.img-position-right
  div.notificationx-close,
.notification-item.themes-theme-seven-free.img-position-right
  div.notificationx-close {
  order: 0;
  padding: 10px 10px 10px 15px;
}
.notification-item.themes-review-comment-2.img-position-right
  div.notificationx-content,
.notification-item.themes-theme-seven-free.img-position-right
  div.notificationx-content {
  order: 1;
}
.notification-item.themes-review-comment-2.img-position-right
  div.notificationx-image,
.notification-item.themes-theme-seven-free.img-position-right
  div.notificationx-image {
  order: 2;
}
.notification-item.themes-review-comment-2 .notificationx-link,
.notification-item.themes-theme-seven-free .notificationx-link {
  border-radius: 100px;
}
.notification-item.themes-conversions_conv-theme-seven,
.notification-item.themes-woocommerce_sales_conv-theme-seven {
  border-radius: 3px;
}
.notification-item.themes-conversions_conv-theme-seven .notificationx-image,
.notification-item.themes-woocommerce_sales_conv-theme-seven
  .notificationx-image {
  overflow: initial !important;
  position: relative;
}
.notification-item.themes-conversions_conv-theme-seven
  .notificationx-image:after,
.notification-item.themes-woocommerce_sales_conv-theme-seven
  .notificationx-image:after {
  align-items: center;
  background: #45c9b1;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 0 5px 10px rgba(69, 201, 177, 0.4);
  color: #fff;
  content: "";
  display: inline-flex;
  font-family: FontAwesome;
  font-size: 7px;
  height: 20px;
  justify-content: center;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 20px;
}
.notification-item.themes-review-comment-3,
.notification-item.themes-theme-eight-free {
  border-radius: 100px;
}
.notification-item.themes-review-comment-3:not(.img-position-right)
  .notificationx-content:first-child,
.notification-item.themes-theme-eight-free:not(.img-position-right)
  .notificationx-content:first-child {
  margin-left: 25px;
}
.notification-item.themes-review-comment-3.img-position-right
  .notificationx-content:first-child,
.notification-item.themes-theme-eight-free.img-position-right
  .notificationx-content:first-child {
  margin-right: 25px;
}
.notification-item.themes-review-comment-3 .notificationx-inner,
.notification-item.themes-theme-eight-free .notificationx-inner {
  border-radius: 100px;
}
.notification-item.themes-review-comment-3
  .notificationx-image:not(.image-circle),
.notification-item.themes-theme-eight-free
  .notificationx-image:not(.image-circle) {
  padding: 19px;
}
.notification-item.themes-review-comment-3 .notificationx-image,
.notification-item.themes-theme-eight-free .notificationx-image {
  background: #f0edfe;
  border-radius: 100px !important;
  overflow: initial;
  padding: 8px;
  position: relative;
}
.notification-item.themes-review-comment-3 .notificationx-image:after,
.notification-item.themes-theme-eight-free .notificationx-image:after {
  align-items: center;
  background: #7052f0;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 0 5px 10px rgba(112, 82, 240, 0.4);
  color: #fff;
  content: "";
  display: inline-flex;
  font-family: FontAwesome;
  font-size: 7px;
  height: 20px;
  justify-content: center;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 20px;
}
.notification-item.themes-review-comment-3 .notificationx-close,
.notification-item.themes-theme-eight-free .notificationx-close {
  align-self: center;
  margin-top: 0;
}
.notification-item.themes-review-comment-3.img-position-right
  div.notificationx-close,
.notification-item.themes-theme-eight-free.img-position-right
  div.notificationx-close {
  order: 0;
  padding: 10px 10px 10px 15px;
}
.notification-item.themes-review-comment-3.img-position-right
  div.notificationx-content,
.notification-item.themes-theme-eight-free.img-position-right
  div.notificationx-content {
  order: 1;
}
.notification-item.themes-review-comment-3.img-position-right
  div.notificationx-image,
.notification-item.themes-theme-eight-free.img-position-right
  div.notificationx-image {
  order: 2;
}
.notification-item.themes-review-comment-3 .notificationx-link,
.notification-item.themes-theme-eight-free .notificationx-link {
  border-radius: 100px;
}
.notification-item.themes-conversions_conv-theme-ten:not(
    .notification-item.themes-woocommerce_sales_conv-theme-ten:last-child,
    .notification-item.themes-conversions_conv-theme-ten:last-child
  ),
.notification-item.themes-woocommerce_sales_conv-theme-ten:not(
    .notification-item.themes-woocommerce_sales_conv-theme-ten:last-child,
    .notification-item.themes-conversions_conv-theme-ten:last-child
  ) {
  margin-bottom: 45px;
}
.notification-item.themes-conversions_conv-theme-ten,
.notification-item.themes-conversions_conv-theme-ten .notificationx-inner,
.notification-item.themes-woocommerce_sales_conv-theme-ten,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .notificationx-inner {
  border-radius: 8px;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content {
  -moz-column-gap: 15px;
  column-gap: 15px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-first-row,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-first-row {
  color: #344054;
  font-size: 16px;
  font-weight: 500;
  grid-column-end: 3;
  grid-column-start: 1;
  line-height: 21px;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-first-row
  span
  span:nth-child(2),
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-first-row
  span
  span:nth-child(2) {
  color: #b39899;
  font-weight: 400 !important;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-second-row,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-second-row {
  font-size: 14px;
  font-weight: 700;
  grid-column-end: 3;
  grid-column-start: 1;
  line-height: 18px;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-second-row
  span
  span:first-child,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-second-row
  span
  span:first-child {
  color: #5d3ab4;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-third-row,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-third-row {
  font-size: 12px;
  font-weight: 500;
  grid-column-end: 4;
  grid-column-start: 3;
  grid-row-end: 3;
  grid-row-start: 1;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  span
  span:first-child,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  span
  span:first-child {
  color: #98a2b3;
}
.notification-item.themes-conversions_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  .nx-branding,
.notification-item.themes-woocommerce_sales_conv-theme-ten
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  .nx-branding {
  bottom: 10px;
  position: absolute;
  right: 10px;
}
.notification-item.themes-conversions_conv-theme-eleven,
.notification-item.themes-woocommerce_sales_conv-theme-eleven {
  border-radius: 50px 8px 8px 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(-10px 0 15px rgba(0, 0, 0, 0.1));
}
.notification-item.themes-conversions_conv-theme-eleven:not(
    .notification-item.themes-woocommerce_sales_conv-theme-eleven:last-child,
    .notification-item.themes-conversions_conv-theme-eleven:last-child
  ),
.notification-item.themes-woocommerce_sales_conv-theme-eleven:not(
    .notification-item.themes-woocommerce_sales_conv-theme-eleven:last-child,
    .notification-item.themes-conversions_conv-theme-eleven:last-child
  ) {
  margin-bottom: 45px;
}
.notification-item.themes-conversions_conv-theme-eleven .notificationx-inner,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .notificationx-inner {
  border-radius: 50px 8px 8px 50px;
}
.notification-item.themes-conversions_conv-theme-eleven
  .notificationx-inner
  .notificationx-image,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .notificationx-inner
  .notificationx-image {
  animation: bling 1.5s infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 15px #fff;
  flex-basis: 90px;
  min-width: 90px;
  padding: 0;
  position: relative;
  width: 90px;
}
.notification-item.themes-conversions_conv-theme-eleven
  .notificationx-inner
  .notificationx-image
  img,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .notificationx-inner
  .notificationx-image
  img {
  border-radius: 50%;
}
.notification-item.themes-conversions_conv-theme-eleven
  .notificationx-inner
  .notificationx-content,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .notificationx-inner
  .notificationx-content {
  margin-left: 20px;
  margin-right: 10px;
  width: 100%;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content {
  -moz-column-gap: 15px;
  column-gap: 15px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin-left: 20px;
  margin-right: 10px;
  width: 100%;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-first-row,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-first-row {
  color: #344054;
  font-size: 16px;
  font-weight: 500;
  grid-column-end: 3;
  grid-column-start: 1;
  line-height: 21px;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-first-row
  span
  span:nth-child(2),
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-first-row
  span
  span:nth-child(2) {
  color: #98a2b3;
  font-weight: 400 !important;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-second-row,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-second-row {
  font-size: 14px;
  font-weight: 500;
  grid-column-end: 3;
  grid-column-start: 1;
  line-height: 18px;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-second-row
  span
  span:first-child,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-second-row
  span
  span:first-child {
  color: #344054;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-third-row,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-third-row {
  font-size: 12px;
  font-weight: 500;
  grid-column-end: 4;
  grid-column-start: 3;
  grid-row-end: 3;
  grid-row-start: 1;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  span
  span:first-child,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  span
  span:first-child {
  color: #98a2b3;
}
.notification-item.themes-conversions_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  .nx-branding,
.notification-item.themes-woocommerce_sales_conv-theme-eleven
  .no-advance-edit
  .notificationx-content
  .nx-third-row
  .nx-branding {
  bottom: 10px;
  position: absolute;
  right: 10px;
}
.notificationx-shortcode-wrapper {
  padding: 30px 0;
}
.notificationx-shortcode-wrapper .notification-item {
  animation: FadeIn 0.5s;
  animation-fill-mode: forwards;
}
.themes-conv-theme-nine,
.themes-page_analytics_pa-theme-two,
.themes-review-comment,
.themes-theme-five,
.themes-theme-six-free {
  background-color: transparent;
  box-shadow: none;
  left: auto;
}
.themes-conv-theme-nine audio,
.themes-page_analytics_pa-theme-two audio,
.themes-review-comment audio,
.themes-theme-five audio,
.themes-theme-six-free audio {
  display: none;
}
.themes-conv-theme-nine .notificationx-inner,
.themes-page_analytics_pa-theme-two .notificationx-inner,
.themes-review-comment .notificationx-inner,
.themes-theme-five .notificationx-inner,
.themes-theme-six-free .notificationx-inner {
  align-items: stretch;
  display: flex;
  position: relative;
}
.themes-conv-theme-nine .notificationx-image,
.themes-page_analytics_pa-theme-two .notificationx-image,
.themes-review-comment .notificationx-image,
.themes-theme-five .notificationx-image,
.themes-theme-six-free .notificationx-image {
  align-items: center;
  align-self: stretch;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-basis: 100px;
  min-width: 100px;
  overflow: hidden;
  padding: 12px;
  width: 100px;
}
.themes-conv-theme-nine .notificationx-content,
.themes-page_analytics_pa-theme-two .notificationx-content,
.themes-review-comment .notificationx-content,
.themes-theme-five .notificationx-content,
.themes-theme-six-free .notificationx-content {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  justify-content: center;
  margin-left: 10px;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 45px;
}
.themes-conv-theme-nine div.notificationx-close,
.themes-page_analytics_pa-theme-two div.notificationx-close,
.themes-review-comment div.notificationx-close,
.themes-theme-five div.notificationx-close,
.themes-theme-six-free div.notificationx-close {
  position: absolute;
  right: 0;
  top: 0;
}
.themes-conv-theme-nine.img-position-right .notificationx-close,
.themes-page_analytics_pa-theme-two.img-position-right .notificationx-close,
.themes-review-comment.img-position-right .notificationx-close,
.themes-theme-five.img-position-right .notificationx-close,
.themes-theme-six-free.img-position-right .notificationx-close {
  left: 5px;
  right: auto;
}
.themes-conv-theme-nine.img-position-right .notificationx-content,
.themes-page_analytics_pa-theme-two.img-position-right .notificationx-content,
.themes-review-comment.img-position-right .notificationx-content,
.themes-theme-five.img-position-right .notificationx-content,
.themes-theme-six-free.img-position-right .notificationx-content {
  margin-left: 0;
  margin-right: 10px;
  padding-left: 45px;
  padding-right: 10px;
}
.themes-conv-theme-nine .notificationx-link,
.themes-page_analytics_pa-theme-two .notificationx-link,
.themes-review-comment .notificationx-link,
.themes-theme-five .notificationx-link,
.themes-theme-six-free .notificationx-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.themes-conv-theme-nine .notificationx-image {
  overflow: initial !important;
  position: relative;
}
.themes-conv-theme-nine .notificationx-image:after {
  align-items: center;
  background: #7052f0;
  border: 2px solid #fff;
  border-radius: 50px;
  box-shadow: 0 5px 10px rgba(112, 82, 240, 0.4);
  color: #fff;
  content: "";
  display: inline-flex;
  font-family: FontAwesome;
  font-size: 7px;
  height: 20px;
  justify-content: center;
  left: 5px;
  position: absolute;
  top: -10px;
  width: 20px;
}
.themes-review-comment .notificationx-inner,
.themes-theme-six-free .notificationx-inner {
  margin-bottom: 15px;
}
.themes-review-comment .notificationx-image,
.themes-theme-six-free .notificationx-image {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: initial !important;
  position: relative;
}
.themes-review-comment .notificationx-image .notificationx-image-badge,
.themes-theme-six-free .notificationx-image .notificationx-image-badge {
  background: transparent !important;
  border-bottom-width: 0 !important;
  border-left-color: transparent !important;
  border-left-width: 23px;
  border-right-width: 0 !important;
  border-style: solid !important;
  border-top-color: #fff;
  border-top-width: 13px;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 100%;
  visibility: visible;
}
.themes-review-comment
  .notificationx-image
  .notificationx-image-badge.second-span,
.themes-theme-six-free
  .notificationx-image
  .notificationx-image-badge.second-span {
  border-left-width: 23px !important;
  border-top-width: 13px !important;
}
.themes-review-comment .notificationx-content,
.themes-theme-six-free .notificationx-content {
  border-radius: 5px;
}
.themes-theme-five .notificationx-inner {
  margin-bottom: 50px;
}
.themes-theme-five .notificationx-image {
  border: none !important;
  border-radius: 100px;
  height: 100px;
  overflow: initial !important;
  position: relative;
  z-index: 1;
}
.themes-theme-five .notificationx-image:not(.image-circle) {
  padding: 19px;
}
.themes-theme-five .notificationx-image .notificationx-image-badge {
  background: transparent !important;
  border-bottom-width: 0 !important;
  border-left-width: 0 !important;
  border-right: 35px transparent !important;
  border-style: solid !important;
  border-top-color: #fff;
  border-top-width: 40px !important;
  bottom: -25px !important;
  left: 50% !important;
  opacity: 1;
  position: absolute;
  visibility: visible;
  z-index: -1;
}
.themes-theme-five
  .notificationx-image
  .notificationx-image-badge:not(.second-span) {
  display: none;
}
.themes-theme-five .notificationx-content {
  border: none !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 5px;
  margin-left: 20px !important;
  margin-right: 0 !important;
  position: relative;
}
.themes-theme-five .notificationx-content .notificationX-theme-five-shape {
  fill: #fff;
  bottom: 0;
  display: block;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
}
.themes-theme-five .notificationx-content:first-child {
  border-bottom-left-radius: 5px !important;
  border-top-left-radius: 5px !important;
  margin-left: 0 !important;
}
.themes-theme-five
  .notificationx-content:first-child
  .notificationX-theme-five-shape {
  display: none;
}
.themes-theme-five.img-position-right .notificationx-content {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 0;
  margin-left: 0 !important;
  margin-right: 20px !important;
}
.themes-theme-five.img-position-right
  .notificationx-content
  .notificationX-theme-five-shape {
  left: 100%;
  right: auto;
  transform: rotateY(180deg);
}
.themes-theme-five.img-position-right .notificationx-content:first-child {
  border-bottom-right-radius: 5px !important;
  border-top-right-radius: 5px !important;
  margin-right: 0 !important;
}
#nx-bar-bottom {
  position: relative;
}
.notificationx-shortcode-wrapper > .nx-bar,
.nx-bar {
  background-color: #ddd;
  box-shadow: 0 0 70px -30px gray;
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  left: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  transition: all 0.2s ease-in;
  width: 100%;
  z-index: 99997;
}
.notificationx-shortcode-wrapper > .nx-bar.nx-sticky-bar,
.nx-bar.nx-sticky-bar {
  position: fixed;
  width: 100%;
}
.notificationx-shortcode-wrapper > .nx-bar.nx-position-top.nx-bar-out,
.nx-bar.nx-position-top.nx-bar-out {
  top: -100% !important;
}
.notificationx-shortcode-wrapper > .nx-bar.nx-position-bottom,
.nx-bar.nx-position-bottom {
  position: absolute;
  top: 0;
}
.notificationx-shortcode-wrapper > .nx-bar.nx-position-bottom.nx-bar-out,
.nx-bar.nx-position-bottom.nx-bar-out {
  bottom: -100%;
}
.notificationx-shortcode-wrapper > .nx-bar.nx-position-bottom.nx-sticky-bar,
.nx-bar.nx-position-bottom.nx-sticky-bar {
  bottom: 0;
  position: fixed;
  top: auto;
}
.notificationx-shortcode-wrapper > .nx-bar .nx-bar-inner,
.nx-bar .nx-bar-inner {
  display: none;
  padding: 20px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown-text,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown-text {
  margin-right: 10px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown-text.nx-expired,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown-text.nx-expired {
  display: none;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown,
.nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-countdown-wrapper .nx-countdown {
  background-color: #262626;
  color: #fff;
  overflow: hidden;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section {
  float: left;
  margin: 0 5px;
  padding: 10px;
  position: relative;
  width: 40px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section
  > span,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section
  > span {
  display: block;
  line-height: 1;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section
  .nx-countdown-time-text,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section
  .nx-countdown-time-text {
  display: none;
  font-size: 14px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:after,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:after {
  content: ":";
  line-height: 1;
  right: -6px;
  top: 9px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:last-of-type:after,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section:last-of-type:after {
  display: none;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-expired-text,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-expired-text {
  display: inline-block;
  padding: 10px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-expired-text:not(.nx-countdown-expired),
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-expired-text:not(.nx-countdown-expired) {
  display: none;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired {
  letter-spacing: 1px;
  padding: 10px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired
  .nx-expired-text,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired
  .nx-expired-text {
  display: block;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired
  .nx-time-section,
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired
  .nx-time-section
  > span,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired
  .nx-time-section,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown.nx-expired
  .nx-time-section
  > span {
  display: none;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-bar-content,
.nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-bar-content {
  display: inline-block;
  margin-left: 15px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-bar-content
  p,
.nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-bar-content p {
  margin-bottom: 0;
  margin-top: 0;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap
  a.nx-bar-button,
.nx-bar .nx-bar-inner .nx-bar-content-wrap a.nx-bar-button {
  background-color: #262626;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin-left: 15px;
  padding: 6px 15px;
  text-decoration: none;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap:not(:last-child)
  .nx-inner-content-wrapper,
.nx-bar
  .nx-bar-inner
  .nx-bar-content-wrap:not(:last-child)
  .nx-inner-content-wrapper {
  margin-right: 40px;
}
.notificationx-shortcode-wrapper > .nx-bar .nx-bar-inner .notificationx-close,
.nx-bar .nx-bar-inner .notificationx-close {
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  height: 10px;
  line-height: 17px;
  margin: -5px 0 0;
  right: 30px;
  top: 25%;
  transform: translateY(-50%);
  width: 10px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .notificationx-close.pressbar.position-top-right,
.nx-bar .nx-bar-inner .notificationx-close.pressbar.position-top-right {
  left: auto;
  right: 20px;
  top: 20px;
}
.notificationx-shortcode-wrapper
  > .nx-bar
  .nx-bar-inner
  .notificationx-close.pressbar.position-top-left,
.nx-bar .nx-bar-inner .notificationx-close.pressbar.position-top-left {
  left: 20px;
  right: auto;
  top: 20px;
}
.notificationx-shortcode-wrapper
  > .nx-bar.nx-close-left
  .nx-bar-inner
  .notificationx-close,
.nx-bar.nx-close-left .nx-bar-inner .notificationx-close {
  left: 30px;
  right: auto;
}
.notificationx-shortcode-wrapper > .nx-bar.nx-bar-has-elementor .nx-bar-inner,
.nx-bar.nx-bar-has-elementor .nx-bar-inner {
  display: block;
  padding: 0;
}
.notificationx-shortcode-wrapper
  > .nx-bar.nx-bar-has-elementor
  .nx-bar-inner
  .nx-bar-content-wrap,
.nx-bar.nx-bar-has-elementor .nx-bar-inner .nx-bar-content-wrap {
  display: block;
}
.notificationx-shortcode-wrapper > .nx-bar.press_bar_theme-two,
.nx-bar.press_bar_theme-two {
  background-color: #5704a2;
  color: #fff;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-two
  .nx-bar-inner
  .notificationx-close,
.nx-bar.press_bar_theme-two .nx-bar-inner .notificationx-close {
  fill: #fff;
}
.notificationx-shortcode-wrapper > .nx-bar.press_bar_theme-three,
.nx-bar.press_bar_theme-three {
  background-color: #3f4462;
  color: #fff;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  .notificationx-close,
.nx-bar.press_bar_theme-three .nx-bar-inner .notificationx-close {
  fill: #fff;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  a.nx-bar-button,
.nx-bar.press_bar_theme-three .nx-bar-inner a.nx-bar-button {
  background-color: #6549fe;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown,
.nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown {
  background: none !important;
  margin-bottom: -10px;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section,
.nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section {
  background-color: #6549fe;
  margin-bottom: 10px;
  width: 55px;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section
  > span.nx-countdown-time-text,
.nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-time-section
  > span.nx-countdown-time-text {
  display: block;
}
.notificationx-shortcode-wrapper
  > .nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-expired-text,
.nx-bar.press_bar_theme-three
  .nx-bar-inner
  .nx-bar-content-wrap
  .nx-countdown-wrapper
  .nx-countdown
  .nx-expired-text {
  background-color: #6549fe;
  margin-bottom: 10px;
}
@media only screen and (max-width: 786px) {
  .notificationx-shortcode-wrapper > .nx-bar .nx-bar-inner .nx-bar-content-wrap,
  .nx-bar .nx-bar-inner .nx-bar-content-wrap {
    flex-direction: column;
  }
  .notificationx-shortcode-wrapper
    > .nx-bar
    .nx-bar-inner
    .nx-bar-content-wrap
    .nx-countdown-wrapper,
  .nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-countdown-wrapper {
    margin-bottom: 15px;
  }
  .notificationx-shortcode-wrapper
    > .nx-bar
    .nx-bar-inner
    .nx-bar-content-wrap
    .nx-inner-content-wrapper,
  .nx-bar .nx-bar-inner .nx-bar-content-wrap .nx-inner-content-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-right: 0 !important;
  }
  .notificationx-shortcode-wrapper
    > .nx-bar
    .nx-bar-inner
    .nx-bar-content-wrap
    .nx-inner-content-wrapper
    .nx-bar-content,
  .nx-bar
    .nx-bar-inner
    .nx-bar-content-wrap
    .nx-inner-content-wrapper
    .nx-bar-content {
    margin-left: 0;
  }
  .notificationx-shortcode-wrapper
    > .nx-bar
    .nx-bar-inner
    .nx-bar-content-wrap
    .nx-inner-content-wrapper
    .nx-bar-button,
  .nx-bar
    .nx-bar-inner
    .nx-bar-content-wrap
    .nx-inner-content-wrapper
    .nx-bar-button {
    margin-left: 0 !important;
    margin-top: 10px;
  }
  .notificationx-shortcode-wrapper > .nx-bar .nx-bar-inner .notificationx-close,
  .nx-bar .nx-bar-inner .notificationx-close {
    bottom: auto;
    right: 10px;
    top: 10px;
    transform: translateY(0);
  }
  .notificationx-shortcode-wrapper
    > .nx-bar.nx-close-left
    .nx-bar-inner
    .notificationx-close,
  .nx-bar.nx-close-left .nx-bar-inner .notificationx-close {
    bottom: auto;
    left: 10px;
    right: auto;
    top: 10px;
    transform: translateY(0);
  }
}
.notificationx-shortcode-wrapper > .nx-bar-has-gutenberg .nx-bar-inner,
.nx-bar-has-gutenberg .nx-bar-inner {
  display: block;
  padding: 0;
}
.notificationx-shortcode-wrapper
  > .nx-bar-has-gutenberg
  .nx-bar-inner
  .nx-bar-content-wrap,
.nx-bar-has-gutenberg .nx-bar-inner .nx-bar-content-wrap {
  display: block;
}
.themes-comments_maps_theme .notificationx-content > p.nx-first-row,
.themes-comments_theme-five .notificationx-content > p.nx-first-row,
.themes-comments_theme-four .notificationx-content > p.nx-first-row,
.themes-conversions_maps_theme .notificationx-content > p.nx-first-row,
.themes-conversions_theme-five .notificationx-content > p.nx-first-row,
.themes-conversions_theme-four .notificationx-content > p.nx-first-row,
.themes-donation_maps_theme .notificationx-content > p.nx-first-row,
.themes-donation_theme-five .notificationx-content > p.nx-first-row,
.themes-donation_theme-four .notificationx-content > p.nx-first-row,
.themes-download_stats_actively_using .notificationx-content > p.nx-first-row,
.themes-elearning_maps_theme .notificationx-content > p.nx-first-row,
.themes-elearning_theme-five .notificationx-content > p.nx-first-row,
.themes-elearning_theme-four .notificationx-content > p.nx-first-row,
.themes-email_subscription_maps_theme .notificationx-content > p.nx-first-row,
.themes-email_subscription_theme-one .notificationx-content > p.nx-first-row,
.themes-email_subscription_theme-three .notificationx-content > p.nx-first-row,
.themes-email_subscription_theme-two .notificationx-content > p.nx-first-row,
.themes-google_reviews_maps_theme .notificationx-content > p.nx-first-row,
.themes-page_analytics_pa-theme-one .notificationx-content > p.nx-first-row,
.themes-review_saying .notificationx-content > p.nx-first-row,
.themes-reviewed .notificationx-content > p.nx-first-row,
.themes-total-rated .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_maps_theme .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_theme-five .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_theme-four .notificationx-content > p.nx-first-row {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
.themes-comments_maps_theme .notificationx-content > p.nx-second-row,
.themes-comments_theme-five .notificationx-content > p.nx-second-row,
.themes-comments_theme-four .notificationx-content > p.nx-second-row,
.themes-conversions_maps_theme .notificationx-content > p.nx-second-row,
.themes-conversions_theme-five .notificationx-content > p.nx-second-row,
.themes-conversions_theme-four .notificationx-content > p.nx-second-row,
.themes-donation_maps_theme .notificationx-content > p.nx-second-row,
.themes-donation_theme-five .notificationx-content > p.nx-second-row,
.themes-donation_theme-four .notificationx-content > p.nx-second-row,
.themes-download_stats_actively_using .notificationx-content > p.nx-second-row,
.themes-elearning_maps_theme .notificationx-content > p.nx-second-row,
.themes-elearning_theme-five .notificationx-content > p.nx-second-row,
.themes-elearning_theme-four .notificationx-content > p.nx-second-row,
.themes-email_subscription_maps_theme .notificationx-content > p.nx-second-row,
.themes-email_subscription_theme-one .notificationx-content > p.nx-second-row,
.themes-email_subscription_theme-three .notificationx-content > p.nx-second-row,
.themes-email_subscription_theme-two .notificationx-content > p.nx-second-row,
.themes-google_reviews_maps_theme .notificationx-content > p.nx-second-row,
.themes-page_analytics_pa-theme-one .notificationx-content > p.nx-second-row,
.themes-review_saying .notificationx-content > p.nx-second-row,
.themes-reviewed .notificationx-content > p.nx-second-row,
.themes-total-rated .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_maps_theme .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_theme-five .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_theme-four .notificationx-content > p.nx-second-row {
  color: #6a4bff;
  font-size: 14px;
  font-weight: 500;
}
.themes-comments_maps_theme .notificationx-content > p.nx-third-row,
.themes-comments_theme-five .notificationx-content > p.nx-third-row,
.themes-comments_theme-four .notificationx-content > p.nx-third-row,
.themes-conversions_maps_theme .notificationx-content > p.nx-third-row,
.themes-conversions_theme-five .notificationx-content > p.nx-third-row,
.themes-conversions_theme-four .notificationx-content > p.nx-third-row,
.themes-donation_maps_theme .notificationx-content > p.nx-third-row,
.themes-donation_theme-five .notificationx-content > p.nx-third-row,
.themes-donation_theme-four .notificationx-content > p.nx-third-row,
.themes-download_stats_actively_using .notificationx-content > p.nx-third-row,
.themes-elearning_maps_theme .notificationx-content > p.nx-third-row,
.themes-elearning_theme-five .notificationx-content > p.nx-third-row,
.themes-elearning_theme-four .notificationx-content > p.nx-third-row,
.themes-email_subscription_maps_theme .notificationx-content > p.nx-third-row,
.themes-email_subscription_theme-one .notificationx-content > p.nx-third-row,
.themes-email_subscription_theme-three .notificationx-content > p.nx-third-row,
.themes-email_subscription_theme-two .notificationx-content > p.nx-third-row,
.themes-google_reviews_maps_theme .notificationx-content > p.nx-third-row,
.themes-page_analytics_pa-theme-one .notificationx-content > p.nx-third-row,
.themes-review_saying .notificationx-content > p.nx-third-row,
.themes-reviewed .notificationx-content > p.nx-third-row,
.themes-total-rated .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_maps_theme .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_theme-five .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_theme-four .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-review_saying .notificationx-content > p.nx-third-row {
  color: #45c9b1;
}
.themes-google_reviews_maps_theme .notificationx-content > p.nx-second-row {
  font-size: 16px;
  font-weight: 600;
}
.themes-comments_theme-one .notificationx-content > p.nx-first-row,
.themes-comments_theme-three .notificationx-content > p.nx-first-row,
.themes-comments_theme-two .notificationx-content > p.nx-first-row,
.themes-conversions_theme-one .notificationx-content > p.nx-first-row,
.themes-conversions_theme-three .notificationx-content > p.nx-first-row,
.themes-conversions_theme-two .notificationx-content > p.nx-first-row,
.themes-donation_theme-one .notificationx-content > p.nx-first-row,
.themes-donation_theme-three .notificationx-content > p.nx-first-row,
.themes-donation_theme-two .notificationx-content > p.nx-first-row,
.themes-elearning_theme-one .notificationx-content > p.nx-first-row,
.themes-elearning_theme-three .notificationx-content > p.nx-first-row,
.themes-elearning_theme-two .notificationx-content > p.nx-first-row,
.themes-form_theme-one .notificationx-content > p.nx-first-row,
.themes-form_theme-three .notificationx-content > p.nx-first-row,
.themes-form_theme-two .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_theme-one .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_theme-three .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_theme-two .notificationx-content > p.nx-first-row {
  color: #7c8db5;
  font-size: 14px;
  font-weight: 400;
}
.themes-comments_theme-one
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-three
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-two
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-conversions_theme-one
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-conversions_theme-three
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-conversions_theme-two
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-donation_theme-one
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-donation_theme-three
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-donation_theme-two
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-elearning_theme-one
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-elearning_theme-three
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-elearning_theme-two
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-form_theme-one .notificationx-content > p.nx-first-row .nx-first-word,
.themes-form_theme-three .notificationx-content > p.nx-first-row .nx-first-word,
.themes-form_theme-two .notificationx-content > p.nx-first-row .nx-first-word,
.themes-woocommerce_sales_theme-one
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-woocommerce_sales_theme-three
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-woocommerce_sales_theme-two
  .notificationx-content
  > p.nx-first-row
  .nx-first-word {
  font-weight: 500;
}
.themes-comments_theme-one .notificationx-content > p.nx-second-row,
.themes-comments_theme-three .notificationx-content > p.nx-second-row,
.themes-comments_theme-two .notificationx-content > p.nx-second-row,
.themes-conversions_theme-one .notificationx-content > p.nx-second-row,
.themes-conversions_theme-three .notificationx-content > p.nx-second-row,
.themes-conversions_theme-two .notificationx-content > p.nx-second-row,
.themes-donation_theme-one .notificationx-content > p.nx-second-row,
.themes-donation_theme-three .notificationx-content > p.nx-second-row,
.themes-donation_theme-two .notificationx-content > p.nx-second-row,
.themes-elearning_theme-one .notificationx-content > p.nx-second-row,
.themes-elearning_theme-three .notificationx-content > p.nx-second-row,
.themes-elearning_theme-two .notificationx-content > p.nx-second-row,
.themes-form_theme-one .notificationx-content > p.nx-second-row,
.themes-form_theme-three .notificationx-content > p.nx-second-row,
.themes-form_theme-two .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_theme-one .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_theme-three .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_theme-two .notificationx-content > p.nx-second-row {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.themes-comments_theme-one .notificationx-content > p.nx-third-row,
.themes-comments_theme-three .notificationx-content > p.nx-third-row,
.themes-comments_theme-two .notificationx-content > p.nx-third-row,
.themes-conversions_theme-one .notificationx-content > p.nx-third-row,
.themes-conversions_theme-three .notificationx-content > p.nx-third-row,
.themes-conversions_theme-two .notificationx-content > p.nx-third-row,
.themes-donation_theme-one .notificationx-content > p.nx-third-row,
.themes-donation_theme-three .notificationx-content > p.nx-third-row,
.themes-donation_theme-two .notificationx-content > p.nx-third-row,
.themes-elearning_theme-one .notificationx-content > p.nx-third-row,
.themes-elearning_theme-three .notificationx-content > p.nx-third-row,
.themes-elearning_theme-two .notificationx-content > p.nx-third-row,
.themes-form_theme-one .notificationx-content > p.nx-third-row,
.themes-form_theme-three .notificationx-content > p.nx-third-row,
.themes-form_theme-two .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_theme-one .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_theme-three .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_theme-two .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-comments_theme-one .notificationx-content > p.nx-first-row,
.themes-comments_theme-three .notificationx-content > p.nx-first-row,
.themes-comments_theme-two .notificationx-content > p.nx-first-row {
  color: #7c8db5;
  font-size: 14px;
  font-weight: 400;
}
.themes-comments_theme-one
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-three
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-two
  .notificationx-content
  > p.nx-first-row
  .nx-first-word {
  font-weight: 500;
}
.themes-comments_theme-one .notificationx-content > p.nx-second-row,
.themes-comments_theme-three .notificationx-content > p.nx-second-row,
.themes-comments_theme-two .notificationx-content > p.nx-second-row {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.themes-comments_theme-one .notificationx-content > p.nx-third-row,
.themes-comments_theme-three .notificationx-content > p.nx-third-row,
.themes-comments_theme-two .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-download_stats_7day-download .notificationx-content > p.nx-first-row,
.themes-download_stats_today-download .notificationx-content > p.nx-first-row {
  color: #6a4bff;
  font-size: 14px;
  font-weight: 500;
}
.themes-download_stats_7day-download .notificationx-content > p.nx-second-row,
.themes-download_stats_today-download .notificationx-content > p.nx-second-row {
  color: #000;
  font-size: 11px;
  font-weight: 500;
}
.themes-download_stats_7day-download .notificationx-content > p.nx-third-row,
.themes-download_stats_today-download .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-download_stats_today-download .notificationx-content > p.nx-third-row {
  color: #45c9b1;
  font-size: 10px;
}
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-second-word,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child {
  color: #6a4bff;
  font-weight: 500;
}
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  .nx-second-word {
  font-weight: 400;
}
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2) {
  color: #7c8db5;
  font-weight: 400;
}
.themes-conversions_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-conversions_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-donation_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-donation_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-elearning_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-elearning_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-woocommerce_sales_conv-theme-eight
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-woocommerce_sales_conv-theme-nine
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-page_analytics_pa-theme-two
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-review-comment
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-review-comment-3
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.themes-page_analytics_pa-theme-two
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-page_analytics_pa-theme-two
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-review-comment
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-review-comment
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-review-comment-3
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-review-comment-3
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child {
  color: #6a4bff;
  font-weight: 500;
}
.themes-page_analytics_pa-theme-two
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-review-comment
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-review-comment-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row {
  color: #7c8db5;
  font-size: 12px;
  font-weight: 500;
}
.themes-page_analytics_pa-theme-two
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-review-comment
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row,
.themes-review-comment-3
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-conversions_conv-theme-seven .notificationx-content > p.nx-first-row,
.themes-donation_conv-theme-seven .notificationx-content > p.nx-first-row,
.themes-elearning_conv-theme-seven .notificationx-content > p.nx-first-row,
.themes-page_analytics_pa-theme-three .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_conv-theme-seven
  .notificationx-content
  > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.themes-conversions_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-donation_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-elearning_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-page_analytics_pa-theme-three
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child,
.themes-woocommerce_sales_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child {
  color: #45c9b1;
  font-weight: 500;
}
.themes-conversions_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-donation_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-elearning_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-page_analytics_pa-theme-three
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-woocommerce_sales_conv-theme-seven
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2) {
  color: #000;
  font-weight: 400;
}
.themes-conversions_conv-theme-seven .notificationx-content > p.nx-second-row,
.themes-donation_conv-theme-seven .notificationx-content > p.nx-second-row,
.themes-elearning_conv-theme-seven .notificationx-content > p.nx-second-row,
.themes-page_analytics_pa-theme-three .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_conv-theme-seven
  .notificationx-content
  > p.nx-second-row {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.themes-conversions_conv-theme-seven
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-donation_conv-theme-seven
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-elearning_conv-theme-seven
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-page_analytics_pa-theme-three
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2),
.themes-woocommerce_sales_conv-theme-seven
  .notificationx-content
  > p.nx-second-row
  > span
  span:nth-child(2) {
  color: #7c8db5;
  font-weight: 400;
}
.themes-conversions_conv-theme-seven .notificationx-content > p.nx-third-row,
.themes-donation_conv-theme-seven .notificationx-content > p.nx-third-row,
.themes-elearning_conv-theme-seven .notificationx-content > p.nx-third-row,
.themes-page_analytics_pa-theme-three .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_conv-theme-seven
  .notificationx-content
  > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-review-comment-2 .notificationx-content > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.themes-review-comment-2 .notificationx-content > p.nx-first-row .nx-first-word,
.themes-review-comment-2
  .notificationx-content
  > p.nx-first-row
  > span
  span:first-child {
  color: #ff66bc;
  font-weight: 500;
}
.themes-review-comment-2 .notificationx-content > p.nx-second-row {
  color: #7c8db5;
  font-size: 12px;
  font-weight: 500;
}
.themes-review-comment-2 .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-comments_theme-eight-free .notificationx-content > p.nx-first-row,
.themes-comments_theme-six-free .notificationx-content > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.themes-comments_theme-eight-free
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-eight-free
  .notificationx-content
  > p.nx-first-row
  > :last-child,
.themes-comments_theme-six-free
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-six-free
  .notificationx-content
  > p.nx-first-row
  > :last-child {
  color: #6a4bff;
  font-weight: 500;
}
.themes-comments_theme-eight-free .notificationx-content > p.nx-second-row,
.themes-comments_theme-six-free .notificationx-content > p.nx-second-row {
  color: #7c8db5;
  font-size: 12px;
  font-weight: 500;
}
.themes-comments_theme-eight-free .notificationx-content > p.nx-third-row,
.themes-comments_theme-six-free .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-comments_theme-seven-free .notificationx-content > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}
.themes-comments_theme-seven-free
  .notificationx-content
  > p.nx-first-row
  .nx-first-word,
.themes-comments_theme-seven-free
  .notificationx-content
  > p.nx-first-row
  > :last-child {
  color: #ff66bc;
  font-weight: 500;
}
.themes-comments_theme-seven-free .notificationx-content > p.nx-second-row {
  color: #7c8db5;
  font-size: 12px;
  font-weight: 500;
}
.themes-comments_theme-seven-free .notificationx-content > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-conversions_conv-theme-six .notificationx-content > p.nx-first-row,
.themes-donation_conv-theme-six .notificationx-content > p.nx-first-row,
.themes-elearning_conv-theme-six .notificationx-content > p.nx-first-row,
.themes-woocommerce_sales_conv-theme-six
  .notificationx-content
  > p.nx-first-row {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.themes-conversions_conv-theme-six
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-donation_conv-theme-six
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-elearning_conv-theme-six
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2),
.themes-woocommerce_sales_conv-theme-six
  .notificationx-content
  > p.nx-first-row
  > span
  span:nth-child(2) {
  font-weight: 400;
}
.themes-conversions_conv-theme-six .notificationx-content > p.nx-second-row,
.themes-donation_conv-theme-six .notificationx-content > p.nx-second-row,
.themes-elearning_conv-theme-six .notificationx-content > p.nx-second-row,
.themes-woocommerce_sales_conv-theme-six
  .notificationx-content
  > p.nx-second-row {
  color: #6a4bff;
  font-size: 13px;
  font-weight: 500;
}
.themes-conversions_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  .nx-first-word,
.themes-conversions_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  > span
  span:first-child,
.themes-donation_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  .nx-first-word,
.themes-donation_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  > span
  span:first-child,
.themes-elearning_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  .nx-first-word,
.themes-elearning_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  > span
  span:first-child,
.themes-woocommerce_sales_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  .nx-first-word,
.themes-woocommerce_sales_conv-theme-six
  .notificationx-content
  > p.nx-second-row
  > span
  span:first-child {
  color: #7c8db5;
}
.themes-conversions_conv-theme-six .notificationx-content > p.nx-third-row,
.themes-donation_conv-theme-six .notificationx-content > p.nx-third-row,
.themes-elearning_conv-theme-six .notificationx-content > p.nx-third-row,
.themes-woocommerce_sales_conv-theme-six
  .notificationx-content
  > p.nx-third-row {
  color: #7c8db5;
  font-size: 10px;
}
.themes-youtube_channel-1,
.themes-youtube_video-2,
.themes-youtube_video-4 {
  border-radius: 6px;
  box-shadow: 0 12px 24px 0 rgba(0, 1, 35, 0.08);
  filter: drop-shadow(-10px 0 15px rgba(0, 0, 0, 0.1));
}
.themes-youtube_channel-1:not(
    .themes-youtube_channel-1:last-child,
    .themes-youtube_video-2:last-child,
    .themes-youtube_video-4:last-child
  ),
.themes-youtube_video-2:not(
    .themes-youtube_channel-1:last-child,
    .themes-youtube_video-2:last-child,
    .themes-youtube_video-4:last-child
  ),
.themes-youtube_video-4:not(
    .themes-youtube_channel-1:last-child,
    .themes-youtube_video-2:last-child,
    .themes-youtube_video-4:last-child
  ) {
  margin-bottom: 45px;
}
.themes-youtube_channel-1 .notificationx-inner .notificationx-image,
.themes-youtube_video-2 .notificationx-inner .notificationx-image,
.themes-youtube_video-4 .notificationx-inner .notificationx-image {
  padding: 8px;
}
.themes-youtube_channel-1 .notificationx-inner .notificationx-image > img,
.themes-youtube_video-2 .notificationx-inner .notificationx-image > img,
.themes-youtube_video-4 .notificationx-inner .notificationx-image > img {
  border-radius: 4px;
}
.themes-youtube_channel-1 .notificationx-inner .notificationx-content,
.themes-youtube_video-2 .notificationx-inner .notificationx-content,
.themes-youtube_video-4 .notificationx-inner .notificationx-content {
  margin-left: 0;
  margin-right: 0;
  padding: 8px 4px;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row {
  color: #344054 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row {
  color: #667085;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span,
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span,
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span {
  display: flex;
  font-size: 12px;
  font-weight: 400;
  gap: 2px;
  width: 100%;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child,
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child,
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child {
  color: #5614d5;
  font-weight: 500;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2),
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2),
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2) {
  margin-right: 12px;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3),
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3),
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3) {
  color: #5614d5;
  font-weight: 500;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(5),
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(5),
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(5) {
  color: #5614d5;
  font-weight: 500;
  margin-left: 12px;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  > span,
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  > span,
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  > span {
  margin-right: 0;
}
.themes-youtube_channel-1
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  .nx-branding,
.themes-youtube_video-2
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  .nx-branding,
.themes-youtube_video-4
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  .nx-branding {
  margin-top: 0;
  width: 100%;
}
.themes-youtube_channel-2 {
  border-radius: 50px 8px 8px 50px;
  box-shadow: 0 12px 24px 0 rgba(0, 1, 35, 0.08);
  filter: drop-shadow(-10px 0 15px rgba(0, 0, 0, 0.1));
}
.themes-youtube_channel-2:not(.themes-youtube_channel-2:last-child) {
  margin-bottom: 45px;
}
.themes-youtube_channel-2 .notificationx-inner {
  border-radius: 50px 8px 8px 50px;
}
.themes-youtube_channel-2 .notificationx-inner .notificationx-image {
  animation: bling 2s infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 16px #fff;
  flex-basis: 90px;
  min-width: 90px;
  padding: 0;
  position: relative;
  width: 90px;
}
.themes-youtube_channel-2 .notificationx-inner .notificationx-image img {
  border-radius: 50%;
  height: 100%;
}
.themes-youtube_channel-2 .notificationx-inner .notificationx-content {
  margin-left: 20px;
  margin-right: 0;
  padding: 16px 4px;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row {
  color: #344054 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 6px;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row {
  color: #5614d5;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child {
  margin-left: 16px;
  margin-right: 8px;
  position: relative;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child:before {
  color: #667085 !important;
  content: "";
  font-family: dashicons;
  font-size: 14px;
  left: -16px;
  position: absolute;
  top: -2px;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2) {
  margin-left: 16px;
  margin-right: 0;
  position: relative;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2):before {
  color: #667085 !important;
  content: "";
  font-family: dashicons;
  font-size: 14px;
  left: -16px;
  position: absolute;
  top: -2px;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  > span {
  margin-right: 0;
}
.themes-youtube_channel-2
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  .nx-branding {
  margin-top: 0;
  width: 100%;
}
.themes-youtube_video-1,
.themes-youtube_video-3 {
  border-radius: 50px 8px 8px 50px;
  box-shadow: 0 12px 24px 0 rgba(0, 1, 35, 0.08);
  filter: drop-shadow(-10px 0 15px rgba(0, 0, 0, 0.1));
}
.themes-youtube_video-1:not(
    .themes-youtube_video-1:last-child,
    .themes-youtube_video-3:last-child
  ),
.themes-youtube_video-3:not(
    .themes-youtube_video-1:last-child,
    .themes-youtube_video-3:last-child
  ) {
  margin-bottom: 45px;
}
.themes-youtube_video-1 .notificationx-inner,
.themes-youtube_video-3 .notificationx-inner {
  border-radius: 50px 8px 8px 50px;
}
.themes-youtube_video-1 .notificationx-inner .notificationx-image,
.themes-youtube_video-3 .notificationx-inner .notificationx-image {
  animation: bling 2s infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 16px #fff;
  flex-basis: 90px;
  min-width: 90px;
  padding: 0;
  position: relative;
  width: 90px;
}
@keyframes bling {
  0% {
    outline: 0 solid #c00;
  }
  to {
    outline: 10px solid rgba(204, 0, 0, 0.2);
  }
}
@keyframes bling-before {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes bling-after {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.4);
  }
}
.themes-youtube_video-1 .notificationx-inner .notificationx-image img,
.themes-youtube_video-3 .notificationx-inner .notificationx-image img {
  border-radius: 50%;
  height: 100%;
}
.themes-youtube_video-1 .notificationx-inner .notificationx-content,
.themes-youtube_video-3 .notificationx-inner .notificationx-content {
  margin-left: 20px;
  margin-right: 0;
  padding: 16px 4px;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-first-row {
  color: #344054 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 6px;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row {
  color: #5614d5;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child {
  margin-left: 16px;
  margin-right: 8px;
  position: relative;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child:before,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:first-child:before {
  color: #667085 !important;
  content: "";
  font-family: dashicons;
  font-size: 14px;
  left: -16px;
  position: absolute;
  top: -2px;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2),
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2) {
  margin-left: 16px;
  margin-right: 8px;
  position: relative;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2):before,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(2):before {
  color: #667085 !important;
  content: "";
  font-family: dashicons;
  font-size: 14px;
  left: -16px;
  position: absolute;
  top: -2px;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3),
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3) {
  margin-left: 16px;
  margin-right: 0;
  position: relative;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3):before,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-second-row
  > span
  > span:nth-child(3):before {
  color: #667085 !important;
  content: "";
  font-family: dashicons;
  font-size: 14px;
  left: -16px;
  position: absolute;
  top: -2px;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  > span,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  > span {
  margin-right: 0;
}
.themes-youtube_video-1
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  .nx-branding,
.themes-youtube_video-3
  .notificationx-inner
  .notificationx-content
  > p.nx-third-row
  .nx-branding {
  margin-top: 0;
  width: 100%;
}
.themes-youtube_video-1.button-link .notificationx-link,
.themes-youtube_video-2.button-link .notificationx-link,
.themes-youtube_video-3.button-link .notificationx-link,
.themes-youtube_video-4.button-link .notificationx-link {
  background: #c00;
  padding: 6px 12px;
}
.themes-youtube_video-1.button-link .notificationx-link > a,
.themes-youtube_video-2.button-link .notificationx-link > a,
.themes-youtube_video-3.button-link .notificationx-link > a,
.themes-youtube_video-4.button-link .notificationx-link > a {
  color: #fff;
  text-decoration: none;
}
.themes-youtube_channel-1.button-link .notificationx-link-wrapper,
.themes-youtube_channel-2.button-link .notificationx-link-wrapper {
  bottom: inherit;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 6px 0;
  position: absolute;
  right: 15px;
  text-decoration: none;
  top: -35px;
}
.themes-youtube_channel-1.button-link
  .notificationx-link-wrapper
  .notificationx-link,
.themes-youtube_channel-2.button-link
  .notificationx-link-wrapper
  .notificationx-link {
  background: #c00;
  border-radius: 4px 0 0 4px;
  bottom: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  left: unset;
  line-height: inherit;
  padding: inherit;
  position: unset;
  right: unset;
  text-decoration: none;
  top: unset;
}
.themes-youtube_channel-1.button-link .notificationx-link-wrapper a,
.themes-youtube_channel-2.button-link .notificationx-link-wrapper a {
  padding: 6px 8px !important;
}
.themes-youtube_channel-1.button-link .notificationx-link-wrapper span,
.themes-youtube_channel-2.button-link .notificationx-link-wrapper span {
  background-color: #fff !important;
  border-radius: 0 4px 4px 0 !important;
  color: #c00 !important;
  padding: 6px 8px;
}
.themes-conversions_conv-theme-seven,
.themes-conversions_theme-one,
.themes-download_stats_7day-download,
.themes-download_stats_actively_using,
.themes-page_analytics_pa-theme-one,
.themes-woocommerce_sales_conv-theme-seven,
.themes-woocommerce_sales_theme-one {
  border-radius: 5px !important;
}
.themes-conversions_conv-theme-nine,
.themes-donation_conv-theme-nine,
.themes-elearning_conv-theme-nine,
.themes-page_analytics_pa-theme-two,
.themes-woocommerce_sales_conv-theme-nine {
  background: transparent !important;
  border-radius: 5px !important;
}
.themes-conversions_conv-theme-nine .notificationx-content,
.themes-conversions_conv-theme-nine .notificationx-image,
.themes-donation_conv-theme-nine .notificationx-content,
.themes-donation_conv-theme-nine .notificationx-image,
.themes-elearning_conv-theme-nine .notificationx-content,
.themes-elearning_conv-theme-nine .notificationx-image,
.themes-page_analytics_pa-theme-two .notificationx-content,
.themes-page_analytics_pa-theme-two .notificationx-image,
.themes-woocommerce_sales_conv-theme-nine .notificationx-content,
.themes-woocommerce_sales_conv-theme-nine .notificationx-image {
  border-radius: 5px !important;
}
