/* Minification failed. Returning unminified contents.
: run-time error CSS1036: Expected expression, found ''
: run-time error CSS1036: Expected expression, found ''
: run-time error CSS1036: Expected expression, found ''
: run-time error CSS1036: Expected expression, found ''
: run-time error CSS1036: Expected expression, found ''
 */

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;

  background: #268e94;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: .45;
  -moz-box-shadow: #268e94 1px 0 6px 1px;
  -ms-box-shadow: #268e94 1px 0 6px 1px;
  -webkit-box-shadow: #268e94 1px 0 6px 1px;
  box-shadow: #268e94 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #268e94;
  border-left-color: #268e94;
  border-radius: 10px;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

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

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

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

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

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

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

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

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-15%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(15%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

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

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

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

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

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

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

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    background: #f1f1f1;
    color: #555;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    position: relative;
    cursor: auto
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a,
a:visited {
    background-color: transparent;
    color: #808080;
    text-decoration: none;
    transition: all 0.3s ease-in-out
}

a:active,
a:hover {
    outline: 0;
    color: #98c21f
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 1.6em;
    margin: 0.67em 0
}

h4 {
    color:#ff7e00; /*h4 color*/
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

ul {
    list-style-type: none
}

.fullWidthRow {
    width: 100%;
    margin: 0 auto;
    clear: both;
    box-sizing: border-box
}

.site {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden
}

.centeredContainer {
    clear: both;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.1em;
    position: relative;
    box-sizing: border-box
}

.paddedContainer {
    clear: both;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.1em;
    box-sizing: border-box
}

.cleanColumn {
    float: left;
    padding: 0
}

.plainColumn {
    float: left
}

.paddedColumn {
    float: left;
    padding: 0 1.1em
}

.logoutButton {
    color: white; /*logout button colour*/
}

@media only screen {
    .smallClean1 {
        width: 8.33333%
    }
    .smallClean2 {
        width: 16.66667%
    }
    .smallClean3 {
        width: 25%
    }
    .smallClean4 {
        width: 33.33333%
    }
    .smallClean5 {
        width: 41.66667%
    }
    .smallClean6 {
        width: 50%
    }
    .smallClean7 {
        width: 58.33333%
    }
    .smallClean8 {
        width: 66.66667%
    }
    .smallClean9 {
        width: 75%
    }
    .smallClean10 {
        width: 83.33333%
    }
    .smallClean11 {
        width: 91.66667%
    }
    .smallClean12 {
        width: 100%
    }
    .menuLogoCont {
        text-align: center
    }
    .menuContDetails {
        text-align: center
    }
    .menuContDetails h3 {
        display: none
    }
    .headerImg {
        padding: 0
    }
    .mainNav,
    .wideSubNav,
    .dividerLeft,
    .dividerRight {
        display: none
    }
    .mobileNavMenu .navMenu {
        display: none
    }
    .footerSlogans {
        text-align: center
    }
    .mobileNavBar {
        float: left;
        color: #fff;
        width: 100%
    }
    #borderTop {
        display: none
    }
    .menu-item {
        font-size: 1rem
    }
    .mainNav {
        display: none
    }
    .navBottomBorder {
        display: block;
        padding-top: 2em !important
    }
    #owl-demo {
        margin-top: 1em
    }
    .navMenu {
        width: 100%;
        margin-top: 0
    }
}

@media only screen and (min-width: 40.063em) {
    .mediumClean1 {
        width: 8.33333%
    }
    .mediumClean2 {
        width: 16.66667%
    }
    .mediumClean3 {
        width: 25%
    }
    .mediumClean4 {
        width: 33.33333%
    }
    .mediumClean5 {
        width: 41.66667%
    }
    .mediumClean6 {
        width: 50%
    }
    .mediumClean7 {
        width: 58.33333%
    }
    .mediumClean8 {
        width: 66.66667%
    }
    .mediumClean9 {
        width: 75%
    }
    .mediumClean10 {
        width: 83.33333%
    }
    .mediumClean11 {
        width: 91.66667%
    }
    .mediumClean12 {
        width: 100%
    }
    .menuLogoCont {
        text-align: left
    }
    .menuContDetails {
        text-align: right
    }
    .menuContDetails h3 {
        display: block
    }
    .dividerLeft,
    .dividerRight {
        display: block
    }
    .mobileNavMenu .navMenu {
        display: none
    }
    .footerSlogans {
        text-align: left
    }
    .footerCopy {
        text-align: right
    }
}

