/*! * SmartAdmin v1.7.1 () * Copyright 2011-2016 */

/*! * SmartAdmin - Responsive WebApp * * Copyright 2014 MYORANGE INC. * Designed and built with all the love in the world by @bootstraphunt. */
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

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

  25%,
  75% {
    opacity: 0;
  }
}

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

  25%,
  75% {
    opacity: 0;
  }
}

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

  25%,
  75% {
    opacity: 0;
  }
}

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

  25%,
  75% {
    opacity: 0;
  }
}

.animated.flash {
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}

@-moz-keyframes shake {
  0%,
  100% {
    -moz-transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -moz-transform: translateX(10px);
  }
}

@-o-keyframes shake {
  0%,
  100% {
    -o-transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -o-transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    -o-transform: translateX(10px);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }

  0%,
  20%,
  50%,
  80% {
    transform: translateX(10px);
  }
}

.animated.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }

  40% {
    -o-transform: translateY(-30px);
  }

  60% {
    -o-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.animated.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }

  10%,
  20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -moz-transform: scale(1) rotate(0);
  }
}

@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }

  10%,
  20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -o-transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -o-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.animated.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform-origin: top center;
  }

  20% {
    -webkit-transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }

  40% {
    -moz-transform: rotate(-10deg);
  }

  60% {
    -moz-transform: rotate(5deg);
  }

  80% {
    -moz-transform: rotate(-5deg);
  }

  100% {
    -moz-transform: rotate(0deg);
  }
}

@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }

  40% {
    -o-transform: rotate(-10deg);
  }

  60% {
    -o-transform: rotate(5deg);
  }

  80% {
    -o-transform: rotate(-5deg);
  }

  100% {
    -o-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.animated.swing {
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }

  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -moz-transform: translateX(0%);
  }
}

@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }

  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }

  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }

  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -o-transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.1);
  }

  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }

  50% {
    -o-transform: scale(1.1);
  }

  100% {
    -o-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.animated.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
  }

  100% {
    -webkit-animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  }
}

@-moz-keyframes flip {
  0% {
    -moz-animation-timing-function: ease-out;
    -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  }

  40% {
    -moz-animation-timing-function: ease-out;
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  }

  50% {
    -moz-animation-timing-function: ease-in;
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  }

  80% {
    -moz-animation-timing-function: ease-in;
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
  }

  100% {
    -moz-animation-timing-function: ease-in;
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  }
}

@-o-keyframes flip {
  0% {
    -o-animation-timing-function: ease-out;
    -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  }

  40% {
    -o-animation-timing-function: ease-out;
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  }

  50% {
    -o-animation-timing-function: ease-in;
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  }

  80% {
    -o-animation-timing-function: ease-in;
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
  }

  100% {
    -o-animation-timing-function: ease-in;
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  }
}

@keyframes flip {
  0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
  }

  40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
  }

  50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
  }

  80% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
  }

  100% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
  }
}

.animated.flip {
  -webkit-animation-name: flip;
  -moz-animation-name: flip;
  -o-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
  }
}

@-moz-keyframes flipInX {
  0% {
    opacity: 0;
    -moz-transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    opacity: 1;
    -moz-transform: perspective(400px) rotateX(0deg);
  }
}

@-o-keyframes flipInX {
  0% {
    opacity: 0;
    -o-transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }

  100% {
    opacity: 1;
    -o-transform: perspective(400px) rotateX(0deg);
  }
}

@keyframes flipInX {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
}

@-webkit-keyframes flipOutX {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
  }
}

@-moz-keyframes flipOutX {
  0% {
    opacity: 1;
    -moz-transform: perspective(400px) rotateX(0deg);
  }

  100% {
    opacity: 0;
    -moz-transform: perspective(400px) rotateX(90deg);
  }
}

@-o-keyframes flipOutX {
  0% {
    opacity: 1;
    -o-transform: perspective(400px) rotateX(0deg);
  }

  100% {
    opacity: 0;
    -o-transform: perspective(400px) rotateX(90deg);
  }
}

@keyframes flipOutX {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }

  100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
  }
}

@-moz-keyframes flipInY {
  0% {
    opacity: 0;
    -moz-transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }

  100% {
    opacity: 1;
    -moz-transform: perspective(400px) rotateY(0deg);
  }
}

@-o-keyframes flipInY {
  0% {
    opacity: 0;
    -o-transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }

  100% {
    opacity: 1;
    -o-transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

.animated.flipInY {
  -webkit-animation-name: flipInY;
  -moz-animation-name: flipInY;
  -o-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
  }
}

@-moz-keyframes flipOutY {
  0% {
    opacity: 1;
    -moz-transform: perspective(400px) rotateY(0deg);
  }

  100% {
    opacity: 0;
    -moz-transform: perspective(400px) rotateY(90deg);
  }
}

@-o-keyframes flipOutY {
  0% {
    opacity: 1;
    -o-transform: perspective(400px) rotateY(0deg);
  }

  100% {
    opacity: 0;
    -o-transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }

  100% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
  }
}

.animated.flipOutY {
  -webkit-animation-name: flipOutY;
  -moz-animation-name: flipOutY;
  -o-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.animated.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}

@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.animated.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}

@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.animated.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}

@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.animated.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}

@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.animated.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.animated.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.animated.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.animated.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.animated.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }

  70% {
    -moz-transform: scale(0.9);
  }

  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }

  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }

  70% {
    -o-transform: scale(0.9);
  }

  100% {
    -o-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slideInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }

  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes slideInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }

  100% {
    -o-transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  -moz-animation-name: slideInDown;
  -o-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes slideInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes slideInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  100% {
    -o-transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  -moz-animation-name: slideInLeft;
  -o-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes slideInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes slideInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  100% {
    -o-transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  -moz-animation-name: slideInRight;
  -o-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes slideOutLeft {
  0% {
    -moz-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes slideOutLeft {
  0% {
    -o-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  -moz-animation-name: slideOutLeft;
  -o-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes slideOutRight {
  0% {
    -moz-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes slideOutRight {
  0% {
    -o-transform: translateX(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  -moz-animation-name: slideOutRight;
  -o-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes slideOutUp {
  0% {
    -moz-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes slideOutUp {
  0% {
    -o-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  -moz-animation-name: slideOutUp;
  -o-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }

  80% {
    -moz-transform: translateY(10px);
  }

  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }

  80% {
    -o-transform: translateY(10px);
  }

  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

.animated.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }

  80% {
    -moz-transform: translateY(-10px);
  }

  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }

  80% {
    -o-transform: translateY(-10px);
  }

  100% {
    -o-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.animated.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }

  80% {
    -moz-transform: translateX(-10px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }

  80% {
    -o-transform: translateX(-10px);
  }

  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }

  80% {
    -moz-transform: translateX(10px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}

@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }

  80% {
    -o-transform: translateX(10px);
  }

  100% {
    -o-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }

  25% {
    -webkit-transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }

  25% {
    -moz-transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}

@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }

  25% {
    -o-transform: scale(0.95);
  }

  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

.animated.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}

@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

.animated.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}

@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }

  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

.animated.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}

@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

.animated.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}

@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }

  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

.animated.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    -webkit-transform-origin: center center;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: center center;
  }
}

@-moz-keyframes rotateIn {
  0% {
    opacity: 0;
    -moz-transform: rotate(-200deg);
    -moz-transform-origin: center center;
  }

  100% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: center center;
  }
}

@-o-keyframes rotateIn {
  0% {
    opacity: 0;
    -o-transform: rotate(-200deg);
    -o-transform-origin: center center;
  }

  100% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: center center;
  }
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotate(-200deg);
    transform-origin: center center;
  }

  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }
}

.animated.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: left bottom;
  }
}

@-moz-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -moz-transform: rotate(90deg);
    -moz-transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: left bottom;
  }
}

@-o-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -o-transform: rotate(90deg);
    -o-transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: left bottom;
  }
}

@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
}

.animated.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: left bottom;
  }
}

@-moz-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: left bottom;
  }
}

@-o-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -o-transform: rotate(-90deg);
    -o-transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: left bottom;
  }
}

@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }

  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }
}

.animated.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: right bottom;
  }
}

@-moz-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: right bottom;
  }
}

@-o-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -o-transform: rotate(-90deg);
    -o-transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: right bottom;
  }
}

@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
}

.animated.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: right bottom;
  }
}

@-moz-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -moz-transform: rotate(90deg);
    -moz-transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: right bottom;
  }
}

@-o-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -o-transform: rotate(90deg);
    -o-transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: right bottom;
  }
}

@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }

  100% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }
}

.animated.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: center center;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    -webkit-transform-origin: center center;
  }
}

@-moz-keyframes rotateOut {
  0% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: center center;
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(200deg);
    -moz-transform-origin: center center;
  }
}

@-o-keyframes rotateOut {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: center center;
  }

  100% {
    opacity: 0;
    -o-transform: rotate(200deg);
    -o-transform-origin: center center;
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center center;
  }

  100% {
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center center;
  }
}

.animated.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
  }
}

@-moz-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: left bottom;
  }
}

@-o-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -o-transform: rotate(-90deg);
    -o-transform-origin: left bottom;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom;
  }
}

.animated.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
  }
}

@-moz-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(90deg);
    -moz-transform-origin: left bottom;
  }
}

@-o-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    -o-transform: rotate(90deg);
    -o-transform-origin: left bottom;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: left bottom;
  }

  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom;
  }
}

.animated.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
  }
}

@-moz-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(90deg);
    -moz-transform-origin: right bottom;
  }
}

@-o-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -o-transform: rotate(90deg);
    -o-transform-origin: right bottom;
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
  }
}

.animated.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
  }
}

@-moz-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -moz-transform: rotate(0);
    -moz-transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(-90deg);
    -moz-transform-origin: right bottom;
  }
}

@-o-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    -o-transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    -o-transform: rotate(-90deg);
    -o-transform-origin: right bottom;
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: right bottom;
  }

  100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom;
  }
}

.animated.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
  }

  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
  }

  40% {
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
  }

  80% {
    -webkit-animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(700px);
  }
}

@-moz-keyframes hinge {
  0% {
    -moz-animation-timing-function: ease-in-out;
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
  }

  20%,
  60% {
    -moz-animation-timing-function: ease-in-out;
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
  }

  40% {
    -moz-animation-timing-function: ease-in-out;
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
  }

  80% {
    -moz-animation-timing-function: ease-in-out;
    opacity: 1;
    -moz-transform: rotate(60deg) translateY(0);
    -moz-transform-origin: top left;
  }

  100% {
    opacity: 0;
    -moz-transform: translateY(700px);
  }
}

@-o-keyframes hinge {
  0% {
    -o-animation-timing-function: ease-in-out;
    -o-transform: rotate(0);
    -o-transform-origin: top left;
  }

  20%,
  60% {
    -o-animation-timing-function: ease-in-out;
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
  }

  40% {
    -o-animation-timing-function: ease-in-out;
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
  }

  80% {
    -o-animation-timing-function: ease-in-out;
    opacity: 1;
    -o-transform: rotate(60deg) translateY(0);
    -o-transform-origin: top left;
  }

  100% {
    opacity: 0;
    -o-transform: translateY(700px);
  }
}

@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
    transform: rotate(0);
    transform-origin: top left;
  }

  20%,
  60% {
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: top left;
  }

  40% {
    animation-timing-function: ease-in-out;
    transform: rotate(60deg);
    transform-origin: top left;
  }

  80% {
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
  }

  100% {
    opacity: 0;
    transform: translateY(700px);
  }
}

.animated.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
  }
}

@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0) rotate(0deg);
  }
}

@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

.animated.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}

@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.animated.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) skewX(-30deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20%) skewX(30deg);
  }

  80% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(-15deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(0deg);
  }
}

@-moz-keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%) skewX(-30deg);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(-20%) skewX(30deg);
  }

  80% {
    opacity: 1;
    -moz-transform: translateX(0%) skewX(-15deg);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0%) skewX(0deg);
  }
}

@-o-keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -o-transform: translateX(100%) skewX(-30deg);
  }

  60% {
    opacity: 1;
    -o-transform: translateX(-20%) skewX(30deg);
  }

  80% {
    opacity: 1;
    -o-transform: translateX(0%) skewX(-15deg);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0%) skewX(0deg);
  }
}

@keyframes lightSpeedIn {
  0% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
  }

  60% {
    opacity: 1;
    transform: translateX(-20%) skewX(30deg);
  }

  80% {
    opacity: 1;
    transform: translateX(0%) skewX(-15deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
  }
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%) skewX(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) skewX(-30deg);
  }
}

@-moz-keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0%) skewX(0deg);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(100%) skewX(-30deg);
  }
}

@-o-keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0%) skewX(0deg);
  }

  100% {
    opacity: 0;
    -o-transform: translateX(100%) skewX(-30deg);
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
  }
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  -moz-animation-duration: 0.25s;
  -o-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(359deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

/*! * jQuery UI Bootstrap (1.0 alpha) * http://addyosmani.github.io/jquery-ui-bootstrap/ * * Copyright 2012 - 2013, Addy Osmani * Dual licensed under the MIT or GPL Version 2 licenses. * * Portions copyright jQuery UI & Twitter Bootstrap */
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  border: 0;
  font-size: 100%;
  line-height: 1.3;
  list-style: none;
  margin: 0;
  outline: 0;
  padding: 0;
  text-decoration: none;
}

.ui-helper-clearfix:after,
.ui-helper-clearfix:before {
  border-collapse: collapse;
  content: "";
  display: table;
}

.ui-helper-clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.ui-helper-clearfix {
  display: block;
  min-height: 0;
}

* html .ui-helper-clearfix {
  height: 1%;
}

.ui-helper-zfix {
  filter: alpha(opacity=0);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  background-repeat: no-repeat;
  display: block;
  overflow: hidden;
  text-indent: -99999px;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  display: block;
  font-size: 1px;
  position: absolute;
  z-index: 99999;
}

.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  left: 0;
  top: -5px;
  width: 100%;
}

.ui-resizable-s {
  bottom: -5px;
  cursor: s-resize;
  height: 7px;
  left: 0;
  width: 100%;
}

.ui-resizable-e {
  cursor: e-resize;
  height: 100%;
  right: -5px;
  top: 0;
  width: 7px;
}

.ui-resizable-w {
  cursor: w-resize;
  height: 100%;
  left: -5px;
  top: 0;
  width: 7px;
}

.ui-resizable-se {
  bottom: 1px;
  cursor: se-resize;
  height: 12px;
  right: 1px;
  width: 12px;
}

.ui-resizable-sw {
  bottom: -5px;
  cursor: sw-resize;
  height: 9px;
  left: -5px;
  width: 9px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  height: 9px;
  left: -5px;
  top: -5px;
  width: 9px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  height: 9px;
  right: -5px;
  top: -5px;
  width: 9px;
}

.ui-selectable-helper {
  border: 1px dotted #000000;
  position: absolute;
  z-index: 100;
}

.ui-widget {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}

.ui-widget .ui-widget {
  font-size: 13px;
}

.ui-widget button,
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
  font-family: 'Roboto', sans-serif;
  font-size: inherit;
}

.ui-widget-content {
  background: #ffffff;
  border: 1px solid #aaaaaa;
  color: #404040;
}

.ui-widget-header {
  background-color: #f5f5f5;
  border-color: #dddddd;
  color: #333333;
  font-weight: 700;
}

.ui-widget-header a {
  color: #222222;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #333333;
  font-weight: 400;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}

.ui-state-focus,
.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-widget-header .ui-state-hover {
  background-color: #ebebeb;
  border-color: #adadad;
  color: #333333;
  text-decoration: none;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #333333;
  text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #adadad;
  color: #333333;
  font-weight: 400;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #333333;
  text-decoration: none;
}

.ui-widget :active {
  outline: 0;
}

.ui-state-default,
.ui-state-error,
.ui-state-highlight {
  border: 1px solid;
  position: relative;
}

.ui-state-default p,
.ui-state-error p,
.ui-state-highlight p {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin: 7px 15px;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #2d6987;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

.ui-state-error a,
.ui-state-error-text,
.ui-widget-content .ui-state-error a,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error a,
.ui-widget-header .ui-state-error-text {
  color: #953b39;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: 700;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  filter: alpha(opacity=70);
  font-weight: 400;
  opacity: 0.7;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  background-image: none;
  filter: alpha(opacity=35);
  opacity: 0.35;
}

.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
}

.ui-icon {
  background-image: url(../images/jqueryui/ui-icons_222222_256x240.png);
  height: 16px;
  width: 16px;
}

.ui-widget-content .ui-icon,
.ui-widget-header .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_222222_256x240.png);
}

.ui-state-default .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_888888_256x240.png);
}

.ui-state-active .ui-icon,
.ui-state-focus .ui-icon,
.ui-state-hover .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_454545_256x240.png);
}

.ui-state-highlight .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_2e83ff_256x240.png);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_f6cf3b_256x240.png);
}

.ui-icon-carat-1-n {
  background-position: 0 0;
}

.ui-icon-carat-1-ne {
  background-position: -16px 0;
}

.ui-icon-carat-1-e {
  background-position: -32px 0;
}

.ui-icon-carat-1-se {
  background-position: -48px 0;
}

.ui-icon-carat-1-s {
  background-position: -64px 0;
}

.ui-icon-carat-1-sw {
  background-position: -80px 0;
}

.ui-icon-carat-1-w {
  background-position: -96px 0;
}

.ui-icon-carat-1-nw {
  background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-first,
.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.ui-corner-left,
.ui-corner-tl,
.ui-corner-top {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
}

.ui-corner-right,
.ui-corner-top,
.ui-corner-tr {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}

.ui-corner-bl,
.ui-corner-bottom,
.ui-corner-left {
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
}

.ui-corner-bottom,
.ui-corner-br,
.ui-corner-right {
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
}

.ui-widget-overlay {
  filter: alpha(opacity=30);
  opacity: 0.3;
  width: 100%;
}

.ui-widget-shadow {
  background: #aaaaaa;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  filter: alpha(opacity=30);
  margin: -8px 0 0 -8px;
  opacity: 0.3;
  padding: 8px;
}

.ui-accordion {
  width: 100%;
}

.ui-accordion .ui-accordion-li-fix {
  display: inline;
}

.ui-accordion .ui-accordion-header-active {
  border-bottom: 0 !important;
}

.ui-accordion .ui-accordion-header {
  cursor: pointer;
  display: block;
  min-height: 0;
  position: relative;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-noicons {
  padding-left: 0.7em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  left: 0.5em;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-accordion .ui-accordion-content {
  border-top: 0 none;
  display: none;
  margin-bottom: 2px;
  margin-top: -3px;
  overflow: auto;
  position: relative;
  top: 1px;
}

.ui-accordion .ui-accordion-content-active {
  display: block;
}

.ui-autocomplete {
  cursor: default;
  left: 0;
  position: absolute;
  top: 0;
}

.ui-button {
  border: 1px solid #cccccc;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428571429;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.ui-button:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.ui-button:focus,
.ui-button:hover {
  background-color: #ebebeb;
  border-color: #adadad;
  color: #333333;
  text-decoration: none;
}

#app-page fieldset[disabled] .ui-button,
#app-page fieldset[disabled] .ui-button.ui-state-active,
#app-page fieldset[disabled] .ui-button:active,
#app-page fieldset[disabled] .ui-button:focus,
#app-page fieldset[disabled] .ui-button:hover,
.ui-button.disabled,
.ui-button.disabled.active,
.ui-button.disabled:active,
.ui-button.disabled:focus,
.ui-button.disabled:hover,
.ui-button[disabled],
.ui-button[disabled].active,
.ui-button[disabled]:active,
.ui-button[disabled]:focus,
.ui-button[disabled]:hover {
  background-color: #ffffff;
  border-color: #cccccc;
}

.ui-btn-lg {
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.33;
  padding: 10px 16px;
}

.ui-btn-sm,
.ui-btn-xs {
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.5;
  padding: 5px 10px;
}

.ui-btn-xs {
  padding: 1px 5px;
}

.ui-btn-block {
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.ui-btn-block + .ui-btn-block {
  margin-top: 5px;
}

#app-page input[type=button].ui-btn-block,
#app-page input[type=reset].ui-btn-block,
#app-page input[type=submit].ui-btn-block {
  width: 100%;
}

.ui-button-text-icon-primary .ui-button-icon-primary {
  float: left;
}

.ui-button-text-icon-primary {
  padding: 2px 7px 3px;
}

.ui-button-primary {
  background-color: #428bca;
  border-color: #357ebd;
  color: #ffffff;
}

.ui-button-warning {
  background-color: #f0ad4e;
  border-color: #eea236;
  color: #ffffff;
}

.ui-button-info {
  background-color: #5bc0de;
  border-color: #46b8da;
  color: #ffffff;
}

.ui-button-danger {
  background-color: #d9534f;
  border-color: #d43f3a;
  color: #ffffff;
}

.ui-button-inverse {
  background-color: #222222;
  border-color: #080808;
  color: #ffffff;
}

.ui-button-success {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #ffffff;
}

.ui-button-error {
  background-color: #c43c35;
  border-color: #882a25;
  color: #ffffff;
}

.ui-button-danger:hover,
.ui-button-info:hover,
.ui-button-inverse:hover,
.ui-button-primary:hover,
.ui-button-success:hover,
.ui-button-warning:hover {
  text-decoration: none;
}

.ui-button-primary:focus,
.ui-button-primary:hover {
  background-color: #3276b1;
  border-color: #285e8e;
  color: #ffffff;
}

.ui-button-success:hover {
  background-color: #47a447;
  border-color: #398439;
  color: #ffffff;
}

.ui-button-info:hover {
  background-color: #39b3d7;
  border-color: #269abc;
  color: #ffffff;
}

.ui-button-danger:hover {
  background-color: #d2322d;
  border-color: #ac2925;
  color: #ffffff;
}

.ui-button-warning:hover {
  background-color: #ed9c28;
  border-color: #d58512;
  color: #ffffff;
}

.ui-button-inverse:hover {
  background-color: #363636;
  border-color: #000000;
  color: #ffffff;
}

.ui-button-icon-only {
  width: 2.2em;
}

.ui-button-icons-only {
  width: 3.4em;
}

#app-page button.ui-button-icons-only {
  width: 3.7em;
}

.ui-button-text-icon-primary .ui-button-icon-primary.ui-icon {
  margin-top: 5px;
}

.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  display: none;
  padding: 0.4em;
  text-indent: -9999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

#app-page input.ui-button {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-icon,
.ui-button-icons-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon {
  margin-bottom: 0;
  margin-top: 0;
  top: 50%;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
  margin-right: -6px;
}

.ui-button-icons-only .ui-button-icon-primary,
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary {
  left: 0.5em;
}

.ui-button-icons-only .ui-button-icon-secondary,
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary {
  right: 0.5em;
}

.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-state-active {
  background-color: #428bca;
  border-color: #357ebd;
  color: #ffffff;
}

.ui-buttonset .ui-state-active.ui-state-hover {
  background-color: #3276b1;
  border-color: #285e8e;
  color: #ffffff;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.4em;
}

#app-page button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-menu {
  display: block;
  list-style: none;
  margin: 0;
  outline: 0;
}

.ui-menu .ui-menu {
  list-style: none;
  margin-top: -3px;
  position: absolute;
}

.ui-menu .ui-menu-item {
  list-style: none url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7});
  margin: 0;
  padding: 0;
  width: 100%;
}

.ui-menu .ui-menu-divider {
  border-width: 1px 0 0;
  font-size: 0;
  height: 0;
  line-height: 0;
  margin: 5px -2px 5px -2px;
}

.ui-menu .ui-menu-item a {
  display: block;
  font-weight: 400;
  line-height: 1.5;
  min-height: 0;
  padding: 2px 0.4em;
  text-decoration: none;
}

