@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animate-flicker {
  -webkit-animation: flickerAnimation 1s infinite;
  -moz-animation: flickerAnimation 1s infinite;
  -o-animation: flickerAnimation 1s infinite;
  animation: flickerAnimation 1s infinite;
}

@keyframes ufo-big-lights {
  0% {
    fill: #BEC8D2;
  }
  20% {
    fill: #fff;
  }
  40%, 100% {
    fill: #BEC8D2;
  }
}

.incoming-lead-arrow {
  animation: ufo-big-lights 2.5s ease infinite;
}

.incoming-lead-arrow-3 {
  animation-delay: .2s;
}

.incoming-lead-arrow-2 {
  animation-delay: .4s;
}

.incoming-lead-arrow-1 {
  animation-delay: .6s;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: .35;
  }
  50% {
    opacity: .5;
  }
  75% {
    opacity: .75;
  }
  100% {
    opacity: .25;
  }
}

@keyframes fadeIn50 {
  0% {
    opacity: .75;
  }
  50% {
    opacity: .85;
  }
  75% {
    opacity: .95;
  }
  100% {
    opacity: .65;
  }
}

@keyframes blink /* Firefox */ {
  0% {
    fill: #000;
    opacity: .2;
  }
  50% {
    fill: #fff;
    opacity: 1;
  }
  100% {
    fill: #000;
    opacity: .2;
  }
}

.blink {
  opacity: 0;
  -webkit-animation: blink 1.3s infinite;
  -webkit-animation-delay: 0.0s;
  animation: blink 1.3s infinite;
  animation-delay: 0.0s;
}

.blink3 {
  opacity: 0;
  -webkit-animation: blink 1.3s infinite;
  -webkit-animation-delay: 0.3s;
  animation: blink 1.3s infinite;
  animation-delay: 0.3s;
}

.blink2 {
  opacity: 0;
  -webkit-animation: blink 1.3s infinite;
  -webkit-animation-delay: 0.2s;
  animation: blink 1.3s infinite;
  animation-delay: 0.2s;
}

@keyframes redlight /* Firefox */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f48c66;
  }
  100% {
    fill: white;
  }
}

@-moz-keyframes redlight /* Firefox */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f48c66;
  }
  100% {
    fill: white;
  }
}

@-webkit-keyframes redlight /* Chrome */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f48c66;
  }
  100% {
    fill: white;
  }
}

@keyframes greenlight /* Firefox */ {
  0% {
    fill: #a7c982;
  }
  50% {
    fill: white;
  }
  100% {
    fill: #a7c982;
  }
}

@-moz-keyframes greenlight /* Firefox */ {
  0% {
    fill: #a7c982;
  }
  50% {
    fill: white;
  }
  100% {
    fill: #a7c982;
  }
}

@-moz-keyframes greenlight /* Firefox */ {
  0% {
    fill: #a7c982;
  }
  50% {
    fill: white;
  }
  100% {
    fill: #a7c982;
  }
}

@keyframes greenlightbottom /* Firefox */ {
  0% {
    fill: #b8e0b7;
  }
  50% {
    fill: #4eb24d;
  }
  100% {
    fill: #b8e0b7;
  }
}

@-moz-keyframes greenlightbottom /* Firefox */ {
  0% {
    fill: #b8e0b7;
  }
  50% {
    fill: #4eb24d;
  }
  100% {
    fill: #b8e0b7;
  }
}

@-moz-keyframes greenlightbottom /* Firefox */ {
  0% {
    fill: #b8e0b7;
  }
  50% {
    fill: #4eb24d;
  }
  100% {
    fill: #b8e0b7;
  }
}

@-webkit-keyframes yellowlight /* Chrome */ {
  0% {
    fill: white;
  }
  50% {
    fill: #a7c982;
  }
  100% {
    fill: white;
  }
}

@keyframes yellowlight /* Firefox */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f9d480;
  }
  100% {
    fill: white;
  }
}

@-moz-keyframes yellowlight /* Firefox */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f9d480;
  }
  100% {
    fill: white;
  }
}

@-webkit-keyframes yellowlight /* Chrome */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f9d480;
  }
  100% {
    fill: white;
  }
}

@keyframes changewidht /* Chrome */ {
  0% {
    fill: white;
  }
  50% {
    fill: #f9d480;
  }
  100% {
    fill: white;
  }
}

@-webkit-keyframes width {
  from {
    width: auto;
  }
  to {
    width: 200px;
  }
}

.changewidth {
  animation: width 2s linear infinite;
  -webkit-animation: width 2s linear infinite;
}

.rotate {
  animation: spin 4s infinite linear;
  -moz-animation: spin 4s infinite linear;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
}