@media only screen and (min-width: 64.063em) {
    .navBottomBorder {
        padding-top: 0 !important
    }
    .largeClean1 {
        width: 8.33333%
    }
    .largeClean2 {
        width: 16.66667%
    }
    .largeClean3 {
        width: 25%
    }
    .largeClean4 {
        width: 33.33333%
    }
    .largeClean5 {
        width: 41.66667%
    }
    .largeClean6 {
        width: 50%
    }
    .largeClean7 {
        width: 58.33333%
    }
    .largeClean8 {
        width: 66.66667%
    }
    .largeClean9 {
        width: 75%
    }
    .largeClean10 {
        width: 83.33333%
    }
    .largeClean11 {
        width: 91.66667%
    }
    .largeClean12 {
        width: 100%
    }
}

@media (min-width: 1025px) {
    .mobileNavBar,
    .mobileNavMenu,
    .mobileNavMenu .navMenu {
        display: none
    }
    #borderTop {
        display: block
    }
    .menu-item {
        font-size: 1.2rem
    }
    .footerLinks .menu-item {
        font-size: 1rem
    }
    .mainNav,
    .navBottomBorder {
        display: block
    }
    #owl-demo {
        margin-top: 0
    }
    .menuContDetails .socialIconCont {
        visibility: visible
    }
    .navMenu {
        width: auto;
        margin-top: 3em
    }
}

@media screen and (max-width: 1024px) {
    .menu-item {
        font-size: 1em
    }
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0)
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: 0.2em 0.25em 0.15em;
    border: solid 0.08em #eee;
    border-radius: .1em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

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

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

.fa-rotate-90 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-window-minimize {
    content: "\f2d1"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-genderless:before,
.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fl {
    float: left
}

.fr {
    float: right
}

.alignRight {
    text-align: right
}

.lightbodyText {
    color: #555
}

.reveal {
    display: block
}

.hide {
    display: none
}

.underline {
    text-decoration: underline
}

.alignRight {
    text-align: right
}

.alignLeft {
    text-align: left
}

.alignCenter {
    text-align: center
}

button,
.button {
    border-radius: 40px;
    background: #268e94; /*button background*/
    color: #fff;
    display: inline-block;
    padding: 9px 19px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    border: 2px solid #268e94; /*button background*/
}

    button.secondary,
    .button.secondary {
        border-radius: 40px;
        background: transparent;
        border: 2px solid #268e94; /*button background*/
        color: #268e94; /*button background*/
        display: inline-block;
        padding: 9px 19px;
        transition: all 0.5s ease-in-out;
        cursor: pointer
    }

    button:hover,
    .button:hover {
        border-radius: 40px;
        background: #fff; /*button background hover*/
        color: #268e94; /*button background hover*/
        border: 2px solid #fff; /*button background hover*/
    }

input[type="text"] {
    border-radius: 20px;
    background: #fff;
    border: 0;
    padding: 10px 20px;
    color: #555;
    width: 80%
}

body.mobileApp {
    /*overflow: hidden*/
}

i {
    width: 1em;
    height: 1em;
    display: block
}

.shineLogo {
    max-width: 35%;
    display: block;
    margin: 0 auto;
    /*margin-bottom: 50px;*/
    /*transition-property: all;
    transition-duration: .9s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s; */
}

.secondPanelHead .shineLogo {
    display: block;
    width: 150px; /*logo width*/
    /*height: 100px; logo height*/
    padding: 22px; /*logo padding*/
    margin: 0 auto;
    /*transition-property: all;
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s; */
}
.secondPanelHead .shineLogoCamera {
    display: block;
    padding: 30px; /*camera logo padding*/
    margin: 0 auto;
}

@media screen and (min-width: 641px) {

    .fStaged {
    margin-left:281px;
}

    /*.shineLogo {
        max-width: 20%;
        transition-property: all;
        transition-duration: .6s;
        transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s; 
        padding-bottom: 17px;
    }
    .secondPanelHead .shineLogo {
        width: 150px; /logo width/
        transition-property: all;
        transition-duration: .6s;
        transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
        margin-top:-15px; /logo top margin/
    }*/

    #mobileContainer {
    background: url(/framework/images/invite-background.jpg) repeat-y; /*orange background image*/
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 0px 0px;
    animation: animatedBackground 15s linear infinite;
    box-sizing: border-box;
    overflow: hidden
}
}