.ui-menu .ui-menu-item a.ui-corner-all {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.ui-menu .ui-menu-item a.ui-state-active,
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-widget-content {
  background-color: #428bca;
  border-color: #357ebd;
  color: #ffffff;
  display: block;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.ui-menu .ui-menu-item a.ui-state-active {
  padding: 1px 0.4em;
}

.ui-menu .ui-state-disabled {
  line-height: 1.5;
}

.ui-menu .ui-state-disabled a {
  cursor: default;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item a {
  padding-left: 2em;
  position: relative;
}

.ui-menu .ui-icon {
  left: 0.2em;
  position: absolute;
  top: 0.2em;
}

.ui-menu .ui-menu-icon {
  float: right;
  position: static;
}

.ui-menu {
  margin-bottom: 2em;
}

.ui-spinner {
  display: inline-block;
  overflow: hidden;
  padding: 0;
  position: relative;
  vertical-align: middle;
}

.ui-spinner-input {
  background: 0 0;
  border: none;
  vertical-align: middle;
}

.ui-spinner-button {
  cursor: default;
  display: block;
  font-size: 0.5em;
  height: 50%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

.ui-spinner a.ui-spinner-button {
  border-bottom: none;
  border-right: none;
  border-top: none;
}

.ui-spinner .ui-icon {
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-dialog {
  background-clip: padding-box;
  background-color: #ffffff;
  border-radius: 6px;
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  left: 0;
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
  width: 300px;
  z-index: 1050;
}

.ui-dialog .ui-dialog-titlebar {
  border-bottom-color: #cccccc;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: #ffffff;
  border-left-style: solid;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-bottomright: 0;
  border-right-color: #ffffff;
  border-right-style: solid;
  border-top-color: #ffffff;
  border-top-style: solid;
  border-top-width: 1px !important;
  font-size: 18px;
  position: relative;
  text-decoration: none;
}

.ui-dialog .ui-dialog-title {
  color: #404040;
  float: left;
  font-weight: 700;
  overflow: hidden;
  padding: 5px;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  background: 0 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: alpha(opacity=25);
  font-size: 20px;
  font-weight: 700;
  height: 18px;
  line-height: 13px;
  margin: -20px 0 0 0;
  opacity: 0.25;
  padding: 1px;
  position: absolute;
  right: 0.3em;
  text-shadow: 0 1px 0 #ffffff;
  top: 50%;
  width: 19px;
}

.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  margin: 1px;
  text-indent: 9999px;
}

.ui-dialog .ui-dialog-titlebar-close:focus,
.ui-dialog .ui-dialog-titlebar-close:hover {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  opacity: 0.9;
  padding: 1px;
}

.ui-dialog .ui-dialog-content {
  background: 0 0;
  border: 0;
  overflow: auto;
  padding: 0.5em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-buttonpane {
  background: #ffffff none;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  border-width: 1px 0 0;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  margin: 0.5em 0 0;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  bottom: 3px;
  height: 14px;
  right: 3px;
  width: 14px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
  background-color: #428bca;
  border-color: #357ebd;
  color: #ffffff;
}

.ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.ui-state-hover {
  background-color: #3276b1;
  border-color: #285e8e;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button:not(:first-child) {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  overflow: visible;
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
  transition: 0.1s linear all;
}

.ui-dialog-buttonset .ui-button:not(:first-child) .ui-state-hover {
  background-color: #ebebeb;
  border-color: #adadad;
  color: #333333;
  text-decoration: none;
}

.ui-dialog-buttonset .ui-button.ui-button-info {
  background-color: #5bc0de;
  border-color: #46b8da;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-info.ui-state-hover {
  background-color: #39b3d7;
  border-color: #269abc;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-success {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-success.ui-state-hover {
  background-color: #47a447;
  border-color: #398439;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-warning {
  background-color: #f0ad4e;
  border-color: #eea236;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-warning.ui-state-hover {
  background-color: #ed9c28;
  border-color: #d58512;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-danger {
  background-color: #d9534f;
  border-color: #d43f3a;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-danger.ui-state-hover {
  background-color: #d2322d;
  border-color: #ac2925;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-inverse {
  background-color: #222222;
  border-color: #080808;
  color: #ffffff;
}

.ui-dialog-buttonset .ui-button.ui-button-inverse.ui-state-hover {
  background-color: #363636;
  border-color: #000000;
  color: #ffffff;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider .ui-slider-handle {
  cursor: default;
  height: 18px;
  position: absolute;
  width: 16px;
  z-index: 2;
}

.ui-slider .ui-slider-range {
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-position: 0 0;
  background-repeat: repeat-x;
  border: 0;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  display: block;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  font-size: 0.7em;
  position: absolute;
  -webkit-transition: width 0.6s ease;
  -moz-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
  z-index: 1;
}

.ui-slider-horizontal {
  background: #d5d5d5;
  border: none;
  height: 10px;
}

.ui-slider-horizontal .ui-slider-handle {
  background-color: #ffffff;
  border-color: #cccccc;
  margin-left: -0.6em;
  top: -0.3em;
}

.ui-slider-horizontal .ui-slider-handle:focus {
  background-color: #ffffff;
  border-color: #357ebd;
}

.ui-slider-horizontal .ui-slider-handle:hover {
  background-color: #ffffff;
  border-color: #285e8e;
  outline: 0;
}

.ui-slider-horizontal .ui-slider-handle:active {
  background-color: #428bca;
  border-color: #3276b1;
}

.ui-slider-horizontal .ui-slider-range {
  height: 100%;
  top: 0;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  height: 100px;
  width: 0.8em;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-bottom: -0.6em;
  margin-left: 0;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-tabs {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: relative;
}

.ui-tabs .ui-tabs-nav {
  background: 0 0;
  border: solid #dddddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-width: 0 0 1px;
}

.ui-tabs .ui-tabs-nav li {
  border: 0;
  float: left;
  list-style: none;
  margin-bottom: -1px;
  position: relative;
  top: 0;
  white-space: nowrap;
}

.ui-tabs-nav .ui-state-default {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ui-tabs .ui-tabs-nav li a {
  background: 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  float: left;
  font-weight: 400;
  outline: 0;
  padding: 8px 12px;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li a:hover {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-bottom: 1px solid #dddddd;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom: 1px solid #ffffff;
  color: #555555;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active:hover {
  background: #ffffff;
  cursor: text;
}

.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}

.ui-tabs .ui-tabs-panel {
  background: 0 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  display: block;
}

.ui-tabs .ui-tabs-hide {
  display: none !important;
}

.ui-tabs .ui-tabs-nav li {
  filter: none;
}

.ui-tooltip {
  background: #4286f4;
  border: 1px solid #000000;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 #000000;
  -moz-box-shadow: inset 0 1px 0 #000000;
  box-shadow: inset 0 1px 0 #000000;
  color: #ffffff;
  display: block;
  font-size: 15px;
  max-width: 200px;
  opacity: 0.8;
  padding: 3px 8px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  visibility: visible;
  z-index: 1024;
}

body .ui-tooltip {
  border-width: 1px;
  font-size: 15px;
}

.ui-datepicker {
  display: none;
  padding: 0.2em 0.2em 0;
  width: 17em;
}

.ui-datepicker .ui-datepicker-header {
  background-color: #f5f5f5;
  border: 0;
  color: #808080;
  font-weight: 700;
  padding: 4px 0;
  position: relative;
  width: 100%;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  height: 1.8em;
  position: absolute;
  top: 2px;
  width: 1.8em;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: block;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-datepicker .ui-datepicker-title {
  line-height: 1.8em;
  margin: 0 2.3em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: 0;
  padding: 0.7em 0.3em;
  text-align: center;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td a,
.ui-datepicker td span {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  margin: 0.7em 0 0;
  padding: 0 0.2em;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  cursor: pointer;
  float: right;
  margin: 0.5em 0.2em 0.4em;
  overflow: visible;
  padding: 0.2em 0.6em 0.3em;
  width: auto;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  margin: 0 auto 0.4em;
  width: 95%;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  font-size: 0;
  width: 100%;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  left: auto;
  right: 2px;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  left: auto;
  right: 1px;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 1px;
  border-right-width: 0;
}

.ui-datepicker-cover {
  display: block;
  filter: mask();
  height: 200px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 200px;
  z-index: -1;
}

.ui-datepicker th {
  color: #808080;
  font-weight: 700;
}

.ui-datepicker-today a:hover {
  background-color: #808080;
  color: #ffffff;
}

.ui-datepicker-today a {
  background-color: #bfbfbf;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0 4px;
}

.ui-datepicker td a {
  border: 0;
  margin-bottom: 0;
}

.ui-datepicker td:hover {
  color: #ffffff;
}

.ui-datepicker td .ui-state-default {
  background: 0 0;
  border: 0;
  color: #808080;
  filter: none;
  margin-bottom: 0;
  padding: 5px;
  text-align: center;
}

.ui-datepicker td .ui-state-highlight {
  background-color: #a90329;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.ui-datepicker td .ui-state-active {
  background-color: #ebebeb;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #333333;
  font-size: inherit;
  margin-bottom: 0;
  text-shadow: none;
}

.ui-datepicker td .ui-state-hover {
  background: #428bca;
  border-color: #357ebd;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.ui-progressbar {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  height: 2em;
  margin-bottom: 20px;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  background-color: #428bca;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  height: 100%;
  margin: 0;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.ui-progressbar .ui-progressbar-overlay {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-toolbar {
  background-color: #f5f5f5;
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  background-repeat: repeat-x;
  border: 1px solid #dddddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  margin: 0 0 18px;
  padding: 7px 14px;
}

.customfile-button {
  border: 1px solid #cccccc;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.428571429;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

#app-page div.wijmo-wijmenu {
  background-color: #222222;
  background-image: -webkit-linear-gradient(top, #333333, #222222);
  background-image: -moz-linear-gradient(top, #333333, #222222);
  background-image: -o-linear-gradient(top, #333333, #222222);
  background-image: linear-gradient(top, #333333, #222222);
  background-repeat: repeat-x;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  padding: 0 20px;
}

.wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text {
  color: #bfbfbf;
}

.wijmo-wijmenu .ui-state-hover {
  background: #444444;
  background: rgba(255, 255, 255, 0.05);
}

.wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text {
  color: #ffffff;
}

#app-page div.wijmo-wijmenu .ui-widget-header h3 {
  margin-top: 1px;
  padding: 0;
  position: relative;
}

#app-page .wijmo-wijmenu h3 a {
  color: #ffffff;
  display: block;
  float: left;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  margin-left: -20px;
  margin-top: 1px;
  padding: 8px 20px 12px;
}

#app-page .wijmo-wijmenu h3 a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
}

.wijmo-wijmenu .ui-widget-header {
  border: 0;
}

.wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child {
  padding: 0.3em 0;
}

#app-page div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child {
  background: #333333;
  border: 0;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 6px 0;
  width: 160px;
}

#app-page div.wijmo-wijmenu .wijmo-wijmenu-item {
  border: 0;
  margin: 0;
}

.wijmo-wijmenu a.wijmo-wijmenu-link {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  line-height: 19px;
  margin: 0;
  padding: 10px 10px 11px;
}

#app-page div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link {
  display: block;
  float: none;
  padding: 4px 15px;
  width: auto;
}

#app-page div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text {
  float: none;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
  background: #191919;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator {
  background: #222222 none;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #444444;
  padding: 5px 0;
}

.wijmo-wijmenu .wijmo-wijmenu-item input {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #111111;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  margin: 5px 10px 0;
  padding: 4px 9px;
  -moz-transition: none 0s ease 0s;
  width: 100px;
}

.wijmo-wijmenu .wijmo-wijmenu-item input:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.wijmo-wijmenu .wijmo-wijmenu-item input:focus {
  background-color: #ffffff;
  border: 0 none;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  color: #404040;
  outline: 0 none;
  padding: 5px 10px;
  text-shadow: 0 1px 0 #ffffff;
}

.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.wijmo-wijmenu .ui-state-default {
  text-shadow: none;
}

.wijmo-wijmenu .ui-state-default {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #bfbfbf;
  filter: none;
}

.ui-button-icon-primary.ui-icon[class*=" icon-"]:before,
.ui-button-icon-primary.ui-icon[class^=icon-]:before,
.ui-button-icon-secondary.ui-icon[class*=" icon-"]:before,
.ui-button-icon-secondary.ui-icon[class^=icon-]:before {
  color: inherit;
  display: inline;
  font-size: inherit;
  margin-left: 5px;
  text-decoration: inherit;
}

.ui-state-default .ui-icon[class*=" icon-"] {
  background: 0 0;
  margin-left: -12px;
}

.flag {
  background: url(../images/flags/flags.png) no-repeat;
  display: inline-block;
  height: 11px;
  margin-top: -0.18em;
  width: 16px;
}

.flag.flag-ad {
  background-position: -16px 0;
}

.flag.flag-ae {
  background-position: -32px 0;
}

.flag.flag-af {
  background-position: -48px 0;
}

.flag.flag-ag {
  background-position: -64px 0;
}

.flag.flag-ai {
  background-position: -80px 0;
}

.flag.flag-al {
  background-position: -96px 0;
}

.flag.flag-am {
  background-position: -112px 0;
}

.flag.flag-an {
  background-position: -128px 0;
}

.flag.flag-ao {
  background-position: -144px 0;
}

.flag.flag-ar {
  background-position: -160px 0;
}

.flag.flag-as {
  background-position: -176px 0;
}

.flag.flag-at {
  background-position: -192px 0;
}

.flag.flag-au {
  background-position: -208px 0;
}

.flag.flag-aw {
  background-position: -224px 0;
}

.flag.flag-az {
  background-position: -240px 0;
}

.flag.flag-ba {
  background-position: 0 -11px;
}

.flag.flag-bb {
  background-position: -16px -11px;
}

.flag.flag-bd {
  background-position: -32px -11px;
}

.flag.flag-be {
  background-position: -48px -11px;
}

.flag.flag-bf {
  background-position: -64px -11px;
}

.flag.flag-bg {
  background-position: -80px -11px;
}

.flag.flag-bh {
  background-position: -96px -11px;
}

.flag.flag-bi {
  background-position: -112px -11px;
}

.flag.flag-bj {
  background-position: -128px -11px;
}

.flag.flag-bm {
  background-position: -144px -11px;
}

.flag.flag-bn {
  background-position: -160px -11px;
}

.flag.flag-bo {
  background-position: -176px -11px;
}

.flag.flag-br {
  background-position: -192px -11px;
}

.flag.flag-bs {
  background-position: -208px -11px;
}

.flag.flag-bt {
  background-position: -224px -11px;
}

.flag.flag-bv {
  background-position: -240px -11px;
}

.flag.flag-bw {
  background-position: 0 -22px;
}

.flag.flag-by {
  background-position: -16px -22px;
}

.flag.flag-bz {
  background-position: -32px -22px;
}

.flag.flag-ca {
  background-position: -48px -22px;
}

.flag.flag-catalonia {
  background-position: -64px -22px;
}

.flag.flag-cd {
  background-position: -80px -22px;
}

.flag.flag-cf {
  background-position: -96px -22px;
}

.flag.flag-cg {
  background-position: -112px -22px;
}

.flag.flag-ch {
  background-position: -128px -22px;
}

.flag.flag-ci {
  background-position: -144px -22px;
}

.flag.flag-ck {
  background-position: -160px -22px;
}

.flag.flag-cl {
  background-position: -176px -22px;
}

.flag.flag-cm {
  background-position: -192px -22px;
}

.flag.flag-cn {
  background-position: -208px -22px;
}

.flag.flag-co {
  background-position: -224px -22px;
}

.flag.flag-cr {
  background-position: -240px -22px;
}

.flag.flag-cu {
  background-position: 0 -33px;
}

.flag.flag-cv {
  background-position: -16px -33px;
}

.flag.flag-cw {
  background-position: -32px -33px;
}

.flag.flag-cy {
  background-position: -48px -33px;
}

.flag.flag-cz {
  background-position: -64px -33px;
}

.flag.flag-de {
  background-position: -80px -33px;
}

.flag.flag-dj {
  background-position: -96px -33px;
}

.flag.flag-dk {
  background-position: -112px -33px;
}

.flag.flag-dm {
  background-position: -128px -33px;
}

.flag.flag-do {
  background-position: -144px -33px;
}

.flag.flag-dz {
  background-position: -160px -33px;
}

.flag.flag-ec {
  background-position: -176px -33px;
}

.flag.flag-ee {
  background-position: -192px -33px;
}

.flag.flag-eg {
  background-position: -208px -33px;
}

.flag.flag-eh {
  background-position: -224px -33px;
}

.flag.flag-england {
  background-position: -240px -33px;
}

.flag.flag-er {
  background-position: 0 -44px;
}

.flag.flag-es {
  background-position: -16px -44px;
}

.flag.flag-et {
  background-position: -32px -44px;
}

.flag.flag-eu {
  background-position: -48px -44px;
}

.flag.flag-fi {
  background-position: -64px -44px;
}

.flag.flag-fj {
  background-position: -80px -44px;
}

.flag.flag-fk {
  background-position: -96px -44px;
}

.flag.flag-fm {
  background-position: -112px -44px;
}

.flag.flag-fo {
  background-position: -128px -44px;
}

.flag.flag-fr {
  background-position: -144px -44px;
}

.flag.flag-ga {
  background-position: -160px -44px;
}

.flag.flag-gb {
  background-position: -176px -44px;
}

.flag.flag-gd {
  background-position: -192px -44px;
}

.flag.flag-ge {
  background-position: -208px -44px;
}

.flag.flag-gf {
  background-position: -224px -44px;
}

.flag.flag-gg {
  background-position: -240px -44px;
}

.flag.flag-gh {
  background-position: 0 -55px;
}

.flag.flag-gi {
  background-position: -16px -55px;
}

.flag.flag-gl {
  background-position: -32px -55px;
}

.flag.flag-gm {
  background-position: -48px -55px;
}

.flag.flag-gn {
  background-position: -64px -55px;
}

.flag.flag-gp {
  background-position: -80px -55px;
}

.flag.flag-gq {
  background-position: -96px -55px;
}

.flag.flag-gr {
  background-position: -112px -55px;
}

.flag.flag-gs {
  background-position: -128px -55px;
}

.flag.flag-gt {
  background-position: -144px -55px;
}

.flag.flag-gu {
  background-position: -160px -55px;
}

.flag.flag-gw {
  background-position: -176px -55px;
}

.flag.flag-gy {
  background-position: -192px -55px;
}

.flag.flag-hk {
  background-position: -208px -55px;
}

.flag.flag-hm {
  background-position: -224px -55px;
}

.flag.flag-hn {
  background-position: -240px -55px;
}

.flag.flag-hr {
  background-position: 0 -66px;
}

.flag.flag-ht {
  background-position: -16px -66px;
}

.flag.flag-hu {
  background-position: -32px -66px;
}

.flag.flag-ic {
  background-position: -48px -66px;
}

.flag.flag-id {
  background-position: -64px -66px;
}

.flag.flag-ie {
  background-position: -80px -66px;
}

.flag.flag-il {
  background-position: -96px -66px;
}

.flag.flag-im {
  background-position: -112px -66px;
}

.flag.flag-in {
  background-position: -128px -66px;
}

.flag.flag-io {
  background-position: -144px -66px;
}

.flag.flag-iq {
  background-position: -160px -66px;
}

.flag.flag-ir {
  background-position: -176px -66px;
}

.flag.flag-is {
  background-position: -192px -66px;
}

.flag.flag-it {
  background-position: -208px -66px;
}

.flag.flag-je {
  background-position: -224px -66px;
}

.flag.flag-jm {
  background-position: -240px -66px;
}

.flag.flag-jo {
  background-position: 0 -77px;
}

.flag.flag-jp {
  background-position: -16px -77px;
}

.flag.flag-ke {
  background-position: -32px -77px;
}

.flag.flag-kg {
  background-position: -48px -77px;
}

.flag.flag-kh {
  background-position: -64px -77px;
}

.flag.flag-ki {
  background-position: -80px -77px;
}

.flag.flag-km {
  background-position: -96px -77px;
}

.flag.flag-kn {
  background-position: -112px -77px;
}

.flag.flag-kp {
  background-position: -128px -77px;
}

.flag.flag-kr {
  background-position: -144px -77px;
}

.flag.flag-kurdistan {
  background-position: -160px -77px;
}

.flag.flag-kw {
  background-position: -176px -77px;
}

.flag.flag-ky {
  background-position: -192px -77px;
}

.flag.flag-kz {
  background-position: -208px -77px;
}

.flag.flag-la {
  background-position: -224px -77px;
}

.flag.flag-lb {
  background-position: -240px -77px;
}

.flag.flag-lc {
  background-position: 0 -88px;
}

.flag.flag-li {
  background-position: -16px -88px;
}

.flag.flag-lk {
  background-position: -32px -88px;
}

.flag.flag-lr {
  background-position: -48px -88px;
}

.flag.flag-ls {
  background-position: -64px -88px;
}

.flag.flag-lt {
  background-position: -80px -88px;
}

.flag.flag-lu {
  background-position: -96px -88px;
}

.flag.flag-lv {
  background-position: -112px -88px;
}

.flag.flag-ly {
  background-position: -128px -88px;
}

.flag.flag-ma {
  background-position: -144px -88px;
}

.flag.flag-mc {
  background-position: -160px -88px;
}

.flag.flag-md {
  background-position: -176px -88px;
}

.flag.flag-me {
  background-position: -192px -88px;
}

.flag.flag-mg {
  background-position: -208px -88px;
}

.flag.flag-mh {
  background-position: -224px -88px;
}

.flag.flag-mk {
  background-position: -240px -88px;
}

.flag.flag-ml {
  background-position: 0 -99px;
}

.flag.flag-mm {
  background-position: -16px -99px;
}

.flag.flag-mn {
  background-position: -32px -99px;
}

.flag.flag-mo {
  background-position: -48px -99px;
}

.flag.flag-mp {
  background-position: -64px -99px;
}

.flag.flag-mq {
  background-position: -80px -99px;
}

.flag.flag-mr {
  background-position: -96px -99px;
}

.flag.flag-ms {
  background-position: -112px -99px;
}

.flag.flag-mt {
  background-position: -128px -99px;
}

.flag.flag-mu {
  background-position: -144px -99px;
}

.flag.flag-mv {
  background-position: -160px -99px;
}

.flag.flag-mw {
  background-position: -176px -99px;
}

.flag.flag-mx {
  background-position: -192px -99px;
}

.flag.flag-my {
  background-position: -208px -99px;
}

.flag.flag-mz {
  background-position: -224px -99px;
}

.flag.flag-na {
  background-position: -240px -99px;
}

.flag.flag-nc {
  background-position: 0 -110px;
}

.flag.flag-ne {
  background-position: -16px -110px;
}

.flag.flag-nf {
  background-position: -32px -110px;
}

.flag.flag-ng {
  background-position: -48px -110px;
}

.flag.flag-ni {
  background-position: -64px -110px;
}

.flag.flag-nl {
  background-position: -80px -110px;
}

.flag.flag-no {
  background-position: -96px -110px;
}

.flag.flag-np {
  background-position: -112px -110px;
}

.flag.flag-nr {
  background-position: -128px -110px;
}

.flag.flag-nu {
  background-position: -144px -110px;
}

.flag.flag-nz {
  background-position: -160px -110px;
}

.flag.flag-om {
  background-position: -176px -110px;
}

.flag.flag-pa {
  background-position: -192px -110px;
}

.flag.flag-pe {
  background-position: -208px -110px;
}

.flag.flag-pf {
  background-position: -224px -110px;
}

.flag.flag-pg {
  background-position: -240px -110px;
}

.flag.flag-ph {
  background-position: 0 -121px;
}

.flag.flag-pk {
  background-position: -16px -121px;
}

.flag.flag-pl {
  background-position: -32px -121px;
}

.flag.flag-pm {
  background-position: -48px -121px;
}

.flag.flag-pn {
  background-position: -64px -121px;
}

.flag.flag-pr {
  background-position: -80px -121px;
}

.flag.flag-ps {
  background-position: -96px -121px;
}

.flag.flag-pt {
  background-position: -112px -121px;
}

.flag.flag-pw {
  background-position: -128px -121px;
}

.flag.flag-py {
  background-position: -144px -121px;
}

.flag.flag-qa {
  background-position: -160px -121px;
}

.flag.flag-re {
  background-position: -176px -121px;
}

.flag.flag-ro {
  background-position: -192px -121px;
}

.flag.flag-rs {
  background-position: -208px -121px;
}

.flag.flag-ru {
  background-position: -224px -121px;
}

.flag.flag-rw {
  background-position: -240px -121px;
}

.flag.flag-sa {
  background-position: 0 -132px;
}

.flag.flag-sb {
  background-position: -16px -132px;
}

.flag.flag-sc {
  background-position: -32px -132px;
}

.flag.flag-scotland {
  background-position: -48px -132px;
}

.flag.flag-sd {
  background-position: -64px -132px;
}

.flag.flag-se {
  background-position: -80px -132px;
}

.flag.flag-sg {
  background-position: -96px -132px;
}

.flag.flag-sh {
  background-position: -112px -132px;
}

.flag.flag-si {
  background-position: -128px -132px;
}

.flag.flag-sk {
  background-position: -144px -132px;
}

.flag.flag-sl {
  background-position: -160px -132px;
}

.flag.flag-sm {
  background-position: -176px -132px;
}

.flag.flag-sn {
  background-position: -192px -132px;
}

.flag.flag-so {
  background-position: -208px -132px;
}

.flag.flag-somaliland {
  background-position: -224px -132px;
}

.flag.flag-sr {
  background-position: -240px -132px;
}

.flag.flag-ss {
  background-position: 0 -143px;
}

.flag.flag-st {
  background-position: -16px -143px;
}

.flag.flag-sv {
  background-position: -32px -143px;
}

.flag.flag-sx {
  background-position: -48px -143px;
}

.flag.flag-sy {
  background-position: -64px -143px;
}

.flag.flag-sz {
  background-position: -80px -143px;
}

.flag.flag-tc {
  background-position: -96px -143px;
}

.flag.flag-td {
  background-position: -112px -143px;
}

.flag.flag-tf {
  background-position: -128px -143px;
}

.flag.flag-tg {
  background-position: -144px -143px;
}

.flag.flag-th {
  background-position: -160px -143px;
}

.flag.flag-tj {
  background-position: -176px -143px;
}

.flag.flag-tk {
  background-position: -192px -143px;
}

.flag.flag-tl {
  background-position: -208px -143px;
}

.flag.flag-tm {
  background-position: -224px -143px;
}

.flag.flag-tn {
  background-position: -240px -143px;
}

.flag.flag-to {
  background-position: 0 -154px;
}

.flag.flag-tr {
  background-position: -16px -154px;
}

.flag.flag-tt {
  background-position: -32px -154px;
}

.flag.flag-tv {
  background-position: -48px -154px;
}

.flag.flag-tw {
  background-position: -64px -154px;
}

.flag.flag-tz {
  background-position: -80px -154px;
}

.flag.flag-ua {
  background-position: -96px -154px;
}

.flag.flag-ug {
  background-position: -112px -154px;
}

.flag.flag-um {
  background-position: -128px -154px;
}

.flag.flag-us {
  background-position: -144px -154px;
}

.flag.flag-uy {
  background-position: -160px -154px;
}

.flag.flag-uz {
  background-position: -176px -154px;
}

.flag.flag-va {
  background-position: -192px -154px;
}

.flag.flag-vc {
  background-position: -208px -154px;
}

.flag.flag-ve {
  background-position: -224px -154px;
}

.flag.flag-vg {
  background-position: -240px -154px;
}

.flag.flag-vi {
  background-position: 0 -165px;
}

.flag.flag-vn {
  background-position: -16px -165px;
}

.flag.flag-vu {
  background-position: -32px -165px;
}

.flag.flag-wales {
  background-position: -48px -165px;
}

.flag.flag-wf {
  background-position: -64px -165px;
}

.flag.flag-ws {
  background-position: -80px -165px;
}

.flag.flag-ye {
  background-position: -96px -165px;
}

.flag.flag-yt {
  background-position: -112px -165px;
}

.flag.flag-za {
  background-position: -128px -165px;
}

.flag.flag-zanzibar {
  background-position: -144px -165px;
}

.flag.flag-zm {
  background-position: -160px -165px;
}

.flag.flag-zw {
  background-position: -176px -165px;
}

.flag + span {
  display: inline-block;
  margin-top: -3px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 979px) {
  .flag + span {
    max-width: 30px !important;
  }
}

.cursor-auto {
  cursor: auto;
}

.cursor-default {
  cursor: default;
}

.cursor-none {
  cursor: none;
}

.cursor-context-menu {
  cursor: context-menu;
}

.cursor-help {
  cursor: help;
}

.cursor-progress {
  cursor: progress;
}

.cursor-wait {
  cursor: wait;
}

.cursor-cell {
  cursor: cell;
}

.cursor-crosshair {
  cursor: crosshair;
}

.cursor-text {
  cursor: text;
}

.cursor-vertical-text {
  cursor: vertical-text;
}

.cursor-alias {
  cursor: alias;
}

.cursor-copy {
  cursor: copy;
}

.cursor-move {
  cursor: move;
}

.cursor-no-drop {
  cursor: no-drop;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-all-scroll {
  cursor: all-scroll;
}

.cursor-col-resize {
  cursor: col-resize;
}

.cursor-row-resize {
  cursor: row-resize;
}

.cursor-n-resize {
  cursor: n-resize;
}

.cursor-e-resize {
  cursor: e-resize;
}

.cursor-s-resize {
  cursor: s-resize;
}

.cursor-w-resize {
  cursor: w-resize;
}

.cursor-ns-resize {
  cursor: ns-resize;
}

.cursor-ew-resize {
  cursor: ew-resize;
}

.cursor-ne-resize {
  cursor: ne-resize;
}

.cursor-nw-resize {
  cursor: nw-resize;
}

.cursor-se-resize {
  cursor: se-resize;
}

.cursor-sw-resize {
  cursor: sw-resize;
}

.cursor-nesw-resize {
  cursor: nesw-resize;
}

.cursor-nwse-resize {
  cursor: nwse-resize;
}

:-webkit-full-screen #fullscreen > :first-child > a {
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5a5a5a), color-stop(100%, #686868));
  background-image: -webkit-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -o-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -ms-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: linear-gradient(top, #5a5a5a 0, #686868 100%);
  border-color: #494949;
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5A5A5A', endColorstr='#686868', GradientType=0);
}

:-moz-full-screen #fullscreen > :first-child > a {
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5a5a5a), color-stop(100%, #686868));
  background-image: -webkit-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -o-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -ms-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: linear-gradient(top, #5a5a5a 0, #686868 100%);
  border-color: #494949;
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5A5A5A', endColorstr='#686868', GradientType=0);
}

:-ms-fullscreen #fullscreen > :first-child > a {
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5a5a5a), color-stop(100%, #686868));
  background-image: -webkit-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -o-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -ms-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: linear-gradient(top, #5a5a5a 0, #686868 100%);
  border-color: #494949;
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5A5A5A', endColorstr='#686868', GradientType=0);
}

:fullscreen #fullscreen > :first-child > a {
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5a5a5a), color-stop(100%, #686868));
  background-image: -webkit-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -o-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -ms-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: linear-gradient(top, #5a5a5a 0, #686868 100%);
  border-color: #494949;
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5A5A5A', endColorstr='#686868', GradientType=0);
}

:-webkit-full-screen video {
  height: 100%;
  width: 100%;
}

.ui-widget-overlay {
  background: #aaaaaa;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 949 !important;
}

.slider {
  margin-bottom: 30px;
  margin-top: 0;
}

.slider.slider-vertical {
  margin-bottom: 0;
  margin-right: 5px;
}

.ui-menu {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
  -moz-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
  box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
  padding: 2px;
  width: 155px;
  z-index: 1;
}

.ui-menu .ui-state-disabled {
  background: none !important;
  color: #999999 !important;
  cursor: default;
  font-weight: 400 !important;
  margin: 0.4em 0 0.2em !important;
}

.ui-icon-carat-1-e:before {
  content: "\f105";
  display: inline;
  font-family: FontAwesome, sans-serif;
  font-size: 14px;
}

.ui-menu .ui-menu-item a .ui-menu-icon {
  bottom: auto;
  height: auto;
  left: auto;
  right: auto;
  text-indent: 0;
  top: 0;
  width: auto;
}

.ui-tabs .ui-tabs-nav li a {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-bottom: 1px solid #dddddd;
  -moz-border-radius: 0;
  border-radius: 0;
  color: #838383;
}

.ui-tabs .ui-tabs-nav li {
  margin-right: 3px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  border-top-width: 0 !important;
  -webkit-box-shadow: 0 -2px 0 #57889c;
  -moz-box-shadow: 0 -2px 0 #57889c;
  box-shadow: 0 -2px 0 #57889c;
  font-weight: 700;
  margin-top: 1px !important;
}

.ui-tabs .ui-tabs-panel {
  border: 1px solid #dddddd;
  border-top: none;
  margin: 0;
  padding: 10px 13px;
}

.ui-tabs .ui-tabs-nav {
  margin-bottom: 0;
}

.ui-accordion .ui-accordion-header {
  background-color: #fbfbfb;
  font-size: 15px;
  padding: 10px 15px 10px 36px !important;
}

.ui-accordion .ui-accordion-content,
.ui-accordion .ui-accordion-header {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.ui-accordion .ui-accordion-content {
  padding: 15px;
}

.ui-accordion-header-active + .ui-accordion-content {
  border-top: 1px solid #dddddd;
}

.ui-accordion .ui-accordion-header {
  margin-top: -2px;
}

.ui-accordion .ui-accordion-header,
.ui-accordion-content {
  border-color: #dddddd !important;
}

.ui-accordion-header-icon {
  background-image: none !important;
  font-size: 14px !important;
  left: 12px !important;
  line-height: normal;
  margin-top: -6px !important;
  text-align: center;
  text-indent: 0 !important;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  margin-top: 2px;
  text-align: center;
}

.ui-datepicker-next > :first-child,
.ui-datepicker-prev > :first-child {
  text-indent: 0 !important;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  background: none !important;
}

.noUi-target * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  -ms-touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.noUi-base {
  border: 1px solid #bfbfbf;
  height: 14px;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.noUi-origin-lower {
  background: #72a8d7;
}

.noUi-handle {
  background: #858585;
  border: 1px solid #ffffff;
  cursor: default;
  height: 30px;
  margin: -8px 0 0 -8px;
  width: 16px;
}

.noUi-handle:hover {
  background: #6c6c6c;
}

.noUi-active {
  background: #686868;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px 0;
  cursor: default;
  height: 32px;
  margin: -9px 0 0 -8px;
  width: 18px;
}

.noUi-active:after {
  border: 1px solid #dddddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 100%;
}

.noUi-connect {
  background: #3276b1;
}

.noUi-background {
  background: #eeeeee;
  border: none;
}

.noUi-origin {
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.noUi-origin-upper {
  background: inherit !important;
}

.noUi-z-index {
  z-index: 10;
}

.noUi-vertical {
  height: 100%;
  width: 10px;
}

.noUi-vertical .noUi-origin {
  bottom: 0;
  left: 0;
}

.noUi-vertical .noUi-handle {
  margin: -8px 0 0 -3px;
}

.noUi-target[disabled] .noUi-base {
  background: #999999;
}

.noUi-target[disabled] .noUi-connect {
  background: #bbbbbb;
}

.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s, top 0.3s;
  transition: left 0.3s, top 0.3s;
}

.ui-spinner-input {
  height: 30px;
  margin: 0 !important;
  padding: 6px 24px 6px 12px;
}

.ui-spinner-input.spinner-left {
  padding: 6px 12px 6px 24px;
}

.ui-spinner {
  width: 100%;
}

.ui-spinner-input.spinner-left + .ui-spinner-button,
.ui-spinner-input.spinner-left + .ui-spinner-button + .ui-spinner-button {
  left: 0;
  right: auto;
}

.ui-spinner-down,
.ui-spinner-up {
  background: #739e73;
  border-radius: 0;
}

.ui-spinner-up:active,
.ui-spinner-up:focus,
.ui-spinner-up:hover {
  background: #5b835b;
}

.ui-spinner-down:active,
.ui-spinner-down:focus,
.ui-spinner-down:hover {
  background: #77021d;
}

.ui-spinner-down {
  background: #c2032f;
}

.ui-spinner-down:before,
.ui-spinner-up:before {
  color: #ffffff;
  content: "\f067";
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-top: 1px;
}

.ui-spinner-down:before {
  content: "\f068";
}

.ui-spinner-down > :first-child,
.ui-spinner-up > :first-child {
  display: none;
}

.ui-spinner-button {
  width: 19px;
}

.ui-spinner-input.spinner-both {
  padding: 6px 30px;
}

.ui-spinner-input.spinner-both + .ui-spinner-button + .ui-spinner-button {
  left: 0;
  right: auto;
}

.ui-spinner-input.spinner-both + .ui-spinner-button,
.ui-spinner-input.spinner-both + .ui-spinner-button + .ui-spinner-button {
  height: 30px;
  width: 25px;
}

.ui-spinner-input.spinner-both + .ui-spinner-up + .ui-spinner-down:before,
.ui-spinner-input.spinner-both + .ui-spinner-up:before {
  margin-top: 8px;
}

.ui-dialog {
  border: 1px solid #000000;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.widget-header > :first-child {
  margin: 13px 0;
}

.ui-dialog .ui-dialog-titlebar {
  background: #ffffff;
  border-bottom-color: #eeeeee;
  padding: 0 10px;
}

.ui-dialog .ui-dialog-title {
  margin: 0;
}

.ui-dialog .ui-dialog-titlebar-close {
  margin-right: 4px;
  margin-top: -16px;
}

.ui-dialog-titlebar-close:before {
  content: "\f00d";
  font-family: FontAwesome, sans-serif;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0 0.4em 0 0;
}

.ui-dialog .ui-dialog-buttonpane {
  border-top: 1px solid #eeeeee;
  margin-top: 13px;
  padding: 19px 15px 20px;
  text-align: right;
}

.ui-autocomplete {
  z-index: 905 !important;
}

.the-price {
  background-color: rgba(220, 220, 220, 0.17);
  box-shadow: 0 1px 0 #dcdcdc, inset 0 1px 0 #ffffff;
  margin: 0;
  padding: 20px;
}

.the-price h1 {
  line-height: 1em;
  margin: 0;
  padding: 0;
}

.subscript {
  color: #999999;
  font-size: 21px;
}

.ribbon {
  position: absolute;
  right: 9px;
  top: -4px;
}

.pricing-big {
  border: none !important;
}

.pricing-big .panel-heading {
  border-radius: 5px 5px 0 0;
}

.pricing-big .panel-title {
  border-radius: 5px 5px 0 0;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 20px 0;
  text-align: center;
  text-transform: capitalize;
}

.pricing-big .the-price {
  background: #333333;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  padding: 20px 0;
  text-align: center;
}

.pricing-big .subscript {
  color: #999999;
  font-size: 18px;
  margin-left: 5px;
}

.price-features {
  background: #fafafa;
  font-size: 13px;
  min-height: 230px;
  padding: 20px 15px;
}

.price-features li + li {
  margin-top: 10px;
}

.pricing-big .panel-footer {
  border-radius: 0 0 5px 5px;
}

.pricing-big .panel-footer .btn {
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 0;
}

.pricing-big .panel-footer .btn span {
  font-style: italic;
  font-weight: 400;
}

.pricing-big .panel-footer {
  background-color: #f2f2f2 !important;
}

.pricing-big .panel-footer > div {
  display: block;
  font-size: 13px;
  padding: 15px 0 10px;
}

.pricing-big table {
  background: #fafafa;
  height: 230px;
  padding: 20px 15px;
  text-align: left;
}

.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #3276b1;
  height: 2px;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
  z-index: 2000;
}

.pace .pace-progress-inner {
  box-shadow: 0 0 10px #2299dd, 0 0 5px #2299dd;
  display: block;
  height: 100%;
  opacity: 1;
  position: absolute;
  right: 0;
  -webkit-transform: rotate(3deg) translate(0, -4px);
  -moz-transform: rotate(3deg) translate(0, -4px);
  -ms-transform: rotate(3deg) translate(0, -4px);
  -o-transform: rotate(3deg) translate(0, -4px);
  transform: rotate(3deg) translate(0, -4px);
  width: 100px;
}

.pace .pace-activity {
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
  border: solid 2px transparent;
  border-left-color: #2299dd;
  border-radius: 10px;
  border-top-color: #2299dd;
  display: block;
  height: 14px;
  position: fixed;
  right: 40px;
  top: 63px;
  width: 14px;
  z-index: 2000;
}

@-webkit-keyframes pace-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes pace-spinner {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes pace-spinner {
  0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes pace-spinner {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#chat-container *,
#chat-container :after,
#chat-container :before {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#chat-container input[type=text] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#chat-container {
  background: #ffffff;
  border-left: 1px solid #cdcecf;
  height: 270px;
  position: absolute;
  right: -251px;
  top: 0;
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
  width: 250px;
  z-index: 2;
}

#chat-container:hover,
#chat-container:hover .chat-list-open-close {
  border-color: #a7a7a7;
}

#chat-container.open {
  right: 0;
  top: 0;
}

#chat-container .chat-list-open-close {
  background: #f2f4f8;
  border: 1px solid #cdcecf;
  border-radius: 50% 0 0 50%;
  border-right: 1px solid #f2f4f8 !important;
  -moz-box-shadow: inset 0 0.2em 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0.2em 0 rgba(0, 0, 0, 0.05);
  color: #868686;
  cursor: pointer;
  display: block;
  font-size: 21px;
  height: 25px;
  left: -32px;
  line-height: 22px;
  padding: 3px 1px 3px 5px;
  position: absolute;
  text-align: center;
  top: 7%;
  width: 25px;
}

#chat-container .chat-list-open-close b {
  background: #ed1c24;
  border: 1px solid #ffffff;
  border-radius: 3px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 400;
  height: 10px;
  line-height: 9px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 3px;
  vertical-align: middle;
  width: 10px;
}

#chat-container.open .chat-list-open-close i:before {
  content: "\f00d" !important;
}

#chat-container.open .chat-list-open-close b {
  display: none;
}

#chat-container .chat-list-body {
  background: #f2f4f8;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 217px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0;
}

#chat-container #chat-users {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

#chat-container #chat-users li {
  margin-bottom: 3px;
  margin-left: 5px;
}

#chat-container #chat-users li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #3d3d3d;
  display: block;
  font-size: 13px;
  line-height: 33px;
  padding: 3px 8px 3px 3px;
  text-decoration: none !important;
  vertical-align: middle;
}

#chat-container #chat-users li a:hover {
  background: #e0e4ee;
}

#chat-container #chat-users li a img {
  height: auto;
  margin-right: 10px;
  width: 33px;
}

#chat-container #chat-users li a i {
  color: #acacac;
  font-size: 8px;
  font-style: normal;
  line-height: 34px;
}