.rotate-fast {
  animation: spin 1s infinite linear;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
}

.rotate2x {
  animation: spin 2s infinite linear;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
}

.fadeIn {
  animation: fadeIn50 2s infinite linear;
}

.rotating-lead {
  animation: spin 4s infinite linear;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
}

#inner-wheel {
  animation: fadeIn 2s infinite linear;
}

.redbrightness {
  animation: redlight 3s;
  -moz-animation: redlight 3s infinite;
  /* Firefox */
  -webkit-animation: redlight 3s infinite;
  /* Safari and Chrome */
}

.greenbrightness {
  animation: greenlight 3s;
  -moz-animation: greenlight 3s infinite;
  /* Firefox */
  -webkit-animation: greenlight 3s infinite;
  /* Safari and Chrome */
}

.greenbrightnessbottom {
  animation: greenlightbottom 3s;
  -moz-animation: greenlightbottom 3s infinite;
  /* Firefox */
  -webkit-animation: greenlightbottom 3s infinite;
  /* Safari and Chrome */
}

.yellowbrightness {
  animation: yellowlight 3s;
  -moz-animation: yellowlight 3s infinite;
  /* Firefox */
  -webkit-animation: yellowlight 3s infinite;
  /* Safari and Chrome */
}

.switchOnLightOk {
  fill: yellow !important;
  opacity: .1 !important;
}

#blueCircle {
  display: none;
}

.opacity100 {
  opacity: 1 !important;
}

#integrated-contacts, #convertions, #interactions-with-visitors {
  width: 90px;
}

@keyframes lights_animation {
  0% {
    fill: #ccc;
  }
  20% {
    fill: #333333;
  }
  40%, 100% {
    fill: #ccc;
  }
}

@keyframes lights_animation_top {
  0% {
    fill: #ccc;
  }
  20% {
    fill: #2C83E6;
  }
  40%, 100% {
    fill: #ccc;
  }
}

@-webkit-keyframes glowing {
  0% {
    stroke: #87b8f1;
    -webkit-box-shadow: 0 0 3px #87b8f1;
  }
  50% {
    stroke: #4390e9;
    -webkit-box-shadow: 0 0 40px #4390e9;
  }
  100% {
    stroke: #1769c8;
    -webkit-box-shadow: 0 0 3px #1769c8;
  }
}

@-moz-keyframes glowing {
  0% {
    stroke: #87b8f1;
    -moz-box-shadow: 0 0 3px #87b8f1;
  }
  50% {
    stroke: #4390e9;
    -moz-box-shadow: 0 0 40px #4390e9;
  }
  100% {
    stroke: #1769c8;
    -moz-box-shadow: 0 0 3px #1769c8;
  }
}

@-o-keyframes glowing {
  0% {
    stroke: #87b8f1;
    box-shadow: 0 0 3px #87b8f1;
  }
  50% {
    stroke: #4390e9;
    box-shadow: 0 0 40px #4390e9;
  }
  100% {
    stroke: #1769c8;
    box-shadow: 0 0 3px #1769c8;
  }
}

@keyframes glowing {
  0% {
    stroke: #87b8f1;
    box-shadow: 0 0 3px #87b8f1;
  }
  50% {
    stroke: #4390e9;
    box-shadow: 0 0 40px #4390e9;
  }
  100% {
    stroke: #1769c8;
    box-shadow: 0 0 3px #1769c8;
  }
}

@-webkit-keyframes bounce {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-10px);
  }
  75% {
    -webkit-transform: translateY(-5px);
  }
}

@-moz-keyframes bounce {
  0%, 50%, 100% {
    -moz-transform: translateY(0);
  }
  25% {
    -moz-transform: translateY(-10px);
  }
  75% {
    -moz-transform: translateY(-5px);
  }
}

@-o-keyframes bounce {
  0%, 50%, 100% {
    -o-transform: translateY(0);
  }
  25% {
    -o-transform: translateY(-10px);
  }
  75% {
    -o-transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(-5px);
  }
}

#kio {
  animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  -moz-animation: bounce 4s infinite;
  -o-animation: bounce 4s infinite;
}

.right-eye, .left-eye {
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}

.lights {
  animation: lights_animation 2.5s ease infinite;
}

.light_1 {
  animation-delay: .2s;
}

.light_2 {
  animation-delay: .4s;
}

.light_3 {
  animation-delay: .6s;
}

.light_4 {
  animation-delay: .8s;
}

.light_5 {
  animation-delay: .8s;
}

.top_light_ {
  animation: lights_animation_top 5s ease infinite;
  animation-delay: .10s;
}