.logoContainer {
    z-index: 1200;
    position: relative
}

.logoContainer.stageTwo {
    position: fixed;
    top: 20px
}

#mobileContainer {
    background: url(/framework/images/invite-background.jpg) repeat-y; /*orange background image*/
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 0px 0px;
    animation: animatedBackground 15s linear infinite;
    box-sizing: border-box;
    overflow: hidden
}

.mainLogo {
    background: url(/framework/images/shine-logo.svg) no-repeat;
    background-size: contain;
    width: 200px;
    margin: auto;
    padding-bottom: 130px;
}

@media screen and (min-width: 1025px) {
    #mobileContainer {
        background: url(/framework/images/invite-background.jpg) repeat-y; /*orange background image*/
        background-size: cover
    }
}


.wrapContainer {
    overflow: hidden !important;
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    z-index: 2
}

.wrapContainer .wrapContent {
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box
}

#pageOne {
    color: #fff;
    overflow: hidden
}

#pageOne p {
    -webkit-animation: reveal 0.5s ease-out 1 normal forwards;
    -moz-animation: reveal 0.5s ease-out 1 normal forwards;
    -o-animation: reveal 0.5s ease-out 1 normal forwards;
    animation: reveal 0.5s ease-out 1 normal forwards
}

#pageOne .button {
    -webkit-animation: reveal 1.1s ease-out 1 normal forwards;
    -moz-animation: reveal 1.1s ease-out 1 normal forwards;
    -o-animation: reveal 1.1s ease-out 1 normal forwards;
    animation: reveal 1.1s ease-out 1 normal forwards
}

#pageOne input[type="text"] {
    margin-bottom: 50px;
    transition: background 0.3s ease-in;
    text-align: center
}

#pageOne input[type="text"]:hover {
    background: #f1f1f1
}

#pageOne input[type="text"]:focus {
    background: #f1f1f1
}

@media screen and (min-width: 767px) {
    input[type="text"] {
        max-width: 50%
    }
}

@media screen and (min-width: 1025px) {
    input[type="text"] {
        max-width: 40%
    }
}

#siteFooter {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.shineFooter {
   font-size:x-small;
   text-align:center;
   color:#c4c4c4 !important; /* shine footer */
}

.animateLogo {
    fill: #fff;
    animation-name: fill;
    animation-duration: 4s
}

.firstPanel {
    transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -webkit-transition: opacity 0.3s linear;
    opacity: 1
}

.fade {
    opacity: 0
}

.introCircles {
    position: relative;
    padding: 20px
}

.secondPanelHead {
    /*transition-property: all;
    transition-duration: .9s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;*/
    position: absolute;
    top: -308px;
    height: 114px; /*panel head height*/
    background: none; /*header background color*/
    z-index: 500;
    width: 100%
}

.secondPanelHead.visible {
    top: 0px
}

.secondPanelHead:after {
    display: block;
    font-family: FontAwesome;
    content: '\f0d7';
    margin-right: 0em;
    color: #ff7e00; /*arrow down*/
    position: relative;
    margin-top: -29px; /*arrow down*/
    text-align: center;
    font-size: 45px;
}

.mainColor {
    color:#ff7e00; /*h4 color*/
}

.smallHead:after {
        display: block;
        font-family: FontAwesome;
        content: '\f0d7';
        margin-right: 0em;
        color: #ff7e00; /*arrow down*/
        position: relative;
        margin-top: -35px !important; /*arrow down*/
        text-align: center;
        font-size: 45px;
}

.secondPanelBody {
    position: absolute;
    box-sizing: border-box;
    background: #f1f1f1;
    top: -900px;
    z-index: 450;
    opacity: 1;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0, 1, 0.9, 1);
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    height: 100%;
    width: 100%;
    padding-top: 135px;
    text-align: center;
    color: #555
}

.secondPanelBody.visible {
    top: 0;
    opacity: 1
}

.stepCircle {
    stroke: #268e94; /*step circle background*/
    fill: transparent
}

.stepText {
    fill: #268e94 /*step text*/
}

.jobRoleTitle {
    font-family: "Roboto Condensed", sans-serif;
    color: #ff7e00; /*job role title*/
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px
}

.luckMessage {
    font-family: "Roboto Condensed", sans-serif;
    color: #ff7e00; /*luck message*/
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700
}

.stepText {
    position: relative;
    height: 110px
}