#chat-container #chat-users li a i.last-online {
  font-size: 12px;
  letter-spacing: -1px;
}

#chat-container .chat-list-footer {
  border-top: 1px solid #cccccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  padding: 10px;
}

#chat-container .chat-list-footer input[type=text] {
  border: 1px solid #bababa !important;
}

#chat-container .control-group {
  padding: 0;
}

.chat-body {
  background: #fafafa;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #fafafa 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #fafafa 0, #ffffff 100%);
  background: -o-linear-gradient(top, #fafafa 0, #ffffff 100%);
  background: -ms-linear-gradient(top, #fafafa 0, #ffffff 100%);
  background: linear-gradient(to bottom, #f5fcff 0, #ffffff 100%);
  border: 1px solid #ffffff;
  border-top: none;
  -moz-box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.04);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.04);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fafafa', endColorstr='#ffffff', GradientType=0);
  height: 270px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
}

.chat-body ul {
  margin: 0;
  padding: 0;
}

.chat-body li.message {
  display: block;
  margin: 20px 20px 0;
  position: relative;
}

.chat-body li:first-child {
  margin-top: 10px;
}

.chat-body li.message img {
  border-left: 4px solid #ffffff;
  display: inline-block;
  position: absolute;
}

.chat-body li.message img.online {
  border-left-color: #00a300;
}

.chat-body li.message img.offline {
  border-left-color: #dddddd;
}

.chat-body li.message img.busy {
  border-left-color: #a90329;
}

.chat-body li.message img.away {
  border-left-color: #ffc40d;
}

.chat-body li.message .message-text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  line-height: normal;
  margin-left: 65px;
  padding: 0;
  vertical-align: top;
}

.chat-body li.message .message-text time {
  color: #afafaf;
  font-size: 10px;
  line-height: 10px;
  position: absolute;
  right: 0;
  top: 1px;
}

.chat-body li.message .message-text .chat-file:nth-child(3) {
  margin-top: 15px;
}

.chat-body li.message .message-text .chat-file {
  background: rgba(0, 0, 0, 0.05);
  border: 1px dotted #dddddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  margin: 3px 0;
  padding: 4px;
  text-align: right;
}

.chat-body li.message .message-text .chat-file.row-fluid [class*=span] {
  min-height: 10px !important;
}

.chat-body li.message .message-text .chat-file b {
  font-style: italic;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 250px;
}

.chat-body li.message .message-text a.username {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 14px;
  margin-bottom: 4px;
  text-decoration: none !important;
  vertical-align: top;
}

.profile-message {
  background: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: auto !important;
  overflow: hidden;
}

.profile-message li.message.message-reply {
  background: #f7f7f7;
  margin-left: 85px !important;
  padding: 10px;
}

.profile-message li.message.message-reply img {
  width: 35px !important;
}

.profile-message li.message.message-reply .message-text {
  margin-left: 45px !important;
}

.profile-message .wall-comment-reply {
  margin-bottom: 20px;
  margin-left: 85px;
}

.chat-footer {
  background: rgba(248, 248, 248, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px 15px;
  position: relative;
}

.textarea-div {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-bottom: none;
  margin: 10px 0 0;
}

.typearea {
  border-bottom: 1px solid #eeeeee;
  cursor: text;
  max-height: 90px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 5px 25px 5px 5px;
  position: relative;
}

.typearea textarea {
  border-color: transparent !important;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  min-height: 61px;
  outline: 0;
  overflow: hidden;
  padding: 0;
  resize: none;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  transition: height 0.2s;
  width: 100%;
}

#app-page textarea.clone {
  position: absolute;
  visibility: hidden;
}

.textarea-controls {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-top: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 43px;
  line-height: 33px;
  overflow: hidden;
  padding: 5px;
}

.textarea-controls > label {
  margin: 3px 10px 0;
}

.textarea-controls .smart-form .checkbox {
  padding-left: 22px !important;
}

@media (min-width: 768px) and (max-width: 880px) {
  .chat-body li.message .message-text .chat-file b {
    width: 150px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .chat-body li.message .message-text .chat-file b {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .chat-body li.message .message-text .chat-file b {
    width: 150px;
  }
}

.smart-form *,
.smart-form :after,
.smart-form :before {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0;
  padding: 0;
}

.smart-form .btn {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.smart-form .checkbox + .checkbox,
.smart-form .radio + .radio {
  margin-top: 0;
}

.smart-form footer .btn {
  cursor: pointer;
  float: right;
  font: 300 15px/29px 'Open Sans', Helvetica, Arial, sans-serif;
  height: 31px;
  margin: 10px 0 0 5px;
  padding: 0 22px;
}

.smart-form legend {
  padding-top: 15px;
}

.smart-form {
  color: #666666;
  margin: 0;
  outline: 0;
  position: relative;
}

.smart-form header {
  background: #ffffff;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  color: #232323;
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin: 10px 14px 0;
  padding: 8px 0;
}

.smart-form fieldset {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: block;
  padding: 25px 14px 5px;
  position: relative;
}

.smart-form fieldset + fieldset {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.smart-form section {
  margin-bottom: 15px;
  position: relative;
}

.smart-form footer {
  background: rgba(248, 248, 248, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  padding: 7px 14px 15px;
}

.smart-form footer:after {
  clear: both;
  content: '';
  display: table;
}

.smart-form .label {
  color: #333333;
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 6px;
  text-align: left;
  white-space: normal;
}

.smart-form .label.col {
  margin: 0;
  padding-top: 7px;
}

.note,
.smart-form .note {
  color: #999999;
  font-size: 11px;
  line-height: 15px;
  margin-top: 6px;
  padding: 0 1px;
}

.smart-form .note a {
  font-size: 13px;
}

.smart-form .button,
.smart-form .checkbox,
.smart-form .input,
.smart-form .radio,
.smart-form .select,
.smart-form .textarea,
.smart-form .toggle {
  display: block;
  font-weight: 400;
  position: relative;
}

.smart-form .input input,
.smart-form .select select,
.smart-form .textarea textarea {
  background: #ffffff;
  border: 1px solid;
  border-radius: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #404040;
  display: block;
  font: 16px 'Open Sans', Helvetica, Arial, sans-serif;
  height: 32px;
  line-height: 32px;
  outline: 0;
  padding: 5px 10px;
  width: 100%;
}

.smart-form .input-file .button {
  float: none;
  font-size: 13px;
  height: 22px;
  line-height: 22px;
  margin: 0;
  padding: 0 14px;
  position: absolute;
  right: 4px;
  top: 4px;
}

.smart-form .input-file .button:hover {
  box-shadow: none;
}

.smart-form .input-file .button input {
  cursor: pointer;
  font-size: 30px;
  opacity: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.smart-form .select i {
  background: #ffffff;
  box-shadow: 0 0 0 9px #ffffff;
  height: 11px;
  position: absolute;
  right: 11px;
  top: 10px;
  width: 5px;
}

.smart-form .select i:after,
.smart-form .select i:before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: '';
  position: absolute;
  right: 0;
}

.smart-form .select i:after {
  border-top: 4px solid #404040;
  bottom: 0;
}

.smart-form .select i:before {
  border-bottom: 4px solid #404040;
  top: 0;
}

.smart-form .select-multiple select {
  height: auto;
}

.smart-form .textarea textarea {
  height: auto;
  resize: none;
}

.smart-form .textarea-resizable textarea {
  resize: vertical;
}

.smart-form .textarea-expandable textarea {
  height: 31px;
}

.smart-form .textarea-expandable textarea:focus {
  height: auto;
}

.smart-form .checkbox,
.smart-form .radio {
  color: #404040;
  cursor: pointer;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 4px;
  padding-left: 25px;
}

.smart-form .checkbox:last-child,
.smart-form .radio:last-child {
  margin-bottom: 0;
}

.smart-form .checkbox input,
.smart-form .radio input {
  left: -9999px;
  position: absolute;
}

.smart-form .checkbox i,
.smart-form .radio i {
  background: #ffffff;
  border: 1px solid;
  display: block;
  height: 17px;
  left: 0;
  outline: 0;
  position: absolute;
  top: 3px;
  width: 17px;
}

.smart-form .radio i {
  border-radius: 50%;
}

.smart-form .checkbox input + i:after,
.smart-form .radio input + i:after {
  opacity: 0;
  position: absolute;
  -o-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.smart-form .radio input + i:after {
  border-radius: 50%;
  content: '';
  height: 9px;
  left: 4px;
  top: 4px;
  width: 9px;
}

.smart-form .checkbox input + i:after {
  content: '\f00c';
  font: 400 16px/19px FontAwesome;
  height: 15px;
  left: 1px;
  text-align: center;
  top: -1px;
  width: 15px;
}

.smart-form .checkbox input:checked:hover + i:after {
  content: '\f00d';
}

.smart-form .checkbox input:checked:disabled:hover + i:after {
  content: '\f00c';
}

.smart-form .checkbox input:checked + i:after,
.smart-form .radio input:checked + i:after {
  opacity: 1;
}

.smart-form .inline-group {
  margin: 0 -15px -4px 0;
}

.smart-form .inline-group:after {
  clear: both;
  content: '';
  display: table;
}

.smart-form .inline-group .checkbox,
.smart-form .inline-group .radio {
  float: left;
  margin-right: 30px;
}

.smart-form .inline-group .checkbox:last-child,
.smart-form .inline-group .radio:last-child {
  margin-bottom: 4px;
}

.smart-form .toggle {
  color: #404040;
  cursor: pointer;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 4px;
  padding-right: 61px;
}

.smart-form .toggle:last-child {
  margin-bottom: 0;
}

.smart-form .toggle input {
  left: -9999px;
  position: absolute;
}

.smart-form .toggle i {
  background: #ffffff;
  border: 1px solid;
  border-radius: 12px;
  content: '';
  display: block;
  height: 17px;
  position: absolute;
  right: 0;
  top: 4px;
  width: 49px;
}

.smart-form .toggle i:after {
  color: #5f5f5f;
  content: attr(data-swchoff-text);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  left: 8px;
  line-height: 13px;
  position: absolute;
  right: 8px;
  text-align: left;
  top: 2px;
}

.smart-form .toggle i:before {
  border-radius: 50%;
  content: '';
  display: block;
  height: 9px;
  opacity: 1;
  position: absolute;
  right: 4px;
  top: 4px;
  -o-transition: right 0.2s;
  -moz-transition: right 0.2s;
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
  width: 9px;
  z-index: 1;
}

.smart-form .toggle input:checked + i:after {
  content: attr(data-swchon-text);
  text-align: right;
}

.smart-form .toggle input:checked + i:before {
  right: 36px;
}

.smart-form .rating {
  color: #404040;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 4px;
}

.smart-form .rating:last-child {
  margin-bottom: 0;
}

.smart-form .rating input {
  left: -9999px;
  position: absolute;
}

.smart-form .rating label {
  cursor: pointer;
  display: block;
  float: right;
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  margin-top: 5px;
  padding: 0 2px;
}

.smart-form .button {
  border: 0;
  color: #ffffff;
  cursor: pointer;
  float: right;
  font: 300 15px/31px 'Open Sans', Helvetica, Arial, sans-serif;
  height: 31px;
  margin: 10px 0 0 5px;
  outline: 0;
  overflow: hidden;
  padding: 0 25px;
  text-decoration: none;
}

.smart-form .icon-append,
.smart-form .icon-prepend {
  font-size: 14px;
  height: 22px;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 5px;
  width: 22px;
}

.smart-form .icon-append {
  border-left: 1px solid;
  padding-left: 3px;
  right: 5px;
}

.smart-form .icon-prepend {
  border-right: 1px solid;
  left: 5px;
  padding-right: 3px;
}

.smart-form .input .icon-prepend + input,
.smart-form .textarea .icon-prepend + textarea {
  padding-left: 37px;
}

.smart-form .input .icon-append + input,
.smart-form .textarea .icon-append + textarea {
  padding-right: 37px;
}

.smart-form .input .icon-prepend + .icon-append + input,
.smart-form .textarea .icon-prepend + .icon-append + textarea {
  padding-left: 37px;
}

.smart-form .row {
  margin: 0 -15px;
}

.smart-form .row:after {
  clear: both;
  content: '';
  display: table;
}

.smart-form .col {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.smart-form .col-1 {
  width: 8.33%;
}

.smart-form .col-2 {
  width: 16.66%;
}

.smart-form .col-3 {
  width: 25%;
}

.smart-form .col-4 {
  width: 33.33%;
}

.smart-form .col-5 {
  width: 41.66%;
}

.smart-form .col-6 {
  width: 50%;
}

.smart-form .col-8 {
  width: 66.67%;
}

.smart-form .col-9 {
  width: 75%;
}

.smart-form .col-10 {
  width: 83.33%;
}

@media screen and (max-width: 600px) {
  .smart-form .col {
    float: none;
    width: 100%;
  }
}

.smart-form .select select {
  padding: 5px;
}

.smart-form .tooltip {
  background: rgba(66, 134, 244, 0.9);
  color: #4286f4;
  font-size: 20px;
  font-weight: 300;
  left: -9999px;
  line-height: 24px;
  opacity: 0;
  padding: 2px 8px 3px;
  position: absolute;
  -o-transition: margin 0.3s, opacity 0.3s;
  -moz-transition: margin 0.3s, opacity 0.3s;
  -webkit-transition: margin 0.3s, opacity 0.3s;
  transition: margin 0.3s, opacity 0.3s;
  z-index: 99999;
}

.smart-form .tooltip:after {
  background-color: #4286f4;
  content: '';
  font-size: 24px;
  position: absolute;
}

.smart-form .input input:focus + .tooltip,
.smart-form .textarea textarea:focus + .tooltip {
  opacity: 1;
}

.smart-form .tooltip-top-right {
  bottom: 100%;
  margin-bottom: 15px;
}

.smart-form .tooltip-top-right:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  right: 11px;
  top: 100%;
}

.smart-form .input input:focus + .tooltip-top-right,
.smart-form .textarea textarea:focus + .tooltip-top-right {
  left: auto;
  margin-bottom: 5px;
  right: 0;
}

.smart-form .tooltip-top-left {
  bottom: 100%;
  margin-bottom: 15px;
}

.smart-form .tooltip-top-left:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  left: 11px;
  top: 100%;
}

.smart-form .input input:focus + .tooltip-top-left,
.smart-form .textarea textarea:focus + .tooltip-top-left {
  left: 0;
  margin-bottom: 5px;
  right: auto;
}

.smart-form .tooltip-right {
  margin-left: 15px;
  top: 4px;
  white-space: nowrap;
}

.smart-form .tooltip-right:after {
  border-bottom: 4px solid transparent;
  border-right: 4px solid rgba(0, 0, 0, 0.9);
  border-top: 4px solid transparent;
  right: 100%;
  top: 6px;
}

.smart-form .input input:focus + .tooltip-right,
.smart-form .textarea textarea:focus + .tooltip-right {
  left: 100%;
  margin-left: 5px;
}

.smart-form .tooltip-left {
  margin-right: 15px;
  top: 4px;
  white-space: nowrap;
}

.smart-form .tooltip-left:after {
  border-bottom: 4px solid transparent;
  border-left: 4px solid rgba(0, 0, 0, 0.9);
  border-top: 4px solid transparent;
  left: 100%;
  top: 6px;
}

.smart-form .input input:focus + .tooltip-left,
.smart-form .textarea textarea:focus + .tooltip-left {
  left: auto;
  margin-right: 5px;
  right: 100%;
}

.smart-form .tooltip-bottom-right {
  margin-top: 15px;
  top: 100%;
}

.smart-form .tooltip-bottom-right:after {
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: 100%;
  right: 11px;
}

.smart-form .input input:focus + .tooltip-bottom-right,
.smart-form .textarea textarea:focus + .tooltip-bottom-right {
  left: auto;
  margin-top: 5px;
  right: 0;
}

.smart-form .tooltip-bottom-left {
  margin-top: 15px;
  top: 100%;
}

.smart-form .tooltip-bottom-left:after {
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: 100%;
  left: 11px;
}

.smart-form .input input:focus + .tooltip-bottom-left,
.smart-form .textarea textarea:focus + .tooltip-bottom-left {
  left: 0;
  margin-top: 5px;
  right: auto;
}

.smart-form .checkbox i,
.smart-form .icon-append,
.smart-form .icon-prepend,
.smart-form .input input,
.smart-form .radio i,
.smart-form .select select,
.smart-form .textarea textarea,
.smart-form .toggle i {
  border-color: #bdbdbd;
  -o-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.smart-form .toggle i:before {
  background-color: #3276b1;
}

.smart-form .rating label {
  color: #cccccc;
  -o-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.smart-form .button {
  background-color: #3276b1;
  opacity: 0.8;
  -o-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.smart-form .button.button-secondary {
  background-color: #b3b3b3;
}

.smart-form .icon-append,
.smart-form .icon-prepend {
  color: #a2a2a2;
}

.smart-form .checkbox:hover i,
.smart-form .input:hover input,
.smart-form .radio:hover i,
.smart-form .select:hover select,
.smart-form .textarea:hover textarea,
.smart-form .toggle:hover i {
  border-color: #5d98cc;
}

.smart-form .rating input + label:hover,
.smart-form .rating input + label:hover ~ label {
  color: #3276b1;
}

.smart-form .button:hover {
  opacity: 1;
}

.smart-form .checkbox:hover i,
.smart-form .radio:hover i,
.smart-form .toggle:hover i {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.smart-form .checkbox:active i,
.smart-form .radio:active i,
.smart-form .toggle:active i {
  background: #f0f0f0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.smart-form .checkbox input:focus + i,
.smart-form .input input:focus,
.smart-form .radio input:focus + i,
.smart-form .select select:focus,
.smart-form .textarea textarea:focus,
.smart-form .toggle input:focus + i {
  border-color: #3276b1;
}

.smart-form .radio input + i:after {
  background-color: #3276b1;
}

.smart-form .checkbox input + i:after {
  color: #3276b1;
}

.smart-form .checkbox input:checked + i,
.smart-form .radio input:checked + i,
.smart-form .toggle input:checked + i {
  border-color: #3276b1;
}

.smart-form .rating input:checked ~ label {
  color: #3276b1;
}

.smart-form .checkbox.state-error i,
.smart-form .radio.state-error i,
.smart-form .state-error input,
.smart-form .state-error select,
.smart-form .state-error textarea,
.smart-form .toggle.state-error i {
  background: #fff0f0;
  border-color: #a90329;
}

.smart-form .toggle.state-error input:checked + i {
  background: #fff0f0;
}

.smart-form .state-error + em {
  color: #d56161;
  display: block;
  font-size: 11px;
  font-style: normal;
  line-height: 15px;
  margin-top: 6px;
  padding: 0 1px;
}

.smart-form .rating.state-error + em {
  margin-bottom: 4px;
  margin-top: -4px;
}

.smart-form .state-error select + i {
  background: #fff0f0;
  box-shadow: 0 0 0 9px #fff0f0;
}

.state-error .icon-append,
.state-error .icon-prepend {
  color: #ed1c24;
}

.smart-form .checkbox.state-success i,
.smart-form .radio.state-success i,
.smart-form .state-success input,
.smart-form .state-success select,
.smart-form .state-success textarea,
.smart-form .toggle.state-success i {
  background: #f0fff0;
  border-color: #7dc27d;
}

.smart-form .toggle.state-success input:checked + i {
  background: #f0fff0;
}

.smart-form .note-success {
  color: #6fb679;
}

.smart-form .state-success select + i {
  background: #f0fff0;
  box-shadow: 0 0 0 9px #f0fff0;
}

.smart-form .button.state-disabled,
.smart-form .checkbox.state-disabled,
.smart-form .input.state-disabled input,
.smart-form .radio.state-disabled,
.smart-form .select.state-disabled,
.smart-form .textarea.state-disabled,
.smart-form .toggle.state-disabled {
  cursor: default !important;
  opacity: 0.6 !important;
}

.smart-form .checkbox.state-disabled:hover i,
.smart-form .input.state-disabled:hover input,
.smart-form .radio.state-disabled:hover i,
.smart-form .select.state-disabled:hover select,
.smart-form .textarea.state-disabled:hover textarea,
.smart-form .toggle.state-disabled:hover i {
  border-color: #e5e5e5 !important;
}

.smart-form .state-disabled.checkbox input + i:after,
.smart-form .state-disabled.checkbox input:checked + i,
.smart-form .state-disabled.radio input + i:after,
.smart-form .state-disabled.radio input:checked + i,
.smart-form .state-disabled.toggle input:checked + i {
  border-color: #e5e5e5 !important;
  color: #333333 !important;
}

.smart-form .state-disabled.radio input + i:after {
  background-color: #333333;
}

.smart-form .message {
  color: #6fb679;
  display: none;
}

.smart-form .message i {
  border: 1px solid #6fb679;
  border-radius: 50%;
  display: block;
  font-size: 30px;
  height: 81px;
  line-height: 81px;
  margin: 0 auto 20px;
  width: 81px;
}

.smart-form.submitted fieldset,
.smart-form.submitted footer {
  display: none;
}

.smart-form.submitted .message {
  background: rgba(255, 255, 255, 0.9);
  display: block;
  font: 300 18px/27px 'Open Sans', Helvetica, Arial, sans-serif;
  padding: 25px 30px;
  text-align: center;
}

.smart-form .ui-widget-content .ui-spinner-input {
  border: 0;
  box-shadow: none !important;
  height: 29px;
  margin: 0;
}

.smart-form-modal {
  display: none;
  position: fixed;
  width: 400px;
  z-index: 1;
}

.smart-form-modal-overlay {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}

.ui-timepicker-div dl {
  text-align: left;
}

.ui-timepicker-div dl dt {
  clear: left;
  float: left;
  padding: 0 0 0 5px;
}

.ui-timepicker-div dl dd {
  margin: 17px 10px 12px 40%;
}

.ui-timepicker-div td {
  font-size: 90%;
}

.ui-tpicker-grid-label {
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
}

.ui-timepicker-rtl {
  direction: rtl;
}

.ui-timepicker-rtl dl {
  padding: 0 5px 0 0;
  text-align: right;
}

.ui-timepicker-rtl dl dt {
  clear: right;
  float: right;
}

.ui-timepicker-rtl dl dd {
  margin: 0 40% 10px 10px;
}

.smart-form input.input-lg {
  font-size: 17px;
  height: 44px;
  line-height: 1.33;
  padding: 10px 16px;
}

.smart-form input.input-sm {
  font-size: 12px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 10px;
}

.smart-form input.input-xs {
  font-size: 11px;
  height: 24px;
  line-height: 1.5;
  padding: 2px 10px;
}

.smart-form select.input-sm {
  font-size: 12px;
  height: 30px;
  line-height: 15px;
}

.smart-form select.input-sm + i {
  height: 10px;
}

.smart-form select.input-lg {
  font-size: 17px;
  height: 44px;
  line-height: 22px;
}

.smart-form select.input-lg + i {
  height: 11px;
  top: 17px;
}

.smart-form .checkbox input + input[type=hidden] + i:after {
  content: '\f00c';
  font: 400 16px/19px FontAwesome;
  height: 15px;
  left: 1px;
  text-align: center;
  top: -1px;
  width: 15px;
}

.smart-form .checkbox input:checked:hover + input[type=hidden] + i:after {
  content: '\f00d';
}

.smart-form .checkbox input:checked:disabled:hover + input[type=hidden] + i:after {
  content: '\f00c';
}

.smart-form .checkbox input:checked + input[type=hidden] + i:after {
  opacity: 1;
}

.smart-form .toggle input:checked + input[type=hidden] + i:after {
  content: attr(data-swchon-text);
  text-align: right;
}

.smart-form .toggle input:checked + input[type=hidden] + i:before {
  right: 36px;
}

.error-box {
  margin: 0 auto;
  max-width: 900px;
}

.error-text {
  color: #ffffff;
  font-size: 700%;
  font-weight: 400;
  letter-spacing: -4px;
  margin-bottom: 30px;
  text-shadow: 0 1px 0 #cccccc, 0 2px 0 #bfbfbf, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

.error-search {
  margin: 0 auto 20px;
  width: 300px;
}

.error-icon-shadow {
  text-shadow: 0 1px 0 #803838, 0 2px 0 #a85d5d, 0 3px 0 #b86565, 0 4px 0 #d86f6f, 0 5px 0 #b3a5a5, 0 6px 1px rgba(131, 51, 51, 0.1), 0 0 5px rgba(102, 30, 30, 0.1), 0 1px 3px rgba(95, 15, 15, 0.3), 0 3px 5px rgba(100, 23, 23, 0.2), 0 5px 10px rgba(114, 30, 30, 0.25), 0 10px 10px rgba(94, 15, 15, 0.2), 0 20px 20px rgba(121, 38, 38, 0.15);
}

.display-image {
  margin-right: 20px;
  margin-top: -60px;
}

.terms-body {
  max-height: 400px;
  overflow: auto;
}

#extr-page {
  background: #ffffff;
  overflow: visible;
}

#extr-page .container {
  border: none;
}

#extr-page #header {
  background: #f4f4f4 !important;
  border-bottom: 1px solid #eeeeee !important;
  height: 71px;
  margin: 0;
  min-height: 28px;
  overflow: hidden;
  padding: 0 30px;
}

#extr-page #main {
  padding-top: 20px;
}

#extr-page #header #logo {
  margin-left: 0;
  margin-top: 22px;
}

#extr-page #header #logo img {
  width: 137px;
}

#extr-page-header-space {
  display: block;
  float: right;
  line-height: 71px;
  text-align: right;
  vertical-align: middle;
}

#extr-page-header-space > :first-child {
  font-size: 13px;
  font-weight: 400;
  margin-right: 14px;
  vertical-align: -3px;
}

#extr-page-header-space .btn {
  font-weight: 700;
  text-transform: uppercase;
}

#extr-page-header-space > * {
  display: inline-block;
}

#extr-page #main {
  background: #ffffff;
  margin: 0;
}

#extr-page .hero {
  background: url(../images/gradient/login.png) no-repeat 0 137px;
  float: left;
  height: 360px;
  width: 100%;
}

#extr-page h4.paragraph-header {
  color: #565656;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 15px;
  width: 270px;
}

#extr-page h5.about-heading {
  color: #565656;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 5px;
}

#extr-page .login-header-big {
  font-weight: 400;
}

#extr-page .login-desc-box-l {
  min-height: 350px;
  width: 50%;
}

#extr-page .login-app-icons {
  margin-top: 90px;
  vertical-align: top;
  width: 300px;
}

@media (min-width: 768px) and (max-width: 880px) {
  #extr-page #header {
    padding: 0 5px !important;
  }
}

@media only screen and (min-width: 0) and (max-width: 679px) {
  #extr-page #header {
    padding: 0 5px !important;
  }

  #extr-page #header #logo img {
    width: 135px;
  }

  #extr-page #header #logo {
    margin-top: 22px;
  }
}

.dd {
  display: block;
  font-size: 13px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  max-width: 600px;
  padding: 0;
  position: relative;
}

.dd-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.dd-list .dd-list {
  padding-left: 30px;
}

.dd-collapsed .dd-list {
  display: none;
}

.dd-empty,
.dd-item,
.dd-placeholder {
  display: block;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  min-height: 20px;
  padding: 0;
  position: relative;
}

.dd-handle {
  background: #fbfbfb;
  border: 1px solid #cfcfcf;
  color: #333333;
  display: block;
  font-size: 15px;
  margin: 5px 0;
  padding: 7px 15px;
  text-decoration: none;
}

.dd-item > button {
  background: rgba(0, 0, 0, 0);
  border: 0;
  cursor: pointer;
  display: inline-block;
  float: left;
  font-family: FontAwesome, sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  height: 20px;
  line-height: 22px !important;
  margin: 7px 10px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: 100%;
  white-space: nowrap;
  width: 25px;
}

.dd-item > button:before {
  color: #0091d9;
  content: '\f055';
  display: block;
  position: absolute;
  text-align: center;
  text-indent: 0;
  width: 100%;
}

.dd-item > button[data-action=collapse]:before {
  color: #a90329;
  content: '\f056';
}

.dd-empty,
.dd-placeholder {
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5px 0;
  min-height: 30px;
  padding: 0;
}

.dd-empty {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
  background-image: -moz-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), -moz-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
  background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
  background-position: 0 0, 30px 30px;
  background-size: 60px 60px;
  border: 1px dashed #bbbbbb;
  min-height: 100px;
}

.dd-dragel {
  pointer-events: none;
  position: absolute;
  z-index: 9999;
}

.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}

.dd-dragel .dd-handle {
  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.nestable-lists {
  border: 0;
  border-bottom: 2px solid #bfbfbf;
  border-top: 2px solid #bfbfbf;
  clear: both;
  display: block;
  padding: 30px 0;
  width: 100%;
}

#nestable-menu {
  margin: 10px 0 20px;
  padding: 0;
}

#nestable-output,
#nestable2-output {
  padding: 5px;
  width: 100%;
}

@media only screen and (min-width: 700px) {
  .dd {
    float: left;
    width: 100%;
  }

  .dd + .dd {
    margin-left: 2%;
  }
}

.dd-hover > .dd-handle {
  background: #2ea8e5 !important;
}

.dd3-content {
  background: #fbfbfb;
  border: 1px solid #cfcfcf;
  color: #333333;
  display: block;
  font-size: 15px;
  margin: 5px 0;
  padding: 6px 10px 8px 40px;
  text-decoration: none;
}

.dd3-content:hover {
  background: #ffffff;
  color: #2ea8e5;
}

.dd-dragel > .dd3-item > .dd3-content {
  margin: 0;
}

.dd3-item > button {
  margin-left: 38px;
}

.dd3-handle {
  background: #bfbfbf;
  background: -webkit-linear-gradient(top, #dddddd 0, #bbbbbb 100%);
  background: -moz-linear-gradient(top, #dddddd 0, #bbbbbb 100%);
  background: linear-gradient(top, #dddddd 0, #bbbbbb 100%);
  border: 1px solid #aaaaaa;
  cursor: move;
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  left: 0;
  line-height: 1;
  margin: 0;
  overflow: hidden;
  padding: 8px 15px;
  position: absolute;
  text-indent: 100%;
  top: 0;
  white-space: nowrap;
  width: 30px;
}

.dd3-handle:before {
  color: #818181;
  content: '\f0c9';
  display: block;
  font-weight: 400;
  left: 0;
  line-height: 28px;
  position: absolute;
  text-align: center;
  text-indent: 0;
  top: 3px;
  width: 100%;
}

.dd3-handle:hover:before {
  color: #c27616;
}

.dd-handle:hover,
.dd-handle:hover + .dd-list .dd-handle {
  background: #fddfb3 !important;
  border: 1px solid #faa937;
  color: #333333 !important;
}

.dd-handle > span {
  color: #777777;
  font-size: 13px;
}

.dd-dragel > .dd-item > .dd-handle {
  border-left-width: 4px;
}

.dd-dragel > li.dd-item.dd3-item {
  left: 10px;
  position: relative;
  top: 10px;
  z-index: 999;
}

#calendar-container {
  position: relative;
}

.fc table,
html .fc {
  font-size: 12px;
}

.dt-header.calender-spacer {
  display: block;
  height: 46px;
}

.jarviswidget #calendar {
  margin-top: -18px;
}

.fc-widget-content,
.fc-widget-header {
  border-right: none;
}

#app-page tr td.fc-first,
tr.fc-first th.fc-first {
  border-left: none;
}

#app-page tr.fc-last td {
  border-bottom: none;
}

#app-page .jarviswidget .fc-header-title h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  margin-left: 10px;
  margin-top: -12px;
  text-shadow: 0 1px 0 #ffffff;
}

.fc-event-time,
.fc-event-title {
  box-sizing: border-box;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  padding: 3px 0 2px 3px;
}

#calendar-buttons {
  position: absolute;
  right: 14px;
  top: 5px;
}

.dropzone,
td.fc-other-month {
  background-color: #fafcfd;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.25, rgba(0, 0, 0, 0.03)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(0, 0, 0, 0.03)), color-stop(0.75, rgba(0, 0, 0, 0.03)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, transparent 75%, transparent);
  background-size: 16px 16px;
}

.fc-corner-right .fc-event-inner {
  padding-right: 15px;
}

.btn-select-tick i {
  display: none;
}

.btn-select-tick .btn:hover i {
  display: block;
  opacity: 0.3;
}

.btn-select-tick .active i {
  display: block;
  opacity: 1 !important;
}

#external-events > li {
  display: inline-block;
  margin: 6px 4px 6px 0;
}

#external-events > li > :first-child {
  cursor: move;
  display: block;
  padding: 5px 10px 10px;
}

#external-events > li > :first-child:after {
  color: #ffffff;
  color: rgba(255, 255, 255, 0.7);
  content: attr(data-description);
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 0;
  margin: 7px 0;
  text-transform: lowercase;
}

.table-wrap {
  overflow: auto;
}

.inbox-body {
  position: relative;
}

.inbox-body .table-wrap {
  background: #ffffff;
  margin-left: 200px;
  min-height: 500px;
  overflow-x: hidden;
  padding: 10px 14px 7px;
  position: relative;
}

.desktop-detected .inbox-body .table-wrap {
  min-height: 989px;
}

.desktop-detected #inbox-content.no-content-padding {
  margin-bottom: -10px;
}

.inbox-body.no-content-padding {
  background: #ffffff;
  margin-top: 0;
  overflow: hidden;
}

.inbox-nav-bar {
  background: #ffffff;
  height: 70px;
  margin-bottom: 0;
  padding: 20px 14px;
}

.inbox-nav-bar .page-title {
  display: inline-block;
  line-height: 33px;
  margin: 0;
  vertical-align: middle;
  width: 196px;
}

.inbox-footer {
  bottom: -53px;
  position: absolute;
}

.inbox-footer .btn-group,
.inbox-paging {
  margin-left: 10px;
}

#inbox-table {
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top: none;
  font-size: 13px;
}

#inbox-table tbody tr:hover {
  background: #e4e4e4;
  cursor: pointer;
}

#inbox-table tr td {
  border-left: none;
  border-right: none;
  line-height: 26px;
  padding: 6px 4px 7px !important;
}

#inbox-table .inbox-table-icon {
  padding-left: 15px !important;
}

#inbox-table tbody tr th {
  overflow: hidden;
}

#inbox-table.table tbody > tr > td {
  border-color: #ffffff !important;
}

#inbox-table .checkbox,
#inbox-table .radio {
  margin-bottom: 0;
  margin-top: -1px;
}

.inbox-data-attachment,
.inbox-table-icon {
  padding-left: 12px !important;
  padding-right: 0 !important;
  text-align: left;
  width: 28px;
}

.inbox-data-from {
  width: 200px;
}

.inbox-data-from > :first-child {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
}

.inbox-data-date {
  padding-left: 7px !important;
  padding-right: 0 !important;
  width: 80px;
}

.inbox-data-message > :first-child {
  color: #8a8a8a;
  height: 27px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.inbox-data-message > :first-child span {
  color: #111111;
}

.inbox-data-message > :first-child span.label {
  color: #ffffff;
}

.inbox-data-message > :first-child > :first-child:after {
  content: " - ";
}

.unread td {
  background: #ffffff;
}

.unread .inbox-data-date > :first-child,
.unread .inbox-data-from > :first-child,
.unread .inbox-data-message > :first-child > :first-child {
  font-weight: 700;
}

tr.highlight td,
tr.unread.highlight td {
  background: #ffffcc !important;
  color: #333333;
}

.inbox-checkbox-triggered {
  display: inline-block;
}

.inbox-checkbox-triggered > .btn-group {
  margin-right: 10px;
}

.inbox-checkbox-triggered > .btn-group .btn {
  padding-left: 14px;
  padding-right: 14px;
}

.inbox-side-bar {
  background: #ffffff;
  display: block;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 10px 14px;
  position: absolute;
  width: 200px;
  z-index: 1;
}

.inbox-side-bar::-webkit-scrollbar {
  width: 0 !important;
}

.inbox-side-bar h6 {
  color: #838383;
  display: block;
  font-size: 11px;
  font-weight: 400;
  padding: 0 15px;
  text-transform: uppercase;
}

.inbox-side-bar h6 a {
  font-size: 14px;
  margin-top: -2px;
}

.inbox-side-bar h6 .tooltip {
  text-transform: none !important;
}

.inbox-side-bar > .btn {
  margin-bottom: 35px;
}

.inbox-side-bar .input-group {
  margin-bottom: 25px;
}

#compose-mail-mini {
  margin-left: 4px;
}

.inbox-space {
  display: block;
  width: 185px;
}

.inbox-space > .progress {
  margin-top: 5px;
}

.inbox-menu-lg {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.inbox-menu-lg li a {
  color: #333333;
  display: block;
  font-size: 13px;
  padding: 6px 15px 7px;
}

.inbox-menu-lg li {
  display: block;
  width: 100%;
}

.inbox-menu-lg li a:hover {
  background: #f4f4f4;
  text-decoration: none;
}

.inbox-menu-lg li.active a {
  background: #f0f0f0;
  border-bottom: 1px solid #e7e7e7;
  color: #3276b1;
  font-weight: 700;
}

.inbox-menu-sm {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.inbox-menu-sm li a {
  color: #333333;
  display: block;
  font-size: 13px;
  padding: 8px 15px 10px;
}

.inbox-menu-sm li {
  display: block;
  width: 100%;
}

.inbox-menu-sm li a:hover {
  background: #f4f4f4;
  text-decoration: none;
}

.inbox-menu-sm li.active a {
  background: #f0f0f0;
  border-bottom: 1px solid #e7e7e7;
  color: #3276b1;
  font-weight: 700;
}

.email-open-header {
  border-bottom: 1px solid #bfbfbf;
  border-top: 1px solid #eeeeee;
  font-size: 20px;
  margin: -10px 0 0 0;
  padding: 15px 3px;
}

.email-open-header > span {
  background: #acacac;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 33px;
  padding: 3px 5px;
  text-transform: uppercase;
  vertical-align: middle;
}

.inbox-info-bar {
  border-bottom: 1px solid #bfbfbf;
  padding: 10px 0;
}

.inbox-info-bar img {
  border-left: 3px solid #ffffff;
  display: inline-block;
  height: auto;
  margin-left: 2px;
  margin-right: 7px;
  vertical-align: middle;
  width: 35px;
}

.inbox-download,
.inbox-message {
  border-bottom: 1px solid #bfbfbf;
  padding: 15px 4px;
}

.inbox-download-list {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
}

.inbox-download-list li {
  display: inline-block;
  margin: 0 5px 0 0;
  vertical-align: top;
}

.inbox-download-list li > :first-child {
  margin-bottom: 0;
  overflow: hidden;
  width: 150px;
}

.inbox-download-list li > :first-child:hover {
  background: #ffffff;
  border-color: #c0c0c0;
}

.inbox-download-list li > :first-child > :first-child {
  color: #d6d6d6;
  display: block;
  text-align: center;
}

.inbox-download-list li > :first-child > :first-child > .fa {
  font-size: 150px;
}

.inbox-download-list li > :first-child > :first-child > img {
  max-width: 120px;
}

.inbox-compose-footer {
  background: #f5f5f5;
  border-bottom: 1px solid #a9a9a9;
  padding: 10px;
}

.inbox-compose-footer,
.inbox-download,
.inbox-info-bar,
.inbox-message {
  margin-right: 240px;
  position: relative;
}

.email-infobox {
  border-bottom: 1px solid #bfbfbf;
  display: block;
  padding-bottom: 0;
  padding-top: 15px;
  position: absolute;
  right: 15px;
  top: 65px;
  width: 180px;
}

.inbox-info-bar .form-group {
  margin: 0;
}

.inbox-info-bar .form-group input,
.inbox-info-bar .select2-container-multi .select2-choices {
  border-color: #ffffff !important;
}

.inbox-info-bar .select2-choices > div {
  display: none;
}

.inbox-info-bar .col-md-1,
.inbox-info-bar .col-md-11 {
  padding-left: 0;
  padding-right: 0;
}

.fileinput {
  padding-top: 3px;
}

.hidden {
  display: none;
}

.inbox-info-bar em {
  font-style: normal;
  position: absolute;
  right: 20px;
  text-align: right;
  top: 6px;
}

.email-reply-text > div {
  border-left: 1px solid #d6d6d6;
  color: #a9a9a9;
  margin-left: 50px;
  padding-left: 10px;
}

.inbox-body .note-editor .note-editable {
  height: 100% !important;
}

.email-reply-text > :first-child {
  padding-left: 45px;
}

@media (max-width: 1280px) {
  .inbox-compose-footer,
  .inbox-info-bar,
  .inbox-message {
    margin-right: 0;
  }

  .email-infobox {
    display: none;
  }
}

@media (max-width: 1024px) {
  .inbox-side-bar {
    display: none !important;
  }

  .inbox-body .table-wrap {
    margin-left: 0 !important;
  }

  .inbox-info-bar .col-md-1,
  .inbox-info-bar .col-md-11 {
    padding-left: 26px;
    padding-right: 26px;
  }
}

#inbox-content .note-insert,
#inbox-content [data-event=codeview],
#inbox-content [data-event=showHelpDialog] {
  display: none !important;
}

#inbox-content [data-event=fullscreen] {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

#inbox-content .note-toolbar .btn-sm {
  font-size: 14px;
  padding: 2px 6px 3px;
}

#inbox-content .note-toolbar .note-para .dropdown-menu {
  min-width: 180px;
}

.profile-pic {
  text-align: right;
}

.profile-pic > img {
  border: 5px solid #ffffff;
  border-radius: 0;
  display: inline-block;
  left: 10px;
  margin-bottom: -30px;
  max-width: 100px;
  position: relative;
  text-align: right;
  top: -30px;
  z-index: 4;
}

.profile-carousel .carousel-inner {
  max-height: 150px;
}

.friends-list li {
  margin-bottom: 10px;
  margin-right: 3px;
  padding: 0;
}

.friends-list img {
  border: 1px solid #ffffff;
  outline: 1px solid #bfbfbf;
  width: 35px;
}

.profile-link-btn {
  color: #999999;
  font-size: 14px;
}

time.icon {
  background-color: #ffffff;
  border-radius: 7px;
  box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #ffffff, 0 3px 0 #eee9e9, 0 4px 0 #ffffff, 0 5px 0 #ffffff, 0 0 0 1px #d3d3d3;
  display: block;
  font-size: 14px;
  height: 43px;
  margin: 3px auto;
  overflow: hidden;
  position: relative;
  width: 35px;
}

time.icon * {
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

time.icon strong {
  background-color: #3a3633;
  border-radius: 6px 6px 0 0;
  -webkit-box-shadow: 0 2px 0 #3a3633;
  box-shadow: 0 2px 0 #3a3633;
  color: #ffffff;
  padding: 2px 0;
  position: absolute;
  top: 0;
}

time.icon em {
  bottom: 3px;
  color: #3276b1;
  position: absolute;
}

time.icon span {
  color: #2f2f2f;
  font-size: 15px;
  letter-spacing: -0.05em;
  padding-top: 21px;
  width: 100%;
}

.user {
  display: block;
  float: left;
  margin: 0 15px 15px 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 170px;
}

.user img {
  float: left;
  margin-right: 5px;
  width: 35px;
}

.user .email {
  color: #999999;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results {
  padding: 18px 5px;
}

.search-results + .search-results {
  border-top: 1px dashed #e3e3e3;
}

.search-results > :first-child {
  font-weight: 400;
  margin-bottom: 4px;
}

.search-results > :first-child a {
  text-decoration: underline;
}

.search-results .url {
  font-size: 14px;
  font-style: normal;
}

.search-results img {
  display: inline-block;
  margin-right: 4px;
  margin-top: 4px;
  width: 80px;
}

.search-results > div {
  display: inline-block;
  vertical-align: top;
}

.search-results .note {
  line-height: normal;
  margin: 0;
}

.search-results .note a {
  color: #333333;
  text-decoration: none !important;
}

.search-results .note a:hover {
  color: #ed1c24;
}

.todo-group-title {
  background: #fafafa;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #f4f4f4;
  color: #999999;
  line-height: 31px;
  margin: 0;
  padding: 0 0 0 10px;
}

.todo {
  list-style: none;
  margin: 0;
  min-height: 5px;
  padding: 0;
}

.todo > li {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAQCAYAAADagWXwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RkQ1OEY4NTM4NUIxMUUzQjdCMUMxQzJCQUE3MTMxOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0RkQ1OEY4NjM4NUIxMUUzQjdCMUMxQzJCQUE3MTMxOCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjRGRDU4RjgzMzg1QjExRTNCN0IxQzFDMkJBQTcxMzE4IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjRGRDU4Rjg0Mzg1QjExRTNCN0IxQzFDMkJBQTcxMzE4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+pTD+wgAAACtJREFUeNpimDBhwn8gYABhdDYjiIELMDHgAUwTJ06Ea0VnjxpLO2MBAgwAGYZLegQbQ3UAAAAASUVORK5CYII=) no-repeat 1px 11px;
  border-bottom: 1px solid #e7e7e7;
  display: block;
  margin: 0 5px;
  overflow: hidden;
  position: relative;
}

.todo > li:last-child,
.todo > li:only-child {
  border-bottom: none;
}

.todo > li > :first-child {
  border-right: 1px solid #ffe1eb;
  display: block;
  height: 100%;
  padding: 6px 11px 6px 18px;
  position: absolute;
  vertical-align: top;
  width: 20px;
}

.todo > li > :first-child:hover {
  cursor: move;
}

.todo > li.complete > :first-child:hover {
  cursor: default;
}

.todo > li.complete {
  background: 0 0;
}

.todo > li > p {
  border-left: 1px solid #ffe1eb;
  color: #333333;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 100%;
  line-height: normal;
  margin-bottom: 0;
  margin-left: 52px;
  min-height: 37px;
  padding: 8px 0 6px 7px;
}

.todo > li > p > span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}

.todo > li > p > :first-child {
  color: #999999;
  margin-bottom: 4px;
  margin-top: -5px;
}

.todo > li > p > .date {
  color: #bfbfbf;
}

.todo > li.complete > * {
  font-style: italic;
  text-decoration: line-through;
}

.todo > li.ui-sortable-helper {
  background: rgba(113, 132, 63, 0.1);
  border-top: 1px solid #eeeeee;
}

.smart-timeline {
  position: relative;
}

.smart-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.smart-timeline-list:after {
  background-color: #eeeeee;
  bottom: 0;
  content: " ";
  display: block;
  left: 95px;
  position: absolute;
  top: 0;
  width: 2px;
  z-index: 1;
}

.smart-timeline-list li {
  margin: 0;
  padding: 15px 0;
  position: relative;
}

.smart-timeline-list > li:hover {
  background-color: #f4f4f4;
}

.smart-timeline-hover li:hover {
  background-color: #f9f9f9;
}

.smart-timeline-icon {
  background: #3276b1;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  height: 32px;
  left: 80px;
  line-height: 28px;
  padding: 2px;
  position: absolute;
  text-align: center;
  top: 10px;
  width: 32px;
  z-index: 100;
}

.smart-timeline-icon > img {
  border: 2px solid #3276b1;
  border-radius: 50%;
  height: 32px;
  margin-left: -2px;
  margin-top: -2px;
  width: 32px;
}

.smart-timeline-time {
  float: left;
  text-align: right;
  width: 70px;
}

.smart-timeline-time > small {
  font-style: italic;
}

.smart-timeline-content {
  margin-left: 123px;
}

.table-forum thead tr {
  background: none !important;
}

.table-forum thead tr th {
  border-bottom-color: #f1f1f1;
  font-size: 17px;
  font-weight: 400;
}

.table-forum tr td {
  border-top-style: dashed !important;
  padding-bottom: 12px !important;
  padding-top: 12px !important;
}

#app-page .table-forum tr td h4 {
  font-size: 15px;
  font-weight: 700;
}

#app-page .table-forum tr td h4 small {
  display: block;
  font-size: 13px;
  margin-top: 2px;
}

.table-forum tr td > i {
  margin-top: 4px;
  padding-left: 10px;
}

#app-page .table-forum tr.locked h4 > a:before {
  content: "\f023";
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

#app-page .table-forum tr.closed h4 > a {
  color: #848484;
  cursor: not-allowed;
  text-decoration: line-through;
}

.forum-attachment {
  display: block;
  margin-top: 20px;
}

.ajax-loading-error {
  display: block;
  font-size: 23px;
  font-weight: 700;
  margin-top: 70px;
  text-align: center;
}

.ajax-notifications .ajax-loading-error {
  font-size: 15px;
  margin-top: 20px;
  text-align: center;
}

.ajax-notifications .ajax-loading-animation {
  font-size: 15px;
  margin-top: 70px;
  text-align: center;
}

.project-members a {
  border-radius: 0;
  display: inline-block;
  margin: 0 3px 0 0;
  overflow: hidden;
}

.smart-rtl.project-members a {
  margin: 0 0 0 3px;
}

.project-members img {
  border-radius: 0;
  width: 25px;
}

.projects-table > tbody > tr > td {
  padding: 7px 10px 3px !important;
}

.product-content {
  background: #ffffff;
  border: 1px solid #dfe5e9;
  margin-bottom: 20px;
  margin-top: 12px;
}

.product-content .carousel-control.left {
  margin-left: 0;
}

.product-content .product-image {
  background-color: #ffffff;
  display: block;
  min-height: 238px;
  overflow: hidden;
  position: relative;
}

.product-content .product-detail {
  background: #ffffff;
  border-bottom: 1px solid #dfe5e9;
  padding-bottom: 17px;
  padding-left: 16px;
  padding-top: 16px;
  position: relative;
}

.product-content .product-detail h5 a {
  color: #2f383d;
  font-size: 15px;
  line-height: 19px;
  margin-left: 0;
  padding-left: 0;
  text-decoration: none;
}

.product-content .product-detail h5 a span {
  color: #9aa7af;
  display: block;
  font-size: 13px;
}

.product-content .product-detail span.tag1 {
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  height: 50px;
  padding: 13px 0;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 50px;
}

.product-content .product-detail span.sale {
  background-color: #21c2f8;
}

.product-content .product-detail span.discount {
  background-color: #71e134;
}

.product-content .product-detail span.hot {
  background-color: #fa9442;
}

.product-content .description {
  background: #ffffff;
  font-size: 12px;
  line-height: 20px;
  padding: 10px 14px 16px 19px;
}

.product-content .product-info {
  padding: 11px 19px 10px 20px;
}

.product-content .product-info a.add-to-cart {
  color: #2f383d;
  font-size: 13px;
  padding-left: 16px;
}

.product-content .name.a {
  margin-left: 16px;
  padding: 5px 10px;
}

.product-info.smart-form .btn {
  margin-left: 12px;
  margin-top: -10px;
  padding: 6px 12px;
}

.product-entry .product-detail {
  border-bottom: 1px solid #dfe5e9;
  padding-bottom: 17px;
  padding-left: 16px;
  padding-top: 16px;
  position: relative;
}

.product-entry .product-detail h5 a {
  color: #2f383d;
  font-size: 15px;
  line-height: 19px;
  text-decoration: none;
}

.product-entry .product-detail h5 a span {
  color: #9aa7af;
  display: block;
  font-size: 13px;
}

.load-more-btn {
  background-color: #21c2f8;
  border-bottom: 2px solid #037ca5;
  border-radius: 2px;
  border-top: 2px solid #00ccff;
  margin-top: 20px;
  padding: 9px 0;
  width: 100%;
}

.product-block .product-detail p.price-container span,
.product-content .product-detail p.price-container span,
.product-entry .product-detail p.price-container span,
.shipping table tbody tr td p.price-container span,
.shopping-items table tbody tr td p.price-container span {
  color: #21c2f8;
  font-family: Lato, sans-serif;
  font-size: 24px;
  line-height: 20px;
}

.product-info.smart-form .rating label {
  margin-top: 0;
}

.product-wrap .product-image span.tag2 {
  border-radius: 50%;
  color: #ffffff;
  font-size: 11px;
  height: 36px;
  padding: 10px 0;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 36px;
}

.product-wrap .product-image span.sale {
  background-color: #57889c;
}

.product-wrap .product-image span.hot {
  background-color: #a90329;
}

.shop-btn {
  position: relative;
}

.shop-btn > span {
  background: #a90329;
  border-radius: 50%;
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  left: -7px;
  line-height: normal;
  padding: 2px 4px 3px !important;
  text-align: center;
  top: -7px;
  width: 19px;
}

.description-tabs {
  padding: 30px 0 5px !important;
}

.description-tabs .tab-content {
  padding: 10px 0;
}

.product-detail {
  padding: 30px 30px 50px;
}

.product-detail hr + .description-tabs {
  padding: 0 0 5px !important;
}

.product-detail .carousel-control.left,
.product-detail .carousel-control.right {
  background: none !important;
}

.product-detail .glyphicon {
  color: #3276b1;
}

.product-detail .product-image {
  border-right: none !important;
}

.product-detail .name {
  margin-bottom: 0;
  margin-top: 0;
}

.product-detail .name small {
  display: block;
}

.product-detail .name a {
  margin-left: 0;
}