.stepOne,
.stepTwo,
.stepThree {
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.5s ease-out
}

.stepOneText,
.stepTwoText,
.stepThreeText {
    /*position: absolute;*/
    width: 100%;
    margin: 0 auto;
    display: none
}

.introCircles .button {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    position: relative
}

.introCompany,
.introRole,
.introQuestions,
.startInterview,
.endInterview {
    display: none
}

.introCompany p,
.introRole p,
.introQuestions p,
.startInterview p,
.endInterview p {
    padding: 20px
}

.companyIntroVideoWrapper,
.roleIntroVideoWrapper {
    position: relative;
    background: #268e94; /*intro video wrapper*/
    margin: 0;
    padding: 0;
    line-height: 0
}

@media screen and (min-width: 769px) {
    .companyIntroVideoWrapper,
    .roleIntroVideoWrapper {
        margin: 0 auto;
        max-width: 72%
    }
    .secondPanelBody .introCircles,
    .secondPanelBody .introQuestions,
    .secondPanelBody .startInterview,
    .secondPanelBody .endInterview {
        padding-top: 150px
    }
}

.companyIntroVideo,
.roleIntroVideo {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    transition: opacity 0.4s ease-in-out;
    opacity: 0
}

.companyIntroVideo:hover .videoControls,
.roleIntroVideo:hover .videoControls {
    opacity: 1
}

.companyIntroVideo img,
.roleIntroVideo img {
    width: 100%;
    height: auto
}

.testQuestionVideo {
    display: none;
    position: fixed;
    z-index: 3;
    background: url(images/do-interview.jpg) center center no-repeat;
    background-size: cover;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.loadingGif {
    width: 45px;
}

.getApp {
    display:none;
}

.noApp {
    display:block;
}

@media screen and (min-width: 769px) {
    .testQuestionVideo {
        background: url(images/do-interview-tablet.jpg) center center no-repeat
    }
}

@media screen and (max-width: 390px) {
    video {
        width:340px;
    }
}

@media screen and (max-width: 640px) {
    .getApp {
        display:block;
    }
    .noApp {
        display:none;
    }
}

@media screen and (max-width: 641px) {
    p {
        font-size:small;
    }
    .button{
        font-size:small;
    }
    .actionButton{
        font-size:small;
    }
    /*.secondPanelHead .shineLogo {
        margin: -100px auto;
        transition-property: all;
        transition-duration: .6s;
        transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s; 
    }
    .shineLogo {
        display: none !important;
        transition-property: all;
        transition-duration: .6s;
        transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s; 
    }
    .secondPanelHead {
        height: 15px;
    }
    .secondPanelHead:after {
        display: block;
        font-family: FontAwesome;
        content: '\f0d7';
        margin-right: 0em;
        color: #ff7e00; /arrow down/
        position: relative;
        margin-top: -33px;
        text-align: center;
        font-size: 45px;
    }*/
    .smallHead:after {
        display: block;
        font-family: FontAwesome;
        content: '\f0d7';
        margin-right: 0em;
        color: #ff7e00; /*arrow down*/
        position: relative;
        margin-top: -29px;
        text-align: center;
        font-size: 45px;
    }
    .buttonWidth {
        width:340px;
        margin:0 auto;
        padding-bottom:20px;
        margin-top:-15px;
    }
    .loadingGif {
         width: 45px;
    }
}

@media screen and (min-width: 391px) {
    .buttonWidth {
        width: 384px;
        margin: 0 auto;
        padding-bottom: 20px;
    }
}

.videoControls {
    position: absolute;
    bottom: 0;
    opacity: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 500;
    width: 100%;
    text-align: left;
    transition: opacity 0.5s ease-in-out
}

.videoControls .control {
    padding: 8px 14px;
    display: inline-block
}

.videoControls .control i {
    color: #fff
}

.videoControls .control .fa-pause {
    display: none
}

.loader:before,
.loader:after,
.loader {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out
}

.loader {
    font-size: 10px;
    position: absolute;
    top: 10px;
    left: 30px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s
}

.loader:before {
    left: -1.2em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s
}

.loader:after {
    left: 1.2em
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0
}

@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em #ffffff
    }
    40% {
        box-shadow: 0 2.5em 0 0 #ffffff
    }
}

@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em #ffffff
    }
    40% {
        box-shadow: 0 2.5em 0 0 #ffffff
    }
}