.product-detail .price-container {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.product-detail .price-container small {
  font-size: 12px;
}

.product-detail .fa-2x {
  font-size: 16px !important;
}

.product-detail .fa-2x > h5 {
  font-size: 12px;
  margin: 0;
}

.product-detail .fa-2x + a,
.product-detail .fa-2x + a + a {
  font-size: 13px;
}

.product-detail .certified {
  margin-top: 10px;
}

.product-detail .certified ul {
  padding-left: 0;
}

.product-detail .certified ul li:not(first-child) {
  margin-left: -3px;
}

.product-detail .certified ul li {
  background-color: #f9f9f9;
  border: 1px solid #cccccc;
  display: inline-block;
  padding: 13px 19px;
}

.product-detail .certified ul li:first-child {
  border-right: none;
}

.product-detail .certified ul li a {
  color: #6d7a83;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  text-decoration: none;
}

.product-detail .certified ul li a span {
  color: #21c2f8;
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.product-detail .message-text {
  width: calc(100% - 70px);
}

@media only screen and (min-width: 1024px) {
  .product-content div[class*=col-md-4] {
    padding-right: 0;
  }

  .product-content div[class*=col-md-8] {
    padding: 0 13px 0 0;
  }

  .product-wrap div[class*=col-md-5] {
    padding-right: 0;
  }

  .product-wrap div[class*=col-md-7] {
    padding: 0 13px 0 0;
  }

  .product-content .product-image {
    border-right: 1px solid #dfe5e9;
  }

  .product-content .product-info {
    position: relative;
  }
}

.status .who {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 20px;
}

.status .who img {
  float: left;
  height: 40px;
  margin-right: 10px;
  width: 40px;
}

.status .who .name {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.status .who .name b {
  color: #57889c;
}

.status .who .from {
  font-size: 12px;
  opacity: 0.7;
}

.status .text {
  font-size: 13px;
  line-height: 1.82em;
  padding: 20px;
}

.status .image {
  padding: 20px;
}

.status .image img {
  width: 100%;
}

.status .links {
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0;
  padding: 15px 20px;
}

.status .links .fa {
  color: inherit;
  font-size: 14px;
  margin-right: 2px;
}

.status .links li {
  display: inline;
  padding-right: 20px;
}

.status .comments {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 13px;
  padding: 0 20px;
}

.status .comments li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: block;
  padding: 15px 0 15px 40px;
  position: relative;
}

.status .comments li:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}

.status .comments img {
  height: 30px;
  left: 0;
  position: absolute;
  width: 30px;
}

.status .comments .name {
  display: block;
  font-weight: 600;
  opacity: 0.8;
}

.status.panel-body {
  padding: 0;
}

.well.connect {
  padding: 14px;
}

.well.connect img {
  border-radius: 50% 50% 0;
}

.status.vote .comments {
  padding: 0 !important;
}

.status.vote .comments li {
  padding: 10px 0 10px 20px !important;
}

.status.vote .comments li:last-child {
  padding-right: 20px !important;
}

blockquote.twitter-tweet {
  border-color: #eeeeee #dddddd #bbbbbb;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  display: inline-block;
  font-family: "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin: 10px 5px;
  padding: 0 16px 16px;
  width: calc(100% - 10px);
}

blockquote.twitter-tweet p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

blockquote.twitter-tweet a {
  color: inherit;
  font-weight: 400;
  outline: 0 none;
  text-decoration: none;
}

blockquote.twitter-tweet a:focus,
blockquote.twitter-tweet a:hover {
  text-decoration: underline;
}

html {
  background: url(../images/mybg.png) #ffffff;
  margin: 0;
  min-height: 100%;
  padding: 0;
  position: relative;
}

body {
  background: url(../images/mybg.png) #ffffff;
  direction: ltr;
  margin: 0;
  min-height: 100%;
  padding: 0;
}

body.mobile-view-activated.hidden-menu {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden !important;
}

#app-page a:active,
#app-page a:focus,
#app-page a:hover,
#app-page button,
#app-page button:active,
#app-page button:focus,
#app-page embed,
#app-page input::-moz-focus-inner,
object {
  outline: 0;
}

#app-page h1,
h2,
h3,
h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin: 0;
}

.page-title {
  margin: 12px 0 28px;
}

.page-title span {
  color: #333333;
  display: inline-block;
  font-size: 16px;
  vertical-align: 1px;
}

#app-page label {
  font-weight: 400;
}

#app-page *:focus {
  outline: 0 !important;
}

#app-page a,
#app-page button,
#app-page input {
  -ms-touch-action: none !important;
}

.uneditable-input:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
select:focus,
textarea:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0;
}

.form-control,
.input-lg,
.input-sm,
.input-xs {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

.input-xs {
  font-size: 11px;
  height: 24px;
  line-height: 1.5;
  padding: 2px 10px;
}

.btn-xs {
  padding: 1px 5px;
}

.btn-sm {
  padding: 6px 10px 5px;
}

.btn-lg {
  padding: 10px 16px;
}

.no-space {
  margin: 0;
}

.no-space > [class*=col-] {
  margin: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

#content {
  padding: 10px 14px;
  position: relative;
}

body.container {
  border-left: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
  box-shadow: 0 2px 70px rgba(0, 0, 0, 0.45);
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
}

body.container.hidden-menu:not(.mobile-view-activated) {
  overflow: hidden;
}

body.container.modal-open {
  padding: 0 !important;
}

#app-page h1 {
  font-size: 24px;
  letter-spacing: -1px;
  margin: 10px 0;
}

#app-page h1 small {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -1px;
}

.lead {
  font-size: 19px;
}

#app-page h2 {
  font-size: 22px;
  letter-spacing: -1px;
  line-height: normal;
  margin: 20px 0;
}

#app-page h3 {
  display: block;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0;
}

#app-page h4 {
  line-height: normal;
}

#app-page h5 {
  font-size: 17px;
  font-weight: 300;
  line-height: normal;
  margin: 10px 0;
}

#app-page h6 {
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  margin: 10px 0;
}

.row-separator-header {
  border-bottom: none;
  color: #646464;
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin: 15px 14px 20px;
}

.center-canvas,
.center-child-canvas > canvas {
  display: block !important;
  margin: 0 auto !important;
}

.bordered {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.bordered:hover {
  border: 1px solid rgba(0, 0, 0, 0.4);
}

#app-page aside {
  background: #3a3633;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI5NyUiIHN0b3AtY29sb3I9IiMzYTM2MzMiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMmEyNzI1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(left, #3a3633 93%, #2a2725 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(93%, #3a3633), color-stop(100%, #2a2725));
  background: -webkit-linear-gradient(left, #3a3633 93%, #2a2725 100%);
  background: -o-linear-gradient(left, #3a3633 93%, #2a2725 100%);
  background: -ms-linear-gradient(left, #3a3633 93%, #2a2725 100%);
  background: linear-gradient(to right, #3a3633 93%, #2a2725 100%);
  display: block;
  min-height: 100%;
}

#header {
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(top, #f3f3f3, #e2e2e2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3f3f3), to(#e2e2e2));
  background-image: -webkit-linear-gradient(top, #f3f3f3, #e2e2e2);
  background-image: -o-linear-gradient(top, #f3f3f3, #e2e2e2);
  background-image: linear-gradient(to bottom, #f3f3f3, #e2e2e2);
  background-repeat: repeat-x;
  display: block;
  height: 49px;
  margin: 0;
  padding: 0 13px 0 0;
  position: relative;
  z-index: 905;
}

#header > div {
  display: inline-block;
  float: left;
  height: 49px;
  vertical-align: middle;
}

#header > div.open {
  font-weight: 700;
}

.fixed-header #header {
  border-bottom: 2px solid #999999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: -11px 12px 23px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 905;
}

.fixed-header.fixed-ribbon #header {
  border-bottom: none;
  box-shadow: none;
}

.container.fixed-header #header {
  max-width: 1164px;
}

.fixed-header #header .ajax-dropdown {
  z-index: 906;
}

.fixed-header #shortcut {
  position: fixed;
}

.fixed-header #main {
  margin-top: 49px;
}

#logo-group > span {
  display: inline-block;
  float: left;
  height: 39px;
}

#logo-group span#activity {
  background-color: #f8f8f8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f1f1f1));
  background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
  border: 1px solid #bfbfbf;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #c4bab6;
  cursor: default !important;
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  height: 24px;
  margin: 10px 0 0;
  padding: 2px;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  -moz-user-select: none;
  -webkit-user-select: none;
  width: 24px;
}

#logo-group span#activity:hover {
  border: 1px solid #bfbfbf;
  -webkit-box-shadow: inset 0 0 4px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 4px 1px rgba(0, 0, 0, 0.08);
  cursor: pointer !important;
  transition: all 0s;
}

#logo {
  display: inline-block;
  margin-left: 9px;
  margin-top: 13px;
  width: 175px;
}

#logo img {
  height: auto;
  padding-left: 3px;
  width: 110px;
}

#activity b.badge {
  background: #0091d9;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
  padding: 2px 4px 3px;
  position: absolute;
  right: -5px;
  text-align: center;
  top: -5px;
}

#activity.active .badge {
  background: #006fa6 !important;
}

#project-context,
.project-context {
  display: inline-block;
  padding: 7px 13px 0;
  position: relative;
}

#project-context > span,
.project-context > span {
  display: block;
}

#project-context > :first-child,
.project-context > :first-child {
  color: #bfbfbf;
  display: block;
  font-size: 10px;
  font-weight: 700;
  padding-left: 0;
  text-align: left;
  text-shadow: 0 0 1px #ffffff;
  text-transform: uppercase;
}

#project-selector,
.project-selector {
  background: 0 0;
  border: none;
  color: #555555;
  cursor: pointer;
  font-size: 14px;
  max-width: 97%;
  padding: 0;
  text-align: left;
  white-space: nowrap;
}

#project-selector:hover,
.project-selector:hover {
  color: #333333;
}

.header-search {
  position: relative;
}

.header-search.pull-right {
  margin-left: 6px;
}

.header-search > input[type=text] {
  background: #ffffff;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #404040;
  display: block;
  height: 30px;
  line-height: normal;
  margin-top: 10px;
  min-width: 200px;
  outline: 0;
  padding: 0 10px;
  width: 100%;
}

.header-search > button {
  background: 0 0;
  border: none;
  color: #6d6a69;
  font-size: 17px;
  height: 30px;
  line-height: 30px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 10px;
  width: 30px;
  z-index: 2;
}

#search-mobile {
  display: none;
}

#cancel-search-js {
  background: #a90329;
  color: #ffffff;
  display: none;
  font-size: 17px;
  height: 29px;
  line-height: 29px;
  padding: 0;
  position: absolute;
  right: 10px;
  text-align: center;
  text-decoration: none !important;
  top: 10px;
  width: 30px;
  z-index: 3;
}

#header > :first-child,
aside {
  width: 220px;
}

#left-panel {
  left: 0;
  padding-top: 49px;
  position: absolute;
  top: 0;
  z-index: 904;
}

#main {
  margin-left: 220px;
  min-height: 500px;
  padding: 0 0 52px;
  position: relative;
}

#ribbon {
  background: #474544;
  min-height: 40px;
  padding: 0 13px;
  position: relative;
}

#ribbon .breadcrumb {
  background: 0 0;
  display: inline-block;
  margin: 0;
  padding: 11px 34px 11px 0 !important;
  vertical-align: top;
}

#ribbon .breadcrumb,
#ribbon .breadcrumb a {
  color: #bbbbbb !important;
  text-decoration: none !Important;
}

#ribbon .breadcrumb li:last-child,
#ribbon .breadcrumb > .active {
  color: #e4e4e4;
}

.fixed-ribbon #ribbon {
  left: 220px;
  position: fixed;
  right: 0;
  top: 49px;
  z-index: 901;
}

.container.fixed-ribbon #ribbon {
  left: 590px;
  width: 944px;
}

.fixed-ribbon #content {
  padding-top: 50px;
}

.minified.fixed-ribbon #ribbon {
  left: 45px;
}

.hidden-menu.fixed-ribbon #ribbon {
  left: 10px;
}

.fixed-navigation #left-panel {
  height: 100%;
  position: fixed;
}

.fixed-navigation nav {
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  padding-bottom: 49px;
}

.fixed-navigation nav > ul {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 15px;
  position: relative;
  width: 114%;
}

.mobile-detected.fixed-navigation nav > ul {
  padding-right: 30px !important;
}

.minified.fixed-navigation nav {
  height: auto;
  overflow: visible;
  -webkit-overflow-scrolling: inherit;
  padding-bottom: 0;
}

.minified.fixed-navigation nav > ul {
  overflow: visible;
  padding-right: 0;
  width: 100%;
}

#app-page nav ul li a:active {
  background: #616161 !important;
}

#app-page nav ul {
  font-size: 13px;
  line-height: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

#app-page nav ul .active > a {
  color: #ffffff !important;
  position: relative;
}

#app-page nav ul li.active > a:before {
  color: #eeeeee;
  content: "\f0d9";
  display: block;
  font-family: FontAwesome, sans-serif;
  font-size: 20px;
  height: 27px;
  line-height: normal;
  position: absolute;
  right: -21px;
  width: 27px;
}

#app-page nav ul li.active.open > a:before {
  content: "";
}

#app-page nav > ul > li:last-child.open {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#app-page nav ul li a {
  color: #c0bbb7;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 10px 10px 11px;
  position: relative;
  text-decoration: none !important;
}

#app-page nav > ul > li > ul > li > a,
nav > ul > li > ul > li > ul > li > a {
  padding-bottom: 7px;
  padding-top: 7px;
}

#app-page nav ul li a:focus {
  color: #c9c9c9;
}

#app-page nav ul li a:hover {
  color: #ffffff;
  text-decoration: none;
}

#app-page nav ul li a.inactive,
nav ul li a.inactive:hover {
  color: #c0bbb7;
  cursor: not-allowed;
  opacity: 0.5;
}

#app-page nav ul b {
  float: right;
  font-size: 11px;
  margin-top: 2px;
}

#app-page nav ul span.menu-item-parent {
  display: inline-block;
  margin: 0;
  padding: 0;
}

#app-page nav ul li.open > a,
nav ul li.open > a b {
  color: #ffffff !important;
}

#app-page nav > ul > li > a b {
  position: absolute !important;
  right: 10px;
  top: 10px;
}

#app-page nav > ul > li > a > i {
  display: inline-block;
  margin-right: 5px;
  position: relative;
  text-align: center;
  width: 15px;
}

#app-page nav > ul > li > a > i > em {
  background: #ed1c24;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  display: block;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 8px;
  max-height: 13px;
  min-width: 13px;
  padding: 2px;
  position: absolute;
  right: -6px;
  text-align: center;
  text-decoration: none;
  top: -8px;
  vertical-align: baseline;
  white-space: nowrap;
}

#app-page nav ul li li {
  border-bottom: none;
  position: relative;
}

#app-page nav > ul > li > ul:before {
  border-left: 1px solid #7a7a7a;
  bottom: 0;
  content: "";
  display: block;
  left: 23px;
  position: absolute;
  top: 0;
  z-index: 1;
}

#app-page nav > ul ul li:before {
  border-top: 1px solid #7a7a7a;
  content: "";
  display: block;
  left: 23px;
  position: absolute;
  top: 16px;
  width: 8px;
  z-index: 1;
}

#app-page nav > ul ul ul li:before {
  border-top: 1px solid transparent;
  content: "";
  display: block;
  left: 10px;
  position: absolute;
  top: 17px;
  width: 18px;
}

#app-page nav > ul ul li a i {
  font-size: 14px !important;
  line-height: 1 !important;
  text-align: center !important;
  vertical-align: 0 !important;
  width: 18px !important;
}

#app-page nav > ul > li:hover > ul:before,
nav > ul > li:hover > ul > li:before {
  border-color: #acacac !important;
}

#app-page nav ul ul {
  background: rgba(69, 69, 69, 0.6);
  display: none;
  margin: 0;
  padding: 7px 0;
}

#app-page nav ul ul ul {
  background: 0 0;
  padding: 0;
}

#app-page nav ul ul li {
  margin: 0;
  padding: 0;
}

#app-page nav ul ul li > a {
  font-size: 14px;
  font-weight: 400;
  outline: 0;
  padding-left: 42px;
}

#app-page nav ul ul li > a:hover {
  background-color: rgba(69, 69, 69, 0.8);
  color: #ffffff;
}

#app-page nav ul ul ul li a {
  color: #bfbfbf;
  font-size: 14px;
  padding: 8px 10px 8px 60px;
}

#app-page nav ul ul ul li a:hover {
  color: #ffffff;
}

#app-page nav ul ul ul ul li a {
  padding-left: 80px;
}

#app-page nav ul ul ul ul ul li a {
  padding-left: 100px;
}

#app-page nav ul ul ul ul ul ul li a {
  padding-left: 120px;
}

#app-page nav ul ul b {
  color: #b3b3b3;
}

#app-page nav ul ul > li:hover b {
  color: #d5d9e2;
}

.header-dropdown-list {
  float: right;
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.header-dropdown-list > li {
  display: inline-block;
  padding-right: 5px;
}

.header-dropdown-list > li > .dropdown-toggle {
  display: block;
  margin-top: 16px;
}

.smart-accordion-default.panel-group {
  margin-bottom: 0;
}

.smart-accordion-default.panel-group .panel + .panel {
  margin-top: -1px;
}

.smart-accordion-default.panel-group .panel-heading {
  padding: 0;
}

.smart-accordion-default.panel-group .panel-title a {
  display: block;
  padding: 10px 15px;
  text-decoration: none !important;
}

.panel-group .panel,
.smart-accordion-default .panel-heading {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.smart-accordion-default .panel-default > .panel-heading {
  background-color: #fcfcfc;
}

.smart-accordion-default .panel-default {
  border-color: #c3c3c3;
}

.smart-accordion-default .panel-title > a.collapsed > .fa,
.smart-accordion-default .panel-title > a > :first-child {
  display: none;
}

.smart-accordion-default .panel-title > a.collapsed > :first-child {
  display: inline-block;
}

.no-padding .smart-accordion-default > div {
  border-left: none !important;
  border-right: none !important;
}

.no-padding .smart-accordion-default > div:first-child {
  border-top: none !important;
}

.no-padding .smart-accordion-default > div:last-child {
  border-bottom: none !important;
}

.onoffswitch-container {
  display: inline-block;
  margin-left: 7px;
  margin-top: 4px;
}

.onoffswitch {
  display: inline-block;
  margin-bottom: 3px;
  margin-left: 5px;
  margin-top: 3px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  vertical-align: middle;
  width: 50px;
}

.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  border: 1px #b3b3b3;
  border-bottom-color: #9e9e9e;
  border-radius: 50px;
  border-top-color: #adadad;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.onoffswitch-inner {
  display: block;
  margin-left: -100%;
  width: 200%;
}

.onoffswitch-inner:after,
.onoffswitch-inner:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  font-family: Trebuchet, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  height: 15px;
  line-height: 15px;
  padding: 0;
  width: 50%;
}

.onoffswitch-inner:before {
  background-color: #3276b1;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  content: attr(data-swchon-text);
  padding-left: 7px;
  text-align: left;
  text-shadow: 0 -1px 0 #333333;
}

.onoffswitch-inner:after {
  background-color: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #555555;
  content: attr(data-swchoff-text);
  padding-right: 7px;
  text-align: right;
  text-shadow: 0 -1px 0 #ffffff;
}

.onoffswitch-switch {
  background: #f4f4f4;
  background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#eeeeee));
  background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
  background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  background-repeat: repeat-x;
  border: 1px solid #9a9a9a;
  border-radius: 50px;
  bottom: 0;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 19px;
  margin: -2px;
  position: absolute;
  right: 32px;
  top: 0;
  width: 19px;
}

.onoffswitch-checkbox + .onoffswitch-label .onoffswitch-switch:before,
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch:before {
  color: #a90329;
  content: "\f00d";
  display: block;
  font-family: FontAwesome, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  text-shadow: 0 -1px 0 #ffffff;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch:before {
  color: #57889c;
  content: "\f00c";
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  display: block;
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0;
}

.onoffswitch-switch:hover {
  background-color: #eeeeee;
}