.staging {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 56px;
    text-align: center;
    color: #fff;
    animation: flash 2.2s linear infinite;
    position: relative
}

.staging .stagingBegin {
    display: block;
}

.staging .stagingCount {
    display: none;
    font-size: 120px
}

@media screen and (min-width: 767px) {
    .staging {
        font-size: 100px
    }
    .staging .stagingCount {
        font-size: 190px
    }
    .fStaged {
        margin-left:341px;
    }
}

.questionText,
.question2Text {
    display: none;
    color: #fff;
    text-align: center;
    padding: 45px 20px;
    font-weight: 400
}

.recordControls2,
.recordControls {
    position: fixed;
    bottom: -160px;
    transition: all 0.8s ease-out;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 600;
    width: 100%;
    box-sizing: border-box;
    padding: 20px
}

.recordControls2 .timer,
.recordControls .timer {
    opacity: 0.5;
    color: #fff;
    font-size: 40px;
    display: inline-block;
    float: left;
    transition: opacity 0.3s ease-in-out
}

.recordControls2 .timer:hover,
.recordControls .timer:hover {
    opacity: 1
}

.recordControls2 .timer span,
.recordControls .timer span {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700
}

.recordControls2 .recording,
.recordControls .recording {
    display: inline-block;
    float: right;
    font-size: 40px;
    color: #ff7e00; /*record controls*/
}

.recordControls2 .recording .recordicon,
.recordControls .recording .recordicon {
    animation: recordButton 2.2s linear infinite
}

.recordControls2 .recordNavigation,
.recordControls .recordNavigation {
    margin-top: 14px;
    text-align: center
}

.recordControls2 .recordNavigation .button.cancel,
.recordControls .recordNavigation .button.cancel {
    float: left
}

.recordControls2 .recordNavigation .button.finish,
.recordControls .recordNavigation .button.finish {
    float: right
}

.recordControls2 .recordNavigation .button.begin,
.recordControls .recordNavigation .button.begin {
    margin: 0 auto
}

.slideIt {
    bottom: 0px
}

.slideItOut {
    bottom: -210px
}

.recordNavigation {
    clear: both
}

@keyframes animatedBackground {
    from {
        background-position: 0 0
    }
    to {
        background-position: 0 100%
    }
}

@keyframes recordButton {
    0% {
        fill: #ff7e00; /*keyframe record buttons*/
    }
    50% {
        fill: #AD1315
    }
    100% {
        fill: #ff7e00; /*keyframe record buttons*/
    }
}

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

@keyframes fill {
    0% {
        fill: #ff7e00; /*keyframe fill*/
    }
    100% {
        fill: #fff
    }
}

@-webkit-keyframes reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@-o-keyframes reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

.startQuiz, .firstScreen {
	display: none;
	background: #f3f3f3;
	z-index: 90;
}	

.quiz-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f4f4f4;
}

.selections {
	position: fixed;
	height: 50%;
	top: 0;	
	background: #efefef;
	box-sizing: border-box;
	width: 100%;
	border-bottom: 1px solid white;
	-webkit-animation: fadeInRight 0.6s forwards;
  	-moz-animation: fadeInRight 0.6s forwards;
  	-ms-animation: fadeInRight 0.6s forwards;
  	-o-animation: fadeInRight 0.6s forwards;
  	animation: fadeInRight 0.6s forwards;
}

.confirm-button {
	position: absolute;
	bottom: 20px;
	right: 20px;	
	/*display:none;*/
	color: #11b3ac; /*green*/
	font-weight: bold;
	font-size: 1.2em;
}

.confirm-button.activated {
	display: block;
	-webkit-animation: fadeIn 0.7s forwards;
  	-moz-animation: fadeIn 0.7s forwards;
  	-ms-animation: fadeIn 0.7s forwards;
  	-o-animation: fadeIn 0.7s forwards;
  	animation: fadeIn 0.7s forwards;
}

.hideword {
	opacity: 0;	
}

.wordlist {
	position: fixed;
	height: 50%;
	bottom: 0;
	background: #f3f3f3;
	border-top: 5px solid #11b3ac;
	width: 100%;
	overflow-x: hidden;
	ovverflow-y: auto;
	-webkit-animation: fadeInLeft 0.7s forwards;
  	-moz-animation: fadeInLeft 0.7s forwards;
  	-ms-animation: fadeInLeft 0.7s forwards;
  	-o-animation: fadeInLeft 0.7s forwards;
  	animation: fadeInLeft 0.7s forwards;
}

.selections-key {
	background: #ff7e00;
	color: white;	
	padding: 4px;
	font-size: 14px;
	line-height: 19px;
	position: relative;
	overflow: hidden;
}

.most-important {
	float: left;	
	display: inline-block;
}

.least-important {
	float: right;	
	display: inline-block;
}

.selections table {
	width: 100%;
	height: calc(100% - 25px);
	box-sizing: border-box;
    table-layout:fixed;
}
.selections td {
    border: solid 1px #ffffff;
    box-sizing: border-box;
    padding: 0 2px;
	height: 10%;
    text-align: center;
    width: 14.2%;
    margin: 0 auto;
    font-size: 10px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
	.selections td {
		font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
	}
}

.most-important {
	float: left;	
	display: inline-block;
    font-size: smaller;
}

.least-important {
	float: right;	
	display: inline-block;
    font-size: smaller;
}

.selections .rating1 {
    background: #555;
}

.selections .rating2 {
    background: #6c6c6c;
}

.selections .rating3 {
    background: #7c7c7c;
}

.selections .rating4 {
    background: #8b8b8b;
}

.selections .rating5 {
    background: #9a9a9a;
}

.selections .rating6 {
    background: #aaaaaa;
}

.selections .rating7 {
    background: #b9b9b9;
}

.word-container {
	background: #f3f3f3;
	border-bottom: 1px solid #fff;
	color: #555;
	padding: 15px 20px;
	font-weight: 700;
	font-size: 18px;
	position: relative;
}

.word-container .word-button {
	width: 60px;
	box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 0;
	background: #e3e3e3;
	text-align: center;
	border-left: 1px solid white;
	transition: all 0.3s ease-out;
	cursor: pointer;
	padding: 11px 20px 19px 20px;
}

@media screen and (min-width: 768px) {
	.word-container .word-button {
		width: calc(14.28571428571429% - 2px);
	}
}

.word-container .word-button:hover {
	background: #c2c2c2;
}

.word-container .word-button .fa-circle {
	display: inline-block; 
	line-height: 23px;
	position: relative;
	overflow: hidden;
}

.word-container .word-pointer {
	position: absolute;
	top: 24px;
	left: calc(50% - 9px);
	z-index: 20;
	width: 22px;
	transition: all 0.3s ease-out;
}

.word-container .word-pointer svg {
	width: 100%;
	height: auto;
}

.word-container .word-button:hover > .word-pointer {
	top: 22px;
}

.word-selection-bar-container {
	background: rgba(61,61,61,1);
	position: fixed;
	height: 50%;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 40;
	display: none;
}

.word-selection-bar-container .selections-key {
	background: transparent;
	position: absolute;
	bottom: 90px;
	width: 100%;
}

.word-selection-bar-container .close-panel {
	box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 0;
	background: rgba(56,56,56,1);
	text-align: center;
	transition: all 0.3s ease-out;
	cursor: pointer;
	padding: 11px 20px 19px 20px;
	z-index: 45;
}

.word-selection-bar-container .close-panel i {
	color: white;
}

.word-selection-bar-container.activated {
	display: block;
	-webkit-animation: fadeIn 0.5s forwards;
    -moz-animation: fadeIn 0.5s forwards;
    -ms-animation: fadeIn 0.5s forwards;
    -o-animation: fadeIn 0.5s forwards;
    animation: fadeIn 0.5s forwards;
}

.word-selection-bar-container.deactivated {
	display: block;
    -webkit-animation: fadeOut 0.5s forwards;
    -moz-animation: fadeOut 0.5s forwards;
    -ms-animation: fadeOut 0.5s forwards;
    -o-animation: fadeOut 0.5s forwards;
    animation: fadeOut 0.5s forwards;
}

.word-selection-bar {
	background: #ededed;
	position: absolute;	
	width: 100%;
	bottom: 30px;
	left: 0;
	z-index: 45;
	/*display: none;*/
}

.word-selection-bar-container.activated .word-selection-bar {
	 display: block;
	 -webkit-animation: bounceInRight 0.7s forwards;
    -moz-animation: bounceInRight 0.7s forwards;
    -ms-animation: bounceInRight 0.7s forwards;
    -o-animation: bounceInRight 0.7s forwards;
    animation: bounceInRight 0.7s forwards;
}