.onoffswitch-switch:active {
  background-color: #eeeeee;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.onoffswitch-checkbox:checked:disabled + .onoffswitch-label .onoffswitch-inner:before,
.onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-inner:after {
  background: #bfbfbf;
  color: #333333;
  text-shadow: 0 1px 0 #ffffff;
}

.onoffswitch-checkbox:checked:disabled + .onoffswitch-label .onoffswitch-switch,
.onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-switch {
  background-color: #f4f4f4;
  background-image: -moz-linear-gradient(top, #bfbfbf, #f4f4f4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bfbfbf), to(#f4f4f4));
  background-image: -webkit-linear-gradient(top, #bfbfbf, #f4f4f4);
  background-image: -o-linear-gradient(top, #bfbfbf, #f4f4f4);
  background-image: linear-gradient(to bottom, #bfbfbf, #f4f4f4);
  box-shadow: none !important;
}

.onoffswitch-checkbox:checked:disabled + .onoffswitch-label .onoffswitch-label,
.onoffswitch-checkbox:disabled + .onoffswitch-label {
  border-color: #ababab #999999 #878787 !important;
}

.onoffswitch-checkbox:checked + .onoffswitch-label {
  border-color: #3276b1 #2a6395 #255681;
}

.onoffswitch + span,
.onoffswitch-title {
  display: inline-block;
  margin-top: -5px;
  vertical-align: middle;
}

.form-control {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.form hr {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 20px -13px;
}

.form fieldset {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: block;
  position: relative;
}

#app-page fieldset {
  position: relative;
}

.form-actions {
  background: rgba(249, 249, 249, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  margin: 25px -13px -13px;
  padding: 13px 14px 15px;
  text-align: right;
}

.well .form-actions {
  margin-bottom: -19px;
  margin-left: -19px;
  margin-right: -19px;
}

.well.well-lg .form-actions {
  margin-bottom: -24px;
  margin-left: -24px;
  margin-right: -24px;
}

.well.well-sm .form-actions {
  margin-bottom: -9px;
  margin-left: -9px;
  margin-right: -9px;
}

.popover-content .form-actions {
  border-radius: 0 0 3px 3px;
  margin: 0 -14px -9px;
  padding: 9px 14px;
}

.no-padding .form .form-actions {
  background: rgba(248, 248, 248, 0.9);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  margin: 25px 0 0;
  padding: 13px 14px 15px;
  text-align: right;
}

.bootstrap-duallistbox-container label,
.form header,
legend {
  background: #ffffff;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  color: #222222;
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin: 25px 0 20px;
  padding: 8px 0;
}

.no-padding .form header {
  margin: 25px 14px 0;
}

.form header:first-child {
  margin-top: 10px;
}

#app-page legend {
  background: 0 0;
  font-weight: 400;
  margin-top: 0;
}

.input-group-addon {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 6px 10px;
  -o-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.input-group-addon .fa {
  font-size: 14px;
}

.input-group-addon .fa-2x,
.input-group-addon .fa-lg {
  font-size: 2em;
}

.input-group-addon .fa-3x,
.input-group-addon .fa-4x,
.input-group-addon .fa-5x {
  font-size: 30px;
}

#app-page input[type=text]:focus + .input-group-addon {
  background-color: #72a0ce;
  border-color: #0091d9;
  color: #ffffff;
}

.has-warning input[type=text],
.has-warning input[type=text] + .input-group-addon {
  border-color: #dbab57;
}

.has-warning input[type=text] + .input-group-addon {
  background-color: #faf2cc;
  color: #c09853;
}

.has-warning input[type=text]:focus,
.has-warning input[type=text]:focus + .input-group-addon {
  border-color: #dbab57;
}

.has-warning input[type=text]:focus + .input-group-addon {
  background-color: #e1c118;
  color: #ffffff;
}

.has-error .input-group-addon {
  background: #f2dede;
  border-color: #b94a48;
  color: #b94a48;
}

.has-error input[type=text],
.has-error input[type=text] + .input-group-addon {
  border-color: #b94a48;
}

.has-error input[type=text] + .input-group-addon {
  background-color: #f2dede;
  color: #b94a48;
}

.has-error input[type=text]:focus,
.has-error input[type=text]:focus + .input-group-addon {
  border-color: #c05e5e;
}

.has-error input[type=text]:focus + .input-group-addon {
  background-color: #c05e5e;
  color: #ffffff;
}

.has-success input[type=text]:focus + .input-group-addon {
  background-color: #468847;
  border-color: #468847;
  color: #ffffff;
}

.form .form-group:last-child,
.form .form-group:last-child .note,
.form fieldset .form-group:last-child,
.form fieldset .form-group:last-child .note {
  margin-bottom: 0;
}

.note {
  color: #999999;
  font-size: 11px;
  line-height: 15px;
  margin-top: 6px;
  padding: 0 1px;
}

.input-icon-right {
  position: relative;
}

.input-icon-left > i,
.input-icon-right > i {
  color: #bfbfbf;
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 30%;
}

.input-icon-left > i {
  left: 24px;
  right: auto;
}

.input-icon-right .form-control {
  padding-right: 27px;
}

.input-icon-left .form-control {
  padding-left: 29px;
}

input[type=color].ui-autocomplete-loading,
input[type=date].ui-autocomplete-loading,
input[type=datetime-local].ui-autocomplete-loading,
input[type=datetime].ui-autocomplete-loading,
input[type=email].ui-autocomplete-loading,
input[type=month].ui-autocomplete-loading,
input[type=number].ui-autocomplete-loading,
input[type=password].ui-autocomplete-loading,
input[type=search].ui-autocomplete-loading,
input[type=tel].ui-autocomplete-loading,
input[type=text].ui-autocomplete-loading,
input[type=time].ui-autocomplete-loading,
input[type=url].ui-autocomplete-loading,
input[type=week].ui-autocomplete-loading {
  background-image: url(../images/select2-spinner.gif) !important;
  background-position: 99% 50%;
  background-repeat: no-repeat;
  padding-right: 27px;
}

.input-group-addon .checkbox,
.input-group-addon .radio {
  margin-right: 0 !important;
  min-height: 0;
  padding-top: 0;
}

.input-group-addon label input[type=checkbox].checkbox + span,
.input-group-addon label input[type=checkbox].checkbox + span:before,
.input-group-addon label input[type=radio].radiobox + span,
.input-group-addon label input[type=radio].radiobox + span:before {
  margin-right: 0;
}

.input-group-addon .onoffswitch,
.input-group-addon .onoffswitch-label {
  margin: 0;
}

.timeline-separator {
  color: #999999;
  display: block;
  margin: 20px 0 0;
  text-align: center;
}

.timeline-separator > :first-child {
  background: #ffffff;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 11px;
  padding: 4px 5px;
}

.timeline-separator .btn,
.timeline-separator .btn + .dropdown-menu {
  margin-right: 15px;
}

.timeline-separator:after {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  content: " ";
  display: block;
  margin: -8px 20px 0;
}

.alert {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  color: #675100;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 10px;
}

.alert .close {
  line-height: 20px;
  right: -5px;
  top: 0;
}

.alert-heading {
  font-weight: 600;
}

.alert-danger {
  background-color: #c26565;
  border-color: #953b39;
  color: #ffffff;
  text-shadow: none;
}

.alert-warning {
  background-color: #efe1b3;
  border-color: #dfb56c;
  color: #826430;
}

.alert-success {
  background-color: #cde0c4;
  border-color: #8ac38b;
  color: #356635;
}

.alert-info {
  background-color: #d6dde7;
  border-color: #9cb4c5;
  color: #305d8c;
}

.well {
  background-color: #fbfbfb;
  border: 1px solid #dddddd;
  -webkit-box-shadow: 0 1px 1px #ececec;
  -moz-box-shadow: 0 1px 1px #ececec;
  box-shadow: 0 1px 1px #ececec;
  position: relative;
}

.well.well-clean {
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.well.well-glass {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
}

.well.well-light {
  background: #ffffff;
  border: 1px solid #e2e2e2;
}

.widget-body .well {
  margin-bottom: 0;
}

.well.transparent {
  background: none !important;
  border: none !important;
}

.jarviswidget.well.transparent > div,
.jarviswidget.well.transparent > div .widget-body {
  padding: 0 !important;
}

.well[class*=" bg-"],
.well[class^=bg-] {
  border: 1px solid #555555 !important;
}

.nav-tabs > li > a .badge {
  font-size: 11px;
  font-weight: 400;
  margin-left: 5px;
  min-width: 17px;
  opacity: 0.5;
  padding: 3px 5px;
}

.nav-tabs > li > a > .fa {
  opacity: 0.5;
}

.tabs-left .nav-tabs > li > a .badge {
  margin-left: 0;
  margin-right: 5px;
}

.nav-tabs > li > a .label {
  display: inline-block;
  font-size: 11px;
  margin-left: 5px;
  opacity: 0.5;
}

.nav-tabs > li.active > a .badge,
.nav-tabs > li.active > a .label,
.nav-tabs > li.active > a > .fa {
  opacity: 1;
}

.nav-tabs > li > a {
  border-radius: 0;
  color: #333333;
}

.nav-tabs > li.active > a {
  border-top-width: 0 !important;
  -webkit-box-shadow: 0 -2px 0 #57889c;
  -moz-box-shadow: 0 -2px 0 #57889c;
  box-shadow: 0 -2px 0 #57889c;
  font-weight: 700;
  margin-top: 1px !important;
}

.tabs-left .nav-tabs > li.active > a {
  border-left: none !important;
  border-top-width: 1px !important;
  -webkit-box-shadow: -2px 0 0 #57889c;
  -moz-box-shadow: -2px 0 0 #57889c;
  box-shadow: -2px 0 0 #57889c;
  margin-left: 1px !important;
}

.tabs-left .nav-pills > li.active > a {
  border: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.tabs-right .nav-tabs > li.active > a {
  border-right: none !important;
  border-top-width: 1px !important;
  -webkit-box-shadow: 2px 0 0 #57889c;
  -moz-box-shadow: 2px 0 0 #57889c;
  box-shadow: 2px 0 0 #57889c;
  margin-right: 1px !important;
}

.tabs-below .nav-tabs > li.active > a {
  border-bottom-width: 0 !important;
  border-top: none !important;
  -webkit-box-shadow: 0 2px 0 #57889c;
  -moz-box-shadow: 0 2px 0 #57889c;
  box-shadow: 0 2px 0 #57889c;
  margin-top: 0 !important;
}

.tabs-left > .nav-pills > li,
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-pills > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

.tabs-left > .nav-pills > li > a,
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-pills > li > a,
.tabs-right > .nav-tabs > li > a {
  margin-bottom: 3px;
  margin-right: 0;
  min-width: 74px;
}

.tabs-left > .nav-pills,
.tabs-left > .nav-tabs {
  border-right: 1px solid #dddddd;
  float: left;
  margin-right: 19px;
}

.tabs-left > .nav-pills {
  border-right: none;
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
}

.tabs-left > .nav-tabs > li > a:focus,
.tabs-left > .nav-tabs > li > a:hover {
  border-color: #eeeeee #d5d5d5 #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:focus,
.tabs-left > .nav-tabs .active > a:hover {
  border-color: #d5d5d5 transparent #d5d5d5 #dddddd;
  *border-right-color: #ffffff;
}

.tabs-left > .tab-content {
  margin-left: 109px;
}

.tabs-right > .nav-tabs {
  border-left: 1px solid #dddddd;
  float: right;
  margin-left: 19px;
}

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
}

.tabs-right > .nav-tabs > li > a:focus,
.tabs-right > .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:focus,
.tabs-right > .nav-tabs .active > a:hover {
  border-color: #dddddd #dddddd #dddddd transparent;
  *border-left-color: #ffffff;
}

.tabs-below > .nav-tabs,
.tabs-left > .nav-tabs,
.tabs-right > .nav-tabs {
  border-bottom: 0;
}

.pill-content > .pill-pane,
.tab-content > .tab-pane {
  display: none;
}

.pill-content > .active,
.tab-content > .active {
  display: block;
}

.tabs-below > .nav-tabs {
  border-top: 1px solid #dddddd;
}

.tabs-below > .nav-tabs > li {
  margin-bottom: 0;
  margin-top: -1px;
}

.tabs-below > .nav-tabs > li > a:focus,
.tabs-below > .nav-tabs > li > a:hover {
  border-bottom-color: transparent;
  border-top-color: #dddddd;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:focus,
.tabs-below > .nav-tabs > .active > a:hover {
  border-color: transparent #dddddd #dddddd;
}

.nav-tabs.bordered {
  background: #ffffff;
  border: 1px solid #dddddd;
}

.nav-tabs.bordered > :first-child a {
  border-left-width: 0 !important;
}

.nav-tabs.bordered + .tab-content {
  border: 1px solid #dddddd;
  border-top: none;
}

.tabs-pull-right.nav-pills > li,
.tabs-pull-right.nav-tabs > li {
  float: right;
}

.tabs-pull-right.nav-pills > li:first-child > a,
.tabs-pull-right.nav-tabs > li:first-child > a {
  margin-right: 1px;
}

.tabs-pull-right.bordered.nav-pills > li:first-child > a,
.tabs-pull-right.bordered.nav-tabs > li:first-child > a {
  border-left-width: 1px !important;
  border-right-width: 0;
  margin-right: 0;
}

.jarviswidget > header > .nav-tabs.pull-left > li:first-child a {
  border-left-width: 0 !important;
}

.btn,
a:link,
button {
  -webkit-tap-highlight-color: rgba(169, 3, 41, 0.5);
}

#logo-group *,
.login-info,
.login-info *,
.minified .menu-item-parent {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.hidden-desktop {
  display: none !important;
}

.dropdown-menu-xs {
  min-width: 37px;
}

.dropdown-menu-xs > li > a {
  padding: 3px 10px;
}

.dropdown-menu-xs > li > a:hover i {
  color: #ffffff !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  left: 100%;
  margin-left: -1px;
  margin-top: -6px;
  top: 0;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  border: 5px solid transparent;
  border-left-color: #bfbfbf;
  border-right-width: 0;
  content: " ";
  display: block;
  float: right;
  height: 0;
  margin-right: -10px;
  margin-top: 5px;
  width: 0;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
}

.table.has-tickbox thead tr th:first-child {
  width: 18px;
}

.table.has-tickbox.smart-form tbody tr td:first-child .checkbox,
.table.has-tickbox.smart-form tbody tr td:first-child .radio,
.table.has-tickbox.smart-form thead tr th:first-child .checkbox,
.table.has-tickbox.smart-form thead tr th:first-child .radio {
  padding: 0 !important;
}

.fc-border-separate thead tr,
.table thead tr {
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#fafafa));
  background-image: -webkit-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
  background-image: -moz-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
  background-image: -ms-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
  background-image: -o-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
  font-size: 12px;
}

.fc-border-separate thead tr th {
  line-height: 1.428571429;
  padding: 4px;
}

.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border-width: 1px;
}

.no-padding > .table-bordered,
.no-padding > .table-responsive > .table-bordered {
  border: none !important;
}

.no-padding > .table-bordered tbody tr td:first-child,
.no-padding > .table-bordered thead tr td:first-child,
.no-padding > .table-bordered thead tr th:first-child,
.no-padding > .table-responsive > .table-bordered tbody tr td:first-child,
.no-padding > .table-responsive > .table-bordered thead tr td:first-child,
.no-padding > .table-responsive > .table-bordered thead tr th:first-child {
  border-left-width: 0 !important;
}

.no-padding > .table-bordered tbody tr td:last-child,
.no-padding > .table-bordered thead tr th:last-child,
.no-padding > .table-responsive > .table-bordered tbody tr td:last-child,
.no-padding > .table-responsive > .table-bordered thead tr th:last-child {
  border-right-width: 0 !important;
}

.no-padding > .table-bordered tbody tr:last-child td,
.no-padding > .table-responsive > .table-bordered tbody tr:last-child td {
  border-bottom-width: 0 !important;
}

.no-padding .table-responsive .table {
  margin-bottom: 0;
}

.no-padding .note-editable .table-bordered {
  border: 1px solid #dddddd !important;
}

.smart-form.table td .checkbox i,
.smart-form.table td .radio i,
.smart-form.table th .checkbox i,
.smart-form.table th .radio i {
  top: 0 !important;
}

.table-condensed.table > tbody > tr > td,
.table-condensed.table > tbody > tr > th,
.table-condensed.table > tfoot > tr > td,
.table-condensed.table > tfoot > tr > th,
.table-condensed.table > thead > tr > td,
.table-condensed.table > thead > tr > th {
  padding: 5px 10px !important;
}

.show-stats .progress {
  border-radius: 0;
  height: 7px;
  margin-bottom: 15px;
  margin-top: 3px;
}

.show-stats {
  padding-top: 6px !important;
}

.show-stat-buttons {
  float: left;
  width: 100%;
}

.show-stats .show-stat-buttons > :first-child {
  padding-right: 5px;
}

.show-stats .show-stat-buttons > :last-child {
  padding-left: 5px;
}

.show-stat-microcharts {
  margin-left: -10px;
  margin-right: -10px;
}

.show-stat-microcharts > div {
  border-right: 1px solid #dadada !important;
  border-top: 1px solid #dadada !important;
  height: 65px;
  margin-top: 10px !important;
  overflow: hidden;
  padding: 7px 9px;
}

.show-stat-microcharts > :last-child {
  border-right: none !important;
}

.show-stat-microcharts .sparkline {
  margin-right: 8px;
  margin-top: 10px;
  opacity: 0.7;
}

.show-stat-microcharts .sparkline:hover {
  opacity: 1;
}

.smaller-stat {
  list-style: none;
  margin: 0;
  padding: 0;
}

.smaller-stat li {
  margin-right: 0;
  margin-top: 3px;
}

.smaller-stat li:first-child {
  margin-top: 8px;
}

.smaller-stat span.label {
  cursor: default;
  display: block;
  opacity: 0.5;
  text-align: left;
  width: 40px;
}

.smaller-stat span.label:hover {
  opacity: 1;
}

.login-info {
  border: solid transparent;
  border-bottom: 1px solid #525151;
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  color: #ffffff;
  display: block;
  font-size: 12px;
  height: 39px;
  margin: 0 !important;
  width: 100%;
}

.login-info a {
  color: #c0bbb7;
  display: inline-block;
  margin-top: 6px;
  text-decoration: none !important;
}

.login-info a span {
  display: inline-block;
  font-size: 14px;
  max-width: 150px;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
}

.login-info a span + i {
  vertical-align: middle;
}

.login-info a:hover {
  color: #ffffff;
}

.login-info > span {
  border-bottom: 1px solid #1a1817;
  display: block;
  height: 38px;
  padding: 0 10px;
}

.login-info img {
  border-left: 3px solid #ffffff;
  display: inline-block;
  height: auto;
  margin-left: 0;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: middle;
  width: 25px;
}

#app-page img.away,
#app-page img.busy,
#app-page img.offline,
#app-page img.online {
  border-left: 3px solid #ffffff;
}

#app-page img.online {
  border-left-color: #40ac2b !important;
}

#app-page img.busy {
  border-left-color: #ed1c24 !important;
}

#app-page img.offline {
  border-left-color: #dddddd !important;
}

#app-page img.away {
  border-left-color: #ffc40d !important;
}

.client-form header {
  background: rgba(248, 248, 248, 0.9);
  border-bottom: solid rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 15px 13px;
}

.minified .inbox-badge {
  background: #ed1c24;
  border-radius: 50%;
  font-size: 9px;
  min-width: 13px;
  padding: 2px;
  position: absolute;
  right: 6px;
  top: 6px;
}

.minifyme {
  background: #454545;
  border-bottom: 1px solid #302f2f;
  border-radius: 5px 0 0 5px;
  color: #a8a8a8;
  cursor: pointer;
  display: block;
  font-size: 19px;
  height: 28px;
  margin-top: 7px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 0.1s linear 0s;
  width: 36px;
}

.minifyme:hover {
  background: #646464;
  color: #e4e4e4;
  padding-right: 5px;
  right: 0;
  width: 40px;
}

.minified .minifyme {
  border-radius: 0;
  color: #a8a8a8;
  font-size: 23px;
  height: 34px;
  margin: 0;
  position: relative;
  right: 0;
  width: 100%;
}

.minified .minifyme .fa:before {
  content: "\f0a9";
}

.minified .login-info a i,
.minified .login-info a span {
  display: none;
}

.minified .login-info span {
  padding: 0 5px;
  text-align: center;
}

.minified .login-info img {
  margin: -2px 0 0;
  width: 30px;
}

.minified .login-info {
  border-bottom: 1px solid #181818;
  height: 38px;
}

.minified #left-panel {
  width: 45px;
}

.minified #main {
  margin-left: 45px;
}

.minified #left-panel,
.minified nav > ul > li {
  overflow: visible;
}

.minified nav > ul > ul {
  background: #ed1c24 !important;
  max-height: 180px !important;
  min-height: 100px !important;
  overflow-x: hidden;
  overflow-y: scroll;
}

.minified nav > ul > li,
.minified nav > ul > li a {
  position: relative;
}

.minified nav ul > li > a {
  display: block;
  padding: 10px 11px;
}

.minified nav > ul > li > a .fa.fa-fw {
  display: block;
  padding: 0;
  text-align: center;
  width: auto;
}

.minified nav > ul > li > a > i {
  display: block;
  margin: 0;
  text-align: center;
}

.minified nav > ul > li.active > a:before {
  content: "\f0d9";
}

.minified nav ul ul li a {
  padding-left: 14px;
}

.minified nav ul ul li li a {
  padding-left: 25px;
}

.minified nav > ul ul li:before,
.minified nav > ul > li > ul:before {
  left: 12px;
}

.minified nav > ul > li > a .menu-item-parent,
.minified nav > ul > li > a > b {
  display: none;
}

.minified nav > ul > li > a > .menu-item-parent {
  background-color: #f5f5f5;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #bfbfbf;
  border-top: 1px solid #d8d4d4;
  -webkit-box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #333333;
  display: none;
  height: 38px;
  left: 40px;
  line-height: 38px;
  padding-left: 12px;
  position: absolute;
  top: -3px;
  width: 186px;
  z-index: 3;
}

.minified nav > ul > li > ul {
  background: #454545;
  border: 1px solid #bfbfbf;
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  display: none !important;
  left: 40px;
  margin-top: -3px;
  min-height: 180px;
  overflow: hidden;
  position: absolute;
  width: 199px;
  z-index: 5;
}

.minified nav ul > li > ul > li > ul {
  border: none;
  left: 13px;
  margin-left: -12px;
  position: relative;
  width: 197px;
}

.minified nav > ul > li:hover > a > .menu-item-parent,
.minified nav > ul > li:hover > ul {
  display: block !important;
}

.minified nav > ul > li > ul > li {
  background-color: rgba(69, 69, 69, 0.9);
}

.minified nav > ul > li > ul > li > ul > li {
  background-color: #484b50;
}

.minified nav > ul > li {
  border-bottom: 1px solid #1a1817;
  border-top: 1px solid #525151;
}

.minified nav > ul > li > ul:before {
  border-left: none;
}

.minified nav > ul ul li:before {
  border: none;
}

.slimScrollDiv,
.slimScrollDiv > :first-child {
  overflow: hidden;
}

.minified .slimScrollDiv,
.minified .slimScrollDiv > :first-child {
  overflow: visible !important;
}

.minified .slimScrollBar,
.minified .slimScrollRail {
  display: none;
}

.minified nav > ul > li > ul > li > a,
.minified nav > ul > li > ul > li > ul > li > a {
  padding-bottom: 7px;
  padding-top: 7px;
}

.minified nav > ul > li > ul > li > ul > li a {
  padding-bottom: 6px;
  padding-top: 6px;
}

.minified nav ul ul ul ul li a {
  padding-left: 45px;
}

.minified nav ul ul ul ul ul li a {
  padding-left: 62px;
}

.minified nav ul ul ul ul ul ul li a {
  padding-left: 82px;
}

.pagination.pagination-alt > li > a {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-left: -1px;
}

.pagination.pagination-alt > li:first-child > a {
  padding-left: 0;
}

.pagination > li > a,
.pagination > li > span {
  -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.disabled {
  color: #ffffff;
}

.btn-default.disabled {
  color: #999999;
}

.btn {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.btn:active {
  left: 1px;
  position: relative;
  top: 1px;
}

.btn.btn-ribbon {
  background-color: #707070;
  background-image: -moz-linear-gradient(top, #777777, #666666);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#777777), to(#666666));
  background-image: -webkit-linear-gradient(top, #777777, #666666);
  background-image: -o-linear-gradient(top, #777777, #666666);
  background-image: linear-gradient(to bottom, #777777, #666666);
  background-repeat: repeat-x;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: block;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff777777', endColorstr='#ff666666', GradientType=0);
  float: left;
  height: 20px;
  line-height: 20px;
  margin: 0 8px 0 0;
  padding: 0 5px;
  vertical-align: middle;
}

.btn.btn-ribbon > i {
  font-size: 111%;
}

.ribbon-button-alignment {
  display: inline-block;
  padding-top: 10px;
}

.ribbon-button-alignment.pull-right > .btn.btn-ribbon {
  margin: 0 0 0 8px;
}

.panel-purple {
  border-color: #6e587a;
}

.panel-purple > .panel-heading {
  background-color: #6e587a;
  border-color: #6e587a;
  color: #ffffff;
}

.panel-greenLight {
  border-color: #71843f;
}

.panel-greenLight > .panel-heading {
  background-color: #71843f;
  border-color: #71843f;
  color: #ffffff;
}

.panel-greenDark {
  border-color: #496949;
}

.panel-greenDark > .panel-heading {
  background-color: #496949;
  border-color: #496949;
  color: #ffffff;
}

.panel-darken {
  border-color: #333333;
}

.panel-darken > .panel-heading {
  background-color: #404040;
  border-color: #404040;
  color: #ffffff;
}

.panel-pink {
  border-color: #ac5287;
}

.panel-pink > .panel-heading {
  background-color: #ac5287;
  border-color: #ac5287;
  color: #ffffff;
}

.panel-green {
  border-color: #356e35;
}

.panel-green > .panel-heading {
  background-color: #356e35;
  border-color: #356e35;
  color: #ffffff;
}

.panel-blueLight {
  border-color: #92a2a8;
}

.panel-blueLight > .panel-heading {
  background-color: #92a2a8;
  border-color: #92a2a8;
  color: #ffffff;
}

.panel-pinkDark {
  border-color: #a8829f;
}

.panel-pinkDark > .panel-heading {
  background-color: #a8829f;
  border-color: #a8829f;
  color: #ffffff;
}

.panel-redLight {
  border-color: #a65858;
}

.panel-redLight > .panel-heading {
  background-color: #a65858;
  border-color: #a65858;
  color: #ffffff;
}

.panel-red {
  border-color: #a90329;
}

.panel-red > .panel-heading {
  background-color: #a90329;
  border-color: #a90329;
  color: #ffffff;
}

.panel-teal {
  border-color: #568a89;
}

.panel-teal > .panel-heading {
  background-color: #568a89;
  border-color: #568a89;
  color: #ffffff;
}

.panel-orange {
  border-color: #c79121;
}

.panel-orange > .panel-heading {
  background-color: #c79121;
  border-color: #c79121;
  color: #ffffff;
}

.panel-blueDark {
  border-color: #4c4f53;
}

.panel-blueDark > .panel-heading {
  background-color: #4c4f53;
  border-color: #4c4f53;
  color: #ffffff;
}

.panel-magenta {
  border-color: #6e3671;
}

.panel-magenta > .panel-heading {
  background-color: #6e3671;
  border-color: #6e3671;
  color: #ffffff;
}

.panel-blue {
  border-color: #57889c;
}

.panel-blue > .panel-heading {
  background-color: #57889c;
  border-color: #57889c;
  color: #ffffff;
}

.panel-footer > .btn-block {
  border-bottom: none;
  border-left: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-right: none;
}

.btn-circle {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 12px;
  height: 30px;
  line-height: 18px;
  padding: 6px 0;
  text-align: center;
  width: 30px;
}

.btn-circle.btn-lg {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
  height: 50px;
  line-height: 30px;
  padding: 10px 15px;
  width: 50px;
}

.btn-circle.btn-xl {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 24px;
  height: 70px;
  line-height: 50px;
  padding: 10px 15px;
  width: 70px;
}

.btn-metro {
  margin: 0 0 20px;
  padding-bottom: 15px;
  padding-top: 15px;
}

.btn-metro > span {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  vertical-align: bottom;
}

.btn-metro > span.label {
  position: absolute;
  right: 0;
  top: 0;
}

.btn-label {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px 0 0 3px;
  display: inline-block;
  left: -12px;
  padding: 6px 12px;
  position: relative;
}

.btn-labeled {
  padding-bottom: 0;
  padding-top: 0;
}

.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
}

.nav-demo-btn {
  background-color: rgba(77, 118, 134, 0.5);
  border-color: #3a7775;
}

.nav-demo-btn:active,
.nav-demo-btn:hover {
  background-color: rgba(77, 118, 134, 0.7);
  border-color: #3a7775;
}

#left-panel {
  -webkit-transform: translate(0, 0) translateZ(0);
  -webkit-transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
  transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
}

.chart-large,
.chart-small,
.chart-xl {
  overflow: hidden;
}

.chart-small {
  height: 100px;
  width: 100%;
}

.chart-large {
  height: 235px;
  width: 100%;
}

.chart-xl {
  height: 297px;
  width: 100%;
}

#flotTip {
  background-color: #ffffff;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  color: #333333;
  font-size: 14px;
  padding: 3px 5px;
  z-index: 9999;
}

#flotTip span {
  color: #38812d;
  font-weight: 700;
}

.legendLabel span {
  display: block;
  margin: 0 5px;
}

.legendColorBox {
  padding-left: 10px;
  padding-top: 5px;
  vertical-align: top;
}

.legendColorBox div > div {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 4px;
  width: 4px;
}

.morris-hover.morris-default-style {
  background: rgba(255, 255, 255, 0.8);
  border: solid 2px rgba(230, 230, 230, 0.8);
  border-radius: 10px;
  color: #666666;
  font-family: sans-serif;
  font-size: 12px;
  padding: 6px;
  text-align: center;
}

.morris-hover.morris-default-style .morris-hover-row-label {
  font-weight: 700;
  margin: 0.25em 0;
}

.morris-hover.morris-default-style .morris-hover-point {
  margin: 0.1em 0;
  white-space: nowrap;
}

.morris-hover {
  position: absolute;
  z-index: 903;
}

.fixed-page-footer .morris-hover {
  z-index: 900;
}

.chart {
  height: 220px;
  margin: 20px 5px 10px 10px;
  overflow: hidden;
}

.has-legend {
  margin-top: 30px !important;
}

.has-legend-unique {
  margin-top: 19px !important;
}

.icon-color-good {
  color: #40ac2b;
}

.icon-color-bad {
  color: #ed1c24;
}

.degree-sign:after,
.percent-sign:after {
  content: " %";
  line-height: normal;
}

.degree-sign:after {
  content: "°F";
}

.hidden-menu #left-panel {
  left: -210px;
  z-index: 903;
}

.hidden-menu #main {
  margin-left: 10px;
}

.hidden-menu #left-panel:hover {
  left: 0;
}

.hidden-menu .minifyme,
.minified #hide-menu {
  display: none;
}

.btn-header.pull-right {
  margin-left: 6px;
}

.btn-header a > span {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  height: 30px;
  line-height: 30px;
}

.btn-header > :first-child > a {
  background-color: #f8f8f8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f1f1f1));
  background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
  background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
  border: 1px solid #bfbfbf;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #6d6a69;
  cursor: default !important;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  height: 30px;
  line-height: 24px;
  margin: 10px 0 0;
  min-width: 30px;
  padding: 2px;
  text-align: center;
  text-decoration: none !important;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.btn-header > :first-child > a:hover {
  border: 1px solid #bfbfbf;
  -webkit-box-shadow: inset 0 0 4px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 4px 1px rgba(0, 0, 0, 0.08);
  color: #222222;
  cursor: pointer;
  transition: all 0s;
}

.btn-header > :first-child > a:active {
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top, #e8e8e8 0, #ededed 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e8e8), color-stop(100%, #ededed));
  background-image: -webkit-linear-gradient(top, #e8e8e8 0, #ededed 100%);
  background-image: -o-linear-gradient(top, #e8e8e8 0, #ededed 100%);
  background-image: -ms-linear-gradient(top, #e8e8e8 0, #ededed 100%);
  background-image: linear-gradient(to bottom, #e8e8e8 0, #ededed 100%);
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#ededed', GradientType=0);
}

.hidden-menu #hide-menu > :first-child > a {
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top, #5a5a5a 0, #686868 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5a5a5a), color-stop(100%, #686868));
  background-image: -webkit-linear-gradient(to bottom, #5a5a5a 0, #686868 100%);
  background-image: -o-linear-gradient(to bottom, #5a5a5a 0, #686868 100%);
  background-image: -ms-linear-gradient(to bottom, #5a5a5a 0, #686868 100%);
  background-image: linear-gradient(to bottom, #5a5a5a 0, #686868 100%);
  border-color: #494949;
  -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5A5A5A', endColorstr='#686868', GradientType=0);
}

.full-screen #fullscreen > :first-child > a:active,
.hidden-menu #hide-menu > :first-child > a:active {
  -webkit-box-shadow: inset 0 0 6px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 6px 1px rgba(0, 0, 0, 0.2);
}

.ajax-dropdown > :first-child {
  margin: 0 0 3px;
  padding: 0 0 9px;
}

.ajax-dropdown {
  background: #ffffff;
  border: 1px solid #b3b3b3;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
  -moz-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
  box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
  display: none;
  height: 435px;
  left: 16px;
  padding: 10px;
  position: absolute;
  top: 48px;
  width: 344px;
  z-index: 905;
}

.ajax-dropdown:after,
.ajax-dropdown:before {
  border: solid transparent;
  bottom: 100%;
  content: " ";
  height: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.ajax-dropdown:after {
  border: 7px rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  left: 50%;
  margin-left: -7px;
}

.ajax-dropdown:before {
  border: 8px rgba(131, 131, 131, 0);
  border-bottom-color: #838383;
  left: 50%;
  margin-left: -8px;
}

.ajax-dropdown .btn-group .btn {
  font-weight: 700;
  text-transform: capitalize;
}

.ajax-dropdown .btn-group > :nth-child(2) {
  border-left-width: 0;
  border-right-width: 0;
}

.ajax-dropdown .btn-group > :last-child {
  border-right-width: 1px !important;
}

.ajax-dropdown .btn-group .btn:active {
  left: 0;
  top: 0;
}

.ajax-notifications {
  background: #e9e9e9;
  border-bottom: 1px solid #cecece;
  border-top: 1px solid #cecece;
  display: block;
  height: 365px;
  margin-left: -10px;
  margin-right: -10px;
  overflow: auto;
}

.ajax-notifications .alert.alert-transparent {
  background-color: transparent;
  border-color: transparent;
  color: #757575;
  margin: 13px 10px;
}

.ajax-notifications .alert > :first-child {
  font-weight: 400;
  margin-bottom: 10px;
}

.ajax-dropdown > :last-child {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  padding: 5px 0;
}

.ajax-dropdown .fa-4x.fa-border {
  border: 3px #d1d1d1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #d1d1d1;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 46px;
}

.dropdown-large {
  position: static !important;
}

.dropdown-menu-large {
  margin-left: 16px;
  margin-right: 16px;
  padding: 20px 0;
}

.dropdown-menu-large > li > ul {
  margin: 0;
  padding: 0;
}

.dropdown-menu-large > li > ul > li {
  list-style: none;
}

.dropdown-menu-large > li > ul > li > a {
  clear: both;
  color: #333333;
  display: block;
  font-weight: 400;
  line-height: 1.428571429;
  padding: 3px 20px;
  white-space: normal;
}

.dropdown-menu-large > li ul > li > a:focus,
.dropdown-menu-large > li ul > li > a:hover {
  background-color: #f5f5f5;
  color: #262626;
  text-decoration: none;
}

.dropdown-menu-large .disabled > a,
.dropdown-menu-large .disabled > a:focus,
.dropdown-menu-large .disabled > a:hover {
  color: #999999;
}

.dropdown-menu-large .disabled > a:focus,
.dropdown-menu-large .disabled > a:hover {
  background: transparent none;
  cursor: not-allowed;
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  text-decoration: none;
}

.dropdown-menu-large .dropdown-header {
  color: #428bca;
  font-size: 18px;
}

@media (max-width: 768px) {
  .dropdown-menu-large {
    margin-left: 0;
    margin-right: 0;
  }

  .dropdown-menu-large > li {
    margin-bottom: 30px;
  }

  .dropdown-menu-large > li:last-child {
    margin-bottom: 0;
  }

  .dropdown-menu-large .dropdown-header {
    padding: 3px 15px !important;
  }
}

.pagination-xs > li > a,
.pagination-xs > li > span {
  font-size: 12px;
  padding: 4px 9px;
}

.notification-body *,
.notification-body:after *,
.notification-body:before * {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.notification-body {
  list-style: none;
  margin: 0;
  padding: 0 0 0 3px;
}

.notification-body > li {
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}

.notification-body > li > span {
  background: #ffffff;
  display: block;
  min-height: 25px;
  overflow: hidden;
  padding: 8px 10px 13px;
  white-space: normal;
}

.notification-body > li > span:hover {
  background: #f0f4f7;
  color: #667f8f;
}

.notification-body > li a.msg {
  padding-left: 50px !important;
}

.notification-body > li a,
.notification-body > li a span {
  display: block;
  overflow: hidden;
  position: relative;
}

.notification-body > li a,
.notification-body > li a:hover {
  text-decoration: none;
}

.notification-body > li:hover .progress {
  background: #ffffff;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0), 0 0 0 1px #cccccc inset;
  -moz-box-shadow: 0 1px 0 transparent, 0 0 0 1px #ffffff inset;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0), 0 0 0 1px #a7a7a7 inset;
}

.notification-body > li:hover .text-muted {
  color: #333333;
}

.notification-body .from {
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  height: 20px;
  line-height: normal;
  margin-bottom: 6px;
  margin-right: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notification-body .unread .from {
  font-weight: 700;
}

.notification-body .unread {
  background: #ffffe0;
}

.notification-body time {
  color: #058dc7;
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 3px;
}

.notification-body .msg-body,
.notification-body .subject {
  color: #a0a0a0;
  font-size: 13px;
  max-height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.notification-body .subject {
  color: #333333;
  font-size: 15px;
  max-height: 22px;
}

.bootstrapWizard {
  display: block;
  list-style: none;
  padding: 0;
  position: relative;
  width: 100%;
}

.bootstrapWizard a:active,
.bootstrapWizard a:focus,
.bootstrapWizard a:hover {
  text-decoration: none;
}

.bootstrapWizard li {
  display: block;
  float: left;
  padding-left: 0;
  text-align: center;
  width: 25%;
}

.bootstrapWizard li:before {
  border-top: 3px solid #55606e;
  content: "";
  display: block;
  font-size: 0;
  overflow: hidden;
  position: relative;
  right: 1px;
  top: 11px;
  width: 100%;
  z-index: 1;
}

.bootstrapWizard li:first-child:before {
  left: 50%;
  max-width: 50%;
}

.bootstrapWizard li:last-child:before {
  max-width: 50%;
  width: 50%;
}

.bootstrapWizard li.complete .step {
  background: #0aa66e;
  border: 3px solid #55606e;
  padding: 1px 6px;
}

.bootstrapWizard li .step i {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  top: -1.5px;
}

.bootstrapWizard li .step {
  background: #b2b5b9;
  border: 3px solid transparent;
  border-radius: 50%;
  color: #ffffff;
  display: inline;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  padding: 7px 13px;
  position: relative;
  text-align: center;
  transition: all 0.1s linear 0s;
  z-index: 2;
}

.bootstrapWizard li.active .step,
.bootstrapWizard li.active.complete .step {
  background: #0091d9;
  border: 3px solid #55606e;
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 7px 13px;
}

.bootstrapWizard li.active .title,
.bootstrapWizard li.complete .title {
  color: #2b3d53;
}

.bootstrapWizard li .title {
  color: #bfbfbf;
  display: block;
  font-size: 15px;
  line-height: 15px;
  max-width: 100%;
  position: relative;
  table-layout: fixed;
  text-align: center;
  top: 20px;
  word-wrap: break-word;
  z-index: 104;
}

.wizard-actions {
  display: block;
  list-style: none;
  padding: 0;
  position: relative;
  width: 100%;
}

.wizard-actions li {
  display: inline;
}

.tab-content.transparent {
  background-color: transparent;
}

.fuelux .wizard {
  background-color: #f9f9f9;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  overflow: hidden;
  position: relative;
}

.fuelux .wizard:after,
.fuelux .wizard:before {
  content: "";
  display: table;
  line-height: 0;
}

.fuelux .wizard:after {
  clear: both;
}

.fuelux .wizard ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  width: 4000px;
}

.fuelux .wizard ul.previous-disabled li.complete {
  cursor: default;
}

.fuelux .wizard ul.previous-disabled li.complete:hover {
  background: #f3f4f5;
  color: #356e35;
  cursor: default;
}

.fuelux .wizard ul.previous-disabled li.complete:hover .chevron:before {
  border-left-color: #f3f4f5;
}

.fuelux .wizard ul li {
  background: #ededed;
  color: #999999;
  cursor: default;
  float: left;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
  margin: 0;
  padding: 0 20px 0 30px;
  position: relative;
}

.fuelux .wizard ul li .chevron {
  border: 24px solid transparent;
  border-left: 14px solid #d4d4d4;
  border-right: 0;
  display: block;
  position: absolute;
  right: -14px;
  top: 0;
  z-index: 1;
}

.fuelux .wizard ul li .chevron:before {
  border: 24px solid transparent;
  border-left: 14px solid #ededed;
  border-right: 0;
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  top: -24px;
}

.fuelux .wizard ul li.complete {
  background: #f3f4f5;
  color: #468847;
}

.fuelux .wizard ul li.complete:hover {
  background: #e7eff8;
  cursor: pointer;
}

.fuelux .wizard ul li.complete:hover .chevron:before {
  border-left: 14px solid #e7eff8;
}

.fuelux .wizard ul li.complete .chevron:before {
  border-left: 14px solid #f3f4f5;
}

.fuelux .wizard ul li.active {
  background: #f1f6fc;
  color: #3a87ad;
}

.fuelux .wizard ul li.active .chevron:before {
  border-left: 14px solid #f1f6fc;
}

.fuelux .wizard ul li .badge {
  margin-right: 8px;
}

.fuelux .wizard ul li:first-child {
  border-radius: 4px 0 0 4px;
  padding-left: 20px;
}

.fuelux .wizard .actions {
  background-color: #eeeeee;
  border-left: 1px solid #d4d4d4;
  float: right;
  line-height: 46px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  right: 0;
  vertical-align: middle;
  z-index: 2;
}

.fuelux .wizard .actions a {
  font-size: 15px;
  line-height: 45px;
  margin-right: 8px;
}

.fuelux .wizard .actions .btn-prev i {
  margin-right: 5px;
}

.fuelux .wizard .actions .btn-next i {
  margin-left: 5px;
}

.fuelux .step-content .step-pane {
  display: none;
}

.fuelux .step-content .active {
  display: block;
}

.fuelux .step-content .active .btn-group .active {
  display: inline-block;
}

.jarvismetro-tile {
  background-color: #ffffff;
  border: 1px dotted #c5c5c5;
  box-shadow: inset 0 0 1px #ffffcc;
  color: #ffffff;
  cursor: pointer;
  display: block;
  float: left;
  font-weight: 300;
  height: 70px;
  margin: 0 10px 20px 0;
  padding: 5px;
  position: relative;
  text-decoration: none;
  width: 100px;
}

.jarvismetro-tile:hover {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  z-index: 10;
}

.jarvismetro-tile.big-cubes {
  height: 120px;
  width: 120px;
}

.jarvismetro-tile.double {
  width: 249px;
}

.jarvismetro-tile:active {
  left: 1px;
  top: 1px;
}

.jarvismetro-tile .iconbox {
  text-align: center;
}

.jarvismetro-tile .iconbox i {
  display: block;
  height: 75px;
  margin: 15px auto 0;
}

.jarvismetro-tile .iconbox span {
  display: block;
  text-align: left;
}

.jarvismetro-tile .iconbox span > span {
  border: 1px solid #ffffff;
  border-radius: 50%;
  bottom: -3px;
  padding: 5px;
  position: absolute;
  right: -3px;
}

#shortcut .selected {
  border: 1px solid #0091d9 !important;
  position: relative;
}

#shortcut .selected:before {
  color: #ffffff;
  content: "\f00c";
  display: block;
  font-family: FontAwesome, sans-serif;
  position: absolute;
  right: 4px;
  top: 3px;
  z-index: 2;
}

#shortcut .selected:after {
  border-left: 35px solid rgba(0, 0, 0, 0);
  border-top: 35px solid #0091d9;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  z-index: 1;
}

#shortcut {
  background-color: #33302f;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  display: none;
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 907;
}

#shortcut ul {
  border-bottom: 1px solid #423f3f;
  -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
  padding: 15px 20px 10px;
}

#shortcut ul li {
  display: inline-block;
  width: auto;
}

#shortcut ul li .jarvismetro-tile {
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 0 3px 3px;
}

#shortcut ul li .jarvismetro-tile:hover {
  color: #ffffff;
  text-decoration: none;
}

#shortcut ul li .jarvismetro-tile:active,
#shortcut ul li .jarvismetro-tile:focus {
  left: 0;
  top: 0;
}

.shortcut-on #response-btn {
  display: none !important;
}

.shortcut-on #left-bar .navbar,
.shortcut-on #main .navbar {
  border: none !important;
}

.arrow-box-up:after,
.arrow-box-up:before {
  border: solid transparent;
  bottom: 100%;
  content: " ";
  height: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.arrow-box-up:after {
  border: 7px rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  left: 50%;
  margin-left: -7px;
}

.arrow-box-up:before {
  border: 8px rgba(131, 131, 131, 0);
  border-bottom-color: #838383;
  left: 50%;
  margin-left: -8px;
}

.arrow-box-up-right:after,
.arrow-box-up-right:before {
  border: solid transparent;
  bottom: 100%;
  content: " ";
  height: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.arrow-box-up-right:after {
  border: 7px rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  margin-left: -7px;
  right: 10px;
}

.arrow-box-up-right:before {
  border: 8px rgba(131, 131, 131, 0);
  border-bottom-color: #838383;
  margin-left: -8px;
  right: 9px;
}

.tooltip-inner {
  border-radius: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 10px;
}

.custom-scroll::-webkit-scrollbar {
  height: 10px;
  -webkit-overflow-scrolling: touch;
  width: 10px;
}

.custom-scroll::-webkit-scrollbar:hover {
  background-color: #e9e9e9;
  border: 1px solid #dbdbdb;
}

.custom-scroll::-webkit-scrollbar-button:end:increment,
.custom-scroll::-webkit-scrollbar-button:start:decrement {
  background: 0 0;
  display: block;
  height: 0;
}

.custom-scroll::-webkit-scrollbar-track {
  background-clip: padding-box;
  border: solid transparent;
}

.custom-scroll::-webkit-scrollbar-track-piece {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  -moz-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}

.custom-scroll::-webkit-scrollbar-thumb:horizontal,
.custom-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #bfbfbf;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.custom-scroll::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.44);
  -moz-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #959595;
}

.twitter-typeahead .tt-hint,
.twitter-typeahead .tt-query {
  height: 32px;
  margin-bottom: 0;
  padding: 6px 12px;
}

.tt-dropdown-menu {
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background-color: #ffffff;
  border: 1px solid #bfbfbf;
  *border-bottom-width: 2px;
  *border-right-width: 2px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: 2px;
  min-width: 160px;
  padding: 5px 0;
}

.tt-suggestion {
  display: block;
  padding: 3px 20px;
}

.tt-suggestion.tt-is-under-cursor {
  background-color: #0081c2;
  color: #ffffff;
}

.tt-suggestion.tt-is-under-cursor a {
  color: #ffffff;
}

.tt-suggestion p {
  margin: 0;
}

.google_maps {
  height: 350px;
  position: relative;
  width: 100%;
}

.google_maps * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.google_maps img {
  max-width: none;
}

.header-btn {
  margin-top: 5px;
}

.cke_top {
  background: rgba(248, 248, 248, 0.9) none !important;
}

.multiselect-container {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
}

.multiselect-container .input-group {
  margin: 5px;
}

.multiselect-container > li {
  padding: 0;
}

.multiselect-container > li > a.multiselect-all label {
  font-weight: 700;
}

.multiselect-container > li > label.multiselect-group {
  font-weight: 700;
  height: 100%;
  margin: 0;
  padding: 3px 20px;
}

.multiselect-container > li > a > label {
  cursor: pointer;
  font-weight: 400;
  height: 100%;
  margin: 0;
}

.multiselect-container > li > a > label.checkbox,
.multiselect-container > li > a > label.radio {
  margin: 0;
}

.multiselect-container > li > a > label > input[type=checkbox] {
  margin-bottom: 5px;
}

.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.input-group .icon-addon .form-control {
  border-radius: 0;
}

.icon-addon {
  color: #555555;
  display: block;
  position: relative;
}

.icon-addon:after,
.icon-addon:before {
  content: " ";
  display: table;
}

.icon-addon:after {
  clear: both;
}

.icon-addon .fa,
.icon-addon .glyphicon,
.icon-addon.addon-md .fa,
.icon-addon.addon-md .glyphicon {
  left: 10px;
  margin-left: -2.5px;
  padding: 10px 0;
  position: absolute;
  text-align: center;
  top: 1px;
  width: 20px;
  z-index: 2;
}

.icon-addon.addon-lg .form-control {
  font-size: 18px;
  height: 46px;
  line-height: 1.33;
  padding: 10px 16px 10px 40px;
}

.input-group-lg .icon-addon.addon-lg + .input-group-btn > .btn {
  height: 46px;
}

.icon-addon.addon-sm .form-control {
  font-size: 15px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 10px 5px 28px;
}

.icon-addon.addon-lg .fa,
.icon-addon.addon-lg .glyphicon {
  font-size: 18px;
  left: 11px;
  margin-left: 0;
  top: 4px;
}

.icon-addon .form-control,
.icon-addon.addon-md .form-control {
  float: left;
  font-weight: 400;
  padding-left: 30px;
}

.icon-addon.addon-sm .fa,
.icon-addon.addon-sm .glyphicon {
  font-size: 12px;
  left: 5px;
  margin-left: 0;
  top: -1px;
}

.icon-addon .form-control:focus + .fa,
.icon-addon .form-control:focus + .glyphicon,
.icon-addon:hover .fa,
.icon-addon:hover .glyphicon {
  color: #2580db;
}

.icon-addon input:disabled + .fa,
.icon-addon input:disabled + .glyphicon,
.icon-addon select:disabled + .fa,
.icon-addon select:disabled + .glyphicon {
  color: #cccccc;
}

.progress-micro {
  height: 3px !important;
  line-height: 3px !important;
}

.progress-xs {
  height: 7px !important;
  line-height: 7px !important;
}

.progress-sm {
  height: 14px !important;
  line-height: 14px !important;
}

.progress-lg {
  height: 30px !important;
  line-height: 30px !important;
}

.progress .progress-bar {
  line-height: 20px;
  overflow: hidden;
  position: absolute;
}

.progress .progressbar-back-text {
  font-size: 15px;
  height: 100%;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 100%;
}

.progress .progressbar-front-text {
  display: block;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  width: 100%;
}

.progress.right .progress-bar {
  right: 0;
}

.progress.right .progressbar-front-text {
  position: absolute;
  right: 0;
}

.progress.vertical {
  display: inline-block;
  height: 100%;
  margin-bottom: 0;
  margin-right: 20px;
  min-height: 150px;
  width: 25px;
}

.progress.wide-bar {
  width: 40px;
}

.progress.vertical.bottom {
  position: relative;
}

.progress.vertical.bottom .progressbar-front-text {
  bottom: 0;
  position: absolute;
}

.progress.vertical .progress-bar {
  height: 0;
  -webkit-transition: height 0.6s ease;
  transition: height 0.6s ease;
  width: 100%;
}

.progress.vertical.bottom .progress-bar {
  bottom: 0;
  position: absolute;
}

.progress {
  background: #eeeeee;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-box-shadow: 0 1px 0 transparent, 0 0 0 1px #e3e3e3 inset;
  -moz-box-shadow: 0 1px 0 transparent, 0 0 0 1px #e3e3e3 inset;
  box-shadow: 0 1px 0 transparent, 0 0 0 1px #e3e3e3 inset;
  height: 22px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  background: #57889c url(../images/pattern/overlay-pattern.png);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  color: #ffffff;
  float: left;
  font-size: 15px;
  font-weight: 700;
  height: 100%;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  width: 0;
}

.progress-striped .progress-bar {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-danger {
  background-color: #a90329;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-success {
  background-color: #739e73;
}

.progress-striped .progress-bar-success {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
  background-color: #c79121;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #57889c;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress .bar-info,
.progress-info .bar {
  background: #57889c;
}

.vertical-bars {
  margin: 0;
  padding: 0;
}

.vertical-bars:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

.vertical-bars li {
  display: block;
  float: left;
  padding: 14px 0;
  text-align: center;
  width: 25%;
}

.vertical-bars li:first-child {
  border-left: none;
}

.vertical-bars > li > .progress.vertical:first-child {
  margin-left: auto;
}

.vertical-bars > li > .progress.vertical {
  float: none;
  margin: 0 auto;
}

.bar-holder:first-child {
  border-top: none;
}

.bar-holder {
  padding: 18px 15px;
}

.bar-holder .progress {
  margin: 0;
}

[data-progressbar-value] {
  margin-bottom: 0;
  margin-top: 15px !important;
  overflow: visible;
}

.dataTable [data-progressbar-value] {
  min-width: 70px;
}

[data-progressbar-value="100"]:after,
[data-progressbar-value="100"]:before,
[data-progressbar-value]:after,
[data-progressbar-value]:before {
  background: 0 0;
  font-size: 11px;
  position: absolute;
  top: -12px;
}

[data-progressbar-value]:before {
  content: attr(data-progressbar-value);
  left: auto;
}

[data-progressbar-value]:after {
  content: "%";
  left: 13px;
}

[data-progressbar-value="1"] > .progress-bar {
  background: #a90329;
  width: 1%;
}

[data-progressbar-value="2"] > .progress-bar {
  background: #a90329;
  width: 2%;
}

[data-progressbar-value="3"] > .progress-bar {
  background: #a90329;
  width: 3%;
}

[data-progressbar-value="4"] > .progress-bar {
  background: #a90329;
  width: 4%;
}

[data-progressbar-value="5"] > .progress-bar {
  background: #a90329;
  width: 5%;
}

[data-progressbar-value="6"] > .progress-bar {
  background: #a90329;
  width: 6%;
}

[data-progressbar-value="7"] > .progress-bar {
  background: #a90329;
  width: 7%;
}

[data-progressbar-value="8"] > .progress-bar {
  background: #a90329;
  width: 8%;
}

[data-progressbar-value="9"] > .progress-bar {
  background: #a90329;
  width: 9%;
}

[data-progressbar-value="10"] > .progress-bar {
  background: #db0435;
  width: 10%;
}

[data-progressbar-value="11"] > .progress-bar {
  background: #c79121;
  width: 11%;
}

[data-progressbar-value="12"] > .progress-bar {
  background: #c79121;
  width: 12%;
}

[data-progressbar-value="13"] > .progress-bar {
  background: #c79121;
  width: 13%;
}

[data-progressbar-value="14"] > .progress-bar {
  background: #c79121;
  width: 14%;
}

[data-progressbar-value="15"] > .progress-bar {
  background: #c79121;
  width: 15%;
}

[data-progressbar-value="16"] > .progress-bar {
  background: #c79121;
  width: 16%;
}

[data-progressbar-value="17"] > .progress-bar {
  background: #c79121;
  width: 17%;
}

[data-progressbar-value="18"] > .progress-bar {
  background: #c79121;
  width: 18%;
}

[data-progressbar-value="19"] > .progress-bar {
  background: #c79121;
  width: 19%;
}

[data-progressbar-value="20"] > .progress-bar {
  background: #c79121;
  width: 20%;
}

[data-progressbar-value="21"] > .progress-bar {
  background: #c79121;
  width: 21%;
}

[data-progressbar-value="22"] > .progress-bar {
  background: #c79121;
  width: 22%;
}

[data-progressbar-value="23"] > .progress-bar {
  background: #c79121;
  width: 23%;
}

[data-progressbar-value="24"] > .progress-bar {
  background: #c79121;
  width: 24%;
}

[data-progressbar-value="25"] > .progress-bar {
  background: #c79121;
  width: 25%;
}

[data-progressbar-value="26"] > .progress-bar {
  background: #c79121;
  width: 26%;
}

[data-progressbar-value="27"] > .progress-bar {
  background: #c79121;
  width: 27%;
}

[data-progressbar-value="28"] > .progress-bar {
  background: #c79121;
  width: 28%;
}

[data-progressbar-value="29"] > .progress-bar {
  background: #c79121;
  width: 29%;
}

[data-progressbar-value="30"] > .progress-bar {
  background: #c79121;
  width: 30%;
}

[data-progressbar-value="31"] > .progress-bar {
  background: #c79121;
  width: 31%;
}

[data-progressbar-value="32"] > .progress-bar {
  background: #c79121;
  width: 32%;
}

[data-progressbar-value="33"] > .progress-bar {
  background: #c79121;
  width: 33%;
}

[data-progressbar-value="34"] > .progress-bar {
  background: #c79121;
  width: 34%;
}

[data-progressbar-value="35"] > .progress-bar {
  background: #c79121;
  width: 35%;
}

[data-progressbar-value="36"] > .progress-bar {
  background: #c79121;
  width: 36%;
}

[data-progressbar-value="37"] > .progress-bar {
  background: #c79121;
  width: 37%;
}

[data-progressbar-value="38"] > .progress-bar {
  background: #c79121;
  width: 38%;
}

[data-progressbar-value="39"] > .progress-bar {
  background: #c79121;
  width: 39%;
}

[data-progressbar-value="40"] > .progress-bar {
  background: #c79121;
  width: 40%;
}

[data-progressbar-value="41"] > .progress-bar {
  background: #404040;
  width: 41%;
}

[data-progressbar-value="42"] > .progress-bar {
  background: #404040;
  width: 42%;
}

[data-progressbar-value="43"] > .progress-bar {
  background: #404040;
  width: 43%;
}

[data-progressbar-value="44"] > .progress-bar {
  background: #404040;
  width: 44%;
}

[data-progressbar-value="45"] > .progress-bar {
  background: #404040;
  width: 45%;
}

[data-progressbar-value="46"] > .progress-bar {
  background: #404040;
  width: 46%;
}

[data-progressbar-value="47"] > .progress-bar {
  background: #404040;
  width: 47%;
}

[data-progressbar-value="48"] > .progress-bar {
  background: #404040;
  width: 48%;
}

[data-progressbar-value="49"] > .progress-bar {
  background: #404040;
  width: 49%;
}

[data-progressbar-value="50"] > .progress-bar {
  background: #404040;
  width: 50%;
}

[data-progressbar-value="51"] > .progress-bar {
  background: #404040;
  width: 51%;
}

[data-progressbar-value="52"] > .progress-bar {
  background: #404040;
  width: 52%;
}

[data-progressbar-value="53"] > .progress-bar {
  background: #404040;
  width: 53%;
}

[data-progressbar-value="54"] > .progress-bar {
  background: #404040;
  width: 54%;
}

[data-progressbar-value="55"] > .progress-bar {
  background: #404040;
  width: 55%;
}

[data-progressbar-value="56"] > .progress-bar {
  background: #404040;
  width: 56%;
}

[data-progressbar-value="57"] > .progress-bar {
  background: #404040;
  width: 57%;
}

[data-progressbar-value="58"] > .progress-bar {
  background: #404040;
  width: 58%;
}

[data-progressbar-value="59"] > .progress-bar {
  background: #404040;
  width: 59%;
}

[data-progressbar-value="60"] > .progress-bar {
  background: #404040;
  width: 60%;
}

[data-progressbar-value="61"] > .progress-bar {
  background: #3276b1;
  width: 61%;
}

[data-progressbar-value="62"] > .progress-bar {
  background: #3276b1;
  width: 62%;
}

[data-progressbar-value="63"] > .progress-bar {
  background: #3276b1;
  width: 63%;
}

[data-progressbar-value="64"] > .progress-bar {
  background: #404040;
  width: 64%;
}

[data-progressbar-value="65"] > .progress-bar {
  background: #3276b1;
  width: 65%;
}

[data-progressbar-value="66"] > .progress-bar {
  background: #3276b1;
  width: 66%;
}

[data-progressbar-value="67"] > .progress-bar {
  background: #3276b1;
  width: 67%;
}

[data-progressbar-value="68"] > .progress-bar {
  background: #3276b1;
  width: 68%;
}

[data-progressbar-value="69"] > .progress-bar {
  background: #3276b1;
  width: 69%;
}

[data-progressbar-value="70"] > .progress-bar {
  background: #3276b1;
  width: 70%;
}

[data-progressbar-value="71"] > .progress-bar {
  background: #3276b1;
  width: 71%;
}

[data-progressbar-value="72"] > .progress-bar {
  background: #3276b1;
  width: 72%;
}

[data-progressbar-value="73"] > .progress-bar {
  background: #3276b1;
  width: 73%;
}

[data-progressbar-value="74"] > .progress-bar {
  background: #3276b1;
  width: 74%;
}

[data-progressbar-value="75"] > .progress-bar {
  background: #3276b1;
  width: 75%;
}

[data-progressbar-value="76"] > .progress-bar {
  background: #3276b1;
  width: 76%;
}

[data-progressbar-value="77"] > .progress-bar {
  background: #3276b1;
  width: 77%;
}

[data-progressbar-value="78"] > .progress-bar {
  background: #3276b1;
  width: 78%;
}

[data-progressbar-value="79"] > .progress-bar {
  background: #3276b1;
  width: 79%;
}

[data-progressbar-value="80"] > .progress-bar {
  background: #3276b1;
  width: 80%;
}

[data-progressbar-value="81"] > .progress-bar {
  background: #a0bda0;
  width: 81%;
}

[data-progressbar-value="82"] > .progress-bar {
  background: #a0bda0;
  width: 82%;
}

[data-progressbar-value="83"] > .progress-bar {
  background: #a0bda0;
  width: 83%;
}

[data-progressbar-value="84"] > .progress-bar {
  background: #9dbb9d;
  width: 84%;
}

[data-progressbar-value="85"] > .progress-bar {
  background: #9dbb9d;
  width: 85%;
}

[data-progressbar-value="86"] > .progress-bar {
  background: #9dbb9d;
  width: 86%;
}

[data-progressbar-value="87"] > .progress-bar {
  background: #97b797;
  width: 87%;
}

[data-progressbar-value="88"] > .progress-bar {
  background: #97b797;
  width: 88%;
}

[data-progressbar-value="89"] > .progress-bar {
  background: #91b391;
  width: 89%;
}

[data-progressbar-value="90"] > .progress-bar {
  background: #91b391;
  width: 90%;
}

[data-progressbar-value="91"] > .progress-bar {
  background: #91b391;
  width: 91%;
}

[data-progressbar-value="92"] > .progress-bar {
  background: #8eb18e;
  width: 92%;
}

[data-progressbar-value="93"] > .progress-bar {
  background: #8baf8b;
  width: 93%;
}

[data-progressbar-value="94"] > .progress-bar {
  background: #88ad88;
  width: 94%;
}

[data-progressbar-value="95"] > .progress-bar {
  background: #85ab85;
  width: 95%;
}

[data-progressbar-value="96"] > .progress-bar {
  background: #82a882;
  width: 96%;
}

[data-progressbar-value="97"] > .progress-bar {
  background: #7fa67f;
  width: 97%;
}

[data-progressbar-value="98"] > .progress-bar {
  background: #7ca47c;
  width: 98%;
}

[data-progressbar-value="99"] > .progress-bar {
  background: #79a279;
  width: 99%;
}

[data-progressbar-value="100"] > .progress-bar {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
  background: #739e73;
  background-image: none !important;
  width: 100%;
}

[data-progressbar-value="100"]:before {
  content: attr(data-progressbar-value);
  left: auto;
  top: -12px;
}

[data-progressbar-value="100"]:after {
  color: #739e73;
  content: "complete";
  left: auto;
  right: 0;
}

html.hidden-menu-mobile-lock {
  overflow-x: hidden;
}

.no-content-padding {
  margin: -10px -14px 0 -14px;
}

.no-padding {
  padding: 0 !important;
}

.no-padding > pre {
  margin: 30px;
}

.no-padding .dataTables_wrapper table,
.no-padding > table {
  border: none !important;
  border-bottom-width: 0 !important;
  margin-bottom: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.padding-5 {
  padding: 5px !important;
}

.padding-7 {
  padding: 7px !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-gutter {
  padding: 13px !important;
}

.padding-top-10 {
  padding-top: 10px !important;
}

.padding-top-15 {
  padding-top: 15px !important;
}

.padding-bottom-10 {
  padding-bottom: 10px !important;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-top-0 {
  padding-top: 0 !important;
}

.no-padding .dataTables_wrapper table tr td:last-child,
.no-padding .dataTables_wrapper table tr th:last-child,
.no-padding > table tr td:last-child,
.no-padding > table tr th:last-child {
  border-right: none !important;
}

.no-padding .dataTables_wrapper table tr td:first-child,
.no-padding .dataTables_wrapper table tr th:first-child,
.no-padding > table tr td:first-child,
.no-padding > table tr th:first-child {
  border-left: none !important;
}

.no-padding .dataTables_wrapper table tbody tr:last-child td {
  border-bottom: 0;
}

.semi-bold {
  font-weight: 400 !important;
}

.ultra-light {
  font-weight: 300 !important;
}

.font-xs {
  font-size: 85% !important;
}

.font-sm {
  font-size: 95% !important;
}

.font-md {
  font-size: 130% !important;
}

.font-lg {
  font-size: 160% !important;
}

.font-xl {
  font-size: 200% !important;
}

.font-400 {
  font-size: 400% !important;
}

.no-margin {
  margin: 0 !important;
}

.margin-top-5 {
  margin-top: 5px !important;
}

.margin-top-10 {
  margin-top: 10px !important;
}

.margin-bottom-5 {
  margin-bottom: 5px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-right-5 {
  margin-right: 5px !important;
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.margin-right-13 {
  margin-right: 13px !important;
}

.no-border,
.well[class*=" bg-"].no-border {
  border-width: 0 !important;
}

.no-border-transparent {
  border-color: transparent !important;
}

.no-border-radius {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.display-inline {
  display: inline-block !important;
}

.display-normal {
  display: inline !important;
}

.cursor-pointer {
  cursor: pointer;
}

.hover-transparent {
  opacity: 0.5;
}

.hover-transparent:hover {
  opacity: 1;
}

.text-align-center,
.text-center {
  text-align: center !important;
}

.text-align-left,
.text-left {
  text-align: left !important;
}

.text-align-right,
.text-right {
  text-align: right !important;
}

hr.simple {
  border-style: dashed;
  margin-bottom: 10px;
  margin-top: 10px;
}

.pull-right {
  float: right !Important;
}

.pull-left {
  float: left !Important;
}

.air {
  position: absolute;
  z-index: 5;
}

.air-bottom {
  bottom: 0;
}

.air-top {
  top: 0;
}

.air-top-right {
  right: 0;
  top: 0;
}

.air-top-left {
  left: 0;
  top: 0;
}

.air-bottom-left {
  bottom: 0;
  left: 0;
}

.air-bottom-right {
  bottom: 0;
  right: 0;
}

.display-none {
  display: none !important;
}

.checkbox input[type=checkbox].checkbox + span,
.checkbox-inline input[type=checkbox].checkbox + span,
.radio input[type=radio].radiobox + span,
.radiobox-inline input[type=radio].radiobox + span {
  margin-left: -20px;
}

.form-inline .checkbox input[type=checkbox].checkbox + span,
.form-inline .radiobox input[type=radio].radiobox + span {
  margin-left: 0;
}

.form-inline .checkbox,
.form-inline .radiobox {
  padding-left: 0;
}

#app-page input[type=checkbox].checkbox + span,
#app-page label input[type=radio].radiobox + span {
  line-height: 20px;
  vertical-align: middle;
}

#app-page input[type=checkbox].checkbox + span,
#app-page input[type=checkbox].checkbox + span:after,
#app-page input[type=checkbox].checkbox + span:before,
#app-page input[type=radio].radiobox + span,
#app-page input[type=radio].radiobox + span:after,
#app-page input[type=radio].radiobox + span:before {
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

#app-page input[type=checkbox].checkbox,
#app-page input[type=radio].radiobox {
  height: 18px;
  position: absolute;
  visibility: hidden;
  width: 18px;
  z-index: 20;
}

#app-page label input[type=checkbox].checkbox + span,
#app-page label input[type=radio].radiobox + span {
  display: inline-block;
  line-height: 17px;
  margin: 0 5px 0 0;
  min-height: 14px;
  min-width: 14px;
  position: relative;
  z-index: 19;
}

#app-page label input[type=checkbox].checkbox + span:hover,
#app-page label input[type=radio].radiobox + span:hover {
  cursor: pointer;
}

#app-page label input[type=checkbox].checkbox + span:before,
#app-page label input[type=radio].radiobox + span:before {
  background-color: #f4f4f4;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  content: "\a0";
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 12px;
  font-weight: 400;
  height: 12px;
  line-height: 12px;
  margin-right: 5px;
  margin-top: -1px;
  min-width: 12px;
  padding: 1px;
  text-align: center;
  vertical-align: middle;
}

#app-page label input[type=radio].radiobox + span:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.2);
  content: "\a0";
}

#app-page label input[type=radio].radiobox:checked + span {
  font-weight: 700;
}

#app-page label input[type=radio].radiobox:checked + span:before {
  color: #2e7bcc;
  content: "\f111";
}

#app-page label input[type=radio].radiobox.style-3:checked + span:before {
  border-color: #a90329;
  color: #a90329;
}

#app-page label input[type=radio].radiobox.style-2:checked + span:before {
  border-color: #4d90fe;
  color: #66665e;
  font-size: 9px;
}

#app-page label input[type=radio].radiobox.style-2:checked + span {
  font-weight: 400;
}

#app-page label input[type=radio].radiobox.style-1 + span:before {
  background: #ffffff;
  border-width: 1px;
  box-shadow: none !important;
  font-size: 9px;
  height: 13px;
  line-height: 13px;
  min-width: 13px;
  text-shadow: none;
}

#app-page label input[type=radio].radiobox.style-1:checked + span:before {
  background: #ffffff;
  border-color: #333333;
  color: #333333;
  font-size: 10px;
}

#app-page label input[type=radio].radiobox.style-1:checked + span {
  font-weight: 400;
}

#app-page label:hover input[type=radio].radiobox + span:before,
#app-page label:hover input[type=radio].radiobox:checked + span:before {
  border-color: #2e7bcc;
  color: #2e7bcc;
}

#app-page label:hover input[type=radio].radiobox.style-3 + span:before,
#app-page label:hover input[type=radio].radiobox.style-3:checked + span:before {
  border-color: #a90329;
  color: #a90329;
}

#app-page label:hover input[type=radio].radiobox.style-2:checked + span:before {
  border-color: #4d90fe;
  color: #66665e;
}

#app-page label:hover input[type=radio].radiobox.style-1 + span:before,
#app-page label:hover input[type=radio].radiobox.style-1:checked + span:before {
  background: #ffffff;
  border-color: #333333;
  color: #333333;
}

#app-page label:active input[type=radio].radiobox + span:before {
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

#app-page label input[type=radio][disabled].radiobox + span,
#app-page label input[type=radio][disabled].radiobox:checked + span,
#app-page label:hover input[type=radio][disabled].radiobox:checked + span:before {
  color: #a7a7a7;
  cursor: not-allowed;
}

#app-page label input[type=radio][disabled].radiobox:checked + span:before {
  content: "\f111";
}

#app-page label input[type=radio][disabled].radiobox + span:before,
#app-page label input[type=radio][disabled].radiobox:checked + span:before,
#app-page label:active input[type=radio][disabled].radiobox:checked + span:before,
#app-page label:hover input[type=radio][disabled].radiobox:checked + span:before {
  background: #eeeeee !important;
  border-color: #cccccc !important;
  box-shadow: none;
  color: #a7a7a7;
}

#app-page label input[type=checkbox].checkbox + span:before {
  content: "\a0";
}

#app-page label input[type=checkbox].checkbox:checked + span:before {
  content: "\f00c";
}

#app-page label input[type=checkbox].checkbox:checked + span {
  font-weight: 700;
}