.word-selection-bar-container.deactivated .word-selection-bar {
	display: block;
    -webkit-animation: bounceOutRight 0.7s forwards;
    -moz-animation: bounceOutRight 0.7s forwards;
    -ms-animation: bounceOutRight 0.7s forwards;
    -o-animation: bounceOutRight 0.7s forwards;
    animation: bounceOutRight 0.7s forwards;
}

.word-selection {
	display: inline-block;
	float: left;
	width: 14.28571428571429%;
	border: 1px solid white;
	border-left: 0;
	box-sizing: border-box;
	text-align: center;
}

.word-selection i {
	padding: 16px 0 23px 0;
	display: inline-block; 
	line-height: 23px;
	visibility: hidden;
	color: white;
	cursor: pointer;
}

.word-selector-descriptor {
	/*display: none;*/
	padding: 20px;	
}

.word-selection-bar-container.activated .word-selector-descriptor {
	display: block;
	-webkit-animation: bounceInRight 0.9s forwards;
  	-moz-animation: bounceInRight 0.9s forwards;
  	-ms-animation: bounceInRight 0.9s forwards;
  	-o-animation: bounceInRight 0.9s forwards;
  	animation: bounceInRight 0.9s forwards;
}

.word-selection-bar-container.deactivated .word-selector-descriptor {
	display: block;
	-webkit-animation: bounceOutRight 0.9s forwards;
  	-moz-animation: bounceOutRight 0.9s forwards;
  	-ms-animation: bounceOutRight 0.9s forwards;
  	-o-animation: bounceOutRight 0.9s forwards;
  	animation: bounceOutRight 0.9s forwards;
}

.word-selector-descriptor h3 {
	color: white;	
	margin: 0;
	margin-bottom: 20px;
}

.word-selector-descriptor p {
	font-size: 14px;
	color: white;	
}

@media screen and (min-width: 768px) {
	.word-selector-descriptor p {
		font-size: 18px;
	}
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: medium;
    }

    .word-selector-descriptor p {
        font-size: 12px;
        color: white;
    }
}

.word-selection i {
	visibility: hidden;
}

.word-selection.activated i {
	visibility: visible;
}

.word-selection:hover i {
	visibility: visible;
}

.word-selection.word-rating-1 {
	border-left: 1px solid white;
}

.rated .word-button .fa-circle {
	color: white;	
}

.rated #Layer_2 .st0 {
	fill: white;	
}

.rated .word-container {
	color: white !important;	
}

.rated1 .word-button {
	background: #555555 !important;	
}

.rated1 .word-container {
    background: #555555 !important;	
}

.rated1 #Layer_1 .st1 {
	fill: #555555;	
}

.rated2 .word-container {
	background: #6c6c6c !important;	
}

.rated2 .word-button {
	background: #6c6c6c !important;	
}

.rated2 #Layer_1 .st1 {
	fill: #6c6c6c;	
}

.rated3 .word-button {
	background: #7c7c7c !important;	
}

.rated3 #Layer_1 .st1 {
	fill: #7c7c7c;	
}

.rated3 .word-container {
	background: #7c7c7c !important;	
}

.rated4 .word-button {
	background: #8b8b8b !important;	
}

.rated4 .word-container {
	background: #8b8b8b !important;	
}

.rated4 #Layer_1 .st1 {
	fill: #8b8b8b;	
}

.rated5 .word-button {
	background: #9a9a9a !important;	
}

.rated5 .word-container {
	background: #9a9a9a !important;	
}

.rated5 #Layer_1 .st1 {
	fill: #9a9a9a;	
}

.rated6 .word-button {
	background: #aaaaaa !important;	
}

.rated6 #Layer_1 .st1 {
	fill: #aaaaaa;	
}

.rated6 .word-container {
	background: #aaaaaa !important;	
}

.rated7 .word-container {
	background: #b9b9b9 !important;	
}

.rated7 .word-button {
	background: #b9b9b9 !important;	
}

.rated7 #Layer_1 .st1 {
	fill: #b9b9b9;	
}

.confirm-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(60,60,60,0.8);
	width: 100%;
	display: none;
}

.confirm-overlay.activated {
	display:block;
	-webkit-animation: fadeIn 0.7s forwards;
    -moz-animation: fadeIn 0.7s forwards;
    -ms-animation: fadeIn 0.7s forwards;
    -o-animation: fadeIn 0.7s forwards;
    animation: fadeIn 0.7s forwards;
}
.confirm-wrapper {
	position: absolute;
    box-sizing: border-box;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);	
	width: 100%;
}
.confirm-modal {
	background: white;
	width: 80%;
	margin: 0 auto;
	max-width: 400px;
	height: 400px;
	position: relative;
}