#app-page label input[type=checkbox].checkbox:checked + span:before {
  color: #2e7bcc;
}

#app-page label input[type=checkbox].checkbox.style-3:checked + span:before {
  background: #a90329;
  border-color: #a90329;
  color: #ffffff;
}

#app-page label input[type=checkbox].checkbox.style-2 + span:before {
  background: 0 0;
  border-color: #c1c1c1;
  box-shadow: none;
}

#app-page label input[type=checkbox].checkbox.style-2:checked + span:before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MUQ0MEM4RUFEQUE4MTFFMkEwMjM5NzlCRjAxM0UwRjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUQ0MEM4RUJEQUE4MTFFMkEwMjM5NzlCRjAxM0UwRjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxRDQwQzhFOERBQTgxMUUyQTAyMzk3OUJGMDEzRTBGNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxRDQwQzhFOURBQTgxMUUyQTAyMzk3OUJGMDEzRTBGNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsD/PVAAAAAQSURBVHjaYv7//78vQIABAAlYA05NMPppAAAAAElFTkSuQmCC) #ffffff;
  border-color: #4d90fe;
  color: #66665e;
  content: "\f00c";
}

#app-page label input[type=checkbox].checkbox.style-2:checked + span {
  font-weight: 400;
}

#app-page label input[type=checkbox].checkbox.style-1 + span:before {
  background: #ffffff;
  border-width: 1px;
  box-shadow: none !important;
  color: #333333;
  height: 12px;
  line-height: 13px;
  min-width: 12px;
  text-shadow: none;
}

#app-page label input[type=checkbox].checkbox.style-1:checked + span:before {
  border-color: #333333;
  color: #333333;
}

#app-page label input[type=checkbox].checkbox.style-1:checked + span {
  font-weight: 400;
}

#app-page label:active input[type=checkbox].checkbox + span:before {
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

#app-page label:hover input[type=checkbox].checkbox + span:before {
  border-color: #2e7bcc;
  color: #2e7bcc;
}

#app-page label:hover input[type=checkbox].checkbox.style-3 + span:before {
  border-color: #a90327;
  color: #ffffff;
}

#app-page label:hover input[type=checkbox].checkbox.style-2 + span:before {
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

#app-page label:hover input[type=checkbox].checkbox.style-2:checked + span:before {
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

#app-page label:hover input[type=checkbox].checkbox.style-1 + span:before {
  border-color: #333333;
}

#app-page label:active input[type=checkbox].checkbox:checked + span:before {
  background: #2e7bcc;
  border-color: #2e7bcc;
  color: #ffffff;
}

#app-page label:active input[type=checkbox].checkbox.style-3:checked + span:before {
  background: #ffffff;
  border-color: #a90329;
  color: #a90329;
}

#app-page label:active input[type=checkbox].checkbox.style-2 + span:before,
#app-page label:active input[type=checkbox].checkbox.style-2:checked + span:before {
  background: 0 0;
  border-color: #c1c1c1;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 0 0 rgba(255, 255, 255, 0.4);
  color: #66665e;
}

#app-page label:active input[type=checkbox].checkbox.style-1:checked + span:before {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

#app-page label input[type=checkbox][disabled].checkbox + span,
#app-page label input[type=checkbox][disabled].checkbox:checked + span,
#app-page label:hover input[type=checkbox][disabled].checkbox:checked + span:before {
  color: #a7a7a7;
  cursor: not-allowed;
}

#app-page label input[type=checkbox][disabled].checkbox.style-2:checked + span:before,
#app-page label input[type=checkbox][disabled].checkbox:checked + span:before {
  content: "\f00c";
}

#app-page label input[type=checkbox][disabled].checkbox + span:before,
#app-page label input[type=checkbox][disabled].checkbox:checked + span:before,
#app-page label:active input[type=checkbox][disabled].checkbox:checked + span:before,
#app-page label:hover input[type=checkbox][disabled].checkbox:checked + span:before {
  background: #eeeeee !important;
  border-color: #cccccc !important;
  box-shadow: none !important;
  color: #a7a7a7;
}

.open > .dropdown-menu {
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInX;
  -moz-animation-name: flipInX;
  -o-animation-name: flipInX;
  animation-name: flipInX;
}

.active + .ajax-dropdown {
  -webkit-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -o-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  -moz-animation-name: flipInY;
  -o-animation-name: flipInY;
  animation-name: flipInY;
}

.square {
  display: block;
  float: left;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

[class*=" bg-"],
[class^=bg-] {
  filter: none !important;
}

.txt-color-blue {
  color: #57889c !important;
}

.txt-color-blueLight {
  color: #92a2a8 !important;
}

.txt-color-blueDark {
  color: #4c4f53 !important;
}

.txt-color-green {
  color: #356e35 !important;
}

.txt-color-greenLight {
  color: #71843f !important;
}

.txt-color-greenDark {
  color: #496949 !important;
}

.txt-color-red {
  color: #a90329 !important;
}

.txt-color-yellow {
  color: #b09b5b !important;
}

.txt-color-orange {
  color: #b19a6b !important;
}

.txt-color-orangeDark {
  color: #a57225 !important;
}

.txt-color-pink {
  color: #ac5287 !important;
}

.txt-color-pinkDark {
  color: #a8829f !important;
}

.txt-color-purple {
  color: #6e587a !important;
}

.txt-color-darken {
  color: #404040 !important;
}

.txt-color-lighten {
  color: #d5e7ec !important;
}

.txt-color-white {
  color: #ffffff !important;
}

.txt-color-grayDark {
  color: #525252 !important;
}

.txt-color-magenta {
  color: #6e3671 !important;
}

.txt-color-teal {
  color: #568a89 !important;
}

.txt-color-redLight {
  color: #a65858 !important;
}

.bg-color-blue {
  background-color: #57889c !important;
}

.bg-color-blueLight {
  background-color: #92a2a8 !important;
}

.bg-color-blueDark {
  background-color: #4c4f53 !important;
}

.bg-color-green {
  background-color: #356e35 !important;
}

.bg-color-greenLight {
  background-color: #71843f !important;
}

.bg-color-greenDark {
  background-color: #496949 !important;
}

.bg-color-red {
  background-color: #a90329 !important;
}

.bg-color-yellow {
  background-color: #b09b5b !important;
}

.bg-color-orange {
  background-color: #c79121 !important;
}

.bg-color-orangeDark {
  background-color: #a57225 !important;
}

.bg-color-pink {
  background-color: #ac5287 !important;
}

.bg-color-pinkDark {
  background-color: #a8829f !important;
}

.bg-color-purple {
  background-color: #6e587a !important;
}

.bg-color-darken {
  background-color: #404040 !important;
}

.bg-color-lighten {
  background-color: #d5e7ec !important;
}

.bg-color-white {
  background-color: #ffffff !important;
}

.bg-color-grayDark {
  background-color: #525252 !important;
}

.bg-color-magenta {
  background-color: #6e3671 !important;
}

.bg-color-teal {
  background-color: #568a89 !important;
}

.bg-color-redLight {
  background-color: #a65858 !important;
}

.colorblind-friendly .alert,
.colorblind-friendly .btn-primary {
  color: #ffffff;
}

.colorblind-friendly .btn:hover {
  background: #ffffff;
  border-color: #333333;
  color: #333333;
}

.colorblind-friendly .alert-danger,
.colorblind-friendly .btn-danger {
  background: #303030 url(../images/colorblind-friendly/pt1.png);
  border-color: #272727;
}

.colorblind-friendly .alert-success,
.colorblind-friendly .btn-success {
  background: #1e5e00 url(../images/colorblind-friendly/pt2.png);
  border-color: #ff00eb;
}

.colorblind-friendly .alert-warning,
.colorblind-friendly .btn-warning {
  background: #a07a00 url(../images/colorblind-friendly/pt3.png);
  border-color: #5f4415;
}

.colorblind-friendly .alert-info,
.colorblind-friendly .btn-info {
  background-color: #002e70;
  border-color: #ff9900;
}

.colorblind-friendly .jarviswidget-ctrls .button-icon:hover {
  background-color: #333333;
  color: #ffffff !important;
}

.colorblind-friendly .jarviswidget-color-blue .jarviswidget-ctrls .button-icon:hover,
.colorblind-friendly .jarviswidget-color-blueDark .jarviswidget-ctrls .button-icon:hover,
.colorblind-friendly .jarviswidget-color-darken .jarviswidget-ctrls .button-icon:hover {
  background-color: #ffffff;
  color: #333333 !important;
}

.colorblind-friendly .jarviswidget {
  position: relative;
}

.colorblind-friendly .jarviswidget:hover:before {
  border: 6px solid #333333;
  border-bottom-width: 10px;
  bottom: 0;
  height: 103%;
  left: -5px;
  overflow: visible;
  position: absolute;
  right: -5px;
  top: -3px;
  visibility: visible;
  z-index: 0;
}

.colorblind-friendly .nav > li:not(.active) > a:focus,
.colorblind-friendly .nav > li:not(.active) > a:hover {
  background-color: #303030;
  color: #ffffff !important;
}

.page-footer {
  background: #2a2725;
  border-top: 1px solid #cecece;
  bottom: 0;
  display: block;
  height: 52px;
  padding: 15px 13px 0 233px;
  position: absolute;
  width: 100%;
}

.fixed-page-footer .page-footer {
  position: fixed;
  z-index: 901;
}

.minified .page-footer {
  padding-left: 58px;
}

.container.fixed-page-footer .page-footer {
  max-width: 1164px;
}

.hidden-menu .page-footer {
  padding-left: 20px;
}

@media (max-width: 979px) {
  html.hidden-menu-mobile-lock {
    overflow-x: hidden;
  }

  #main {
    width: 100% !important;
  }

  .page-footer {
    padding: 15px 14px 0;
  }

  .profile-pic > img {
    width: 110px;
  }

  .profile-pic {
    float: left;
  }

  .profile-pic > img {
    margin-right: 10px;
  }

  .profile-pic + div,
  .profile-pic + div + div {
    padding-left: 30px;
    padding-right: 30px;
  }

  #fullscreen > :first-child > a {
    display: none !important;
  }

  body.container {
    border: none !important;
    width: 100% !important;
  }

  .inbox-data-message > :first-child {
    height: 50px;
    overflow: hidden;
  }

  .show-stats .show-stat-buttons > :first-child {
    padding-right: 13px;
  }

  .show-stats .show-stat-buttons > :last-child {
    padding-left: 13px;
  }

  .inbox-checkbox-triggered > .btn-group .btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .inbox-body .table-wrap {
    padding: 0 !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .inbox-nav-bar {
    padding-left: 5px;
    padding-right: 5px;
  }

  .inbox-data-message > :first-child > :first-child {
    display: block !important;
    font-size: 15px;
  }

  .inbox-table-icon > :first-child {
    margin-top: 12px;
  }

  #inbox-table .inbox-table-icon {
    padding-left: 10px !important;
  }

  .header-search.pull-right {
    margin-left: 0;
  }

  .visible-tablet {
    display: inline-block !important;
  }

  .display-inline.hidden-tablet,
  .hidden-tablet {
    display: none !important;
  }

  #app-page .jarviswidget header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 310px;
  }

  .dropzone .dz-default.dz-message {
    background-size: 100%;
    height: 43px;
    margin-left: -112px;
    margin-top: -23.5px;
    width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  #main {
    margin-left: 0;
  }

  #left-panel {
    left: -220px;
  }

  .minified #left-panel {
    left: 0;
  }

  #hide-menu > :first-child > a {
    margin-top: 9px;
    width: 40px;
  }

  .btn-header a {
    margin-top: 9px !important;
    width: 40px !important;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 100%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i:before {
    content: "\f0c9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    left: 210px;
    position: relative;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  #app-page .jarviswidget header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 200px;
  }

  .header-search > input[type=text] {
    margin-top: 9px;
  }
}

@media (min-width: 768px) and (max-width: 880px) {
  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  .no-content-padding {
    margin: 0 -14px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  .minified #left-panel {
    left: 0;
  }

  #hide-menu > :first-child > a,
  .btn-header a {
    height: 39px !important;
    line-height: 38px !important;
    margin-top: 5px !important;
    width: 40px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 127px;
  }

  .btn-header.transparent a {
    background: 0 0;
    border: none !important;
    box-shadow: none !important;
    margin-left: 0;
    width: 25px !important;
  }

  .btn-header.transparent a:hover {
    color: #a90329;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i:before {
    content: "\f0c9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    left: 210px;
    position: relative;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  #app-page .jarviswidget header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 180px;
  }

  .header-search > input[type=text] {
    margin-top: 9px;
  }
}

@media (max-width: 767px) {
  .profile-pic > img {
    width: 100px;
  }

  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  .show-stat-microcharts > div {
    border-right: none !important;
    margin-top: 0 !important;
  }

  .show-stat-buttons {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #content,
  #ribbon {
    padding-left: 5px;
    padding-right: 5px;
  }

  #header {
    padding-right: 5px;
  }

  #logo {
    margin-left: 4px;
  }

  .no-content-padding {
    margin: 0 -5px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  .minified #left-panel {
    left: 0;
  }

  .btn-header.transparent a {
    background: 0 0;
    border: none !important;
    box-shadow: none !important;
    margin-left: 0;
    width: 25px !important;
  }

  .btn-header.transparent a:hover {
    color: #a90329;
  }

  #hide-menu > :first-child > a,
  .btn-header a {
    height: 39px !important;
    line-height: 38px !important;
    margin-top: 5px !important;
    width: 40px !important;
  }

  #hide-menu > :first-child > a {
    width: 50px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 127px;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i:before {
    content: "\f0c9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    left: 210px;
    position: relative;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  body.fixed-navigation.hidden-menu {
    overflow: hidden !important;
  }

  .fixed-ribbon #content {
    padding-top: 52px;
  }

  .header-search {
    display: none;
  }

  #search-mobile {
    display: block;
  }

  .search-mobile .header-search {
    background: #333333;
    box-sizing: border-box;
    display: block;
    height: 49px;
    left: 0;
    padding: 0 2px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .search-mobile .header-search > input[type=text] {
    border-color: #333333;
    height: 45px;
    margin-top: 2px;
    padding-right: 75px;
  }

  .search-mobile .header-search > button {
    background: #dddddd;
    height: 29px;
    line-height: 29px;
    right: 44px;
  }

  .search-mobile #search-mobile {
    display: none;
  }

  .search-mobile #cancel-search-js {
    display: block;
  }

  #app-page .jarviswidget header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 250px;
  }
}

@media only screen and (min-width: 0) and (max-width: 679px) {
  .profile-pic > img {
    width: 90px;
  }

  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  .show-stat-microcharts > div {
    border-right: none !important;
    margin-top: 0 !important;
  }

  .show-stat-buttons {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #content,
  #ribbon {
    padding-left: 5px;
    padding-right: 5px;
  }

  #header {
    padding-right: 5px;
  }

  #logo {
    margin-left: 4px;
  }

  .no-content-padding {
    margin: 0 -5px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  .minified #left-panel {
    left: 0;
  }

  #header {
    background: #ffffff;
  }

  #ribbon {
    background: #f5f5f5;
    border-bottom: 1px solid #cfcfcf;
    border-top: 1px solid #e6e6e6;
  }

  #ribbon .breadcrumb,
  #ribbon .breadcrumb a {
    color: #6d6c6c !important;
  }

  #ribbon .breadcrumb li:last-child,
  #ribbon .breadcrumb > .active {
    color: #333333 !important;
  }

  #hide-menu > :first-child > a,
  .btn-header a {
    height: 39px !important;
    line-height: 38px !important;
    margin-top: 5px !important;
    width: 40px !important;
  }

  #hide-menu > :first-child > a {
    width: 50px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 127px;
  }

  .btn-header.transparent a {
    background: 0 0;
    border: none !important;
    box-shadow: none !important;
    margin-left: 0;
    width: 25px !important;
  }

  .btn-header.transparent a:hover {
    color: #a90329;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i:before {
    content: "\f0c9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    left: 210px;
    position: relative;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  .header-search {
    display: none;
  }

  #search-mobile {
    display: block;
  }

  .search-mobile .header-search {
    background: #333333;
    box-sizing: border-box;
    display: block;
    height: 49px;
    left: 0;
    padding: 0 2px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .search-mobile .header-search > input[type=text] {
    border-color: #333333;
    height: 45px;
    margin-top: 2px;
    padding-right: 75px;
  }

  .search-mobile .header-search > button {
    background: #dddddd;
    height: 29px;
    line-height: 29px;
    right: 44px;
  }

  .search-mobile #search-mobile {
    display: none;
  }

  .search-mobile #cancel-search-js {
    display: block;
  }

  .hidden-tablet {
    display: none !important;
  }

  #app-page .jarviswidget header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 300px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .page-title {
    display: none;
  }

  .profile-pic {
    text-align: left;
  }

  .profile-pic > img {
    margin-left: 0;
    margin-right: 0;
    top: -25px;
    width: 90px;
  }

  .profile-pic + div > h1 {
    font-size: 20px;
  }

  .profile-pic + div > h1 small {
    font-size: 16px;
  }

  .profile-carousel .carousel-indicators {
    top: 10px;
  }

  #main {
    margin-left: 0;
    overflow-x: hidden;
  }

  #left-panel {
    left: -220px;
  }

  .show-stat-microcharts > div {
    border-right: none !important;
    margin-top: 0 !important;
  }

  .show-stat-buttons {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #content,
  #ribbon {
    padding-left: 5px;
    padding-right: 5px;
  }

  #header {
    padding-right: 5px;
  }

  #logo {
    margin-left: 4px;
  }

  .no-content-padding {
    margin: 0 -5px !important;
  }

  .inbox-nav-bar.no-content-padding {
    margin-top: -10px !important;
  }

  .minified #left-panel {
    left: 0;
  }

  #header {
    background: #ffffff;
  }

  #ribbon {
    background: #f5f5f5;
    border-bottom: 1px solid #cfcfcf;
    border-top: 1px solid #e6e6e6;
  }

  #ribbon .breadcrumb,
  #ribbon .breadcrumb a {
    color: #6d6c6c !important;
  }

  #ribbon .breadcrumb li:last-child,
  #ribbon .breadcrumb > .active {
    color: #333333 !important;
  }

  #logo {
    width: 135px;
  }

  #logo-group {
    width: 169px !important;
  }

  #sparks {
    background: #e0e0e0;
    margin-bottom: 15px;
    padding: 10px 0;
    text-align: center;
  }

  #sparks li {
    padding: 0 10px 0 20px;
  }

  #hide-menu > :first-child > a,
  .btn-header a {
    height: 39px !important;
    line-height: 38px !important;
    margin-top: 5px !important;
    width: 40px !important;
  }

  #logo {
    margin-top: 10px;
  }

  #logo img {
    width: 127px;
  }

  .btn-header.transparent a {
    background: 0 0;
    border: none !important;
    box-shadow: none !important;
    margin-left: 0;
    width: 25px !important;
  }

  .btn-header.transparent a:hover {
    color: #a90329;
  }

  #hide-menu > :first-child > a {
    width: 46px !important;
  }

  #hide-menu i {
    color: #6d6a69;
    font-size: 121%;
  }

  .hidden-menu #hide-menu i {
    color: #ffffff;
  }

  #hide-menu i:before {
    content: "\f0c9";
  }

  .hidden-menu #left-panel {
    left: 0;
  }

  .hidden-menu #main {
    left: 210px;
    position: relative;
  }

  .hidden-menu.fixed-ribbon #ribbon {
    left: 220px;
    width: 100%;
  }

  .fixed-ribbon #ribbon {
    left: 0;
  }

  .hidden-mobile {
    display: none !important;
  }

  .visible-mobile {
    display: inline-block !important;
  }

  .ajax-notifications {
    height: 250px;
  }

  .ajax-dropdown {
    height: 320px;
    left: 0;
    top: 49px;
    width: 299px;
  }

  .ajax-dropdown:before {
    margin-left: -14px;
  }

  .ajax-dropdown:after {
    margin-left: -13px;
  }

  .header-search {
    display: none;
  }

  #search-mobile {
    display: block;
    margin-left: 0;
  }

  .search-mobile .header-search {
    background: #333333;
    box-sizing: border-box;
    display: block;
    height: 49px;
    left: 0;
    padding: 0 2px;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .search-mobile .header-search > input[type=text] {
    border-color: #333333;
    height: 45px;
    margin-top: 2px;
    padding-right: 75px;
  }

  .search-mobile .header-search > button {
    background: #dddddd;
    height: 29px;
    line-height: 29px;
    right: 44px;
  }

  .search-mobile #search-mobile {
    display: none;
  }

  .search-mobile #cancel-search-js {
    display: block;
  }

  #app-page .jarviswidget header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 135px;
  }
}

#extr-page #main {
  margin-top: 0 !important;
}

#mobile-profile-img {
  display: none !important;
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.menu-on-top #mobile-profile-img {
  display: block !important;
}

#mobile-profile-img a.userdropdown img {
  border: 1px solid #797979 !important;
  border-radius: 3px;
  margin-left: 2px;
  margin-top: 5px;
  width: 30px;
}

.menu-on-top .page-footer {
  padding: 15px 13px 0;
}

.menu-on-top.hidden-menu #left-panel {
  left: 0;
}

.menu-on-top #main {
  margin-left: 0 !important;
  margin-top: 69px !important;
}

.menu-on-top #hide-menu,
.menu-on-top #logout,
.menu-on-top .minifyme {
  display: none !important;
}

.menu-on-top aside#left-panel {
  border-bottom: 1px solid #222222;
  border-top: 1px solid #333333;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  height: auto;
  min-height: 0 !important;
  overflow: visible;
  width: 100% !important;
}

.menu-on-top aside#left-panel nav > ul {
  display: block;
  width: 100%;
}

.menu-on-top aside#left-panel nav > ul > li:first-child {
  margin-left: 0;
}

.menu-on-top aside#left-panel nav > ul > li {
  border-left: 1px solid #4e4e4e;
  border-right: 1px solid #222222;
  display: inline-block;
  float: left;
  height: auto !important;
  overflow: visible;
  padding: 0 !important;
  position: relative;
}

.menu-on-top aside#left-panel nav > ul > li > a {
  display: inline-block;
  font-size: 15px;
  height: 68px;
  line-height: 22px;
  padding: 10px 9px !important;
  text-decoration: none;
  text-shadow: none !important;
}

.menu-on-top li.active > a {
  font-weight: 700 !important;
}

.menu-on-top .login-info,
.menu-on-top nav > ul > li > a b {
  display: none;
}

.menu-on-top aside#left-panel nav > ul > li > a > i {
  display: block !important;
  font-size: 24px;
  line-height: inherit;
  margin: 1px 0 2px;
  text-align: center;
  width: 100%;
}

.menu-on-top .menu-item-parent {
  font-size: 15px;
  max-width: 72px;
  min-width: 50px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-on-top .menu-item-parent + span {
  float: none !important;
  position: absolute;
  right: 5px;
  top: 5px;
}

.menu-on-top nav ul ul li a {
  font-size: 15px;
  padding-left: 10px !important;
}

.menu-on-top aside#left-panel nav > ul > li:hover {
  background: #ffffff;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffffff), color-stop(1, #cfcfcf));
  background: -ms-linear-gradient(bottom, #ffffff, #cfcfcf);
  background: -o-linear-gradient(#cfcfcf, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff 0, #cfcfcf 100%);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#cfcfcf', endColorstr='#ffffff', GradientType=0);
}

.menu-on-top aside#left-panel nav > ul > li:hover > a {
  border-left: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
  color: #333333 !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.menu-on-top aside#left-panel nav > ul > li > ul {
  background: #3a3633;
  position: absolute !important;
}

.menu-on-top aside#left-panel nav > ul > li:hover > ul {
  display: block !important;
}

.menu-on-top aside#left-panel nav ul li.active > a:before {
  content: "" !important;
}

.menu-on-top nav > ul ul li:before,
.menu-on-top nav > ul > li > ul:before {
  border: none;
}

.menu-on-top nav ul ul li a,
.menu-on-top nav ul ul ul li a {
  color: #4c4f53;
}

.menu-on-top nav ul ul li a:hover,
.menu-on-top nav ul ul li:hover > a,
.menu-on-top nav ul ul ul li a:hover {
  background-color: #4c4f53;
  color: #ffffff;
}

.menu-on-top nav > ul ul ul {
  border-top: 1px solid #c7c7c7 !important;
}

.menu-on-top nav ul ul li {
  overflow: visible;
}

.menu-on-top nav ul ul,
.menu-on-top nav ul ul ul {
  background: #ffffff !important;
  border: 1px solid #c7c7c7;
  border-bottom: 1px solid #bd2a2a;
  border-radius: 0;
  border-top: none;
  -moz-box-shadow: inset 0 -4px 0 0 #bd2a2a;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  display: none !important;
  margin-left: 0;
  padding: 3px;
  width: 200px;
}

.menu-on-top nav > ul ul li:hover > ul {
  background: #333333;
  display: block !important;
  left: 100%;
  position: absolute;
  top: -8px;
  z-index: 999;
}

.menu-on-top nav > ul > li > a:after {
  color: #636363 !important;
  content: "\f0dd" !important;
  left: 46%;
  top: 76% !important;
}

.menu-on-top nav ul ul li:hover > a:after,
.menu-on-top nav > ul ul > li a:after,
.menu-on-top nav > ul ul > li a:hover:after,
.menu-on-top nav > ul > li > a:after {
  color: #333333;
  content: "\f0da";
  display: block !important;
  font-family: FontAwesome, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 4px;
  top: 9px;
}

.menu-on-top nav ul ul li:hover > a:after,
.menu-on-top nav > ul ul > li a:hover:after {
  color: #ffffff;
}

.menu-on-top nav > ul ul > li a:only-child:after,
.menu-on-top nav > ul > li > a:only-child:after {
  content: "" !important;
}

.menu-on-top nav ul ul .active > a {
  color: #333333 !important;
}

.menu-on-top nav ul ul .active > a:hover,
.menu-on-top nav ul ul li.active:hover > a {
  color: #ffffff !important;
}

.menu-on-top .slimScrollDiv,
.menu-on-top nav {
  overflow: visible !important;
}

body.menu-on-top.fixed-header {
  padding-top: 49px;
}

body.menu-on-top.fixed-header.fixed-navigation nav > ul {
  height: auto;
  overflow: visible;
  padding-right: 0;
  position: relative;
  width: auto;
}

body.menu-on-top.fixed-header.fixed-navigation.fixed-ribbon #ribbon {
  left: 0;
  top: 118px;
}

@media (max-width: 979px) {
  .menu-on-top #mobile-profile-img a.userdropdown img {
    border-radius: 3px;
    margin-left: 2px;
    margin-right: -3px;
    margin-top: 0;
    width: 39px;
  }

  .menu-on-top .btn-header.pull-right {
    margin-left: 0 !important;
  }

  .menu-on-top #main {
    margin-top: 0 !important;
  }

  .menu-on-top #left-panel {
    display: none;
    left: 0;
  }

  body.menu-on-top.fixed-header.fixed-navigation.fixed-ribbon #ribbon {
    top: 49px;
  }

  .menu-on-top.hidden-menu #left-panel {
    display: block;
  }

  .menu-on-top.hidden-menu #main {
    left: 0 !important;
  }

  .menu-on-top #hide-menu {
    display: block !important;
  }

  .menu-on-top aside#left-panel nav {
    height: 300px !important;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important;
  }

  .menu-on-top .menu-item-parent {
    max-width: 85%;
    min-width: 85%;
    overflow: visible;
    padding-left: 5px;
    text-align: left;
    text-overflow: inherit;
    white-space: inherit;
  }

  .menu-on-top .menu-item-parent + span {
    margin-top: -8px;
    top: 50%;
  }

  .menu-on-top nav li.active > ul {
    display: block;
  }

  .menu-on-top nav > ul > li.active {
    background: #ffffff;
    background: -moz-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfcfcf), color-stop(66%, #ffffff));
    background: -webkit-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
    background: -o-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
    background: -ms-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
    background: linear-gradient(to bottom, #cfcfcf 0, #ffffff 66%);
  }

  .menu-on-top nav > ul > li.active > a {
    color: #333333 !important;
  }

  .menu-on-top nav ul ul li:hover > a:after,
  .menu-on-top nav > ul ul > li a:after,
  .menu-on-top nav > ul ul > li a:hover:after,
  .menu-on-top nav > ul > li > a:after {
    content: "\f0dd" !important;
    font-size: 15px;
    margin-top: -8px;
    right: 15px;
    top: 50%;
  }

  .menu-on-top nav > ul ul > li a:only-child:after,
  .menu-on-top nav > ul > li > a:only-child:after {
    content: "" !important;
  }

  .menu-on-top nav > ul > li > a:after {
    font-size: 20px;
    left: auto;
    margin-top: -14px;
    top: 50% !important;
  }

  .menu-on-top nav ul ul,
  .menu-on-top nav ul ul ul {
    border: none;
    padding: 0;
  }

  .menu-on-top nav ul ul ul {
    border-bottom: 2px solid #333333;
  }

  .menu-on-top aside#left-panel nav > ul > li {
    width: 100%;
  }

  .menu-on-top aside#left-panel nav > ul > li > a {
    border-bottom: 1px dotted #585858;
    display: block;
    height: auto;
    padding: 8px 9px !important;
  }

  .menu-on-top nav > ul > li > ul > li > a,
  .menu-on-top nav > ul > li > ul > li > ul > li > a {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .menu-on-top aside#left-panel nav > ul > li > a > i {
    display: inline !important;
  }

  .menu-on-top aside#left-panel nav > ul li ul {
    left: 0;
    position: relative !important;
    top: 0;
    width: 100%;
  }

  .menu-on-top aside#left-panel nav > ul > li:active > ul,
  .menu-on-top aside#left-panel nav > ul > li:focus > ul {
    display: block !important;
  }
}

.menu-on-top .top-menu-invisible,
.no-menu #hide-menu,
.no-menu #left-panel,
.no-menu #logout {
  display: none !important;
}

.no-menu #main {
  margin: 0 !important;
}

.no-menu #mobile-profile-img {
  display: block !important;
}

.no-menu #mobile-profile-img a.userdropdown img {
  border: 1px solid #797979 !important;
  border-radius: 3px;
  margin-left: 2px;
  margin-top: 5px;
  width: 30px;
}

body:not(.menu-on-top).desktop-detected {
  min-height: 1190px !important;
}

#extr-page body.desktop-detected {
  min-height: 100% !important;
}