.confirm-modal h3 {
	padding: 10px;
	color: 	#0a8d87;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.confirm-modal p {
	padding: 10px;
}

.confirm-modal .cancel-button-0 {
	padding: 10px;
	background: #555 !important;
	color: white;
	width: 50%;
	box-sizing: border-box;	
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}

.confirm-modal .confirm-button-0 {
	padding: 10px;
	background: #0a8d87;
	color: white;
	width: 50%;
	box-sizing: border-box;	
	display: inline-block;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: center;
}

.confirm-overlay.activated {
	display: block;
	-webkit-animation: fadeIn 0.5s forwards;
    -moz-animation: fadeIn 0.5s forwards;
    -ms-animation: fadeIn 0.5s forwards;
    -o-animation: fadeIn 0.5s forwards;
    animation: fadeIn 0.5s forwards;
}

.confirm-overlay.deactivated {
	display: block;
	-webkit-animation: fadeOut 0.5s forwards;
    -moz-animation: fadeOut 0.5s forwards;
    -ms-animation: fadeOut 0.5s forwards;
    -o-animation: fadeOut 0.5s forwards;
    animation: fadeOut 0.5s forwards;
    transition: all 0.3s ease-out;
}

.cancel-button-0 {
	padding: 10px;
	background: #555 !important;
	color: white !important;
	width: 50%;
	box-sizing: border-box;	
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}

.confirm-modal h3,
.swap-modal h3 {
	padding: 10px;
	color: 	#0a8d87;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}

.swap-modal h3 {
	margin-bottom: 0;
}

.swap-modal .confirm-button-0 {
	padding: 10px;
	background: #ddd;
	width: 50%;
	box-sizing: border-box;	
	display: inline-block;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: center;
	color: #999 !important;
	transition: all 0.3s ease-in-out;
}

.swap-modal .confirm-button-0.available {
	background: #0a8d87;
	color: white !important;
}

.canseeme {
	display: block;	
}

.swap-modal {
	background: white;
	width: 80%;
	margin: 0 auto;
	max-width: 400px;
	height: 400px;
	position: relative;
	z-index: 10;	
}

.swap-list {
	position: relative;
	overflow: hidden;
	overflow-y: auto;	
	height: 305px
}

.swap-list .swap-item {
	padding: 10px;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}

.swap-list .swap-item:hover,
.swap-list .swap-item.activated
  {
	color: white !important;
	background: #ff7e00 !important; /*orange*/
}

.vbrPyramidBackground {
    background: #ff7e00; /*orange*/
}

.vbrLightBackground {
    background: #ff7e00; /*pyramid orange*/
}

.vbrPyramidBorder {
    border-top: 7px solid #11b3ac; /*green*/
}

.vbrOrange {
    color: #ff7e00 !important; /*orange*/
}

.vbrGreen {
    color: #268e94 !important; /*green*/
}

.vbrGreenBackground {
    background: #268e94 !important; /*green*/
}

.vbrOrangeBackground {
    background: #ff7e00 !important; /*orange*/
}

.back-button {
	position: absolute;
	bottom: 20px;
	left: 20px;	
	color: #8b8b8b;
	font-weight: bold;
	font-size: 1.2em;
}

.word-container:hover {
    background: #c2c2c2;
    transition: all 0.3s ease-out;
}

#div1:hover #div2.word-pointer {
    top: 22px;
}

#div1:hover #div2 {
    background: #c2c2c2;
    transition: all 0.3s ease-out;
}

#div1 {
    cursor: pointer;
}

.move:hover {
    animation: shake 0.82s cubic-bezier(.07,.07,.07,.07) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.word-container:hover .word-pointer {
    top: 22px;
}

.cursor {
    cursor: pointer !important;
}

/*MS EDGE FIX*/
@supports (-ms-ime-align:auto) {
    .word-selection-bar-container {
        background: rgba(61,61,61,1);
        position: fixed;
        height: 100% !important;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 40;
        display: none;
    }
}

@-moz-document url-prefix() {
    .word-selection-bar-container {
        background: rgba(61,61,61,1);
        position: fixed;
        height: 100% !important;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 40;
        display: none;
    }
}
