@charset "UTF-8";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

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

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

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

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

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

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

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

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

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

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

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

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

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

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

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

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

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

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

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

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

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

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

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

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

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

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

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

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

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

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

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

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

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

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

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

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

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

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

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

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

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

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

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

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

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

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

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

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

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

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

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

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

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

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

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

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

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

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

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

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

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

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

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

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

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

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

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

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

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

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

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

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

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

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

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

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

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

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

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

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

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

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

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

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

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

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

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

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

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

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

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

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

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/fonts/fontawesome-webfont.eot);
  src: url(/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(/fonts/fontawesome-webfont.woff2) format('woff2'), url(/fonts/fontawesome-webfont.woff) format('woff'), url(/fonts/fontawesome-webfont.ttf) format('truetype'), url(/fonts/fontawesome-webfont.svg#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.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;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.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: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-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 {
  -ms-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: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.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-feed:before,
.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-pp: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-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-resistance: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-y-combinator-square:before,
.fa-yc-square:before,
.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-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-intersex:before,
.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-genderless:before {
  content: "\f22d";
}
.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";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@font-face {
  font-family: 'forteWebFont';
  src:  url(/fonts/forteWebFont.eot);
  src:  url(/fonts/forteWebFont.eot#iefix) format('embedded-opentype'),
    url(/fonts/forteWebFont.ttf) format('truetype'),
    url(/fonts/forteWebFont.woff) format('woff'),
    url(/fonts/forteWebFont.svg#forteWebFont) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="forteIcon-"], [class*=" forteIcon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'forteWebFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.forteIcon-job-file .path1:before {
  content: "\e924";
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-job-file .path2:before {
  content: "\e925";
  margin-left: -1em;
  color: none;
}
.forteIcon-job-file .path3:before {
  content: "\e926";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-job-file .path4:before {
  content: "\e927";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_hip-valley .path1:before {
  content: "\e928";
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path2:before {
  content: "\e945";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path3:before {
  content: "\e946";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path4:before {
  content: "\e947";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path5:before {
  content: "\e948";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path6:before {
  content: "\e949";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_hip-valley .path7:before {
  content: "\e94a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_hip-valley .path8:before {
  content: "\e94b";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.forteIcon-roof_hip-valley .path9:before {
  content: "\e94c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_hip-valley .path10:before {
  content: "\e94d";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_hip-valley .path11:before {
  content: "\e94e";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-beam .path1:before {
  content: "\e902";
  color: rgb(218, 227, 230);
}
.forteIcon-beam .path2:before {
  content: "\e903";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-beam .path3:before {
  content: "\e904";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-beam .path4:before {
  content: "\e905";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-beam .path5:before {
  content: "\e906";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-beam .path6:before {
  content: "\e907";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.4;
}
.forteIcon-beam .path7:before {
  content: "\e908";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.4;
}
.forteIcon-column .path1:before {
  content: "\e909";
  color: rgb(218, 227, 230);
}
.forteIcon-column .path2:before {
  content: "\e90a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-column .path3:before {
  content: "\e90b";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-column .path4:before {
  content: "\e90c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-column .path5:before {
  content: "\e90d";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.4;
}
.forteIcon-column .path6:before {
  content: "\e90e";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.4;
}
.forteIcon-column .path7:before {
  content: "\e90f";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-floor_drop-beam .path1:before {
  content: "\e910";
  color: rgb(234, 151, 31);
}
.forteIcon-floor_drop-beam .path2:before {
  content: "\e911";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_drop-beam .path3:before {
  content: "\e912";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_drop-beam .path4:before {
  content: "\e913";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-floor_drop-beam .path5:before {
  content: "\e914";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-floor_drop-beam .path6:before {
  content: "\e915";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_drop-beam .path7:before {
  content: "\e916";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_flush-beam .path1:before {
  content: "\e917";
  color: rgb(218, 227, 230);
}
.forteIcon-floor_flush-beam .path2:before {
  content: "\e918";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_flush-beam .path3:before {
  content: "\e919";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-floor_flush-beam .path4:before {
  content: "\e91a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-floor_flush-beam .path5:before {
  content: "\e91b";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-floor_flush-beam .path6:before {
  content: "\e91c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_flush-beam .path7:before {
  content: "\e91d";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-floor_joist .path1:before {
  content: "\e91e";
  color: rgb(234, 151, 31);
}
.forteIcon-floor_joist .path2:before {
  content: "\e91f";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-floor_joist .path3:before {
  content: "\e920";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-floor_joist .path4:before {
  content: "\e921";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-floor_joist .path5:before {
  content: "\e922";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-floor_joist .path6:before {
  content: "\e923";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-level .path1:before {
  content: "\e929";
  color: rgb(218, 227, 230);
}
.forteIcon-level .path2:before {
  content: "\e92a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-level .path3:before {
  content: "\e92b";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-level .path4:before {
  content: "\e92c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-level .path5:before {
  content: "\e92d";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-level .path6:before {
  content: "\e92e";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-level .path7:before {
  content: "\e92f";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-level .path8:before {
  content: "\e930";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-level .path9:before {
  content: "\e931";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-post_free-standing .path1:before {
  content: "\e932";
  color: rgb(218, 227, 230);
}
.forteIcon-post_free-standing .path2:before {
  content: "\e933";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-post_free-standing .path3:before {
  content: "\e934";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_drop-beam .path1:before {
  content: "\e935";
  color: rgb(218, 227, 230);
}
.forteIcon-roof_drop-beam .path2:before {
  content: "\e936";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_drop-beam .path3:before {
  content: "\e937";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_drop-beam .path4:before {
  content: "\e938";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_drop-beam .path5:before {
  content: "\e939";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_drop-beam .path6:before {
  content: "\e93a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_drop-beam .path7:before {
  content: "\e93b";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_drop-beam .path8:before {
  content: "\e93c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_flush-beam .path1:before {
  content: "\e93d";
  color: rgb(218, 227, 230);
}
.forteIcon-roof_flush-beam .path2:before {
  content: "\e93e";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_flush-beam .path3:before {
  content: "\e93f";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_flush-beam .path4:before {
  content: "\e940";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_flush-beam .path5:before {
  content: "\e941";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_flush-beam .path6:before {
  content: "\e942";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_flush-beam .path7:before {
  content: "\e943";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_flush-beam .path8:before {
  content: "\e944";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_joist .path1:before {
  content: "\e950";
  color: rgb(218, 227, 230);
}
.forteIcon-roof_joist .path2:before {
  content: "\e951";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_joist .path3:before {
  content: "\e952";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_joist .path4:before {
  content: "\e953";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_joist .path5:before {
  content: "\e954";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-roof_joist .path6:before {
  content: "\e955";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_joist .path7:before {
  content: "\e956";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-roof_joist .path8:before {
  content: "\e957";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-roof_joist .path9:before {
  content: "\e958";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_column .path1:before {
  content: "\e959";
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path2:before {
  content: "\e95a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path3:before {
  content: "\e95b";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path4:before {
  content: "\e95c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path5:before {
  content: "\e95d";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path6:before {
  content: "\e95e";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path7:before {
  content: "\e95f";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_column .path8:before {
  content: "\e960";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_column .path9:before {
  content: "\e961";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_column .path10:before {
  content: "\e962";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_column .path11:before {
  content: "\e963";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_header .path1:before {
  content: "\e964";
  color: rgb(218, 227, 230);
}
.forteIcon-wall_header .path2:before {
  content: "\e965";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_header .path3:before {
  content: "\e966";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_header .path4:before {
  content: "\e967";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_header .path5:before {
  content: "\e968";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_stud .path1:before {
  content: "\e969";
  color: rgb(234, 151, 31);
}
.forteIcon-wall_stud .path2:before {
  content: "\e96a";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_stud .path3:before {
  content: "\e96b";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_stud .path4:before {
  content: "\e96c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_stud .path5:before {
  content: "\e96d";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_stud .path6:before {
  content: "\e96e";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_stud .path7:before {
  content: "\e96f";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_stud .path8:before {
  content: "\e970";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_wind-still .path1:before {
  content: "\e971";
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path2:before {
  content: "\e972";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path3:before {
  content: "\e973";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path4:before {
  content: "\e974";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path5:before {
  content: "\e975";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path6:before {
  content: "\e976";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_wind-still .path7:before {
  content: "\e977";
  margin-left: -1em;
  color: rgb(234, 151, 31);
}
.forteIcon-wall_wind-still .path8:before {
  content: "\e978";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path9:before {
  content: "\e979";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_wind-still .path10:before {
  content: "\e97a";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-wall_wind-still .path11:before {
  content: "\e97b";
  margin-left: -1em;
  color: rgb(218, 227, 230);
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path12:before {
  content: "\e97c";
  margin-left: -1em;
  color: rgb(218, 227, 230);
}
.forteIcon-matman:before {
  content: "\e901";
}
.forteIcon-selectAll:before {
  content: "\e900";
}

/* inject:lessImports */
/* endinject */
/*GENERIC SITE WIDE CLASSES*/
/* This helps the ng-show/ng-hide animations start at the right place. */
/* Since Angular has this but needs to load, this gives us the class early. */
/*.ng-hide {
    display: none!important;
}*/
/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
.forteGridContainer {
  float: left;
  position: relative;
  width: 100%;
}
.forteGridContainer[type="checkbox"] {
  margin: 0;
}
.forteGridContainer input[type="text"]:disabled {
  background: #eee !important;
  color: inherit;
}
.forteGridContainer .verticalOffsetCentered {
  vertical-align: middle;
  background: lightgray;
}
.forteGridContainer .form-control {
  text-align: center;
  height: 29px;
  padding: 4px 12px;
}
.forteGridContainer .form-control:focus {
  border-color: #4d90fe;
  border-width: 2px;
  padding-left: 10px;
  padding-right: 10px;
  height: 29px;
}
.forteGridContainer .form-control-span {
  vertical-align: middle;
}
.forteGridContainer .addForteGridColumnButton {
  white-space: nowrap;
  padding: 1px;
  margin-bottom: 10px;
  transition: width 0.5s;
  width: 22px;
}
.forteGridContainer .addForteGridColumnButton:hover {
  transition: width 0.35s;
  width: 104px;
}
.forteGridContainer .addForteGridColumnButton:hover span {
  transition: opacity 0.45s;
  opacity: 1;
}
.forteGridContainer .addForteGridColumnButton:focus {
  outline: none;
}
.forteGridContainer .addForteGridColumnButton span {
  font-family: "Helvetica Neue";
  color: black;
  padding-left: 5px;
  margin-right: 5px;
  vertical-align: top;
  transition: opacity 0.05s;
  opacity: 0;
  font-size: 18px;
}
.forteGridContainer .scrollContainer {
  width: auto;
  overflow-x: auto;
  overflow-y: hidden;
  display: block;
  white-space: nowrap;
}
.forteGridContainer .scrollContainer .columnContainer {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  float: left;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn {
  flex-shrink: 0;
  float: left;
  background-color: white;
  border-right: 1px solid #ccc;
  position: relative;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn > div:first-child {
  border-top: 1px solid #ccc;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div {
  border-bottom: 1px solid #ccc;
  height: 30px;
  overflow: hidden;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div > input[type="checkbox"] {
  margin: 0;
  height: 15px;
  box-shadow: none;
  display: inline;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div > input[type="checkbox"]:focus {
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 6px;
  outline-color: #4d90fe;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .disabledTextBlock {
  height: 100%;
  font-style: italic;
  text-align: center;
  padding-top: 6px;
  background-color: #eee;
  border-bottom: 0px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .singleValueContainer {
  height: 100%;
  border-bottom: 0px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .singleValueContainer.loadIsOffMember {
  background-color: #FFFF00;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .singleValueContainer > input[type="text"] {
  border: none;
  text-align: center;
  padding-left: 3px;
  padding-right: 3px;
  height: 100%;
  width: 100%;
  background-color: transparent;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .singleValueContainer > input[type="text"]:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer {
  height: 100%;
  border-bottom: 0px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer.disabledTextBlock {
  padding-top: 0px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer.loadIsOffMember {
  background-color: #FFFF00;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer > input[type="text"] {
  border: none;
  text-align: center;
  width: 82px;
  height: 29px;
  float: left;
  background-color: transparent;
  padding-top: 7px;
  padding-bottom: 7px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer > input[type="text"]:first-child {
  margin-left: 0px;
  margin-right: 4px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer > input[type="text"]:last-child {
  margin-left: 4px;
  margin-right: 0px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer > input[type="text"]:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn div .multiValueContainer > span {
  width: 10px;
  padding-top: 5px;
  float: left;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn:hover .columnDeleteButton {
  opacity: 1;
  cursor: pointer;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn:hover .columnCopyButton {
  opacity: 1;
  cursor: pointer;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn:last-child {
  border-right: 1px solid #ccc;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .gridCheckboxContainer {
  padding-top: 7px;
  text-align: center;
  vertical-align: middle;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnDeleteButton {
  border-bottom: 0px;
  transition: 0.5s linear all;
  color: red;
  position: absolute;
  left: 7px;
  top: 9px;
  font-size: 16px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnCopyButton {
  border-bottom: 0px;
  transition: 0.5s linear all;
  color: green;
  position: absolute;
  right: 5px;
  top: 8px;
  font-size: 16px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnHeaderCell {
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 5px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .commentsBox {
  white-space: nowrap;
  transition: 0.25s height;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .commentsBox:hover {
  transition: 0.25s height;
  height: 150px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnHeader {
  font-weight: bold;
  cursor: default;
  position: relative;
  padding: 4px 6px 6px 6px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnHeader.deSelectedSpan {
  background-color: transparent;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnHeader .columnDeleteButton {
  transition: 0.5s linear all;
  color: red;
  position: absolute;
  left: 7px;
  top: 8px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .columnHeader .columnDeleteButton:focus {
  outline: 0;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .disableOverlay {
  height: 100%;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer {
  position: relative;
  background: white;
  height: 40px;
  overflow: hidden;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer .animateSwitch {
  padding: 6px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer .animateSwitchng-animate {
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer .animateSwitchng-leave.ng-leave-active {
  top: -50px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer .animateSwitchng-enter {
  top: -50px;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer .animateSwitchng-leave {
  top: 0;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .animateSwitchContainer .animateSwitchng-enter.ng-enter-active {
  top: 0;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .customCheckBox {
  height: 30px;
  position: relative;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .customCheckBox label {
  margin-left: -10px;
  margin-top: 7px;
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -3px;
  border-radius: 4px;
  left: 50%;
  -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  background: #fcfff4;
  background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0);
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .customCheckBox label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 13px;
  height: 8px;
  background: transparent;
  top: 4px;
  left: 4px;
  border: 3px solid #333;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .customCheckBox label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.5;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .customCheckBox input[type="checkbox"]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
.forteGridContainer .scrollContainer .columnContainer .gridColumn .customCheckBox input[type="checkbox"]:disabled + label {
  border-radius: 4px;
  cursor: not-allowed;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
  -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
  background: linear-gradient(to bottom, #222 0%, #45484d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222', endColorstr='#45484d', GradientType=0);
}
.forteGridContainer .rowHeadersContainer {
  font-weight: bold;
  width: 150px;
  float: left;
}
.forteGridContainer .rowHeadersContainer .rowHeader {
  height: 30px;
  padding: 3px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-size: 12px;
}
.forteGridContainer .rowHeadersContainer .rowHeader.deSelected {
  background-color: transparent;
}
.forteGridContainer .rowHeadersContainer .rowHeader:first-child {
  border-top: 1px solid #ccc;
}
.forteGridContainer .bulletedMessagesContainer {
  margin-top: 10px;
  font-size: 14px;
  margin-left: -23px;
}
.iziToast .iziToast-close {
  top: -30%;
}
.iziToast-wrapper {
  padding: 1% 15px 10px 15px;
}
.iziToast.iziToast-layout3 {
  width: 100%;
}
.iziToast.iziToast-layout3 .iziToast-body > strong {
  width: 100%;
}
.iziToast.iziToast-layout3 .iziToast-body > p {
  width: 100%;
}
.iziToast.iziToast-layout3 .iziToast-body .iziToast-title {
  padding-bottom: 1%;
}
.iziToast.iziToast-layout3 .iziToast-body .iziToast-icon {
  top: 25%;
}
.iziToast-overlay {
  z-index: 1031;
  background: rgba(1, 106, 58, 0.5) !important;
}
.btnEditName {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #37c9db;
  position: absolute;
  top: 2px;
  right: 1px;
  cursor: pointer;
  box-shadow: 0px 2px 5px #666;
  opacity: 0;
  visibility: hidden;
  transition: visibility 1.5s, opacity 0.2s;
  transition-delay: 0.2s;
  animation: editName-out 0.3s;
  animation-delay: 0.2s;
  color: black;
}
.btnEditName:hover {
  background: #016a3a;
  color: white;
}
.btnEditName .editButtonIcon {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 20px;
  font-size: 14px;
}
@keyframes editName-in {
  from {
    transform: rotateZ(180deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes editName-out {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(180deg);
  }
}
.floatLeft {
  float: left;
}
.failedText {
  color: #FF0000;
}
.textLeft {
  text-align: left;
  vertical-align: middle !important;
}
.textCenter {
  text-align: center;
  vertical-align: middle !important;
}
.textRight {
  text-align: right;
  vertical-align: middle !important;
}
.checkboxWithLabel {
  line-height: 20px;
  margin-bottom: 5px;
}
.loadsColumnHeader.selected {
  background-color: #71FFFF;
}
.displayNone {
  display: none !important;
}
.right-inner-addon {
  position: relative;
}
.right-inner-addon i {
  position: absolute;
  right: 0px;
  padding: 10px 12px;
  pointer-events: none;
  text-align: center;
}
.right-inner-addon p {
  margin-bottom: 0px;
}
.ng-hide-add,
.ng-hide-remove {
  /* ensure visibility during the transition */
  display: block !important;
  /* yes, important */
}
.index-splash {
  z-index: 9999;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #656565;
  margin-top: -75px;
}
.index-splash p {
  font-size: 45px;
  position: absolute;
  bottom: 0;
  left: 20px;
}
body {
  margin: 0;
  background: #000;
  height: 100%;
  max-height: 100%;
  background-color: white;
  padding-top: 1vw;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
  overflow-y: scroll;
}
a {
  color: #7a7a7a;
  text-decoration: none;
}
a:hover {
  color: #d51700;
}
/*END GENERIC SITE WIDE CLASSES*/
/*MAIN LAYOUT CLASSES*/
.leftColumn {
  background-color: #f0f0f0;
  padding-left: 15px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 143px;
  /*Width of frame div*/
  overflow: hidden;
  /*Disable scrollbars. Set to "scroll" to enable*/
  margin-top: 110px;
}
.leftColumn-content {
  margin-top: 15px;
}
/*rightColumn*/
.mainContent {
  position: fixed;
  top: 110px;
  left: 158px;
  /*Set left value to WidthOfFrameDiv*/
  right: 0;
  bottom: 0;
  overflow: auto;
}
.header {
  position: fixed;
  background: #f0f0f0;
  background-image: url(/images/nav_header_logo.png);
  background-repeat: no-repeat;
  height: 110px;
  border: 0 solid black;
  width: 100%;
  top: 0;
  left: 0;
  overflow: auto;
}
.content {
  background: #f7f7f6;
  background-image: url(/images/content_bg.png);
  background-repeat: repeat-x;
  height: 2000px;
  padding: 15px;
}
/*END MAIN LAYOUT CLASSES

/*TOP NAVIGATION BAR CLASSES*/
.nav-right {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  overflow: hidden;
}
.nav-left {
  padding-left: 168px;
  overflow: auto;
  font-size: 20px;
}
.nav-top {
  height: 65px;
}
.nav-text-logo {
  font-family: 'Franklin Gothic Heavy';
  font-size: 40px;
  color: #d51700;
  float: left;
}
.nav-top .links {
  float: left;
  padding-top: 6px;
  padding-left: 10px;
}
/*style the button for modal dialog like a regular link*/
.nav-top .links div {
  float: left;
  padding: 0 7px 0 0;
  color: #7a7a7a;
  text-decoration: none;
}
.nav-top .links div:hover {
  cursor: pointer;
  color: #d51700;
}
/*end button style*/
.nav-bottom .links {
  padding-top: 15px;
}
.nav-bottom .links a {
  padding-right: 20px;
}
nav * a {
  user-select: none;
}
/*END TOP NAVIGATION BAR CLASSES*/
#newFileNameInputContainer {
  padding-top: 8.8px;
}
/*.form-control
{
    display: block;
    width: 280px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}*/
/*.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;

}*/
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default.active,
.btn-default:active,
.btn-default:focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #adadad;
}
.btn-default:hover,
.open .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
/* Override the default bootstrap behavior where horizontal description lists
   will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
  white-space: normal;
}
#mainContentTabParentContainer {
  padding: 30px;
}
.mainContentTab {
  display: none;
  background-color: AppWorkspace;
}
/*main navigation styling for divs.*/
.tabButton:active,
.tabButton:hover {
  outline: 0;
}
.disabledTab {
  pointer-events: none;
  opacity: 0.6;
}
.nav > li > .tabButton {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #7a7a7a;
  text-decoration: none;
  outline: 0;
  /*gets rid of dotted border on focused a tags*/
}
.nav > li > .tabButton:hover {
  text-decoration: none;
  background-color: #eeeeee;
  cursor: pointer;
  color: #d51700;
}
.nav > li > .tabButton.active {
  color: #5cb85c;
}
/*!
 * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
.float-left,
.floatLeft {
  float: left;
}
.float-right,
.floatRight {
  float: right;
}
html {
  margin: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}
body {
  height: 100%;
  min-height: 100%;
}
#leftColumnHeader {
  height: 42px;
  flex-shrink: 0;
  background: #fff;
}
#leftContent {
  flex: 1;
  background: white;
}
#leftFooter {
  height: 43px;
  flex-shrink: 0;
  background-color: #f8f8f8;
}
#main-wrapper {
  height: 100%;
  overflow-y: auto;
  padding: 75px 0 0;
}
#main {
  position: relative;
  height: 100%;
  overflow-y: auto;
}
#sidebar-wrapper {
  height: 100%;
  padding: 76px 0 0;
  position: fixed;
  border-right: 1px solid gray;
}
#sidebar {
  position: relative;
  height: 100%;
  overflow: hidden;
}
#sidebar .list-group-item {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.waiting-splash {
  position: relative;
}
.waiting-splash p {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-size: 30px;
}
@media (min-width: 768px) {
  #main-wrapper {
    float: right;
  }
}
@media (max-width: 768px) {
  #main-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  #sidebar-wrapper {
    position: static;
    height: auto;
    max-height: 300px;
    border-right: 0;
  }
}
@media print {
  .hide-print {
    display: none;
  }
}
.footer {
  background-color: #f8f8f8;
  bottom: 0;
  position: fixed;
  padding: 10px;
}
#footer .navbar-nav > li > a {
  padding-top: 3px;
  padding-bottom: 5px;
  font-size: 13px;
}
#footer .nav > li > .tabButton {
  padding: 10px 5px;
}
.navbar-top-links .logout-button {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.navbar-top-links .logout-button:hover {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.navbar-top-links {
  margin-right: 0;
}
.navbar-top-links li {
  display: inline-block;
}
.navbar-top-links li:last-child {
  margin-right: 15px;
}
.navbar-top-links li a {
  padding: 30px 15px 15px;
  min-height: 75px;
}
.navbar-top-links li a .fa {
  font-size: 20px;
}
.navbar-top-links .dropdown-menu li {
  display: block;
  cursor: pointer;
}
.navbar-top-links .dropdown-menu li:last-child {
  margin-right: 0;
}
.navbar-top-links .dropdown-menu li a {
  padding: 3px 20px;
  min-height: 0;
}
.navbar-top-links .dropdown-menu li a div {
  white-space: normal;
}
.navbar-top-links .dropdown-alerts,
.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks {
  width: 310px;
  min-width: 0;
}
.navbar-top-links .dropdown-messages {
  margin-left: 5px;
}
.navbar-top-links .dropdown-tasks {
  margin-left: -59px;
}
.navbar-top-links .dropdown-alerts {
  margin-left: -123px;
}
.navbar-top-links .dropdown-user {
  right: 0;
  left: auto;
}
.navbar-top-links .dropdown-file {
  right: 0;
  left: auto;
}
.sidebar .sidebar-nav.navbar-collapse {
  padding-right: 0;
  padding-left: 0;
}
.sidebar .sidebar-search {
  padding: 15px;
}
.sidebar ul li {
  border-bottom: 1px solid #e7e7e7;
}
.sidebar ul li a.active {
  background-color: #5cb85c;
  color: white;
}
.sidebar .arrow {
  float: right;
}
.sidebar .fa.arrow:before {
  content: "\f104";
}
.sidebar .active > a > .fa.arrow:before {
  content: "\f107";
}
.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
  border-bottom: 0 !important;
}
.sidebar .nav-second-level li a {
  padding-left: 37px;
}
.sidebar .nav-third-level li a {
  padding-left: 52px;
}
@media (min-width: 768px) {
  .sidebar {
    z-index: 1;
    position: absolute;
    width: 250px;
    margin-top: 76px;
  }
  .navbar-top-links .dropdown-alerts,
  .navbar-top-links .dropdown-messages,
  .navbar-top-links .dropdown-tasks {
    margin-left: auto;
  }
}
.btn-outline {
  color: inherit;
  background-color: transparent;
  transition: all 0.5s;
}
.btn-primary.btn-outline {
  color: #428bca;
}
.btn-success.btn-outline {
  color: #5cb85c;
}
.btn-info.btn-outline {
  color: #5bc0de;
}
.btn-warning.btn-outline {
  color: #f0ad4e;
}
.btn-danger.btn-outline {
  color: #d9534f;
}
.btn-danger.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-warning.btn-outline:hover {
  color: #fff;
}
.chat {
  margin: 0;
  padding: 0;
  list-style: none;
}
.chat li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #999;
}
.chat li.left .chat-body {
  margin-left: 60px;
}
.chat li.right .chat-body {
  margin-right: 60px;
}
.chat li .chat-body p {
  margin: 0;
}
.chat .glyphicon,
.panel .slidedown .glyphicon {
  margin-right: 5px;
}
.chat-panel .panel-body {
  height: 350px;
  overflow-y: scroll;
}
.login-panel {
  margin-top: 25%;
}
.flot-chart {
  display: block;
  height: 400px;
}
.flot-chart-content {
  width: 100%;
  height: 100%;
}
.dataTables_wrapper {
  position: relative;
  clear: both;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_desc_disabled {
  background: 0 0;
}
table.dataTable thead .sorting_asc:after {
  content: "\f0de";
  float: right;
  font-family: fontawesome;
}
table.dataTable thead .sorting_desc:after {
  content: "\f0dd";
  float: right;
  font-family: fontawesome;
}
table.dataTable thead .sorting:after {
  content: "\f0dc";
  float: right;
  font-family: fontawesome;
  color: rgba(50, 50, 50, 0.5);
}
.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857143;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 18px;
  line-height: 1.33;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}
.show-grid [class^=col-] {
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #ddd;
  background-color: #eee !important;
}
.show-grid {
  margin: 15px 0;
}
.huge {
  font-size: 40px;
}
.panel-green {
  border-color: #5cb85c;
}
.panel-green .panel-heading {
  border-color: #5cb85c;
  color: #fff;
  background-color: #5cb85c;
}
.panel-green a {
  color: #5cb85c;
}
.panel-green a:hover {
  color: #3d8b3d;
}
.panel-red {
  border-color: #d9534f;
}
.panel-red .panel-heading {
  border-color: #d9534f;
  color: #fff;
  background-color: #d9534f;
}
.panel-red a {
  color: #d9534f;
}
.panel-red a:hover {
  color: #b52b27;
}
.panel-yellow {
  border-color: #f0ad4e;
}
.panel-yellow .panel-heading {
  border-color: #f0ad4e;
  color: #fff;
  background-color: #f0ad4e;
}
.panel-yellow a {
  color: #f0ad4e;
}
.panel-yellow a:hover {
  color: #df8a13;
}
/*styling for navigationTabButtons*/
.tabButton:active,
.tabButton:hover {
  outline: 0;
}
.nav > li > .tabButton {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #7a7a7a;
  text-decoration: none;
}
.nav > li > .tabButton:hover {
  text-decoration: none;
  background-color: #eeeeee;
  cursor: pointer;
  color: #d51700;
}
.nav > li > .tabButton.active {
  color: #5cb85c;
}
.animate {
  -webkit-animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 0.5s;
  -moz-animation-timing-function: ease;
  -moz-animation-fill-mode: both;
  -o-animation-duration: 0.5s;
  -o-animation-timing-function: ease;
  -o-animation-fill-mode: both;
  -ms-animation-duration: 0.5s;
  -ms-animation-timing-function: ease;
  -ms-animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
#wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
  min-height: 100%;
  min-width: 0px;
}
#leftColumnMain {
  display: block;
  width: 237px;
  border-right: 1px solid #d9d9d9;
  position: relative;
}
#jobTreeContent {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#rightColumnMain {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  background: white;
  position: relative;
  width: calc(100% - 237px);
  min-width: 0px;
}
#rightContent {
  flex: 1;
  overflow-y: auto;
  display: flex;
  width: 100%;
  min-width: 0px;
  position: relative;
}
#rightContent .contentChild {
  flex: 1;
  /*position:relative;*/
  width: 100%;
  min-width: 0px;
}
#rightContent .contentChild .tabContent {
  height: 100%;
}
#rightContent .contentChild .messagesContainer {
  padding-top: 10px;
  float: left;
}
#rightFooter {
  z-index: 2;
  height: 41px;
  flex-shrink: 0;
  background-color: #E2E0E0;
}
.contentChild .graphicModal {
  top: 20px;
}
.contentChild .graphicBorders {
  border-bottom-color: #e7e6e6;
}
.btnChartZoom {
  padding: 5px 10px;
  margin-left: 10px;
}
.modal-full {
  min-width: 97%;
  margin: 5px;
}
.modal-full .modal-content {
  min-height: 98vh;
}
.modal-headerZoom {
  border-bottom: 1px solid #fff;
}
.graphBodyInModal {
  padding: 0px !important;
}
@media only screen and (orientation: portrait) {
  .rotateGraph {
    transform: rotate(90deg);
    width: 93vh;
    top: 21vh;
    left: -35%;
  }
}
@media only screen and (orientation: landscape) {
  .graphic {
    background: white;
    color: #FFF;
    position: relative;
    left: 0px;
    width: 100%;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #e7e6e6;
    /*-webkit-transition:top 500ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    -moz-transition:top 500ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    transition: top 500ms cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    /*animation: fadeInDown;*/
    overflow: hidden;
    box-sizing: border-box;
  }
  .graphic.ng-hide-add {
    animation: 0.35s fadeOutUpCustom ease-in-out;
  }
  .graphic.ng-hide-add #drawingLabelsContainer,
  .graphic.ng-hide-add #drawingCanvas {
    animation: 0.35s fadeOutUpCustomPosition ease-in-out;
  }
  .graphic.ng-hide-remove {
    animation: 0.35s fadeInDownCustom ease-in-out;
  }
  .graphic.ng-hide-remove #drawingLabelsContainer,
  .graphic.ng-hide-remove #drawingCanvas {
    animation: 0.35s fadeInDownCustomPosition ease-in-out;
  }
  @keyframes fadeOutUpCustomPosition {
    0% {
      top: 0px;
    }
    1% {
      top: 2.82px;
    }
    100% {
      top: -282px;
    }
  }
  @keyframes fadeOutUpCustom {
    0% {
      height: 282px;
    }
    1% {
      height: 279.18px;
    }
    100% {
      height: 0px;
    }
  }
  @keyframes fadeInDownCustomPosition {
    100% {
      top: 0px;
    }
    99% {
      top: -2.82px;
    }
    0% {
      top: -282px;
    }
  }
  @keyframes fadeInDownCustom {
    100% {
      height: 282px;
    }
    99% {
      height: 279.18px;
    }
    0% {
      height: 0px;
    }
  }
}
.graphic {
  background: white;
  color: #FFF;
  position: relative;
  left: 0px;
  width: 100%;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  /*-webkit-transition:top 500ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    -moz-transition:top 500ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
    transition: top 500ms cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
  /*animation: fadeInDown;*/
  overflow: hidden;
  box-sizing: border-box;
}
.graphic.ng-hide-add {
  animation: 0.35s fadeOutUpCustom ease-in-out;
}
.graphic.ng-hide-add #drawingLabelsContainer,
.graphic.ng-hide-add #drawingCanvas {
  animation: 0.35s fadeOutUpCustomPosition ease-in-out;
}
.graphic.ng-hide-remove {
  animation: 0.35s fadeInDownCustom ease-in-out;
}
.graphic.ng-hide-remove #drawingLabelsContainer,
.graphic.ng-hide-remove #drawingCanvas {
  animation: 0.35s fadeInDownCustomPosition ease-in-out;
}
@keyframes fadeOutUpCustomPosition {
  0% {
    top: 0px;
  }
  1% {
    top: 1.82px;
  }
  100% {
    top: -182px;
  }
}
@keyframes fadeOutUpCustom {
  0% {
    height: 182px;
  }
  1% {
    height: 180.18px;
  }
  100% {
    height: 0px;
  }
}
@keyframes fadeInDownCustomPosition {
  100% {
    top: 0px;
  }
  99% {
    top: -1.82px;
  }
  0% {
    top: -182px;
  }
}
@keyframes fadeInDownCustom {
  100% {
    height: 182px;
  }
  99% {
    height: 180.18px;
  }
  0% {
    height: 0px;
  }
}
.graphic-show {
  /*z-index: 22;*/
  top: 0;
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -ms-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.graphic-not-shown-yet {
  top: -300px;
}
.tabVertGraphic {
  height: 270px;
}
.tabVertGraphic img {
  height: 100%;
  display: block;
  margin: 0 auto;
}
#graphicToggle,
#vertGraphicToggle {
  position: absolute;
  appearance: none;
  cursor: pointer;
  left: -100%;
  top: 0;
}
#graphicToggle + label,
#vertGraphicToggle + label {
  top: 42px;
  left: 0;
  z-index: 1000;
  cursor: pointer;
  padding: 10px;
  border-radius: 3px;
  padding: 8px 9px;
  line-height: 8px;
  font-size: 12px;
  text-align: left;
  margin: 0px;
  color: #FFFFFF;
  font-family: 'RalewayRegular', Arial, sans-serif;
  text-decoration: none;
  background: #337ab7;
}
#graphicToggleZoom,
#vertGraphicToggleZoom {
  position: absolute;
  appearance: none;
  cursor: pointer;
  left: -100%;
  top: 0;
}
#graphicToggleZoom + label,
#vertGraphicToggleZoom + label {
  top: 42px;
  left: 0;
  z-index: 1000;
  cursor: pointer;
  padding: 10px;
  border-radius: 3px;
  padding: 8px 9px;
  line-height: 8px;
  font-size: 12px;
  text-align: left;
  margin: 0px;
  color: #FFFFFF;
  font-family: 'RalewayRegular', Arial, sans-serif;
  text-decoration: none;
  background: #5cb85c;
}
.logged-in-splash {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  z-index: 9999 !important;
}
.logged-in-splash.deleteCreate {
  left: -10px;
  top: -65px;
}
.logged-in-splash.memberDelete {
  top: 0px;
}
.logged-in-splash.splash-bg {
  background-color: #016a3a;
  opacity: 0.5;
}
.logged-in-splash.splash-bg.splash-bg-light {
  opacity: 0.7;
  background-color: #ffffff;
}
.logged-in-splash.splash-foreground {
  display: flex;
  justify-content: center;
  z-index: 10000 !important;
}
.splash-foreground-content {
  align-self: center;
  max-width: 400px;
  max-width: 90%;
}
.splash-foreground-content h3 {
  margin-top: 5px;
  color: #ffffff;
  text-shadow: 2px 2px #000000;
}
.logged-in-splash img {
  width: inherit;
}
.newfileheader {
  margin-top: -10px;
  margin-bottom: 5px;
}
.openfileheader {
  padding-top: -10px;
}
.modal-dialog {
  width: 95% !important;
}
.modalheader {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modalheader .modal-title {
  font-size: 16px;
}
.modalbody {
  position: relative;
  padding: 15px;
  margin-top: -15px;
}
.modalbody h5 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.modal-footer {
  padding: 15px;
}
#newFileTreeContainer,
#openFileTreeContainer {
  height: 275px;
  border: 1px solid #000000;
  padding: 5px;
  overflow-y: scroll;
}
#newFileInputForm {
  padding-top: 0px;
}
.cssFade {
  transition: 0.5s linear all;
  opacity: 1;
}
.cssFade.ng-hide {
  opacity: 0;
}
.borderlessButton {
  padding: 0;
  border: 0;
  background: none;
  outline: none;
  height: 16px !important;
}
.spinnerOverlay {
  background-color: transparent;
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 101;
}
.spinnerOverlay.ng-hide-add {
  animation: 0.35s fadeOut ease;
}
.spinnerOverlay.ng-hide-remove {
  animation: 1s fadeIn ease;
}
.spinnerOverlay .spinner {
  margin: 0px auto;
  width: 54px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute !important;
  right: 5px;
}
.spinnerOverlay .spinner > div {
  background-color: #71FFFF;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
  margin: 1px;
}
.spinnerOverlay .spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinnerOverlay .spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinnerOverlay .spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinnerOverlay .spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  100%,
  40% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  100%,
  40% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.disableOverlay {
  background-color: grey;
  opacity: 0.65;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}
.disableOverlay.ng-hide-add {
  animation: 0.35s fadeOutOfOpaque ease;
}
.disableOverlay.ng-hide-remove {
  animation: 1s fadeIntoOpaque ease;
}
@keyframes fadeIntoOpaque {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0.65;
  }
}
@keyframes fadeOutOfOpaque {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.commentsCell {
  text-overflow: ellipsis;
  overflow: hidden;
}
.jstree-default .jstree-anchor {
  cursor: pointer;
  text-decoration: none;
}
.ui-tabs-scrollable > .spacer > div:first-child > .nav-tabs > li > a {
  cursor: pointer;
}
.nav-tabs > li.active > a {
  font-weight: bold;
}
input[type=text]::-ms-clear {
  display: none !important;
}
#connectionOptions {
  height: 35px;
}
#jstree-marker {
  display: none !important;
}
.tour-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.passwordInformation {
  display: none;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.passwordInformationResetPassword {
  display: none;
  right: 0px;
  bottom: -50px;
}
.passwordInformationResetPasswordShow {
  display: block;
  right: 0px;
  bottom: -50px;
}
.passwordValidation {
  display: block;
  position: absolute;
  z-index: 10000;
  bottom: 4px;
  right: -350px;
  width: 340px;
  padding: 15px;
  font-size: 0.875em;
  border-radius: 5px;
  background: #fefefe;
  box-shadow: 0 1px 3px #ccc;
  border: 1px solid #ddd;
}
.passwordValidation ul,
.passwordValidation li {
  margin: 0;
  padding: 2px 0px 2px 0px;
  list-style-type: none;
}
.passwordValidation1 ul,
.passwordValidation1 li {
  list-style-type: none;
}
.resetPasswordValidation {
  font-size: 0.875em;
}
.resetPasswordValidation ul,
.resetPasswordValidation li {
  margin: 0;
  padding: 2px 0px 2px 0px;
  list-style-type: none;
}
.confirmPasswordValidation {
  font-size: 0.875em;
}
.confirmPasswordValidation ul,
.confirmPasswordValidation li {
  margin: 0;
  padding: 2px 0px 2px 0px;
  list-style-type: none;
}
.caretLeft {
  position: absolute;
  right: 20px;
  bottom: 194px;
  width: 25px;
}
.caretLeftChanged {
  position: absolute;
  right: 20px;
  bottom: 125px;
  width: 25px;
}
.invalid {
  background-image: url(/images/invalid.png);
  background-size: 13px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 6px;
  padding-left: 19px !important;
  line-height: 24px;
  color: #ec3f41;
}
.valid {
  background-image: url(/images/valid.png);
  background-size: 13px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 6px;
  padding-left: 22px !important;
  line-height: 24px;
  color: #5cb85c;
}
.validationMessage {
  height: 20px;
}
.form-groupChanged {
  margin-bottom: 0px !important;
}
.card {
  overflow: visible !important;
}
.languageSelectorContainer {
  margin: 20px auto;
}
.licenseCheckboxContainer {
  display: -webkit-inline-box;
  display: -ms-flexbox;
}
.licenseCheckboxContainer input[type="checkbox"] {
  display: none;
}
.licenseCheckboxContainer input[type="checkbox"] + label {
  display: -webkit-box;
  font-weight: 500;
  font-size: 13px;
  color: black;
  margin-bottom: 13px;
  width: 30px !important;
}
.licenseCheckboxContainer input[type="checkbox"] + label div:first-child {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: -2px 10px 0 0;
  vertical-align: middle;
  background-color: white;
  border: 1px solid black;
  cursor: pointer;
  margin-top: 5px;
}
.licenseCheckboxContainer input[type="checkbox"]:checked + label div:first-child {
  background: url(/images/check.png) -16px;
  background-color: #4285f4;
  background-size: cover;
}
.licenseCheckboxContainer .textContainer {
  width: 220px;
  margin-bottom: 10px;
  max-height: 40px;
}
.licenseCheckboxContainer a {
  color: blue;
  text-decoration: underline;
}
.signUpDisabled {
  background-color: grey;
}
.signUpDisabled:hover {
  background-color: grey !important;
}
.modal .fade {
  transition: opacity 0.3s linear;
}
.forTourStep {
  width: 0px;
  height: 0px;
}
.unSelectText {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.signUpException {
  padding-left: 5px;
  margin: 10px 0 0 0;
  font-family: Arial;
  font-size: 12px;
  color: #d30000;
}
.softwareLicensingAgreement {
  text-decoration: none !important;
  color: #333 !important;
  background-color: inherit !important;
}
.saveAsDefaultsButtonDiv {
  display: table;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}
.dropdown-menu {
  font-size: 12px;
}
.headerItem {
  float: left;
  white-space: nowrap;
  display: block !important;
  width: 50%;
  text-align: left;
}
.headerItemFloatRight {
  float: right !important;
  white-space: nowrap;
  display: block !important;
  width: 50%;
  text-align: left;
}
.headerItemFrench {
  float: left !important;
  white-space: nowrap;
  display: block !important;
  width: 50%;
  height: 60px;
  text-align: left;
}
.headerItemFloatRightFrench {
  float: right !important;
  white-space: nowrap;
  display: block !important;
  width: 50%;
  height: 60px;
  text-align: left;
}
.headerItemFrench a {
  white-space: normal;
}
.headerItemFloatRightFrench a {
  white-space: normal;
}
.closeBtn {
  float: right !important;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  font-size: 10px;
  border: none;
  outline: none;
  background-color: #000;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
.closeBtn:hover {
  background-color: #555;
}
.ui-tabs-scrollable > .spacer > div:first-child > .nav-tabs > li {
  float: left !important;
}
.dropdownlistcenter {
  padding-left: 0px !important;
}
.dropdown-menu-Center {
  left: 50%;
  right: auto;
  text-align: center;
  transform: translate(-50%, 0);
  width: 190px;
  text-align: left;
}
.dropdownlistcenter {
  text-align: center;
}
.dropdownlistwidth {
  width: 190px;
  padding-bottom: 1px;
}
.jobsettingbutton {
  border: 1px solid;
}
body {
  padding-top: 0;
}
.material-switch > input[type="checkbox"] {
  display: none;
}
.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  width: 40px;
}
.material-switch > label::before {
  background: #000000;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: '';
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 40px;
}
.material-switch > label::after {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: '';
  height: 24px;
  left: -4px;
  margin-top: -8px;
  position: absolute;
  top: -4px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}
.materialswitchDisabled > label::after {
  background: #000 !important;
}
.materialswitchDisabled > label::before {
  background: #000 !important;
}
@media screen and (max-width: 350px) {
  .jobsettingbutton {
    padding-left: 0px !important;
  }
  .rowHeadersContainer,
  .gridsContainer {
    font-size: 11px !important;
  }
  .gridColumn select {
    font-size: 11px !important;
  }
  .singleValueContainer .form-control {
    font-size: 12px !important;
  }
}
.pathContainer {
  height: 26px;
  flex-shrink: 0;
  display: flex;
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 1001;
  padding-bottom: 35px;
  padding-right: 5px;
  border-bottom: solid 1px #ddd;
  left: 0px;
}
.pathContainer nav {
  padding-left: 0px;
  padding-right: 0px;
  margin-right: 6px;
  padding-top: 7px;
}
.pathContainer ul {
  list-style-type: none;
  margin: 0;
  padding-left: 13px;
  padding-top: 10px;
  display: inline-flex;
}
.pathContainer ul li a {
  background: #ddd;
  padding: 9px 2px;
  float: left;
  color: #444;
  position: relative;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  margin-right: 20px;
}
.pathContainer ul li a:hover {
  background: #888;
}
.pathContainer ul li a:hover:before {
  border-color: #888 #888 #888 transparent;
}
.pathContainer ul li a:hover:after {
  border-left-color: #888;
}
.pathContainer ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -17px;
  border-top: 17px solid #ddd;
  border-bottom: 16px solid #ddd;
  border-left: 16px solid transparent;
  left: -15px;
}
.pathContainer ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -18px;
  border-top: 17px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 16px solid #ddd;
  right: -15px;
}
.pathContainer ul span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pathContainer ul li:not(:last-child) a {
  max-width: 160px;
}
.caret {
  margin-left: 8px !important;
}
select:disabled {
  background: #ccc;
  border: #ccc;
  color: #ccc;
  -webkit-text-fill-color: #888;
  opacity: 0.5;
  -webkit-opacity: 0.5;
}
.jobbody {
  margin-top: 45px;
}
.topnavfilemanegment {
  top: 53px;
}
.baricontopnav {
  margin-left: 10px;
}
.topnavMemebermanegment {
  top: 53px;
}

/* inject:lessImports */
/* endinject */
#saveAsDefaultButton {
  font-size: 12px !important;
  font-weight: bold !important;
}
.saveAsDefaultButtonG {
  width: 190px;
}
.saveAsDefaultButtonG:hover {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
  height: -34px !important;
}
.saveAsDefaultBtnContainer {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
}
.saveAsDefaultBtnContainer div {
  vertical-align: middle;
  padding-top: 6px;
  margin-top: 18px;
  margin-left: 20px;
}
.importantButtonStyles {
  height: 34px !important;
  border-width: 1px !important;
  border-radius: 4px !important;
}
.saveTextRight {
  animation-name: save-right;
  animation-duration: 2s;
  animation-timing-function: linear;
  display: inline-block;
  animation-fill-mode: forwards;
}
@keyframes save-right {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
}
.saveTextLeft {
  animation-name: save-left;
  animation-duration: 2s;
  animation-timing-function: linear;
  display: inline-block;
}
@keyframes save-left {
  0% {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.circleloader {
  margin: -3px 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circleloader,
.circleloader:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
@keyframes loader-spin {
  0% {
    transform: translate3d(190%, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(190%, 0, 0) rotate(360deg);
  }
}
.circleLoaderRight {
  margin: -3px 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-right;
  animation-duration: 1s;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circleLoaderRight,
.circleLoaderRight:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
@keyframes loader-right {
  0% {
    transform: translate3d(-190%, 0, 0) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: translate3d(190%, 0, 0) rotate(360deg);
    opacity: 1;
  }
}
.circleLoaderLeft {
  margin: -3px 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-left;
  animation-duration: 1s;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circleLoaderLeft,
.circleLoaderLeft:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
@keyframes loader-left {
  0% {
    transform: translate3d(190%, 0, 0) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(-190%, 0, 0) rotate(0deg);
    opacity: 0;
  }
}
.loadComplete {
  -webkit-animation: none;
  animation: none;
  border-color: #5cb85c;
  transition: border 500ms ease-out;
  transform: translate3d(190%, 0, 0);
  width: 25px;
  height: 25px;
}
.circleLoaderHide {
  height: 0px;
  width: 0px;
  border: 0px;
  display: none;
}
.checkmark.draw:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmarkanimation;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  height: 12.5px;
  width: 6.25px;
  transform-origin: left top;
  border-right: 2px solid #5cb85c;
  border-top: 2px solid #5cb85c;
  content: '';
  left: 6.25px;
  top: 12.5px;
  position: absolute;
}
@keyframes checkmarkanimation {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 6.25px;
    opacity: 1;
  }
  40% {
    height: 12.5px;
    width: 6.25px;
    opacity: 1;
  }
  100% {
    height: 12.5px;
    width: 6.25px;
    opacity: 1;
  }
}
.saveTextRightFr {
  animation-name: save-rightfr;
  animation-duration: 2s;
  animation-timing-function: linear;
  display: inline-block;
  animation-fill-mode: forwards;
}
@keyframes save-rightfr {
  0% {
    transform: translate3d(0, -260%, 0);
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    transform: translate3d(100%, -260%, 0);
    opacity: 0;
  }
}
.saveTextLeftFr {
  animation-name: save-leftfr;
  animation-duration: 2s;
  animation-timing-function: linear;
  display: inline-block;
}
@keyframes save-leftfr {
  0% {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.circleloaderFr {
  margin: -3px 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-spinfr;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circleloaderFr,
.circleloaderFr:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
@keyframes loader-spinfr {
  0% {
    transform: translate3d(-10%, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-10%, 0, 0) rotate(360deg);
  }
}
.circleLoaderRightFr {
  margin: -3px 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-rightfr;
  animation-duration: 1s;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circleLoaderRightFr,
.circleLoaderRightFr:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
@keyframes loader-rightfr {
  0% {
    transform: translate3d(-380%, 0, 0) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: translate3d(-10%, 0, 0) rotate(360deg);
    opacity: 1;
  }
}
.circleLoaderLeftFr {
  margin: -3px 0 30px 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-leftfr;
  animation-duration: 1s;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.circleLoaderLeftFr,
.circleLoaderLeftFr:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
@keyframes loader-leftfr {
  0% {
    transform: translate3d(-10%, 0, 0) rotate(360deg);
    opacity: 1;
  }
  100% {
    transform: translate3d(-380%, 0, 0) rotate(0deg);
    opacity: 0;
  }
}
.loadCompleteFr {
  -webkit-animation: none;
  animation: none;
  border-color: #5cb85c;
  transition: border 500ms ease-out;
  transform: translate3d(-10%, 0, 0);
  width: 25px;
  height: 25px;
}
.circleLoaderHideFr {
  height: 0px;
  width: 0px;
  border: 0px;
  display: none;
}
.checkmarkFr.drawFr:after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmarkanimation;
  transform: scaleX(-1) rotate(135deg);
}
.checkmarkFr:after {
  opacity: 1;
  height: 12.5px;
  width: 6.25px;
  transform-origin: left top;
  border-right: 2px solid #5cb85c;
  border-top: 2px solid #5cb85c;
  content: '';
  left: 6.25px;
  top: 12.5px;
  position: absolute;
}
@keyframes checkmarkanimationfr {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 6.25px;
    opacity: 1;
  }
  40% {
    height: 12.5px;
    width: 6.25px;
    opacity: 1;
  }
  100% {
    height: 12.5px;
    width: 6.25px;
    opacity: 1;
  }
}
.hideelement {
  display: none;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.floorPerformance {
  max-width: 320px;
}
.floorPerformance .floorPerformanceGraphic {
  margin: 0 0 13px 100px;
}
.floorPerformance fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 0 1.4em 1.4em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
}
.floorPerformance fieldset legend {
  font-size: 14px !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
}
.floorPerformance fieldset .fontNormalLabel {
  font-weight: normal;
}
.floorPerformance fieldset .lblminimumTJProRating {
  padding-top: 20px;
}
.floorPerformance fieldset .chkFloorPerformance {
  height: 18px;
  margin: 0px;
  margin-left: -9px;
  margin-right: 5.5px;
}
.floorPerformance fieldset .chkFloorPerformanceModifier {
  height: 18px;
  margin: 0px;
  margin-left: -38px;
  margin-right: 6px;
}
.floorPerformance fieldset .spanChk {
  margin-left: -15px;
  margin-bottom: 0px;
  font-weight: normal;
  white-space: nowrap;
}
.floorPerformance fieldset .labelChk {
  margin-left: 20px;
  margin-bottom: 0px;
  font-weight: normal;
  white-space: nowrap;
}
.floorPerformance fieldset .divUserDefine {
  margin-left: 0px;
}
.floorPerformance fieldset .spanUserDefine {
  margin-top: 7px;
  white-space: nowrap;
}
.floorPerformance fieldset .lblleft {
  margin-left: -14px;
}
.floorPerformance fieldset .sliderContainer {
  display: flex;
  margin-bottom: 10px;
}
.floorPerformance fieldset .sliderContainer input[type="range"] {
  flex: 16;
}
.floorPerformance fieldset .sliderContainer span {
  flex: 1;
}
.floorPerformance fieldset .sliderContainer span:last-of-type {
  text-align: right;
}
.floorPerformance fieldset .spanwithoutwhiteSpace {
  white-space: unset;
}
.paddingfix {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 5px;
}
.floorTopMargin {
  margin-top: 10px;
}

.holesContainer {
  float: left;
  position: relative;
  width: 100%;
}
.holesContainer .holeGridColumn {
  width: 140px;
}
.holesContainer .holeGridColumn .gridCheckboxContainer > input[type="checkbox"] {
  width: 87%;
}
.holesContainer .holeGridColumn div select {
  text-align: center;
  text-align-last: center;
}
.holesContainer .addHoleButton {
  width: 190px;
}
.holesContainer .addHoleButton:focus {
  outline: 0;
}
.holesContainer .addHoleButton:hover {
  cursor: pointer;
}
.holesContainer .addHoleButton div {
  display: inline-flex;
  width: auto;
  position: relative;
  top: -1px;
}
.holesContainer .addHoleButton div div {
  top: -2px;
}
.holesContainer .addHoleButton img {
  vertical-align: inherit;
  padding-right: 3px;
  height: 16px;
}
.holesContainer .copyHoleBtn {
  float: right;
}
.holeSelect,
.disabledTextBlock {
  text-align: center;
  text-align-last: center;
}
.labelholes {
  float: left !important;
  white-space: nowrap;
}
.deleteButton {
  float: left;
  margin-right: 1vw;
}
.copyButton {
  float: right;
}
.addHoleDiv {
  vertical-align: middle;
  text-align: center;
  padding-top: 2px;
}
.iconAddHole {
  font-size: 16px ;
  padding-right: 11px;
}
.iconCopyDeleteHole {
  font-size: 14px ;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.jobSettingsContainer {
  max-width: 320px;
}
.jobSettingsContainer .rowContainer {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
}
.jobSettingsContainer .rowContainer .selectContainer {
  margin-right: 50px;
}
.jobSettingsContainer .rowContainer .selectContainer select {
  width: 260px;
  margin-bottom: 10px;
}
.jobSettingsContainer .rowContainer .jobNotesContainer textarea {
  resize: none;
  width: 300px;
  height: 103px;
}
.jobSettingsContainer .LoadDurationFactorsContainer {
  padding-right: 0px;
  padding-left: 0px;
}
.jobSettingsContainer .LoadDurationFactorsContainer .loadFactor:focus {
  border: 2px solid #71bdff;
}
.jobSettingsContainer .LoadDurationFactorsContainer fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 0 1.4em 1.4em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
}
.jobSettingsContainer .LoadDurationFactorsContainer fieldset legend {
  font-size: 14px !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
}
.jobSettingsContainer .LoadDurationFactorsContainer fieldset .loaddurationfactors div {
  position: relative;
}
.jobSettingsContainer .LoadDurationFactorsContainer fieldset .loaddurationfactors div:last-child {
  margin-bottom: 0px;
}
.jobSettingsContainer .LoadDurationFactorsContainer fieldset .loaddurationfactors div select {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.jobSettingsContainer .LoadDurationFactorsContainer .softwareOperatorContainer {
  margin-left: 110px;
  height: 70px;
}
.jobSettingsContainer .LoadDurationFactorsContainer .softwareOperatorContainer input {
  width: 300px;
}
.jobSettingsContainer .saveAsDefaultBtnContainer {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
}
.jobSettingsContainer .saveAsDefaultBtnContainer div {
  vertical-align: middle;
  padding-top: 6px;
  margin-top: 18px;
  margin-left: 20px;
}
.jobsettingsTopMargin {
  margin-top: 10px;
}

.jobSummaryContainer {
  min-height: 100%;
  height: 100%;
  width: 100%;
}
.jobSummaryContainer .printAllReportGraphic {
  position: absolute;
  width: 800px;
  margin: 0 auto;
  float: inherit;
  padding: 0;
  z-index: -1;
  top: -60px;
}
.jobSummaryContainer .containerName {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: top;
}
.jobSummaryContainer .btnMargin {
  margin-bottom: 4px;
  width: 100%;
}
.jobSummaryContainer .buttonsContainer {
  max-width: 250px;
}
.jobSummaryContainer .summaryTableContainer .disabledStyle {
  color: #aaa;
  font-style: italic;
}
.jobSummaryContainer .summaryTableContainer .designPassed {
  color: green;
}
.jobSummaryContainer .summaryTableContainer .designFailed {
  color: red;
}
.jobSummaryContainer .summaryTableContainer .printContainerCheckbox {
  font-size: 18px;
}
.jobSummaryContainer .summaryTableContainer .printMemberCheckbox {
  margin-left: 10px;
  font-size: 18px;
}
.jobSummaryContainer .summaryTableContainer .labelmember {
  white-space: nowrap;
}
.jobSummaryContainer .summaryTableContainer .panel-body {
  padding: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.jobSummaryContainer .summaryTableContainer .panel-body:hover {
  background-color: #dfdfdf !important;
}
.jobSummaryContainer .summaryTableContainer .panel-group {
  padding-top: 0px;
}
.jobSummaryContainer .summaryTableContainer .lines {
  padding-bottom: 8px;
}
.jobSummaryContainer .lines {
  padding-bottom: 8px;
}
#jsReportDocument {
  z-index: -100;
}
#jsReportDocument .ng-hide-add {
  /* ensure visibility during the transition */
  display: none !important;
  /* yes, important */
}
#jsReportDocument table:nth-of-type(1) {
  page-break-inside: auto;
}
#jsReportDocument .reportFooter {
  height: 100%;
  page-break-inside: avoid;
}
#jsReportDocument .reportFooter .reportFooterHeight {
  height: 100%;
}
.jsMemberReport {
  page-break-before: always;
  break-before: page;
}
.jobSummaryReportHeader {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
}
.jobSummaryReportTitle {
  color: #696969 !important;
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
  #jsReportDocument table > tbody > tr > th {
    border: 1px solid grey !important;
    background-color: lightgrey !important;
  }
  .jobSummaryTable tbody > tr > td {
    border: 1px solid grey !important;
  }
  .reportFooter table > thead > tr > th {
    border: 1px solid grey !important;
  }
  .reportFooter table > tbody > tr > td {
    border: 1px solid grey !important;
  }
  .ng-hide {
    display: none !important;
  }
}

.levelContainer input {
  text-overflow: ellipsis;
  overflow: hidden;
}
.levelContainer img {
  max-width: 100%;
}
.levelContainer fieldset {
  margin-top: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 0 0.7em 0.7em 0.7em !important;
  margin: 1em 0 0.7em 0 !important;
  box-shadow: 0px 0px 0px 0px #000;
}
.levelContainer fieldset div {
  margin-bottom: 10px;
}
.levelContainer fieldset legend {
  font-size: 14px !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
  margin-bottom: 2px;
}
.levelContainer fieldset .legendSubText {
  margin-bottom: 10px;
  padding-left: 10px;
}
#buildingCls {
  display: block;
}
.deflectionCriteriaContainer {
  background-color: white;
  width: 200px;
  height: 100px;
}
.deflectionCriteriaContainer li:hover {
  background-color: lightblue;
  border: solid;
  border-color: blue;
}
.ridgeHeightText {
  display: block;
}
.ridgeHeightText input {
  width: 70px;
}
.eaveHeightText {
  display: block;
}
.eaveHeightText input {
  width: 70px;
}
.levelTopMargin {
  margin-top: 10px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.wrapText {
  white-space: normal;
}
.loadsContainer {
  float: left;
  position: relative;
  width: 100%;
  top: 10px;
}
.loadsContainer .cut-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.loadsContainer .rowHeadersContainer {
  font-weight: bold;
  width: 180px;
  float: left;
}
.loadsContainer .rowHeadersContainer .loadsRowHeader {
  height: 30px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.loadsContainer .rowHeadersContainer .loadsRowHeader:first-child {
  border-top: 1px solid #ccc;
}
.loadsContainer .dropdownquickloadbuttonfrench {
  margin-right: 10px;
}
.loadsContainer .dropdownquickloadbuttonenglish {
  margin-right: 50px;
}
.loadsContainer .loadGridColumn {
  width: 185px;
}
.loadsContainer .loadGridColumn .columnHeaderCell .optionsDropDown {
  overflow: visible !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
}
.loadsContainer .loadGridColumn .columnHeaderCell .optionsDropDown .dropdown-menu {
  margin-top: -1px;
  right: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: -6px 6px 6px 0px rgba(0, 0, 0, 0.75);
  width: 179px;
}
.loadsContainer .loadGridColumn .columnHeaderCell .optionsDropDown .dropdown-menu li:hover {
  cursor: pointer;
  background-color: #f5f5f5;
  color: #262626;
}
.loadsContainer .loadGridColumn .columnHeaderCell .btn-group.open .dropdown-toggle {
  box-shadow: initial;
}
.loadsContainer .loadGridColumn div select {
  text-align: center;
  text-align-last: center;
}
.loadsContainer .newLoadContainer:focus {
  outline: 0;
}
.loadsContainer .newLoadContainer .addLoadButtons {
  width: 100%;
  text-align: center;
  height: 30px;
}
.loadsContainer .newLoadContainer .addLoadButtons .newLoad {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 85%;
  height: 28px;
  margin: 0 auto;
}
.loadsContainer .newLoadContainer .addLoadButtons .moreOptions {
  width: 15%;
  height: 28px;
  border-left: 1px solid #ccc;
}
.loadsContainer .newLoadContainer .addLoadButtons .moreOptions button {
  color: green;
  margin: 0 auto;
  padding-top: 5px;
  font-size: 16px;
}
.loadsContainer .newLoadContainer .addLoadButtons div:hover {
  cursor: pointer;
  background-color: #f5f5f5;
  color: #262626;
}
.loadsContainer .newLoadContainer .addLoadButtons div:hover .firstDropdown .subMenuFixedHeight {
  max-height: inherit;
  overflow-y: auto;
}
.loadsContainer .newLoadContainer .addLoadActionButton {
  padding-bottom: 5px;
  width: 100%;
  height: 30px;
  text-align: center;
  padding-top: 5px;
}
.loadsContainer .newLoadContainer div {
  display: inline-flex;
  width: auto;
  position: relative;
  margin: auto;
}
.loadsContainer .newLoadContainer img {
  vertical-align: inherit;
  padding-right: 3px;
  height: 16px;
  margin-top: 1px;
}
.loadsContainer .newLoadContainer .firstDropdown {
  display: none;
  top: 27px;
  left: 6px;
  width: 174px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: -6px 6px 6px 0px rgba(0, 0, 0, 0.75);
}
.loadsContainer .newLoadContainer .firstDropdown li:hover {
  background-color: #f5f5f5;
  color: #262626;
  cursor: pointer;
}
.loadsContainer .newLoadContainer .dropdown-submenu {
  position: relative;
}
.loadsContainer .newLoadContainer .dropdown-submenu > .dropdown-menu {
  top: 0px;
  padding-top: 0px;
  left: 174px;
  margin-top: -1px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
  -webkit-box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.75);
}
.loadsContainer .newLoadContainer .dropdown-submenu > .dropdown-menu li:hover {
  cursor: pointer;
  background-color: #f5f5f5;
  color: #262626;
}
.loadsContainer .newLoadContainer .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.loadsContainer .newLoadContainer .dropdown-submenu:hover > .dropdown-menu li:hover {
  cursor: pointer;
  background-color: #f5f5f5;
  color: #262626;
}
.loadsContainer .newLoadContainer .dropdown-submenu > .dropdownQuickLoadButton:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 3px;
}
.loadsContainer .newLoadContainer .dropdown-submenu:hover > .dropdownQuickLoadButton:after {
  border-left-color: #ffffff;
}
.loadsContainer .newLoadContainer .dropdown-submenu.pull-left {
  float: none;
}
.loadsContainer .newLoadContainer .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.loadsContainer .newLoadContainer .dropdown-submenu.pull-left > .dropdown-menu li:hover {
  cursor: pointer;
  background-color: #f5f5f5;
  color: #262626;
}
.loadsContainer .loadsMessage {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.loadsContainer .singleValueContainer.loadIsOffMember {
  background-color: #FFFF00;
}
.loadsContainer .singleValueContainer.loadIsOffMember input {
  background-color: transparent;
}
.loadsContainer .multiValueContainer.loadIsOffMember input {
  background-color: #FFFF00;
}
.messagesContainer ul {
  padding-left: 12px;
}
.graphicPinnedForLoads {
  float: left;
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.graphicPinnedForLoadsremoveMargin {
  float: left;
  position: relative;
  width: 100%;
}
.dropdownIcons {
  padding: 7px;
  border: 0 !important;
  background: none;
  outline: none;
  height: 16px !important;
  overflow: visible !important;
}
.dropdownCopyButton {
  border-bottom: 0px;
  color: green;
  font-size: 16px;
}
.dropdownSaveButton {
  border-bottom: 0px;
  color: blue;
  font-size: 16px;
}
.dropdownQuickLoadButton {
  border-bottom: 0px;
  color: orange;
  font-size: 16px;
}
.specificPopupWidth {
  max-width: 700px !important;
}
.specificPopupWidth .popover-content {
  padding-top: 2px !important;
}
.specificPopupWidth .popover-content ul {
  padding-top: 0px !important;
  margin-bottom: 5px;
}
.loadEditingBtnContainer {
  display: block;
  margin-top: 10px;
}
.loadEditingBtnContainer .form-control {
  font-size: 12px!important;
  font-weight: 700!important;
  width: 190px;
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.loadEditingBtnContainer .form-control:focus {
  border-color: #4d90fe;
  border-width: 2px;
  padding-left: 10px;
  padding-right: 10px;
  height: 34px;
}
.loadEditingBtnContainer button {
  width: 200px;
}
.accordion-toggle:hover {
  color: #000 !important;
}
.accordion-toggle:focus {
  color: #fff !important;
}
.ddlFullWidth {
  width: 100%;
}
.ddlFullWidth .dropdown-menu {
  width: 100% !important;
  min-width: 100% !important;
}
.toTxt {
  text-align: center;
  display: block;
}
.spinner {
  width: 100% !important;
  top: 40%;
}
.addLoadDiv {
  padding-right: 5px !important;
}
.linkReactionDiv {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.divQuickLoadsDropDown {
  padding-left: 5px !important;
}
.disabledTextBlock {
  font-style: italic;
  text-align: center;
  border-bottom: 0px;
}
.labelWrap {
  word-wrap: normal;
  white-space: normal;
}
.deleteLoadDiv {
  padding-right: 0px;
}
.material-switch > input[type="checkbox"] {
  display: none;
}
.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  width: 40px;
}
.material-switch > label::before {
  background: #000000;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: '';
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 40px;
}
.material-switch > label::after {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: '';
  height: 24px;
  left: -4px;
  margin-top: -8px;
  position: absolute;
  top: -4px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}
@media screen and (max-width: 450px) {
  .addLoadDiv {
    width: 100% !important;
    padding-bottom: 5px !important;
    padding-right: 15px !important;
  }
  .linkReactionDiv {
    width: 50% !important;
    padding-right: 3px !important;
    padding-left: 15px !important;
  }
  .divQuickLoadsDropDown {
    width: 50% !important;
    padding-left: 3px !important;
  }
}
@media screen and (max-width: 412px) {
  .iziToast > .iziToast-body .iziToast-icon {
    top: 18% !important;
  }
}
@media screen and (max-width: 587px) and (min-width: 412px) {
  .iziToast > .iziToast-body .iziToast-icon {
    top: 27% !important;
  }
}
@media screen and (max-width: 350px) {
  .form-control,
  .textLabel {
    font-size: 12px;
  }
  .loadsContainer .btnfont {
    font-size: 11px !important;
  }
}
.deleteButton {
  float: left;
  margin-right: 1vw;
}
.saveAsQuickLoadBtn {
  padding-left: 0;
}
.copyBtn {
  padding-right: 0;
  float: right;
}
.iconSize {
  font-size: 14px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/*LOCATION ANALYSIS*/
/* inject:lessImports */
/* endinject */
.locationsContainer {
  float: left;
  position: relative;
  width: 100%;
}
.locationsContainer .panel-group {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.addLocationButton {
  width: 190px;
}
.addLocationButton:focus {
  outline: 0;
}
.addLocationButton:hover {
  cursor: pointer;
}
.addLocationButton div {
  display: inline-flex;
  width: auto;
  position: relative;
  top: -1px;
}
.addLocationButton div div {
  top: -2px;
}
.addLocationDiv {
  vertical-align: middle;
  text-align: center;
  padding-top: 2px;
  font-weight: normal;
}
.iconAddLocation {
  font-size: 14px;
  padding-right: 11px;
}
.locationsContainer .form-control {
  border-width: 1;
  text-align: center;
}
.locationsContainer .from-control:focus {
  outline: 0;
  box-shadow: none;
}
.labelLocation {
  float: left !important;
  white-space: nowrap;
}
.spinnerOverlay {
  position: relative !important;
}
.spinner {
  position: relative !important;
}
.deleteLocationAnalysisHole {
  font-size: 14px;
}
.notchedFlangeContainer {
  float: left;
  top: 20px;
  position: relative;
  display: flex;
  margin-bottom: 15px;
  height: 220px;
}
.notchedFlangeContainer .rowHeaderContainer {
  font-weight: bold;
  width: 190px;
  text-align: left;
}
.notchedFlangeContainer .rowHeaderContainer .notchHeader:first-child {
  border-top: 1px solid #ccc;
}
.notchedFlangeContainer .rowHeaderContainer .notchHeader {
  height: 30px;
  padding: 3px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.notchedFlangeContainer .notchColumnHeader {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 250px;
  height: 30px;
  font-weight: bold;
  text-align: center;
  padding-top: 3px;
}
.notchedFlangeContainer .notchColumnHeader .columnDeleteButton {
  left: 197px;
  font-size: 16px;
}
.notchedFlangeContainer .disableOverlay,
.notchedFlangeContainer .spinnerOverlay {
  height: 180px;
  width: 250px;
  z-index: 100;
  left: 190px;
}
.notchedFlangeContainer .notchColumn {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 250px;
  height: 30px;
}
.notchedFlangeContainer .notchColumn div {
  height: 29px;
  text-align: center;
  padding: 4px;
}
.notchedFlangeContainer .notchColumn select {
  height: 29px;
  border-radius: 0%;
  border: none;
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
  padding: 4px;
}
.notchedFlangeContainer .notchColumn select:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.notchedFlangeContainer .notchColumn input {
  height: 29px;
  border-radius: 0%;
  border: none;
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
  text-overflow: ellipsis;
}
.notchedFlangeContainer .notchColumn input:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.notchedFlangeContainer .alongTopContainer img {
  position: relative;
  height: 200px;
  left: 180px;
  top: -20px;
}
.notchedFlangeContainer .alongTopContainer span {
  position: relative;
  z-index: 10;
}
.notchedFlangeContainer .alongTopContainer .span1 {
  top: 138px;
  left: 175px;
}
.notchedFlangeContainer .alongTopContainer .span2 {
  top: 50px;
  left: 115px;
}
.notchedFlangeContainer .alongTopContainer .span3 {
  left: 240px;
  top: 6px;
}
.notchedFlangeContainer .alongTopContainer .span3Bottom {
  top: 173px;
  left: 240px;
}
.notchedFlangeContainer .acrossTopContainer img {
  position: relative;
  height: 200px;
  left: 180px;
  top: -20px;
}
.notchedFlangeContainer .acrossTopContainer span {
  position: relative;
  z-index: 10;
}
.notchedFlangeContainer .acrossTopContainer .span1 {
  top: 135px;
  left: 175px;
}
.notchedFlangeContainer .acrossTopContainer .span2 {
  top: 50px;
  left: 115px;
}
.notchedFlangeContainer .acrossTopContainer .span3 {
  top: 23px;
  left: 250px;
}
.notchedFlangeContainer .acrossTopContainer .span3Bottom {
  top: 154px;
  left: 250px;
}
.notchedFlangeContainer .sectionContainer span {
  position: relative;
  z-index: 10;
  font-weight: bold;
}
.notchedFlangeContainer .sectionContainer div {
  position: relative;
}
.notchedFlangeContainer .sectionContainer div .topSection {
  top: -44px;
  left: 10vw;
}
.notchedFlangeContainer .sectionContainer .section {
  top: -35px;
  left: 360px;
}
.notchContainer .panel-default {
  border: 0px;
}
.notchContainer .notchPanel {
  margin-top: 10px;
}
.notchContainer .notchPanel .panel-group {
  margin-bottom: 0px;
  padding-bottom: 10px;
  padding-top: 0px;
}
.notchContainer .notchBody .gridColumn .notchGraphContent {
  display: flex;
  justify-content: center;
  align-items: center;
}
.notchContainer .notchBody .gridColumn .alongTopContainer {
  margin-left: 5vw;
}
.notchContainer .notchBody .gridColumn .alongTopContainer img {
  position: relative;
  height: 200px;
  top: -10px;
}
.notchContainer .notchBody .gridColumn .alongTopContainer span {
  position: relative;
  z-index: 10;
}
.notchContainer .notchBody .gridColumn .alongTopContainer .span1 {
  top: 150px;
  left: -20px;
}
.notchContainer .notchBody .gridColumn .alongTopContainer .span2 {
  top: 50px;
  left: -80px;
}
.notchContainer .notchBody .gridColumn .alongTopContainer .span3 {
  left: 50px;
  top: 6px;
}
.notchContainer .notchBody .gridColumn .alongTopContainer .span3Bottom {
  top: 173px;
  left: 50px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer img {
  position: relative;
  height: 200px;
  top: -15px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer span {
  position: relative;
  z-index: 10;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span1 {
  top: 135px;
  left: -14px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span1Fr {
  top: 155px;
  left: -40px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span2 {
  top: 50px;
  left: -80px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span2Fr {
  top: 49px;
  left: -7px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span3 {
  top: 23px;
  left: 55px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span3Fr {
  top: 40px;
  left: 106px;
}
.notchContainer .notchBody .gridColumn .acrossTopContainer .span3Bottom {
  top: 154px;
  left: 55px;
}
.notchContainer .notchBody .gridColumn .sectionContainer span {
  position: relative;
  z-index: 10;
  font-weight: bold;
}
.notchContainer .notchBody .gridColumn .sectionContainer div {
  position: relative;
}
.notchContainer .notchBody .gridColumn .sectionContainer div .topSection {
  left: -205px;
  top: 90px;
}
.notchContainer .notchBody .gridColumn .sectionContainer .section {
  top: 90px;
  left: -71px;
}
.locationTitles {
  padding-right: 0px;
}
@media (max-width: 325px) {
  .locationTitles label {
    font-size: 12px;
  }
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.memberContainer {
  max-width: 320px;
}
.memberContainer .form-group {
  margin-bottom: 0px !important;
}
.memberContainer .form-group.systemMember {
  padding: 0px !important;
}
.memberContainer div {
  padding-bottom: 4px;
}
.memberContainer div select {
  margin-bottom: 7px !important;
}
.memberContainer .memberInfoLabel {
  white-space: nowrap;
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
  width: 100%;
  height: 34px;
  padding-top: 10px;
}
.memberContainer .memberLevelNameContainer {
  margin-bottom: 0px;
}
.memberContainer .memberLevelNameContainer label {
  padding-top: 10px;
}
.memberContainer .memberLevelNameContainer input,
.memberContainer .memberLevelNameContainer select {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.memberContainer .memberNotesContainer textarea {
  resize: none;
}
.memberContainer .membePitchInput {
  float: left;
  width: 60px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.memberContainer .membePitchOver12 {
  margin-top: 8px;
  margin-left: 0px;
}
.memberContainer .membePitchInputMessage {
  color: red;
}
.memberContainer .multiPlyContainer {
  width: 286px;
}
.memberContainer .multiPlySelect {
  width: 285px;
}
.memberContainer .deflectionContainer fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 0 1.4em 0 1.4em !important;
  margin: 0 0 0.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
}
.memberContainer .deflectionContainer fieldset legend {
  font-size: 14px !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
}
.memberContainer .deflectionContainer fieldset div .selectWidth {
  max-width: 250px;
  display: block;
  margin: 0 auto;
}
.memberContainer .deflectionContainer .deflectionInputsContainer div {
  padding-bottom: 0px;
}
.memberContainer .deflectionContainer .deflectionInputsContainer div p {
  font-style: normal;
}
.memberContainer .deflectionContainer .deflectionInputsContainer div input {
  width: 55px;
}
.memberContainer .deflectionContainer .customDeflectionMessage {
  color: red;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.memberContainer .deflectionContainer .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
.memberContainer .wallHeaderNotesContainer {
  font-size: 13px;
  display: block;
}
.memberContainer .wallHeaderNotesContainer div ul {
  padding-left: 15px;
}
.memberContainer .wallHeaderNotesContainer label {
  margin-top: 5px !important;
  font-weight: bold;
}
.memberContainer .checkbox {
  margin-bottom: 0px;
  margin-top: 0px;
}
.memberContainer .checkbox label input[type="checkbox"] {
  width: 18px;
  margin: 0px;
  margin-left: -25px;
  margin-right: 5px;
  height: 18px;
}
.memberContainer .memberSettings fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 0 1.4em 1.4em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #000;
  box-shadow: 0px 0px 0px 0px #000;
}
.memberContainer .memberSettings fieldset legend {
  font-size: 14px !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
}
.memberInfoTopMargin {
  margin-top: 10px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
#tabcontent {
  width: 90% !important;
  left: 5% !important;
}
.productSelectionContainer img {
  width: 16px;
  height: 16px;
}
.productSelectionContainer select {
  margin-bottom: 5px;
}
.productSelectionContainer input[type="checkbox"] {
  width: 18px;
  margin: 0px;
  margin-right: 5px;
  float: left;
  height: 18px;
}
.productSelectionContainer .productSeriesContainer {
  padding-top: 10px;
}
.productSelectionContainer .allButtonView {
  padding-right: 6px;
}
.productSelectionContainer .selectListContainer {
  position: relative;
  width: 106%;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow-y: scroll;
}
.productSelectionContainer .selectListContainer .lablewidth {
  padding: 0;
  font-weight: normal !important;
}
.productSelectionContainer .selectListContainer .checkBoxBorder {
  padding-left: 5px;
}
.productSelectionContainer .selectListContainer .configSelectList {
  width: 100%;
  padding: 4px;
  height: 100%;
}
.productSelectionContainer .selectListContainer .configSelectList option {
  line-height: normal;
}
.productSelectionContainer .selectListContainer .nonResizeSelectList {
  height: 204px;
  width: 100%;
  padding: 4px;
  min-height: 214px;
}
.productSelectionContainer .selectListContainer.productSeries label.specialOrder:before {
  content: "\f071";
  color: #ffa500;
  font-family: fontawesome;
}
.productSelectionContainer .selectListContainer.productSeries label.unavailable:before {
  content: "\f057";
  color: #ff0000;
  font-family: fontawesome;
}
.productSelectionContainer .selectListContainer.solution {
  min-height: 180px;
}
.productSelectionContainer .customDepth {
  margin-top: 5px;
}
.productSelectionContainer .customSpacing {
  margin-top: 5px;
}
.productSelectionContainer .borderlessButtonPs {
  padding: 0;
  border: 0;
  background: none;
  outline: none;
  width: max-content;
}
.wizard {
  margin: 20px auto;
  background: #fff;
}
.wizard .nav-tabs {
  position: relative;
  margin: -28px auto;
  margin-bottom: 0;
  border-bottom-color: #e0e0e0;
}
.wizard > div.wizard-inner {
  position: relative;
}
.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 80%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
}
.wizard .nav-tabs > li.active > a,
.wizard .nav-tabs > li.active > a:hover,
.wizard .nav-tabs > li.active > a:focus {
  color: #555555;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}
span.round-tab {
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  border-radius: 100px;
  background: #fff;
  border: 2px solid #e0e0e0;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 25px;
}
span.round-tab i {
  color: #555555;
}
.wizard li.active span.round-tab {
  background: #337ab7;
  border: 2px solid #2e6da4;
  color: white;
}
.wizard .nav-tabs .item {
  width: 20%;
}
.wizard .nav-tabs .four {
  width: 25% !important;
}
.wizard li:after {
  content: " ";
  position: absolute;
  left: 46%;
  opacity: 0;
  margin: 0 auto;
  bottom: 0px;
  border: 5px solid transparent;
  border-bottom-color: #555555;
  transition: 0.1s ease-in-out;
}
.wizard .nav-tabs > li a {
  width: 40px;
  height: 40px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0;
}
.wizard .nav-tabs > li a:hover {
  background: transparent;
}
.wizard .tab-pane {
  position: relative;
}
.wizard h3 {
  margin-top: 0;
}
@media (max-width: 585px) {
  .nav-tabs {
    border-bottom: 0px;
  }
  .wizard {
    width: 90%;
    height: auto !important;
  }
  span.round-tab {
    font-size: 16px;
    width: 25px;
    height: 25px;
    line-height: 24px;
  }
  .wizard .nav-tabs > li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  .wizard li.active:after {
    content: " ";
    position: absolute;
    left: 35%;
  }
}
.carousel-indicators li {
  border: 1px solid #548dd4;
}
.carousel-indicators .active {
  background-color: #4d90fe;
}
@media only screen and (orientation: portrait) {
  .carousel-control.right {
    background-image: none;
    height: 50px;
    color: #4d90fe;
    top: 50%;
    position: fixed;
    float: right;
  }
  .carousel-control.left {
    background-image: none;
    height: 50px;
    color: #4d90fe;
    top: 50%;
    position: fixed;
    float: left;
  }
}
@media only screen and (orientation: landscape) {
  .carousel-control.right {
    background-image: none;
    height: 50px;
    color: #4d90fe;
    top: 75%;
    position: fixed;
    float: right;
    margin-right: -30px;
  }
  .carousel-control.left {
    background-image: none;
    height: 50px;
    color: #4d90fe;
    top: 75%;
    position: fixed;
    float: left;
    margin-left: -30px;
  }
}
.carousel-indicators {
  top: 395px;
  z-index: 0;
}
.productSelectionRedirectBtn {
  margin-top: 20px;
}
input:disabled {
  pointer-events: none !important;
}
.sliderTopMarging {
  margin-top: 10px;
}
.whereToBuyText {
  padding-top: 20px;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  color: blue;
}


/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.gridLabel {
  font-size: 16px;
}
.messages {
  font-size: 13px;
  padding-top: 5px;
  margin: 0;
}
.headerDimensionRow {
  height: 50px;
  vertical-align: text-top;
}
.reportDocument {
  font-size: 13px;
  line-height: 1.5;
}
.reportDocument .onlyForPrint {
  display: none;
}
.reportDocument .unavailableMessage {
  background-color: #ff0000;
}
.reportDocument .specialOrderMessage {
  background-color: #ffa500;
}
.reportDocument .versionFooter {
  float: right;
  text-align: right;
}
.reportDocument .verticalReportGraphic {
  height: 285px;
}
.reportDocument .verticalReportGraphic img {
  height: 92%;
  display: block;
  margin: 0 auto;
}
.reportDocument .reportFooter {
  height: 120px;
}
.reportDocument ul {
  list-style-type: disc !important;
  padding-left: 15px !important;
  margin-top: -15px;
}
.reportDocument .reportErrorMessages ul {
  margin-top: 0px;
  list-style-type: none !important;
  color: red;
  padding-left: 0px !important;
}
.reportDocument .col-xs-1,
.reportDocument .col-sm-1,
.reportDocument .col-md-1,
.reportDocument .col-lg-1,
.reportDocument .col-xs-2,
.reportDocument .col-sm-2,
.reportDocument .col-md-2,
.reportDocument .col-lg-2,
.reportDocument .col-xs-3,
.reportDocument .col-sm-3,
.reportDocument .col-md-3,
.reportDocument .col-lg-3,
.reportDocument .col-xs-4,
.reportDocument .col-sm-4,
.reportDocument .col-md-4,
.reportDocument .col-lg-4,
.reportDocument .col-xs-5,
.reportDocument .col-sm-5,
.reportDocument .col-md-5,
.reportDocument .col-lg-5,
.reportDocument .col-xs-6,
.reportDocument .col-sm-6,
.reportDocument .col-md-6,
.reportDocument .col-lg-6,
.reportDocument .col-xs-7,
.reportDocument .col-sm-7,
.reportDocument .col-md-7,
.reportDocument .col-lg-7,
.reportDocument .col-xs-8,
.reportDocument .col-sm-8,
.reportDocument .col-md-8,
.reportDocument .col-lg-8,
.reportDocument .col-xs-9,
.reportDocument .col-sm-9,
.reportDocument .col-md-9,
.reportDocument .col-lg-9,
.reportDocument .col-xs-10,
.reportDocument .col-sm-10,
.reportDocument .col-md-10,
.reportDocument .col-lg-10,
.reportDocument .col-xs-11,
.reportDocument .col-sm-11,
.reportDocument .col-md-11,
.reportDocument .col-lg-11,
.reportDocument .col-xs-12,
.reportDocument .col-sm-12,
.reportDocument .col-md-12,
.reportDocument .col-lg-12 {
  padding-left: 0px;
}
.reportDocument .noBorders tr > td {
  border-top-width: 0px;
}
.reportDocument .row {
  margin-right: 0px;
  margin-left: 0px;
}
.reportDocument .sfiLogo {
  width: 215px;
  height: 43px;
  float: right;
}
.reportDocument .reportHeader {
  width: 100%;
  justify-content: center;
}
.reportDocument .reportHeader .reportHeaderLogoContainer {
  height: calc(2*(13px*1.5));
  padding-top: 4px;
}
.reportDocument .reportHeader .reportMemberReportText {
  font-weight: bold;
  color: #8c8c8c !important;
}
.reportDocument .reportHeader .reportProductName {
  font-weight: bolder;
  font-size: 16px;
}
.reportDocument .reportHeader .reportHeaderPassedFailed {
  font-size: 12px;
  font-weight: bolder;
  color: #009d00 !important;
  padding-right: 4px;
  padding-top: 4px;
}
.reportDocument .reportHeader .reportHeaderFailedColor {
  color: #ff0000 !important;
}
.reportDocument .reportHeader .centerText {
  text-align: center;
}
.reportDocument .reportRepeatFooter {
  display: none;
}
.reportDocument .mpceErrors {
  color: #ff0000;
}
.mpceNormalGridStyle {
  color: #333;
}
.mpceNoSolutionGridStyle {
  color: red;
}
.reportSelectElement {
  padding: 0px;
  height: 22px;
}
@keyframes plus-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(180deg);
  }
}
@keyframes plus-out {
  from {
    opacity: 0;
    transform: rotateZ(180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes edit-in {
  from {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes edit-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-70deg);
  }
}
#reportDocument .row table tr .highlightColumHeader {
  background-color: #69a323;
}
#reportDocument .parentheticalHeader {
  margin-top: -15px;
}
#reportDocument .parentheticalHeader label {
  font-weight: normal;
  font-style: italic;
}
.row .structureSystem {
  border-top: solid 1px #ccc;
}
.row .reportsubjectheader {
  background-color: #555;
  color: #fff;
  padding: 8px;
  margin: 0px;
}
.row .panel-group {
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}
.row .panel-group div .passfailclass {
  white-space: nowrap;
}
.row .panel-group div .passclass {
  color: green;
}
.row .panel-group div .failclass {
  color: red;
}
.row .panel-group .panel-heading {
  border-bottom: #ccc solid 1px;
  border-top: #ccc solid 1px;
  padding: 8px 8px 8px 8px;
}
.row .panel-body {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.row .panel-body div .labelmember {
  color: #000;
  white-space: nowrap;
}
.row .messages {
  margin-top: 10px;
}
.bodytoppadding {
  padding-top: 5px;
}
.panel-body-padding {
  padding-bottom: 5px !important;
}
.bordertop {
  border-top: 1px solid #ccc !important;
}
.setinlineBlock {
  display: inline-flex;
  float: right;
}
.zeroheight {
  height: 0px;
}
.removepadding {
  padding: 0px !important;
}
.printButtonIcon {
  font-size: 14px;
}
.modal-title-custom {
  float: left;
  font-size: 16px;
  font-weight: normal;
}
.helpIcon-right {
  float: right;
}
.connectorInfoManualSelection {
  margin-left: 15px;
  margin-top: 5px;
}
.font13 {
  font-size: 13px;
}
.sectionTopMargin {
  margin-top: 10px;
}
#notchFlange span {
  height: 2px;
}
.bodybottompadding {
  margin-bottom: 10px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.roofGeometry .roofSlopeContainer input {
  float: left;
  width: 85px;
  margin-right: 9px;
  margin-bottom: 10px;
}
.roofGeometry .roofSlopeContainer label {
  margin-left: 0px;
}
.roofGeometry .roofSlopeContainer .labelData {
  margin-top: 8px;
}
.roofGeometry .roofSlopeContainer div {
  padding-right: 0px;
}
.roofGeometry fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  margin: 0 0 1em 0 !important;
}
.roofGeometry fieldset legend {
  width: auto;
  font-size: 14px;
  font-weight: bold;
}
.roofGeometry fieldset input[type="checkbox"] {
  margin: 0px;
  height: 18px;
}
.roofGeometry .checkbox {
  margin-bottom: 0px;
  margin-top: 0px;
}
.roofGeometry .checkbox label input[type="checkbox"] {
  width: 18px;
  margin: 0px;
  margin-left: -25px;
  margin-right: 5px;
  height: 18px;
}
.roofGeometry .comboBoxWidth {
  min-width: 100px;
}
.roofGeometry .labelMargin {
  margin-top: 15px;
  margin-bottom: 6px;
}
.roofGeometry .warningContainer {
  color: red;
}
.roofGeometry .clearButtonMargin {
  margin-top: 15px;
  margin-bottom: 15px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.solutionsTabContainer {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.solutionsTabContainer input[type="checkbox"] {
  width: 18px;
  margin: 0px;
  margin-right: 5px;
  float: left;
  height: 18px;
}
.solutionsTabContainer .onlyShowPassingContainer {
  float: left;
  margin-top: 15px;
  margin-bottom: 18px;
}
.solutionsTabContainer .resultFailed {
  color: #E44C36;
}
.solutionsTabContainer .solutionTitle {
  float: left;
}
.solutionsTabContainer .sortList {
  padding-left: 10px;
  min-width: 119px;
}
.solutionsTabContainer .sortList .sortedItem {
  margin-top: 5px;
}
.solutionsTabContainer .sortedbyDiv {
  margin-top: 5px;
}
.solutionsTabContainer .sortedbyDiv .sortDescending:after {
  font-family: FontAwesome;
  content: "\f0dd";
  padding-left: 5px;
}
.solutionsTabContainer .sortedbyDiv .fa-sort {
  margin-left: 8px;
}
.solutionsTabContainer .sortedbyDiv .sortAscending:after {
  font-family: FontAwesome;
  content: "\f0de";
  padding-left: 5px;
}
.solutionsTabContainer .sortedbyDiv .nonSortableColumn {
  color: #a2a2a2;
  white-space: nowrap;
}
.solutionsTabContainer .sortedbyDiv .nonSortableColumn:hover {
  cursor: default;
  background-color: initial;
}
.solutionsTabContainer .designSummaryContainer h4 .resultText {
  padding-left: 20px;
  color: #009d00;
}
.solutionsTabContainer .designSummaryContainer h4 .resultFailed {
  color: #E44C36;
}
.solutionsTabContainer .paddingForScroll {
  padding-right: 19px;
}
.solutionsTabContainer .headerContainer {
  border-bottom: 2px solid #ddd;
}
.solutionsTabContainer .tableScroll {
  height: 100%;
  overflow-y: auto;
}
.solutionsTabContainer .tableScroll tr {
  cursor: pointer;
}
.solutionsTabContainer .allSolutionsContainer {
  flex: 3;
}
.solutionsTabContainer .allSolutionsContainer .panel-body:hover {
  background-color: #dfdfdf !important;
}
.solutionsTabContainer .allSolutionsContainer .labelmember {
  white-space: nowrap;
}
.solutionsTabContainer .allSolutionsContainer .collapseSolution {
  margin-bottom: 5px;
}
.solutionsTabContainer .allSolutionsContainer .iconResult {
  float: right;
}
.solutionsTabContainer .allSolutionsContainer .iconResultSuccess {
  color: #009d00;
}
.solutionsTabContainer .allSolutionsContainer .iconResultError {
  color: red;
}
.solutionsTabContainer .allSolutionsContainer .removePaddingLeft {
  padding-left: 0;
}
.solutionsTabContainer .allSolutionsContainer .table-hover > tbody > tr:hover {
  background-color: #e3e3e3;
}
.solutionsTabContainer .allSolutionsContainer table thead {
  color: transparent;
}
.solutionsTabContainer .allSolutionsContainer .specialOrder {
  background-color: #ffdb99;
}
.solutionsTabContainer .allSolutionsContainer .specialOrder:hover {
  background-color: #ffc966 !important;
}
.solutionsTabContainer .allSolutionsContainer .unavailable {
  background-color: #ff9999;
}
.solutionsTabContainer .allSolutionsContainer .unavailable:hover {
  background-color: #ff6666 !important;
}
.solutionsTabContainer .allSolutionsContainer .selected {
  background-color: #beebff !important;
}
.solutionsTabContainer .allSolutionsContainer .selected:hover {
  background-color: #bedeff !important;
}
.solutionsTabContainer .allSolutionsContainer .selected.specialOrder {
  background-color: #ffc966 !important;
}
.solutionsTabContainer .allSolutionsContainer .selected.specialOrder:hover {
  background-color: #ffb733 !important;
}
.solutionsTabContainer .allSolutionsContainer .selected.unavailable {
  background-color: #ff6666 !important;
}
.solutionsTabContainer .allSolutionsContainer .selected.unavailable:hover {
  background-color: #ff3333 !important;
}
.table > tbody > tr > td {
  padding: 5px 8px 4px 8px;
}
.table > thead > tr > th {
  padding: 4px 8px 4px 8px;
}
.solutionTitle {
  font-size: 16px;
  color: #000;
}
@media (max-width: 321px) and (orientation: portrait) {
  .solutionBlock {
    font-size: 12px;
  }
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.allSupportsPendingContainer {
  display: flex;
  height: 100%;
  position: relative;
}
.allSupportsPendingContainer .spinnerOverlay .spinner {
  right: auto;
  left: 5px;
}
.dimensionLocationOptions {
  font-size: 14px;
  margin-bottom: -1px;
  margin-top: 15px;
}
.graphicPinned {
  font-size: 14px;
  margin-bottom: -1px;
  margin-top: 35px;
}
.dimensionLocationOptions span {
  margin: 15px 6px 0 3px;
  vertical-align: text-bottom;
}
.ssGridColumn div {
  width: 164px;
  padding-top: 6px;
  text-align: center;
}
.spansContainer {
  margin-bottom: 25px;
}
.spansContainer .form-control {
  border-width: 0;
  text-align: center;
  margin-top: -6px;
}
.forteGridContainer .spansColumnContainer .rowHeader {
  width: 90px;
}
.forteGridContainer .spansRowHeaderContainer {
  width: 85px;
}
.forteGridContainer .supportsRowHeaderContainer {
  width: 158px;
}
.forteGridContainer .scrollContainer .spansColumnContainer .ssGridColumn {
  width: 165px;
}
.forteGridContainer .scrollContainer .supportsGridColumnContainer .gridColumn {
  width: 165px;
}
.forteGridContainer .scrollContainer .supportsGridColumnContainer .gridColumn .supportsCell {
  text-align: left;
}
.forteGridContainer .scrollContainer .supportsGridColumnContainer .gridColumn .supportsCell input {
  padding-top: 6px;
  padding-bottom: 6px;
  text-align: center;
  width: 100%;
}
.forteGridContainer .scrollContainer .supportsGridColumnContainer .gridColumn .supportsCell .centerText {
  padding-left: 0;
  text-align: center;
}
.forteGridContainer .scrollContainer .supportsGridColumnContainer .gridColumn .supportsCellHeader {
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 4px;
}
.forteGridContainer .scrollContainer .supportsGridColumnContainer .gridColumn .supportsCellHeader.deSelectedSupport {
  background-color: transparent;
}
.trashIcon {
  color: red;
}
.supportsDropDown {
  text-align: left;
  padding-left: 2px;
}
.supportsDropDown:disabled {
  cursor: default;
}
.supportConnectorInformationLink {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}
/* Make clicks pass-through */
.connectorDialogImageLeft {
  width: 200px;
  height: 200px;
  float: right;
  margin-right: 46px;
  margin-bottom: 76px;
}
.connectorDialog .modal-dialog {
  width: 600px;
}
.connectorDialogSupportDepth {
  height: 140px;
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 10px;
}
.connectorDialogSupportDepth label input {
  width: 50px !important;
  pointer-events: none;
  background: #ffffff !important;
  border-top-color: #b3b3b3;
}
.connectorDialogSupportDepth label input:disabled {
  background-color: #eee !important;
  color: #747474 !important;
  border-color: #ddd !important;
}
.skewDialogFieldset {
  height: 172px;
  border-style: solid;
  border-width: 1px;
  border-color: #548DD4;
  padding: 10px;
  background-color: #ffffff;
  cursor: not-allowed;
}
.pitchDialogFieldset {
  height: 125px;
  border-style: solid;
  border-width: 1px;
  border-color: #548DD4;
  padding: 10px;
  background-color: #ffffff;
}
.overlay {
  position: absolute;
  visibility: visible;
  z-index: 1;
  font-size: 30px;
  opacity: 0.5;
  font-weight: bold;
  left: 24px;
  bottom: 105px;
  color: red;
  padding-top: 30px;
  cursor: not-allowed;
  /* Safari */
  -webkit-transform: rotate(-35deg);
  /* Firefox */
  -moz-transform: rotate(-35deg);
  /* IE */
  -ms-transform: rotate(-35deg);
  /* Opera */
  -o-transform: rotate(-35deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.overlayOffset {
  position: absolute;
  visibility: visible;
  z-index: 1;
  font-size: 27px;
  opacity: 0.5;
  font-weight: bold;
  bottom: 40px;
  width: inherit;
  color: red;
  right: 3px;
  padding-top: 30px;
  cursor: not-allowed;
  /* Safari */
  -webkit-transform: rotate(-30deg);
  /* Firefox */
  -moz-transform: rotate(-30deg);
  /* IE */
  -ms-transform: rotate(-30deg);
  /* Opera */
  -o-transform: rotate(-30deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.offsetDialogFieldset {
  height: 125px;
  border-style: solid;
  border-width: 1px;
  border-color: #548DD4;
  padding: 10px;
  background-color: #ffffff;
  cursor: not-allowed;
}
.concealedFlangeFieldset {
  height: 130px;
  border-style: solid;
  border-width: 1px;
  border-color: #548DD4;
  padding: 10px;
}
.fieldsetLegend {
  font-weight: normal;
  font-size: 13px;
  border-bottom: 0px;
  width: auto;
  margin-bottom: 0px;
}
.matchPlumbDepthCheckBox {
  width: 50px;
  pointer-events: none;
  background: grey;
}
.matchPlumbDepthCheckBox {
  width: 50px;
  background: #eeeeee;
  pointer-events: none;
  border-top-color: #b3b3b3;
}
.selectLabels {
  font-weight: normal;
  font-size: 13px;
  font-weight: bold;
}
#nprogress .bar {
  background: #29d;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
}
/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 50px #29d, 0 0 50px #29d;
  opacity: 1;
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner {
  position: absolute;
}
@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lengthcenter {
  text-align: center;
}
.boxblock {
  min-height: 217px;
  min-width: 220px;
}
.boxblock-bearingWidth {
  min-height: 205px;
  min-width: 220px;
}
.boxblock-bearingWidthDDL {
  min-height: 100px;
  min-width: 182px;
  float: none;
  margin: 0 auto;
  padding: 0px;
}
.boxblock-skewDialogFieldset {
  min-height: 230px;
  min-width: 220px;
}
.boxblock-skewDialogFieldset-marginbottom {
  margin-bottom: 30px;
}
.boxblock-offsetDialogFieldset {
  min-height: 160px;
  min-width: 220px;
}
.boxblock-pitchDialogFieldset {
  min-height: 160px;
  min-width: 220px;
}
.boxblock-concealedFlangeFieldset {
  min-height: 200px;
  min-width: 220px;
}
.supportPlies-dropdownlist {
  width: 80px;
  margin-left: 100px;
  margin-bottom: 20px;
}
.material-switch > input[type="checkbox"] {
  display: none;
}
.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  width: 40px;
}
.material-switch > label::before {
  background: #000000;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: '';
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
  width: 40px;
}
.material-switch > label::after {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: '';
  height: 24px;
  left: -4px;
  margin-top: -8px;
  position: absolute;
  top: -4px;
  transition: all 0.3s ease-in-out;
  width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}
.checkboxDiv {
  padding-left: 0px;
  margin-bottom: 15px;
  font-weight: normal;
  padding-right: 0px;
}
.checkboxDiv .removePaddingLeft {
  padding-left: 0px;
  padding-top: 10px;
}
.checkboxDiv .removePaddingRight {
  padding-right: 0px;
}
.checkboxDiv > span {
  padding-left: 0px;
}
.img-bearing {
  width: 200px;
  height: 200px;
}
.img-bearing2 {
  width: 200px;
  height: 200px;
}
.img-skewImage {
  width: 80px;
  height: 80px;
  float: right;
}
.img-offsetImage {
  width: 80px;
  height: 80px;
  margin-top: -30px;
  float: right;
}
.img-concealedFlange {
  width: 80px;
  height: 80px;
  float: right;
}
.modal-title-connector {
  font-size: 15px !important;
  float: left;
}
.modal-title-helpicon {
  float: right;
  padding-top: 4px;
}
.supportPliesSelect {
  margin-bottom: 10px;
}
.marginTop {
  margin-top: 10px;
}
.connectorModal {
  padding-bottom: 0px;
}
.connectorModal .top {
  height: 230px;
}
.connectorModal .bottom {
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: row;
}
.connectorModal .bottom label {
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
}
.connectorModal .bottom .pitchDialogFieldset {
  width: 200px;
}
.connectorModal .bottom .concealedFlangeFieldset img {
  margin: 0 auto;
  display: block;
}
.connectorModal .bottom .concealedFlangeFieldset .labels {
  margin: 0 auto;
  width: 40%;
}
.connectorModal fieldset legend {
  font-size: 13px;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 7px;
  border-bottom: none;
}
.connectorModal fieldset label {
  display: block;
}
.connectorModal fieldset label input[type="radio"] {
  float: left;
}
.connectorModal fieldset .floatLeft {
  font-size: 12px;
}
.connectorModal fieldset .labels {
  font-size: 12px;
}
.connectorModal fieldset:not(:first-child) {
  margin-left: 10px;
}
.connectorModal fieldset {
  border-style: solid;
  border-width: 1px;
  border-color: #548DD4;
  padding: 10px;
}
.connectorModal fieldset input[type="radio"] {
  margin-right: 5px;
}
.supportPilesDDL {
  margin-top: 20px;
  margin-bottom: 15px;
  float: left;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.radioBtnContainer {
  margin-top: 15px;
}
.radioBtnContainer .secondRadioBtn {
  padding-left: 50px;
}
.taperedGridContainer {
  padding-top: 10px;
  float: left;
  position: relative;
  display: flex;
}
.taperedGridContainer .rowHeaderContainer {
  font-weight: bold;
  border: 1px solid #ccc;
  width: 130px;
  float: left;
  display: block;
}
.taperedGridContainer .rowHeaderContainer div {
  height: 30px;
  padding: 3px;
}
.taperedGridContainer .rowHeaderContainer div:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.taperedGridContainer .gridContainer {
  width: auto;
  display: flex;
  width: 700px;
  white-space: nowrap;
}
.taperedGridContainer .gridContainer .leftEndGridOverlay .disableOverlay,
.taperedGridContainer .gridContainer .leftEndGridOverlay .spinnerOverlay {
  height: 120px;
  width: 180px;
  z-index: 100;
  left: 130px;
  top: 10px;
}
.taperedGridContainer .gridContainer .rightEndGridOverlay .disableOverlay,
.taperedGridContainer .gridContainer .rightEndGridOverlay .spinnerOverlay {
  height: 120px;
  width: 180px;
  z-index: 100;
  left: 310px;
  top: 10px;
}
.taperedGridContainer .gridContainer .gridColumn {
  flex-wrap: nowrap;
}
.taperedGridContainer .gridContainer .gridColumn .columnHeaderCell {
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  height: 31px;
  font-weight: bold;
  text-align: center;
  padding: 3px;
  position: relative;
}
.taperedGridContainer .gridContainer .gridColumn .columnHeaderCell .columnDeleteButton {
  color: red;
  position: absolute;
  left: 7px;
  top: 5px;
}
.taperedGridContainer .gridContainer .gridColumn .columnHeaderCell .iconSize {
  font-size: 14px;
}
.taperedGridContainer .gridContainer .gridColumn .columnCell {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  height: 30px;
  text-align: center;
}
.taperedGridContainer .gridContainer .gridColumn .columnCell > input[type="text"] {
  border: none;
  text-align: center;
  padding-left: 3px;
  padding-right: 3px;
  height: 100%;
  width: 100%;
  background-color: transparent;
  text-overflow: ellipsis;
}
.taperedGridContainer .gridContainer .gridColumn .columnCell > input[type="text"]:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.imgContainer {
  margin-top: 5px;
}
.imgContainer .img1Container {
  padding-right: 10vw;
}
.imgContainer .img1Container .span1 {
  position: relative;
  left: 105px;
  z-index: 20;
  display: inline-block;
}
.imgContainer .img1Container .span2 {
  position: relative;
  top: 40px;
  left: 8px;
  z-index: 20;
  display: inline-block;
  width: 50px;
}
.imgContainer .img1Container img {
  top: 20px;
  position: relative;
  width: 170px;
}
.imgContainer .img2Container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15vw;
}
.imgContainer .img2Container .span1 {
  position: relative;
  z-index: 20;
  display: inline-block;
  left: 136px;
  width: 40px;
  top: -47px;
}
.imgContainer .img2Container .span2 {
  position: relative;
  top: 34px;
  display: inline-block;
  width: 50px;
  left: 11px;
  z-index: 20;
}
.imgContainer .img2Container img {
  left: 7px;
  position: relative;
  width: 170px;
  top: 9px;
}
.messagesContainer {
  float: left;
  padding-top: 10px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.fileManagement {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin-top: 30px;
}
.MMoving {
  opacity: 1;
  width: 300px;
  height: 60px;
  z-index: 1;
  display: absolute;
  background-color: #69a323;
}
.moving {
  position: absolute;
  z-index: 10000;
  background: #4285f4;
  opacity: 1;
  transition-duration: 0.25s;
  -webkit-transition-property: top, left, height, width;
  transition-property: top, left, height, width;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.15, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.15, 1);
  padding: 3px 8px;
}
.moving .fmNameColumn {
  color: white;
}
.moving .fmNameColumn .iconContainer .icon {
  background: #ffffff;
}
.newItemDialog {
  width: 300px;
  height: 100px;
  border-radius: 10px;
  background-color: white;
  box-shadow: -30px 0 30px -30px rgba(0, 0, 0, 0.9);
}
#searchFileManagement {
  width: 55px;
  height: 55px;
  bottom: 78px;
  right: 36px;
  cursor: pointer;
  position: absolute;
}
#searchFileManagement .fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E44C36;
  color: white;
  display: block;
  position: absolute;
  right: 0;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 21px;
  box-shadow: 0px 2px 5px #666;
  text-shadow: 1px 1px #720000;
}
#searchFileManagement .backButtonIcon {
  line-height: 40px;
}
#searchFileManagement .fabFlyoutText {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-shadow: 1px 1px #000000;
  border-radius: 3px;
  display: inline;
  position: absolute;
  right: 0px;
  padding: 2px 10px;
  top: 30px;
  opacity: 0;
  box-shadow: 0px 2px 5px #666;
  transition: all 0.3s;
}
#searchFileManagement:hover .fabFlyoutText {
  top: 60px;
  opacity: 1;
}
#btnBackFileManagement {
  width: 55px;
  height: 55px;
  bottom: 23px;
  right: 36px;
  cursor: pointer;
  position: absolute;
}
#btnBackFileManagement .fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E44C36;
  color: white;
  display: block;
  position: absolute;
  right: 0;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 21px;
  box-shadow: 0px 2px 5px #666;
  text-shadow: 1px 1px #720000;
}
#btnBackFileManagement .backButtonIcon {
  line-height: 40px;
}
#btnBackFileManagement .fabFlyoutText {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-shadow: 1px 1px #000000;
  border-radius: 3px;
  display: inline;
  position: absolute;
  right: 20px;
  padding: 2px 10px;
  top: 15px;
  opacity: 0;
  box-shadow: 0px 2px 5px #666;
  transition: all 0.3s;
}
#btnBackFileManagement:hover .fabFlyoutText {
  right: 60px;
  opacity: 1;
}
@keyframes fade-in {
  from {
    opacity: 0;
    right: 20px;
  }
  to {
    opacity: 1;
    right: 70px;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
    right: 70px;
  }
  to {
    opacity: 0;
    right: 20px;
  }
}
@keyframes close-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-180deg);
  }
}
@keyframes close-out {
  from {
    opacity: 0;
    transform: rotateZ(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes back-in {
  from {
    opacity: 0;
    transform: rotateZ(70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes back-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(70deg);
  }
}
.renameItemForm .renameItemText {
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  border-right-width: 0;
  height: 40px;
  padding-left: 10px;
  float: left;
  font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
  background: #fff;
  border-radius: 3px 0 0 3px;
}
.renameItemForm .renameItemText::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: oblique;
  color: #dbdbdb;
}
.renameItemForm .renameItemText::-moz-placeholder {
  /* Firefox 19+ */
  font-style: oblique;
  color: #dbdbdb;
}
.renameItemForm .renameItemText:-ms-input-placeholder {
  /* IE 10+ */
  font-style: oblique;
  color: #dbdbdb;
}
.renameItemForm .renameItemText:-moz-placeholder {
  /* Firefox 18- */
  font-style: oblique;
  color: #dbdbdb;
}
.renameItemForm .renameItemText:focus {
  outline: 0;
}
.renameItemForm .login-validation {
  font: bold 15px 'Tahoma';
  margin: 0;
}
.renameItemForm .renameItemButton {
  font-size: 14px;
  vertical-align: top;
  overflow: visible;
  position: relative;
  float: right;
  border: 1px solid black;
  border-left: 0;
  border-radius: 0 3px 3px 0;
  padding: 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #fff;
  text-transform: uppercase;
  background: #0099ff;
}
.renameItemForm .renameItemButton:hover {
  background: #3db8ff;
}
.renameItemForm .renameItemButton:active,
.renameItemForm .renameItemButton:focus {
  background: #0081d1;
  outline: 0;
}
.newItemForm {
  width: 250px;
}
.newItemForm input {
  width: 181px;
  height: 40px;
  padding-left: 10px;
  float: left;
  font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
  border: 0;
  background: #fff;
  border-radius: 3px 0 0 3px;
}
.newItemForm input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemForm input::-moz-placeholder {
  /* Firefox 19+ */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemForm input:-ms-input-placeholder {
  /* IE 10+ */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemForm input:-moz-placeholder {
  /* Firefox 18- */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemForm input:focus {
  outline: 0;
}
.newItemForm .login-validation {
  font: bold 15px 'Tahoma';
  margin: 0;
  position: absolute;
}
.newItemForm button {
  font-size: 14px;
  vertical-align: top;
  overflow: visible;
  position: relative;
  float: right;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #fff;
  text-transform: uppercase;
  background: #0099ff;
}
.newItemForm button:hover {
  background: #3db8ff;
}
.newItemForm button:active,
.newItemForm button:focus {
  background: #0081d1;
  outline: 0;
}
.fmNameColumn .iconContainer {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  float: left;
  margin-right: 3px;
}
.fmNameColumn .nameContainer {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 34px;
}
.fmNameColumn .nameContainer .newItemForm {
  border-radius: 10px;
}
.fmNameColumn .nameContainer .newItemForm input {
  height: 40px;
  padding-left: 10px;
  float: left;
  font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
  border: 0;
  background: #fff;
  border-radius: 3px 0 0 3px;
}
.fmNameColumn .nameContainer .newItemForm input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: oblique;
  color: #dbdbdb;
}
.fmNameColumn .nameContainer .newItemForm input::-moz-placeholder {
  /* Firefox 19+ */
  font-style: oblique;
  color: #dbdbdb;
}
.fmNameColumn .nameContainer .newItemForm input:-ms-input-placeholder {
  /* IE 10+ */
  font-style: oblique;
  color: #dbdbdb;
}
.fmNameColumn .nameContainer .newItemForm input:-moz-placeholder {
  /* Firefox 18- */
  font-style: oblique;
  color: #dbdbdb;
}
.fmNameColumn .nameContainer .newItemForm input:focus {
  outline: 0;
}
.fmNameColumn .nameContainer .newItemForm .login-validation {
  font: bold 15px 'Tahoma';
  margin: 0;
}
.fmNameColumn .nameContainer .newItemForm button {
  font-size: 14px;
  vertical-align: top;
  overflow: visible;
  position: relative;
  float: right;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #fff;
  text-transform: uppercase;
  background: #0099ff;
}
.fmNameColumn .nameContainer .newItemForm button:hover {
  background: #3db8ff;
}
.fmNameColumn .nameContainer .newItemForm button:active,
.fmNameColumn .nameContainer .newItemForm button:focus {
  background: #0081d1;
  outline: 0;
}
.fmNameColumn .icon {
  position: relative;
  height: 100%;
  width: 100%;
  font-size: 21px;
  background: transparent;
  border-radius: 50%;
  background: #ffffff;
}
.fmNameColumn .icon:before {
  position: absolute;
  padding-top: 7px;
  padding-left: 10px;
  color: black;
  display: block;
  border-radius: 50%;
  height: 38px;
  width: 38px;
}
.moving_done {
  -o-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -webkit-transition-property: none !important;
  transition-property: none !important;
}
.movingDiv {
  height: 45px;
  width: 150px;
  position: absolute;
  z-index: 10000;
  background: #4285f4;
  opacity: 1;
  color: white;
  padding: 3px 8px;
}
a:hover {
  cursor: pointer;
}
.newFolderNameButton {
  right: 29px;
}
.fileManagmentLeftSidebar .contentColumn {
  height: 100%;
}
.fileManagmentLeftSidebar .contentColumn .actionBar {
  height: 48px;
  flex-shrink: 0;
  display: flex;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .container {
  width: 100%;
  padding-left: 0px;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar,
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-inverse {
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  min-height: 50px;
  width: 100%;
  background-color: #d3d3d3 !important;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .mainContainer {
  width: 100%;
  background: pink;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .nav li {
  display: inline;
  color: white;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-inverse .navbar-nav > li > a {
  color: black;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav li.dropdown .cf {
  zoom: 1;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav li.dropdown .cf:after {
  clear: both;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav li.dropdown .cf:before,
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav li.dropdown .cf:after {
  content: "";
  display: table;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav li.dropdown.open .dropdown-menu {
  padding: 10px 15px;
  color: black;
  background-color: #eee;
  border-width: 0px;
  box-shadow: 3px 5px 0px rgba(0, 0, 0, 0.4);
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav li.dropdown.open a {
  background-color: #eee;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .dropdownNewFolder {
  width: 223px;
}
.fileManagmentLeftSidebar .contentColumn .actionBar .navbar-inverse .navbar-nav li a:hover {
  background-color: #c9c9c9;
  color: black;
  height: 100%;
}
@media (max-width: 1000px) {
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-header {
    float: none;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-left,
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-right {
    float: none !important;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-toggle {
    display: block;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-collapse.collapse {
    display: none !important;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav {
    float: none !important;
    margin-top: 7.5px;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav > li {
    float: none;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .fileManagmentLeftSidebar .contentColumn .actionBar .collapse.in {
    display: block !important;
  }
}
.fileManagmentLeftSidebar .contentColumn .pathContainer nav {
  padding-left: 0px;
  padding-right: 0px;
  margin-right: 6px;
  padding-top: 7px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer .arrows > li > a .fileName {
  margin-right: 5px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer .membersidenavopenbutton-title {
  margin-right: 0px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer .arrows li:first-child > span {
  padding-left: 5px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul {
  list-style-type: none;
  margin: 0;
  padding-left: 13px;
  padding-top: 10px;
  display: inline-flex;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li a {
  background: #ddd;
  padding: 9px 9px;
  float: left;
  color: #444;
  position: relative;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  margin-right: 20px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li a:hover {
  background: #888;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li a:hover:before {
  border-color: #888 #888 #888 transparent;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li a:hover:after {
  border-left-color: #888;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -16px;
  border-top: 16px solid #ddd;
  border-bottom: 16px solid #ddd;
  border-left: 16px solid transparent;
  left: -15px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -16px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #ddd;
  right: -15px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 75px;
}
.fileManagmentLeftSidebar .contentColumn .pathContainer ul li:not(:last-child) a {
  max-width: 160px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .recentHeader {
  font-weight: bold;
  user-select: none;
  height: 40px;
  padding-top: 0px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .headerHover {
  padding-top: 10px;
  height: 100%;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .headerHover:hover {
  background-color: #e3e3e3;
  cursor: pointer;
  padding-top: 10px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .sortDescending:after {
  font-family: FontAwesome;
  content: "\f0dd";
  padding-left: 2px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .sortAscending:after {
  font-family: FontAwesome;
  content: "\f0de";
  padding-left: 2px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .dataGridBody {
  overflow-y: scroll;
  display: block;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .separator {
  border-top: 1px solid #ddd;
  border-top-width: 1px;
  border-top-style: solid;
  padding-top: 10px;
  padding-bottom: 10px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameAndModifiedByContainer {
  padding: 0;
  margin: 0px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .iconPadding {
  padding: 0px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .starIcon {
  color: #daa520;
  padding-top: 7px;
  padding-right: 0px;
  padding-left: 0px;
  width: 16px;
}
@media (min-width: 480px) {
  .fileManagmentLeftSidebar .contentColumn .fileContentContainer .iconPadding {
    width: 30px;
  }
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .nameAndEditButton {
  position: relative;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .nameAndEditButton:hover .btnEditName {
  animation: editName-in 0.3s;
  animation-delay: 0.85s;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
  transition-delay: 0.85s;
  visibility: visible;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .nameAndEditButton .btnEditName {
  top: 6px;
  right: 4px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .selected {
  background-color: #4285f4;
  color: #ffffff;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .selected .dragged {
  opacity: 0.1;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer {
  word-wrap: break-word;
  padding: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 30px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm {
  border-radius: 10px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm input {
  height: 40px;
  padding-left: 10px;
  float: left;
  font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
  border: 0;
  background: #fff;
  border-radius: 3px 0 0 3px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: oblique;
  color: #dbdbdb;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm input::-moz-placeholder {
  /* Firefox 19+ */
  font-style: oblique;
  color: #dbdbdb;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm input:-ms-input-placeholder {
  /* IE 10+ */
  font-style: oblique;
  color: #dbdbdb;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm input:-moz-placeholder {
  /* Firefox 18- */
  font-style: oblique;
  color: #dbdbdb;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm input:focus {
  outline: 0;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm .login-validation {
  font: bold 15px 'Tahoma';
  margin: 0;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm button {
  font-size: 14px;
  vertical-align: top;
  overflow: visible;
  position: relative;
  float: right;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #fff;
  text-transform: uppercase;
  background: #0099ff;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm button:hover {
  background: #3db8ff;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm button:active,
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .nameContainer .newItemForm button:focus {
  background: #0081d1;
  outline: 0;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .icon {
  position: relative;
  padding-top: 7px;
  font-size: 18px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .icon:before {
  color: black;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .dateModified {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 34px;
  float: right;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .modifiedByContainer {
  margin-top: 10px;
}
.fileManagmentLeftSidebar .contentColumn .fileContentContainer .modifiedbyLabel {
  font-weight: bold;
}
@media (max-width: 320px) {
  .fileManagmentLeftSidebar .contentColumn .fileContentContainer .modifiedbyLabel {
    padding-left: 10px;
  }
}
.fileManagmentLeftSidebar .contentColumn .footer {
  flex-shrink: 0;
  height: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  background-color: lightgrey;
  padding: 7px;
  position: inherit;
}
.fileManagmentLeftSidebar .contentColumn .footer span {
  padding: 10px;
  line-height: 15px;
}
.fileManagmentLeftSidebar .contentColumn .footer input {
  width: 400px;
}
.fileManagmentLeftSidebar .contentColumn .footer .btn-group {
  padding-left: 10px;
}
.dragOver {
  background-color: lightblue;
  border-color: blue;
}
.modalheader .modal-title {
  font-size: 20px;
}
.modal-body {
  font-size: 13px;
}
.modal-body .newfileheader {
  font-weight: bold;
}
.modal-body .login-validation {
  font-size: 13px;
}
.modal-body .newFileNameTitle {
  font-size: 14px;
}
.modal-body button {
  font-size: 14px;
}
.dragged .btnEditName {
  display: none;
}
.breadcrumbsOverflowButton {
  margin: 0px 10px 0px 0px;
  border: 0;
  background: none;
  outline: none;
}
.breadcrumbsOverflowButton > div {
  padding-left: 10px;
  padding-right: 10px;
}
.btn {
  font-size: 12px !important;
}
.actionBar nav {
  width: 100%;
}
.fixleftmargin {
  margin-left: 0px !important;
}
.fileManagementDropDownText {
  padding: 10px 25%;
}
.fileManamgentActionButtons {
  font-size: 13px;
}
.fileManamgentActionButtons .iconPadding {
  padding-right: 11px;
}
@media only screen and (min-width: 430px) and (max-width: 530px) {
  .fileManamgentActionButtons {
    font-size: 10px;
  }
}
@media only screen and (min-width: 330px) and (max-width: 429px) {
  .fileManamgentActionButtons {
    font-size: 9px;
  }
}
@media only screen and (max-width: 329px) {
  .fileManamgentActionButtons {
    font-size: 8px;
  }
}
#filemangmentpathcontainer .arrows li::before {
  content: '>' !important;
}
#filemangmentpathcontainer .arrows li:first-child {
  margin-right: 5px;
}
#filemangmentpathcontainer .arrows li:first-child::before {
  content: '' !important;
}

/* inject:lessImports */
/* endinject */
/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
.copyMoveDialog {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
}
.copyMoveDialog.ng-hide-add {
  animation: 0.35s displayNoneWait ease-in-out;
  display: block !important;
}
.copyMoveDialog.ng-hide-add .splash-right-modal {
  animation: 0.35s fadeOutRight ease-in-out;
}
.copyMoveDialog.ng-hide-add .logged-in-splash.splash-bg.splash-bg-light {
  animation: 0.35s fadeOutCustom ease-in-out;
}
.copyMoveDialog.ng-hide-remove {
  animation: 0.35s displayblockWait ease-in-out;
  display: block !important;
}
.copyMoveDialog.ng-hide-remove .splash-right-modal {
  animation: 0.35s fadeInRight ease-in-out;
}
.copyMoveDialog.ng-hide-remove .logged-in-splash.splash-bg.splash-bg-light {
  animation: 0.35s fadeInCustom ease-in-out;
}
.copyMoveDialog .logged-in-splash.splash-bg.splash-bg-light {
  background-color: #ffffff;
  opacity: 0.7;
}
@keyframes displayNoneWait {
  0% {
    display: block !important;
  }
  99% {
    display: block !important;
  }
  100% {
    display: none !important;
  }
}
@keyframes displayblockWait {
  0% {
    display: none !important;
  }
  1% {
    display: block !important;
  }
  100% {
    display: block !important;
  }
}
@keyframes fadeOutCustom {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInCustom {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 0.7;
  }
}
.splash-right-modal {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 75px;
  outline: 1px solid transparent;
  width: 340px;
  overflow: auto;
  background: #ffffff;
  box-shadow: -30px 0 30px -30px rgba(0, 0, 0, 0.9);
  /* padding: 28px 40px 20px; */
  right: 0px !important;
  left: initial;
  height: calc(100% - 75px);
  margin-left: calc(100% - 340px);
}
.splash-right-modal > div {
  padding: 15px 40px 15px 40px;
}
.splash-right-modal .right-modal-header {
  height: 95px;
  flex-shrink: 0;
  font-size: 16px;
  color: #ffffff;
  background-color: #0d3e69;
}
.splash-right-modal .right-modal-header div:first-child {
  padding-bottom: 13px;
  font-size: 20px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul {
  list-style-type: none;
  padding-left: 0px;
  display: inline-flex;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li {
  cursor: default;
  display: inline-flex;
  padding-right: 2px;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li.placeholder {
  font-weight: normal;
  color: #cdcdcd;
  font-size: 16px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li.placeholder .clickable {
  cursor: pointer;
  color: #cdcdcd;
  font-size: 16px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li.placeholder .clickable:hover {
  background-color: #008fff;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li + .clickable {
  cursor: pointer;
  color: #cdcdcd;
  font-size: 16px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li .carret {
  font-weight: normal;
  font-size: 16px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li .name {
  font-weight: normal;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li .name:hover {
  background-color: #008fff;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li span {
  max-width: 114px;
  max-height: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #cdcdcd;
  padding: 0px 3px 0px 3px;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li span .name {
  font-weight: normal;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li span:not(:last-child):hover {
  background-color: #008fff;
  text-decoration: none;
}
.splash-right-modal .right-modal-header .right-modal-breadcrumbs ul li:last-child span {
  color: #ffffff;
  cursor: default;
}
.splash-right-modal .right-modal-header .closeButton {
  float: right;
  font-size: 22px;
  margin-top: -5px;
  cursor: pointer;
}
.splash-right-modal .right-modal-browser {
  flex: 1;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}
.splash-right-modal .right-modal-browser ul {
  list-style-type: none;
  padding: 0;
}
.splash-right-modal .right-modal-browser ul li {
  padding: 10px;
}
.splash-right-modal .right-modal-browser ul li .addNew {
  color: blue;
}
.splash-right-modal .right-modal-browser ul li:hover {
  background: #e9e9e9;
  cursor: pointer;
}
.splash-right-modal .right-modal-browser ul i {
  padding-right: 8px;
}
.splash-right-modal .right-modal-footer {
  height: 65px;
  flex-shrink: 0;
}

/* inject:lessImports */
/* endinject */
.drop-box {
  background: #F8F8F8;
  border: 3px dashed #DDD;
  width: 100%;
  height: 200px;
  text-align: center;
  padding: 75px;
  cursor: pointer;
  color: #548DD4;
}
.drop-box.dragover {
  border: 5px dashed #548DD4;
}
.drop-box.dragover-err {
  border: 5px dashed red;
}
.resultLog {
  overflow-y: auto;
  padding: 2px;
  background: #F8F8F8;
  min-height: 200px;
  max-height: 486px;
  margin-left: 4px;
  margin-right: 4px;
}
.messageProcess {
  display: table;
  padding: 2px;
  height: 200px;
  margin-left: 4px;
  margin-right: 4px;
  width: 100%;
}
.messageDisplay {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
.headerMessage {
  color: dimgrey;
}
.infoMessage {
  color: dimgrey;
}
.execErrorMessage {
  color: red;
}
.successMessage {
  color: #0000FF;
}
.failedMessage {
  color: red;
}

.teamManagement {
  padding: 0px;
  margin: 0px;
  margin-top: 30px;
}
.teamManagement .renameItemButton {
  font-size: 14px;
  overflow: visible;
  float: right;
  border: 1px solid black;
  border-left: 0;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #fff;
  text-transform: uppercase;
  background: #0099ff;
  margin-top: -1px;
}
.teamManagement .renameItemButton:hover {
  background: #3db8ff;
}
.teamManagement .renameItemButton:active,
.teamManagement .renameItemButton:focus {
  background: #0081d1;
  outline: 0;
}
.teamManagement .renameItemText {
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  border-right-width: 0;
  height: 40px;
  font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
  background: #fff;
  border-radius: 3px 0 0 3px;
  position: relative;
  bottom: 3px;
}
.teamManagement .renameItemText:focus {
  outline: 0;
}
.teamManagement .teamManagementHeader {
  display: inline-flex;
  font-size: 16px;
  width: -webkit-fill-available;
}
.teamManagement .teamManagementHeader h2 {
  margin-bottom: 0px;
}
.teamManagement .teamManagementHeader .btnEditName {
  visibility: visible;
  position: relative;
  opacity: 1;
  float: right;
  margin: 5px;
  top: 0;
  right: 0;
  margin-top: 2px !important;
}
.teamManagement .teamManagementHeader .editButtonIcon {
  line-height: 20px;
  font-size: 14px;
  margin-top: 3px;
}
.teamManagement .teamManagementHeader .btnEditName {
  width: 25px;
  height: 25px;
}
.teamManagement .leaveButton {
  cursor: pointer;
  color: red;
  clear: both;
}
.teamManagement .teamManagementMembers {
  margin-top: 10px;
}
.teamManagement .teamManagementMembers .memberHeader {
  padding-left: 0px;
}
.teamManagement .teamManagementMembers hr {
  border-top: 2px solid #000;
}
.teamManagement .teamManagementMembers .membersTitle {
  float: left;
}
.teamManagement .teamManagementMembers .addButton {
  margin-left: 15px;
  margin-top: 5px;
}
.teamManagement .teamManagementMembers .memberLists {
  padding-right: 0px;
}
.teamManagement .teamManagementMembers .memberLists .titleLabel {
  display: block;
}
.teamManagement .teamManagementMembers .memberLists .borderless td {
  border: none !important;
}
.teamManagement .teamManagementMembers .memberLists .currentUser .memberName:after {
  font-family: FontAwesome;
  content: "\f005";
  padding-left: 5px;
  color: #daa520;
}
.teamManagement .teamManagementMembers .memberLists .memberGroup {
  margin-bottom: 7px;
}
.teamManagement .teamManagementMembers .memberLists .memberGroup button {
  font: inherit;
  /*border is optional*/
  cursor: pointer;
}
.teamManagement .teamManagementMembers .memberLists .memberGroup button:hover {
  text-decoration: underline;
}
.teamManagement .teamManagementMembers .memberLists .memberGroup .currentUser .memberName:after {
  font-family: FontAwesome;
  content: "\f005";
  padding-left: 5px;
  color: #daa520;
}
.teamManagement .removePadding {
  padding: 0px;
}
.teamManagement .inputMax {
  max-width: 500px;
}
.teamManagement .inputTxtBold {
  font-weight: bold;
}
@media screen and (max-width: 554px) {
  .customBtnleft {
    margin-bottom: 6px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 555px) {
  .customBtnleft {
    margin-right: 6px;
    width: 47% ;
    float: left;
  }
  .customBtnRight {
    width: 47%;
  }
}

/* inject:lessImports */
/* endinject */
#leftFooter .btn-group button {
  height: 100%;
}
#jobTreeButtons .btn-default[disabled] {
  background-color: #000;
}
#jobTreeButtons .btn-default:focus {
  outline: none;
}
#jobTreeContainer {
  font-size: 12px;
  top: 0;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
.bgBeam {
  background-image: url(/images/Beam.png);
}
.bgRoofJoist {
  background-image: url(/images/RoofJoist.png);
}
.bgFloorJoist {
  background-image: url(/images/FloorJoist.png);
}
.bgColumn {
  background-image: url(/images/Column.png);
}
.bgStud {
  background-image: url(/images/Stud.png);
}
.jstree-default .jstree-icon:empty {
  width: 19px;
}
#jobTreeContainer .jstree-container-ul > .jstree-node > .jstree-ocl {
  display: none;
}
#jobTreeContainer .jstree-container-ul > li > .jstree-children > li {
  margin-left: 0;
}
.jstree-node .jstree-leaf {
  margin-left: 10px;
}
#root_anchor {
  width: 100%;
}
#AddMemberButtons {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(66, 66, 66, 0.95);
}
#jobTreeButtons {
  top: 0;
  width: 100%;
  height: 100%;
}
#btnCancelAddMember {
  top: 0;
  opacity: 0;
  width: 100%;
}
a.hiddenanchor {
  display: none;
}
.jstree-node {
  position: relative;
}
.jstree-default .jstree-anchor {
  width: calc(100% - 19px);
}
.jstree-rename-input {
  max-width: calc(100% - 24px);
}
a.jstree-hovered .btnEditName {
  animation: editName-in 0.3s;
  animation-delay: 0.3s;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
  transition-delay: 0.3s;
  visibility: visible;
}
.addMember-show,
.jobTree-show {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  -ms-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.addMember-hide,
.jobTree-hide {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -ms-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
#addMemberButtonContainer {
  flex: 1;
  padding: 5px;
}
#addMemberButtonContainer .panel .panel-body .btn-sm {
  width: 130px;
}
#jobTreeButtons a,
#jobTreeButtons button {
  box-sizing: border-box;
}
.angular-ui-tree-node .treeRoot {
  margin-top: 5px;
  margin-bottom: 5px;
}
.angular-ui-tree-nodes .nameAndEditButton {
  color: #eee !important;
  background: #777;
  user-select: none;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.5;
  padding-left: 20px !important;
  margin-left: 0 !important;
  font-weight: normal;
}
.angular-ui-tree-nodes .angular-ui-tree-nodes {
  padding: 10px 20px;
}
.angular-ui-tree-nodes .angular-ui-tree-nodes .nameAndEditButton {
  letter-spacing: 1px;
  padding-left: 10px !important;
  margin-left: 10px !important;
  text-transform: none;
  background-color: transparent;
}
.angular-ui-tree-nodes .angular-ui-tree-nodes .nameAndEditButton i {
  display: inline-block;
}
.angular-ui-tree-nodes .angular-ui-tree-nodes .angular-ui-tree-nodes {
  padding-top: 1px;
  padding-left: 10px;
}
.angular-ui-tree-handle {
  cursor: auto;
}
.angular-ui-tree-placeholder {
  background: #f0f9ff;
  border: 2px dashed #bed2db;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
tr.angular-ui-tree-empty {
  height: 100px;
}
.group-title {
  background-color: #687074 !important;
  color: #FFF !important;
}
/* --- Tree --- */
.tree-node {
  border: 1px solid #dae2ea;
  background: #f8faff;
  color: #7c9eb2;
}
.nodrop {
  background-color: #f2dede;
}
.tree-node-content {
  margin: 10px;
}
.tree-handle {
  padding: 10px;
  background: #428bca;
  color: #FFF;
  margin-right: 10px;
}
.angular-ui-tree-placeholder {
  background: #f0f9ff;
  border: 2px dashed #bed2db;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.memberManagementTree .treeItems {
  overflow-y: scroll;
}
.memberManagementTree .treeRoot {
  margin: 0px;
  padding: 0px;
  height: 33px;
}
.memberManagementTree .treeRoot .nameContainer .nameAndEditButton {
  margin-left: 0px;
  width: 100%;
  font-size: 14px !important;
}
.memberManagementTree .level {
  margin: 0px;
  margin-left: 5px;
  padding: 0px;
  height: 33px;
}
.memberManagementTree .level .nameContainer .renameItemForm .renameItemText {
  width: calc(100% - 52px);
}
.memberManagementTree .level .nameContainer .renameItemForm .levelWithoutMember {
  width: calc(100% - 40px);
}
.memberManagementTree .member {
  margin: 0px;
  margin-left: 5px;
  padding: 0px;
  height: 33px;
}
.memberManagementTree .collapseButton {
  float: left;
  margin-right: 5px;
  margin-top: 6px;
  color: #e0e0e0;
  font-size: 12px !important;
}
.memberManagementTree .nameContainer {
  margin: 0px;
  padding: 0px;
}
.memberManagementTree .nameContainer .nameAndEditButton {
  margin: 0px;
  padding: 7px;
  cursor: default;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.memberManagementTree .nameContainer .nameAndEditButton:hover .btnEditName {
  animation: editName-in 0.3s;
  animation-delay: 0.3s;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
  transition-delay: 0.3s;
  visibility: visible;
}
.memberManagementTree .nameContainer .nameAndEditButton .btnEditName {
  top: 7px;
  right: 10px;
}
.memberManagementTree .nameContainer .renameItemForm .renameItemButton {
  height: 33px;
  right: 12px;
}
.memberManagementTree .nameContainer .renameItemForm .renameItemText {
  width: calc(100% - 40px);
  height: 33px;
}
.memberManagementTree ol li div {
  color: #333;
}
.memberManagementTree .treeRoot.selected .nameContainer .nameAndEditButton,
.memberManagementTree .level.selected .nameContainer .nameAndEditButton,
.memberManagementTree .member.selected .nameContainer .nameAndEditButton {
  background: #777;
  color: #eee !important;
}
.treeItemIcon {
  display: inline-block;
  font-size: 17pt;
  width: 21px;
  line-height: 24px;
  background-color: transparent;
  background-position: center center;
  background-size: auto;
  vertical-align: top;
  margin-right: 4px;
  letter-spacing: 0px;
}
.foldercolor {
  color: #825b39;
}
.treeLink {
  position: absolute;
  top: 0px;
  left: 16px;
  font-size: 17px;
  transform: rotate(90deg);
  color: black;
}
.changeToBlack {
  color: black;
}
.changeToOrange {
  color: #FF00FF;
}
.managmentbtngroup {
  width: 100%;
  padding: 20px;
}
.managmentbtngroup .btn-default {
  background-color: #777;
  border-color: rgba(144, 164, 174, 0.6);
}
/* Modal Header */
.addmemebermodal-header {
  padding: 2px 16px;
  font-size: 18px;
  font-weight: normal;
}
.addmemberlabel {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: normal;
}
/* Modal Body */
.addmembermodal-body {
  padding: 2px 16px;
}
/* Modal Footer */
.addmembermodal-footer {
  padding: 2px 16px;
  color: white;
}
/* Modal Content */
.addmembermodal-content {
  position: absolute;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
  margin-top: 15%;
  left: 5vw;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
@media (min-width: 768px) and (orientation: landscape) {
  .addmembermodal-content {
    margin-top: 5vw;
  }
}
/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
::selection {
  color: white;
  background: #71bdff;
}

@media only screen and (min-width: 320px) and (max-height: 320px) and (orientation: landscape) {
  .memberManagementTree .treeItems {
    height: 120px;
  }
}
@media only screen and (min-width: 320px) and (max-height: 480px) and (orientation: portrait) {
  .memberManagementTree .treeItems {
    height: 260px;
  }
}
@media only screen and (min-width: 320px) and (max-height: 568px) and (min-height: 481px) and (orientation: portrait) {
  .memberManagementTree .treeItems {
    height: 350px;
  }
}
@media only screen and (min-width: 360px) and (max-height: 375px) and (min-height: 321px) and (orientation: landscape) {
  .memberManagementTree .treeItems {
    height: 165px;
  }
}
@media only screen and (min-width: 360px) and (max-height: 667px) and (min-height: 569px) and (orientation: portrait) {
  .memberManagementTree .treeItems {
    height: 440px;
  }
}
@media only screen and (min-width: 411px) and (max-height: 414px) and (min-height: 376px) and (orientation: landscape) {
  .memberManagementTree .treeItems {
    height: 215px;
  }
}
@media only screen and (min-width: 411px) and (max-height: 736px) and (min-height: 668px) and (orientation: portrait) {
  .memberManagementTree .treeItems {
    height: 530px;
  }
}
@media only screen and (min-width: 812px) and (orientation: landscape) {
  .memberManagementTree .treeItems {
    height: 195px;
  }
}
@media only screen and (min-width: 375px) and (min-height: 812px) and (orientation: portrait) {
  .memberManagementTree .treeItems {
    height: 590px;
  }
}
@media only screen and (min-width: 600px) and (orientation: portrait) {
  .memberManagementTree .treeItems {
    height: 790px;
  }
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
#AddMemberButtons_HorizontalView {
  position: absolute;
  left: 0px;
  z-index: 10000;
  background: white;
  width: 1206px;
  box-shadow: 0px 12px 18px 1px rgba(0, 0, 0, 0.75);
}
#AddMemberButtons_HorizontalView.ng-hide-add {
  -webkit-animation: fadeOutLeft 0.3s;
  -moz-animation: fadeOutLeft 0.3s;
  -ms-animation: fadeOutLeft 0.3s;
  animation: fadeOutLeft 0.3s;
}
#AddMemberButtons_HorizontalView.ng-hide-remove {
  -webkit-animation: fadeInLeft 0.3s;
  -moz-animation: fadeInLeft 0.3s;
  -ms-animation: fadeInLeft 0.3s;
  -o-animation: fadeInLeft 0.3s;
  animation: fadeInLeft 0.3s;
}
.addMember-splash {
  z-index: 2 !important;
  opacity: 0.7;
  padding-top: 75px;
}
.closeGraphic {
  background: transparent;
  border: 0px;
  float: right;
  font-weight: bold;
  color: black;
  text-shadow: none;
  opacity: none;
  padding: 0px;
  margin-top: 0px;
}
.closeGraphic span i {
  font-size: 30px;
}
.nodeDeleteModal {
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 200px;
  margin-top: -100px;
  margin-left: -150px;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}
.nodeDeleteModal .nodeDeleteContent {
  padding: 15px;
  flex: 1;
}
.nodeDeleteModal .nodeDeleteFooter {
  padding: 15px;
  flex-shrink: 0;
  height: calc(35px + (2*15px));
}
.nodeDeleteModal .nodeDeleteFooter button {
  margin-left: 10px;
  float: right;
}
.nodeDeleteModal .nodeDeleteHeader {
  font-size: 18px;
  flex-shrink: 0;
  color: #ffffff;
  padding: 15px;
  background-color: #0d3e69;
}
.nodeDeleteModal .nodeDeleteHeader .closeButton {
  cursor: pointer;
  float: right;
  margin-top: -5px;
}
@media only screen and (orientation: portrait) {
  .rotateMobileGraphic {
    transform: rotate(90deg);
    background: transparent;
    align-content: center;
    padding: 0px;
  }
}
@media only screen and (orientation: landscape) {
  .rotateMobileVerticalGraphic {
    transform: rotate(90deg);
    background: transparent;
    align-content: center;
    padding: 0px;
  }
  .sizeVerticalMobileGraphic {
    height: 77vh;
  }
  .sizeVerticalMobileGraphic img {
    height: 85vw;
    width: 85vh;
    /* margin: 0 auto; */
    margin-left: 25vw;
    margin-top: -20vw;
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media only screen and (orientation: portrait) {
  .sizeMobileGraphic {
    margin-top: 15vh;
    margin-left: -20vh;
    margin-right: 0px;
    margin-bottom: 0px;
    width: 85vh;
    height: 85vw;
  }
  .sizeVerticalMobileGraphic {
    height: 150vw;
  }
  .sizeVerticalMobileGraphic img {
    height: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (orientation: portrait) {
  .sizeMobileGraphicLarge {
    margin-top: 22vh;
    margin-left: -22vh;
    margin-right: 0px;
    margin-bottom: 0px;
    width: 85vh;
    height: 85vw;
  }
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.manageContainer {
  height: 100%;
}
.manageContainer .btnDefault {
  background-color: #777;
  color: #eee;
}
.manageContainer .btnDefault .customPlus {
  color: green;
}
.manageContainer .btnDefault img {
  padding-right: 5px;
  margin-bottom: 3px;
}
.manageContainer .customPanelGroup {
  padding-left: 9px;
  padding-right: 9px;
}
.fileManagmentLeftSidebar {
  height: 100%;
}
.fileManagementGroups .btnDefault {
  top: 62px;
  z-index: 777;
}
.fileManagementGroups .container {
  width: 100% !important;
  padding-top: 2px;
  padding-bottom: 2px;
}
.fileManagementGroups .container .customFixTeamContent {
  overflow-y: scroll;
  min-width: 200px;
  margin-bottom: 50px;
}
.fileManagementGroups .container .customFixTeamContent .panel-group {
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}
.fileManagementGroups .fileManagerNavHeader {
  background-color: #cbcaca;
  color: #000;
  font-size: 16px;
  padding: 10px 15px;
  border-bottom: 1px solid #fff;
  word-wrap: break-word;
  text-transform: uppercase;
}
.fileManagementGroups .fileManagerNavHeader .cutText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none !important;
}
.fileManagementGroups .fileManagerNavHeader > h4 {
  font-size: 14px;
}
.fileManagementGroups .fileManagerNavHeader > h4 .glyphicon {
  display: unset;
  margin-right: 4px;
}
.fileManagementGroups .fileManagerNavHeader > h4 .fa {
  display: unset;
  margin-right: 4px;
}
.fileManagementGroups .fileManagerNavHeader.current {
  background-color: #777;
  color: #000;
  border: 0px 1px 1px 1px solid #ddd;
}
.fileManagementGroups .fileManagerNavHeader.current ~ div ul li.currentContent {
  background: #ccc;
  color: #000;
  border: 0px 1px 1px 1px solid #ddd;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.45);
  -moz-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
}
.fileManagementGroups .fileManagerNavHeader.current ~ div ul li.currentContent > a {
  color: #000;
}
.fileManagementGroups .fileManagerNavHeader.current > h4 {
  font-weight: bold;
  color: white;
}
.fileManagementGroups .clickableTeamName {
  cursor: pointer;
  user-select: none;
  position: relative;
}
.fileManagementGroups .clickableTeamName:hover {
  opacity: 0.6;
}
.fileManagementGroups .clickableTeamName:hover .btnManageTeam {
  animation: editName-in 0.4s;
  animation-delay: 0s;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
  transition-delay: 0s;
  visibility: visible;
}
.fileManagementGroups .clickableTeamName .btnManageTeam {
  position: absolute;
  top: 10px;
  right: 4px;
  cursor: pointer;
  opacity: 0;
  visibility: visible;
  -webkit-transition: visibility 1.5s, opacity 0.2s;
  transition: visibility 1.5s, opacity 0.2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-animation: editName-out 0.3s;
  animation: editName-out 0.3s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  color: black;
}
.fileManagementGroups .clickableTeamName .teamNameText {
  max-width: 174px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.fileManagementGroups .fileManagerNavContent {
  overflow-y: scroll;
  overflow-x: hidden;
  margin-left: 5px;
  margin-right: 5px;
  height: 80vh;
}
.fileManagementGroups .fileManagerNavContent .noTeamsYet {
  color: #7a7a7a;
  padding: 15px;
  border-top: 1px solid black;
}
.fileManagementGroups .fileManagerNavContent ul {
  list-style-type: none;
  padding-left: 0px;
}
.fileManagementGroups .fileManagerNavContent ul li {
  padding-left: 15px;
  padding-top: 5px;
  height: 32px;
  margin-bottom: 10px;
}
.fileManagementGroups .fileManagerNavContent ul li a {
  vertical-align: middle;
  text-decoration: none;
  color: #000000;
}
.fileManagementGroups .fileManagerNavContent ul li a:hover {
  color: inherit;
}
.fileManagementGroups .fileManagerNavContent ul li:hover {
  background: #f8f8f8;
  cursor: pointer;
}
.fileManagementGroups .fileManagerNavContent ul li .active {
  border-left: 2px solid #016a3a;
  color: #016a3a;
  background: #f4f4f4;
}
.fileManagementGroups .fileManagerNavContent ul li .active:hover {
  background: #eaeaea;
}
.newItemLi {
  height: 36px;
}
.newItemLi .newItemForm {
  height: 36px;
}
.newItemLi .newItemForm .newItemContainer {
  display: inline-flex;
}
.newItemLi .newItemForm .newItemContainer .addNewFolderInput {
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}
.newItemLi .newItemForm .newItemContainer input {
  width: 220px;
  height: 36px;
  float: left;
  font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
  border: 0;
  padding-right: 10px;
  background: #fff;
  margin-top: -10px;
  margin-left: -10px;
}
.newItemLi .newItemForm .newItemContainer input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemLi .newItemForm .newItemContainer input::-moz-placeholder {
  /* Firefox 19+ */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemLi .newItemForm .newItemContainer input:-ms-input-placeholder {
  /* IE 10+ */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemLi .newItemForm .newItemContainer input:-moz-placeholder {
  /* Firefox 18- */
  font-style: oblique;
  color: #dbdbdb;
}
.newItemLi .newItemForm .newItemContainer input:focus {
  outline: 0;
}
.newItemLi .newItemForm .newItemContainer .login-validation {
  font: bold 15px 'Tahoma';
  margin: 0;
}
.newItemLi .newItemForm .newItemContainer .addFolderButton {
  font-size: 14px;
  vertical-align: top;
  overflow: visible;
  position: relative;
  float: right;
  border: 1px solid black;
  border-left: 0;
  border-radius: 0 3px 3px 0;
  padding: 0;
  cursor: pointer;
  height: 36px;
  width: 36px;
  color: #fff;
  text-transform: uppercase;
  background: #0099ff;
  margin-left: -9px;
  margin-top: -10px;
}
.newItemLi .newItemForm .newItemContainer .addFolderButton:hover {
  background: #3db8ff;
}
.newItemLi .newItemForm .newItemContainer .addFolderButton:active,
.newItemLi .newItemForm .newItemContainer .addFolderButton:focus {
  background: #0081d1;
  outline: 0;
}
.moveCopyModal {
  flex: 1;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  overflow-x: hidden;
  overflow-y: auto;
}
.moveCopyModal ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.moveCopyModal ul li {
  display: inline-flex;
  padding: 10px 0px 10px 10px;
}
.moveCopyModal ul li .addNew {
  color: blue;
}
.moveCopyModal ul li:hover {
  background: #e9e9e9;
  cursor: pointer;
}
.moveCopyModal ul li span {
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.moveCopyModal ul i {
  padding-right: 8px;
}
.fileDeleteModal {
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 200px;
  margin-top: -100px;
  margin-left: -150px;
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}
.fileDeleteModal .fileDeleteContent {
  padding: 15px;
  flex: 1;
}
.fileDeleteModal .fileDeleteFooter {
  padding: 15px;
  flex-shrink: 0;
  height: calc(35px + (2*15px));
}
.fileDeleteModal .fileDeleteFooter button {
  margin-left: 10px;
  float: right;
}
.fileDeleteModal .fileDeleteHeader {
  font-size: 18px;
  flex-shrink: 0;
  color: #ffffff;
  padding: 15px;
  background-color: #0d3e69;
}
.fileDeleteModal .fileDeleteHeader .closeButton {
  cursor: pointer;
  float: right;
  margin-top: -5px;
}
.fileManagerAddTeam {
  height: 39px;
  margin: auto;
  width: 85%;
  margin-bottom: 10px;
}
.fileManagerAddTeam button {
  width: 100%;
}
.membersidenav {
  width: 0;
  max-width: 360px;
  position: fixed;
  z-index: 1002;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 10px;
  background-color: rgba(29, 27, 27, 0.9);
  top: 55px;
}
.membersidenav-header {
  position: absolute;
  top: 0;
  background-color: #000;
  width: 100%;
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.membersidenav-title {
  font-size: 20px;
  color: white;
  white-space: nowrap;
}
.membersidenavopenbutton-title {
  font-size: 25px;
  word-wrap: break-word;
  cursor: pointer;
  margin-top: 1px;
  margin-right: 5px;
}
.membersidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 36px;
  color: #f1f1f1;
  padding-top: 3px;
}
@media screen and (max-height: 450px) {
  .membersidenav {
    padding-top: 15px;
  }
  .membersidenav a {
    font-size: 18px;
  }
}
.hrsplitter {
  border-style: dashed;
  size: 2px;
}
.teamleftNavBox {
  border: 1px;
  border-color: #e3e3e3;
  border-style: solid;
  margin-top: 5px;
  -moz-border-radius: 7px 7px 0px 0px;
  border-radius: 7px 7px 0px 0px;
  -webkit-border-radius: 7px 7px 0px 0px;
}
.teamleftNavBox > ul {
  margin-bottom: 0px !important;
}
.teamleftNavBox > ul > li {
  margin-bottom: 0px !important;
}
#accordion .glyphicon {
  margin-right: 10px;
}
.panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-bottom: 0px !important;
}
.panel-collapse > .list-group {
  margin-bottom: 0;
  border: 0px;
}
.panel-collapse .list-group-item {
  border-radius: 0;
}
.panel-collapse .list-group .list-group {
  margin: 0;
  margin-top: 10px;
}
.panel-collapse .list-group-item li.list-group-item {
  margin: 0 -15px;
  border-top: 1px solid #ddd !important;
  border-bottom: 0;
  padding-left: 30px;
}
.panel-collapse .list-group-item li.list-group-item:last-child {
  padding-bottom: 0;
}
.panel-collapse div.list-group div.list-group {
  margin: 0;
}
.panel-collapse div.list-group .list-group a.list-group-item {
  border-top: 1px solid #ddd !important;
  border-bottom: 0;
  padding-left: 30px;
}
.panel-collapse .list-group-item li.list-group-item {
  border-top: 1px solid #DDD !important;
}
.teamsperator {
  background-color: #0081d1;
  height: 2px;
}
.panel-group .panel-default {
  border: 0px;
}
.panel-group .panel-default .panel-heading {
  border: 0px;
}
@media screen and (max-height: 325px) {
  .container .customFixTeamContent {
    height: 48.5vh !important;
  }
}
@media screen and (max-height: 379px) and (min-height: 326px) {
  .container .customFixTeamContent {
    height: 54.5vh !important;
  }
}
@media screen and (max-height: 414px) and (min-height: 380px) {
  .container .customFixTeamContent {
    height: 58vh !important;
  }
}
@media screen and (max-height: 480px) and (min-height: 415px) {
  .container .customFixTeamContent {
    height: 63.5vh !important;
  }
}
@media screen and (max-height: 568px) and (min-height: 481px) {
  .container .customFixTeamContent {
    height: 67.5vh !important;
  }
}
@media screen and (max-height: 640px) and (min-height: 569px) {
  .container .customFixTeamContent {
    height: 70vh !important;
  }
}
@media screen and (max-height: 667px) and (min-height: 641px) {
  .container .customFixTeamContent {
    height: 71vh !important;
  }
}
@media screen and (max-height: 740px) and (min-height: 668px) {
  .container .customFixTeamContent {
    height: 72.5vh !important;
  }
}
@media screen and (max-height: 825px) and (min-height: 741px) {
  .container .customFixTeamContent {
    height: 74.5vh !important;
  }
}
@media screen and (max-height: 1024px) and (min-height: 826px) {
  .container .customFixTeamContent {
    height: 77.5vh !important;
  }
}

.shellWrapper {
  height: 100%;
  min-height: 100%;
  min-width: 0px;
  margin-top: 55px;
}
.navoverlay {
  z-index: 9998;
  /* Sit on top */
}
/*Mobile Side Menu Overlay*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.navbar-toggle.navbar-left {
  float: left;
  margin-left: 10px;
}
.navoverlay-content.navbar-left {
  float: left;
  margin-left: 10px;
}
/*end*/
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media (max-width: 345px) {
  .navoverlay {
    width: 100%;
  }
}
@media (max-width: 380px) and (min-width: 346px) {
  .navoverlay {
    width: 100%;
  }
}
@media (max-width: 415px) and (min-width: 380px) {
  .navoverlay {
    width: 100%;
  }
}
@media (max-width: 566px) and (min-width: 416px) {
  .navoverlay {
    width: 90%;
  }
}
@media (max-width: 767px) and (min-width: 567px) {
  .navoverlay {
    width: 60%;
  }
}
@media (max-width: 779px) and (min-width: 666px) {
  .navoverlay {
    width: 50%;
  }
}
@media (max-width: 1200px) and (min-width: 780px) {
  .navoverlay {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .navbar-toggle {
    border-radius: 0px !important;
    padding: 10px 5px;
    margin-bottom: 0px;
    margin-right: 12px;
  }
  .shellWrapper {
    padding-top: 0px;
  }
  /* The Overlay (background) */
  .navoverlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    position: absolute;
    /* Stay in place */
    float: right;
    z-index: 9999;
    /* Sit on top */
    right: 0px;
    background-color: #000000;
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  .navoverlaysidebar {
    position: absolute;
    /* Stay in place */
    float: right;
    z-index: 9999;
    /* Sit on top */
    width: 45%;
    background-color: #000000;
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
  }
  /* Position the content inside the overlay */
  .navoverlay-content {
    position: relative;
    top: 25%;
    /* 25% from the top */
    text-align: center;
    /* Centered text/links */
    margin-top: 10px;
    /* 30px top margin to avoid conflict with the close button on smaller screens */
  }
  /* The navigation links inside the overlay */
  .navoverlay a {
    padding: 8px;
    text-decoration: none;
    display: block;
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */
  }
  /* When you mouse over the navigation links, change their color */
  .navoverlay a:hover,
  .navoverlay a:focus {
    color: #f1f1f1;
  }
  /* Position the close button (top right corner) */
  .navoverlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
  }
  .languageSelector {
    margin-top: 0.8vw;
  }
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
  .sidebarli {
    color: #d3d3d3;
  }
  .navbar-default .navbar-nav > li > a {
    color: #d3d3d3;
  }
  .navbarheader {
    margin-bottom: 0px !important;
    background-color: #000;
  }
  .reverseColorNavBtn {
    background-color: #000 !important;
    border-color: #000 !important;
  }
  .sidebarmyfiles {
    color: #f9f9f9;
  }
  .btnManageTeam {
    float: left;
    margin-right: 1vw;
  }
  .fileManagerNavContent {
    padding-top: 2vw;
  }
  .btnsidebarmyfiles {
    background-color: black;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    margin-left: 0px !important;
    border-color: #000 !important;
  }
  .btn {
    font-size: 13px;
  }
  .navbar {
    min-height: 50px;
    border: 0px !important;
  }
  .navbar-collapse {
    border-top: 0px !important;
  }
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: #000 !important;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #f8f8f8;
  }
  .fileManagerNavContent li a {
    color: #f8f8f8 !important;
  }
  .navmyfiles {
    min-height: 5vw !important;
    margin-bottom: 1vw !important;
  }
  .modal-dialog {
    width: 95%;
  }
  .btnDefault {
    width: 100%;
    font-size: 3.3vw !important;
  }
  .navbar-brand {
    float: left;
    height: 55px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    margin-left: 3px;
  }
  .headerIcon {
    font-size: 16px;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .fileManagerNavContent {
    padding-top: 2vw;
    overflow: auto;
    height: 100px;
  }
  .fileManagerAddTeam {
    padding-bottom: 2vw;
  }
  .btnDefault {
    width: 100% !important;
    font-size: 13px !important;
  }
  .navoverlay-content {
    overflow: auto;
    height: 195px;
    overflow-x: hidden;
  }
  #jobTreeContainer {
    padding-top: 25px !important;
    top: 25px !important;
  }
  .jobsidenav {
    max-width: 300px;
  }
}
.jobcontainer {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.accordion-toggle:after {
  font-family: 'FontAwesome';
  content: "\f077";
  float: right;
}
.accordion-opened .accordion-toggle:after {
  font-family: 'FontAwesome';
  content: "\f077";
  float: right;
}
.accordion-toggle.collapsed:after {
  font-family: 'FontAwesome';
  content: "\f078";
  float: right;
}
.accordion-toggle {
  color: #000 !important;
  font-size: 16px;
}
.panel-group {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
}
.panel-heading-bar {
  background-color: #f5f5f5 !important;
  color: #000 !important;
  padding: 2vw;
}
.panel-heading-bar a:hover {
  color: #000 !important;
}
.jobsidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  background-color: rgba(66, 66, 66, 0.95);
  overflow-y: hidden;
}
.jobsidenav-header {
  position: absolute;
  top: 0;
  background-color: #000;
  width: 100%;
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.jobsidenav-title {
  font-size: 20px;
  color: white;
  white-space: nowrap;
}
.jobsidenavopenbutton-title {
  font-size: 25px;
  white-space: nowrap;
  cursor: pointer;
  padding-top: 1px;
}
.jobsidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 36px;
  color: #f1f1f1;
  padding-top: 3px;
}
@media screen and (max-height: 450px) {
  .jobsidenav a {
    font-size: 18px;
  }
}
@media screen and (max-width: 330px) {
  .nav-tabs > li > a {
    font-size: 11px !important;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .navbar-toggle {
    margin-top: 17px;
    margin-right: 24px;
    padding: 0px;
  }
  .shellWrapper {
    padding-top: 0px;
  }
  /* The Overlay (background) */
  .navoverlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    position: absolute;
    /* Stay in place */
    float: right;
    z-index: 9999;
    /* Sit on top */
    right: 0px;
    background-color: #000000;
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }
  .navoverlaysidebar {
    position: absolute;
    /* Stay in place */
    float: right;
    z-index: 9999;
    /* Sit on top */
    background-color: #000000;
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
  }
  /* Position the content inside the overlay */
  .navoverlay-content {
    position: relative;
    top: 25%;
    /* 25% from the top */
    text-align: center;
    /* Centered text/links */
    margin-top: 10px;
    /* 30px top margin to avoid conflict with the close button on smaller screens */
  }
  /* The navigation links inside the overlay */
  .navoverlay a {
    padding: 8px;
    text-decoration: none;
    display: block;
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */
  }
  /* When you mouse over the navigation links, change their color */
  .navoverlay a:hover,
  .navoverlay a:focus {
    color: #f1f1f1;
  }
  /* Position the close button (top right corner) */
  .navoverlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
  }
  .languageSelector {
    margin-top: 0.8vw;
  }
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
  .sidebarli {
    color: #d3d3d3;
  }
  .navbar-default .navbar-nav > li > a {
    color: #d3d3d3;
  }
  .navbarheader {
    margin-bottom: 0px !important;
    background-color: #000;
  }
  .reverseColorNavBtn {
    background-color: #000 !important;
    border-color: #000 !important;
  }
  .sidebarmyfiles {
    color: #f9f9f9;
  }
  .btnManageTeam {
    float: left;
    margin-right: 1vw;
  }
  .fileManagerAddTeam {
    padding-bottom: 1.5vw;
  }
  .fileManagerNavContent {
    padding-top: 2vw;
    overflow: auto;
    height: 250px;
  }
  .btnsidebarmyfiles {
    background-color: black;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    margin-left: 0px !important;
    border-color: #000 !important;
  }
  .btn {
    font-size: 13px;
  }
  .navbar {
    min-height: 50px;
    border: 0px !important;
  }
  .navbar-collapse {
    border-top: 0px !important;
  }
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background-color: #000 !important;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #f8f8f8;
  }
  .fileManagerNavContent li a {
    color: #f8f8f8 !important;
  }
  .navmyfiles {
    min-height: 5vw !important;
    margin-bottom: 1vw !important;
  }
  .modal-dialog {
    width: 95%;
  }
  .btnDefault {
    width: 100%;
    font-size: 2.3vw !important;
  }
  .navbar-header {
    float: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .navbar-nav {
    float: none !important;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-left {
    float: none !important;
  }
  .languageSelectorContainer {
    margin: 20px auto;
  }
  .headerItem {
    float: left !important;
    white-space: nowrap;
    display: block !important;
    width: 50%;
    text-align: left;
  }
  .navbar > .container-fluid .navbar-brand {
    margin-left: 15px;
  }
  .navbar-brand {
    float: left;
    height: 55px;
    padding: 14px 9px;
    font-size: 18px;
    line-height: 20px;
  }
  .headerIcon {
    font-size: 20px;
  }
}
.arrows {
  margin-top: 9px;
  padding-left: 0px;
  white-space: nowrap;
  word-wrap: break-word;
  font-size: 16px;
  overflow-x: scroll;
  height: 30px;
}
.arrows li {
  display: inline-block;
  position: relative;
}
.arrows li::before {
  content: '/';
  margin-right: 5px;
  margin-left: 5px;
}
.arrows li:first-child::before {
  content: '';
  margin-left: 0px;
}
.arrows li a {
  color: #000;
}
.removeMarginBottom {
  margin-bottom: 0px;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #d3d3d3 !important;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
@keyframes greyToRed {
  0% {
    color: #7a7a7a;
  }
  50% {
    color: #E44C36;
  }
  100% {
    color: #7a7a7a;
  }
}
.hideAddFileFormContainer {
  visibility: hidden;
}
.newFileModel .modalheader .modal-title {
  font-size: 20px;
}
.newFileModel .modal-body {
  font-size: 14px;
}
.newFileModel .modal-body .newfileheader {
  font-weight: bold;
}
.newFileModel .modal-body .login-validation {
  font-size: 13px;
}
.newFileModel .modal-body .newFileNameTitle {
  font-size: 14px;
}
.newFileModel .modal-body button {
  font-size: 13px;
}
.openFileTabHeader {
  font-weight: bold;
}
.login-validation {
  color: #E44C36;
}
.modal-title span {
  font-size: 14px;
}
.headerListIcon {
  font-size: 13px;
  margin-right: 5px;
}
.materialsManagerIcon {
  margin-right: 7.5px;
  margin-left: 1.5px;
  font-size: 13px;
}
.fileManagerIcon {
  font-size: 12px;
  margin-right: 6px;
}
.helpIcon {
  font-size: 15px;
  margin-right: 5.5px;
}
.ahelp {
  padding-left: 12px !important;
}
.headerLangIcon {
  font-size: 13px;
  margin-right: 6px ;
}
.maxHeight {
  max-height: 370px !important;
}
.navbar-collapse.in {
  overflow-y: hidden;
}

/* inject:lessImports */
/* endinject */
/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
.matManContainer {
  height: 100%;
  width: 100%;
  visibility: visible;
}
.matManContainer .buttonOnLeft {
  text-align: left;
}
.matManContainer .postalCodeContainer {
  width: 117px;
  float: right;
}
.matManContainer .postalCodeContainer .postalCodeInput {
  height: 30px;
  width: 87px;
}
.matManContainer .postalCodeContainer .postalCodeButton {
  height: 30px;
  width: 30px;
}
.matManContainer .postalCodeContainer .postalCodeInputForm input.ng-invalid + button {
  background-color: red;
}
.matManContainer .selected {
  background-color: #4285f4;
  color: white;
}
.matManContainer .productFilterLabel {
  height: 45px;
  width: 100%;
  flex-shrink: 0;
  font-size: 20px;
  padding: 10px 15px;
  border-bottom: 1px solid black;
}
.matManContainer .dropdownlistcenter {
  padding-left: 0px ;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-top: 5px;
}
.matManContainer .dropdownlistcenter .bodytoppadding .dropdownlistwidthm {
  width: 190px;
}
.matManContainer .dropdownlistcenter .dropdown .dropdown-menu .selected {
  background-color: #4285f4;
  color: white;
}
.matManContainer .mmNavColumn {
  flex-shrink: 0;
  width: 205px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid black;
  display: flex;
  flex-direction: column;
}
.matManContainer .mmNavColumn .productGroupListContainer {
  flex: 1;
}
.matManContainer .mmNavColumn .productGroupListContainer ul {
  list-style-type: none;
  list-style: none;
  padding-left: 0px;
  margin: auto;
  font-size: 16px;
}
.matManContainer .mmNavColumn .productGroupListContainer ul li {
  margin-bottom: -2px;
  line-height: 40px;
  padding-left: 10px;
}
.matManContainer .mmNavColumn .productGroupListContainer ul li:hover {
  cursor: pointer;
}
.matManContainer .mmNavColumn .productGroupListContainer ul .selected {
  background-color: #4285f4;
  color: white;
}
.matManContainer .mmContentColumn {
  height: 100%;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.matManContainer .mmContentColumn .navBar {
  height: 48px;
  flex-shrink: 0;
  font-size: 20px;
  display: flex;
  background-color: lightgrey;
}
.matManContainer .mmContentColumn .productListContainer {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-min-height: 0;
}
.matManContainer .mmContentColumn .productListContainer .productSeriesList {
  list-style: none;
}
.matManContainer .mmContentColumn .productListContainer .productSeriesList li {
  margin-left: -25px;
  margin-bottom: -2px;
}
.matManContainer .productListContainer {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  margin-bottom: 0px;
}
.matManContainer .productList {
  width: 100%;
  overflow-y: auto;
  margin-bottom: 0px;
}
.matManContainer .productSeriesTable {
  display: flex;
  padding-left: 0px;
  padding-right: 0px;
}
.matManContainer .productCheckbox {
  margin-top: 1px;
  font-size: 18px;
}
.matManContainer .productSeriesCheckbox {
  margin-top: 2px;
  margin-left: 8px;
  font-size: 18px;
}
.matManContainer .productSeriesCheckbox_checked {
  margin-left: 1px;
}
.matManContainer .productSeriesHeader {
  margin-left: 3px;
  cursor: pointer;
}
.matManContainer .productRow {
  margin-left: 10px;
}
.matManContainer .productSeriesRowCaret {
  margin-top: 11px;
  font-size: 18px;
}
.matManContainer .productLabel {
  margin-left: 5px;
  vertical-align: top;
}
.matManContainer .productLabel_checked {
  margin-left: 3px;
}
.matManContainer .nonBoldLabel {
  font-weight: normal;
}
.matManContainer input[type='checkbox'] {
  width: 18px;
  margin-right: 5px;
  float: left;
  height: 18px;
}
.matManContainer #btnBackFileManagement {
  width: 200px;
  height: 55px;
  bottom: 23px;
  right: 36px;
  cursor: pointer;
  position: absolute;
}
.matManContainer #btnBackFileManagement .fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F44336;
  color: white;
  display: block;
  position: absolute;
  right: 0;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 20px;
  box-shadow: 0px 2px 5px #666;
  text-shadow: 1px 1px #720000;
}
.matManContainer #btnBackFileManagement .backButtonIcon {
  line-height: 40px;
}
.matManContainer #btnBackFileManagement .fabFlyoutText {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  text-shadow: 1px 1px #000000;
  border-radius: 3px;
  display: inline;
  position: absolute;
  right: 20px;
  padding: 2px 10px;
  top: 15px;
  opacity: 0;
  box-shadow: 0px 2px 5px #666;
  transition: all 0.3s;
}
.matManContainer #btnBackFileManagement:hover .fabFlyoutText {
  right: 60px;
  opacity: 1;
}
@keyframes fade-in {
  from {
    opacity: 0;
    right: 20px;
  }
  to {
    opacity: 1;
    right: 70px;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
    right: 70px;
  }
  to {
    opacity: 0;
    right: 20px;
  }
}
@keyframes close-in {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(-180deg);
  }
}
@keyframes close-out {
  from {
    opacity: 0;
    transform: rotateZ(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes back-in {
  from {
    opacity: 0;
    transform: rotateZ(70deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}
@keyframes back-out {
  from {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  to {
    opacity: 0;
    transform: rotateZ(70deg);
  }
}
.subjectheader {
  background-color: #555;
  color: #fff;
  padding: 8px;
  margin: 0px;
}
.removepaddingLeftRight {
  padding-right: 0px;
  padding-left: 0px;
}
.selectioncheckbox {
  margin-left: 10px !important;
  margin-top: 8px !important;
}
.checkboxtextalign {
  display: block;
  padding-left: 25px;
  text-indent: 0px;
}
.panel-group-matrialmanager {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
.panel-group .specialOrder,
panel-collapse .specialOrder {
  background-color: #ffdb99 !important;
}
.panel-group .unavailable,
panel-collapse .unavailable {
  background-color: #ff9999 !important;
}
.panel-body-matriamanager {
  padding: 0px !important;
}
.panel-body-matriamanager .removePaddingRight {
  padding-right: 0px;
}
.removemargin {
  margin-bottom: -5px !important;
}



/* inject:lessImports */
/* endinject */
.modal-dialog {
  width: 1080px;
}
.modal-dialog .lrModalBody {
  display: flex;
  flex-direction: row;
  height: 515px;
  min-height: 100%;
}
.modal-dialog .lrModalBody .lrLeftColumn {
  flex-shrink: 0;
  width: 236px;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree {
  height: 485px;
  border: 2px solid black;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree ol li div {
  color: #000000;
  font-weight: bold;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .disabledMemberNode {
  color: rgba(95, 95, 95, 0.5);
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .disabledMemberNode i {
  background-image: none !important;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .disabledMemberNode i:after {
  font-family: FontAwesome;
  content: "\f071";
  font-style: normal;
  font-size: 18px;
  color: #ECA136;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .treeRoot.selected .nameContainer .nameAndEditButton,
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .level.selected .nameContainer .nameAndEditButton,
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .member.selected .nameContainer .nameAndEditButton {
  background: #beebff;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .treeRoot {
  margin: 0px;
  padding: 0px;
  height: 33px;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .treeRoot .nameContainer .nameAndEditButton {
  margin-left: 0px;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .level {
  margin: 0px;
  margin-left: 5px;
  padding: 0px;
  height: 33px;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .level .nameContainer .renameItemForm .renameItemText {
  width: calc(100% - 52px);
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .member {
  margin: 0px;
  margin-left: 5px;
  padding: 0px;
  height: 33px;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .collapseButton {
  float: left;
  margin-right: 5px;
  margin-top: 6px;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .nameDiv {
  padding: 0px;
  margin: 0px;
  padding: 7px;
  margin-left: 7px;
  cursor: default;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .nameDiv.selected {
  background: #beebff;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .nameDiv.selected:hover {
  background: #beebff;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .nameDiv:hover {
  background: #e7f4f9;
}
.modal-dialog .lrModalBody .lrLeftColumn .memberManagementTree .nohover :hover {
  background-color: white;
}
.modal-dialog .lrModalBody .lrRightColumn {
  width: calc(100% - 236px);
  display: flex;
  flex-direction: column;
}
.modal-dialog .lrModalBody .lrRightColumn .rightContentMessage {
  height: 100%;
  margin: 0 auto;
  padding-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
.modal-dialog .lrModalBody .lrRightColumn .dialogGraphic {
  width: 800px;
  margin-top: 5px;
}
.modal-dialog .lrModalBody .lrRightColumn .lrRightForm {
  width: 750px;
}
.modal-dialog .lrModalBody .lrRightColumn .lrRightForm .supportSelection {
  width: 60px;
  margin-top: -6px;
  margin-bottom: 6px;
}
.modal-dialog .lrModalBody .lrRightColumn .lrRightForm .row {
  margin-top: 2px;
}
.modal-dialog .lrModalBody .lrRightColumn .lrRightForm .row .disabledText {
  display: none;
}
.modal-dialog .lrModalBody .lrRightColumn .lrRightForm .row:first-of-type {
  margin-top: 0px;
}
.modal-dialog .lrModalBody .lrRightColumn .lrRightForm .toText {
  text-align: center;
}
.checkboxLabels {
  margin-right: 35px;
}
.radioButton {
  height: 35px;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
#lablePadding {
  padding-top: 10px;
}
.listItemDrag {
  position: absolute;
  pointer-events: none;
  z-index: 999;
  opacity: 0.8;
  height: 30px;
  font-weight: bold;
  list-style-type: none;
}
.listItemDrag .disabled {
  background-color: lightgrey;
}
.settings-title label {
  font-size: 18px;
  font-weight: normal;
}
.settings_container {
  display: flex;
}
.help_icon_settings {
  float: right;
}
.help_icon_profile {
  float: right;
}
.settings_leftColumn {
  flex-shrink: 0;
  width: 165px;
  border-right: 1px solid #d9d9d9;
}
.settings_leftColumn .nav-pills > li > a {
  font-weight: bold;
  color: inherit;
}
.settings_leftColumn .nav > li > a:hover,
.settings_leftColumn .nav > li > a:focus {
  background-color: inherit;
  cursor: pointer;
}
.settings_leftColumn .selected,
.settings_leftColumn .selected > li > a:hover {
  background-color: #4285f4 !important;
  color: white;
}
.settings_rightColumn {
  flex: 1;
  padding: 0 15px;
}
.settings_rightColumn .floatLeft {
  float: left;
}
.settings_rightColumn .formElement {
  width: 310px;
  margin-right: 20px;
  margin-bottom: 10px;
}
.settings_rightColumn .formElement label {
  width: 100%;
}
.settings_rightColumn .settingsTabContent {
  display: none;
}
.settings_rightColumn .settingsTabContent .mainSettings {
  margin: 10px;
  height: 490px;
}
.settings_rightColumn .settingsTabContent .mainSettings #uOMLengthMeasure {
  width: 350px;
}
.settings_rightColumn .settingsTabContent .mainSettings .productComparisonContainer {
  padding-top: 20px;
}
.settings_rightColumn .settingsTabContent .mainSettings .productComparisonContainer #productComparison {
  width: 350px;
}
.settings_rightColumn .settingsTabContent .mainSettings .productComparisonContainer #productComparison:disabled {
  background-color: #eee;
  opacity: 1;
  cursor: not-allowed;
}
.settings_rightColumn .settingsTabContent .mainSettings .exportOptionL1 {
  display: block;
  font-size: 20px;
}
.settings_rightColumn .settingsTabContent .mainSettings .exportOptionL2 {
  display: block;
  font-size: 10px;
}
.settings_rightColumn .settingsTabContent .mainSettings .exportOption {
  width: auto;
  height: 35px;
  margin: 0px;
  padding: 0px;
  display: inline;
}
.settings_rightColumn .settingsTabContent .mainSettings .exportOption .exportOptionI {
  height: 30px;
  width: 350px;
  padding: 0px;
  margin: 0px;
}
.settings_rightColumn .settingsTabContent .mainSettings .exportOption .exportOptionB {
  height: 30px;
  width: 40px;
  padding: 0px;
  margin: 0px;
}
.settings_rightColumn .settingsTabContent .mainSettings .languageL {
  display: block;
}
.settings_rightColumn .settingsTabContent .mainSettings .language {
  width: auto;
  display: block;
}
.settings_rightColumn .settingsTabContent .mainSettings .jobSetting {
  display: block;
}
.settings_rightColumn .settingsTabContent .mainSettings .jobSettingsm {
  font-size: 9px;
}
.settings_rightColumn .selected {
  display: inherit;
}
.resetDefaultsMessage {
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  margin-top: 7px;
}
.greenText {
  color: #69a323;
}
.DeflectionFloor .allLegend {
  pointer-events: none;
  user-select: none;
}
.DeflectionFloor .lefthalf {
  border-style: none;
  width: 40%;
  max-height: 458px;
  min-height: 458px;
  float: left;
}
.DeflectionFloor .lefthalf .addNewQuickLoadBtn {
  height: 25px;
  width: 25px;
  display: inline;
  padding: 2px;
  color: green;
}
.DeflectionFloor .lefthalf .addNewQuickLoadBtn:hover {
  background-color: #f5f5f5;
}
.DeflectionFloor .lefthalf .deleteQuickLoadBtn {
  height: 25px;
  width: 25px;
  display: inline;
  padding: 2px;
  color: red;
}
.DeflectionFloor .lefthalf .deleteQuickLoadBtn:hover {
  background-color: #f5f5f5;
}
.DeflectionFloor .lefthalf .moveQuickLoadBtn {
  height: 25px;
  width: 25px;
  display: inline;
  padding: 2px;
  color: black;
}
.DeflectionFloor .lefthalf .moveQuickLoadBtn:hover {
  background-color: #f5f5f5;
}
.DeflectionFloor .lefthalf .loadsListDiv {
  border: 1px;
  border-style: solid;
  min-height: 434px;
  max-height: 434px;
  padding: 0;
  margin-top: 5px;
}
.DeflectionFloor .lefthalf .loadsListDiv .loadsList {
  list-style: none;
  border-style: none;
  left: 0px;
  min-height: 432px;
  max-height: 432px;
  position: relative;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow-x: hidden;
  overflow-y: auto;
  user-select: none;
}
.DeflectionFloor .lefthalf .loadsListDiv .loadsList .quickLoadListItems {
  height: 30px;
  padding-left: 10px;
  width: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}
.DeflectionFloor .lefthalf .loadsListDiv .loadsList .quickLoadListItems:not(.current):not(.disabled):hover {
  background-color: #f5f5f5;
}
.DeflectionFloor .lefthalf .loadsListDiv .loadsList .quickLoadListItems div {
  width: 323px;
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.DeflectionFloor .lefthalf .loadsListDiv .loadsList .disabled {
  background-color: lightgrey;
  cursor: not-allowed;
}
.DeflectionFloor .lefthalf .loadsListDiv .loadsList .current {
  background-color: #4285f4;
  color: white;
}
.DeflectionFloor .lefthalf .hideRightClickMenu {
  display: none;
}
.DeflectionFloor .lefthalf .showRightClickMenu {
  display: block;
  width: auto;
  z-index: 1;
  padding: 2px;
  margin: 2px;
  position: absolute;
  background-color: white;
  border-color: black;
  border-style: solid;
  border: 1px;
}
.DeflectionFloor .lefthalf .showRightClickMenu ul {
  padding: 0px;
}
.DeflectionFloor .lefthalf .showRightClickMenu li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.DeflectionFloor .lefthalf .showRightClickMenu li:hover {
  background-color: lightblue;
  border-color: blue;
  border-style: solid;
  border: 1px;
  cursor: default;
}
.DeflectionFloor .righthalf {
  border-style: none;
  width: 58%;
  max-height: 458px;
  min-height: 458px;
  float: right;
}
.DeflectionFloor .righthalf .noQuickLoadMsg {
  height: 458px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}
.DeflectionFloor .righthalf .loadNameLabel {
  font-weight: bold;
}
.DeflectionFloor .righthalf .loadName {
  width: 366px;
  border: 1px solid #ccc;
  height: 25px;
  padding: 0px 0px 0px 5px;
}
.DeflectionFloor .righthalf .loadName:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.DeflectionFloor .righthalf .buidingField {
  width: 100%;
  font-size: 10px;
  border: 2px;
  border-style: groove;
}
.DeflectionFloor .righthalf .buidingField .buildingLegend {
  font-size: 10px;
  padding: 2px;
  margin: 0;
  pointer-events: none;
}
.DeflectionFloor .righthalf .buidingField .buildingInput1 {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.DeflectionFloor .righthalf .buidingField .buildingInput1 label {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                                  not supported by any browser */
}
.DeflectionFloor .righthalf .buidingField .buildingInput2 {
  position: relative;
  display: inline-block;
  float: right;
  padding-right: 30px;
}
.DeflectionFloor .righthalf .buidingField .buildingInput2 label {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                                  not supported by any browser */
}
.DeflectionFloor .righthalf .tableLabel {
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                          not supported by any browser */
}
.DeflectionFloor .righthalf .ACLForm .ACLField {
  width: 100%;
  font-size: 10px;
  border: 2px;
  border-style: groove;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .ACLLegend {
  font-size: 15px;
  padding: 2px;
  margin: 0;
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                                  not supported by any browser */
}
.DeflectionFloor .righthalf .ACLForm .ACLField .firstDivACL {
  height: 50%;
  width: 100%;
  padding-top: 3px;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .firstDivACL .labelACL1 {
  font-size: 12px;
  font-weight: 100;
  padding-left: 20px;
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                                      not supported by any browser */
}
.DeflectionFloor .righthalf .ACLForm .ACLField .firstDivACL .ACLLoads1 {
  padding-right: 20px;
  float: right;
  width: 85px;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .firstDivACL .ACLLoads1 .loadsInput1 {
  width: 35px;
  font-size: 10px;
  pointer-events: all;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .firstDivACL .ACLLoads1 .loadsInput1:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .secondDivACL {
  height: 50%;
  width: 100%;
  display: inline-block;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .secondDivACL .labelACL2 {
  font-size: 12px;
  font-weight: 100;
  padding-left: 20px;
  pointer-events: none;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                                      not supported by any browser */
}
.DeflectionFloor .righthalf .ACLForm .ACLField .secondDivACL .ACLLoads2 {
  padding-right: 20px;
  float: right;
  postion: relative;
  width: 85px;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .secondDivACL .ACLLoads2 .loadsInput2 {
  width: 35px;
  font-size: 10px;
  pointer-events: all;
}
.DeflectionFloor .righthalf .ACLForm .ACLField .secondDivACL .ACLLoads2 .loadsInput2:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.fixedLoadTable {
  width: 100%;
  max-width: 366px;
  border: 1px solid #ccc;
  position: unset;
  margin-top: 10px;
  display: flex;
}
.fixedLoadTable .headersContainer .rowHeadersContainer {
  font-weight: bold;
  max-width: 180px;
  width: 33vw;
}
.fixedLoadTable .headersContainer .rowHeadersContainer .rowHeader {
  padding-left: 3px;
  height: 25px;
  border-bottom: 1px solid #ccc;
}
.fixedLoadTable .headersContainer .rowHeadersContainer .rowHeader.deSelected {
  background-color: transparent;
}
.fixedLoadTable .headersContainer .rowHeadersContainer .rowHeaderComments {
  padding-left: 3px;
  height: 50px;
  padding: auto;
}
.fixedLoadTable .headersContainer .rowHeadersContainer .rowHeaderComments.deSelected {
  background-color: transparent;
}
.fixedLoadTable .columnContainer {
  display: flex;
  width: 100%;
  max-width: 200px;
  flex-wrap: nowrap;
  display: block;
  white-space: nowrap;
}
.fixedLoadTable .columnContainer .gridsContainer {
  width: 100%;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn {
  height: 25px;
  width: 100%;
  padding: auto;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn select {
  border: none;
  width: 100%;
  height: 100%;
  padding-left: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
  text-align-last: center;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn select:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn .singleValueContainer input {
  border: none;
  width: 100%;
  text-align: center;
  padding: 0px;
  height: 24px;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn .singleValueContainer input:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn .multiValueContainer {
  display: inline-flex;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn .multiValueContainer div {
  text-align: center;
  width: 20%;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn .multiValueContainer input {
  border: none;
  width: 40%;
  text-align: center;
  padding: 0px;
  height: 24px;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumn .multiValueContainer input:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumnComments {
  height: 50px;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumnComments textarea {
  resize: none;
  padding-left: 3px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid #ccc;
  border-right: none;
  border-top: none;
  border-bottom: none;
  box-sizing: border-box;
  /* For IE and modern versions of Chrome */
  -moz-box-sizing: border-box;
  /* For Firefox                          */
  -webkit-box-sizing: border-box;
  /* For Safari                           */
  text-align: center;
}
.fixedLoadTable .columnContainer .gridsContainer .gridColumnComments textarea:focus {
  outline-style: none;
  border: 2px solid #4d90fe;
}
.fixedLoadTable .inputValue {
  width: 100%;
  padding: 0;
  margin: 0;
  border-style: none;
  text-align: center;
}
input:disabled {
  background-color: #eee;
  color: #747474;
  border-color: #ddd;
}
.rightContainer {
  max-width: 370px;
  margin: auto;
  padding-right: 0;
  padding-left: 0;
}
.actionButtonTop {
  padding-bottom: 2vw;
  width: 100% !important;
}
.actionButtonTop .addIcon {
  color: green;
}
.actionButtonTop .deleteIcon {
  color: red;
}
.custompanelcontainer {
  width: 100% !important;
}
.concentratedLiveLoadContainer input {
  width: 80%;
  float: left;
}
.concentratedLiveLoadContainer div {
  float: left;
  font-size: 15px;
  line-height: 30px;
  padding-left: 5px;
}
.LoadsField2 {
  font-size: 10px;
  margin-top: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 10px;
}
.LoadsField2 legend {
  width: auto;
  font-size: 11px;
  font-weight: bold;
  padding: 5px;
  border-bottom: 0px;
  margin-bottom: 0px;
}
.LoadsField2 .LoadsCheck {
  padding-left: 20px;
}
.LoadsField2 .LoadsCheck input {
  width: 15px;
  margin: 0px;
  margin-right: 5px;
  float: left;
  height: 15px;
}
.LoadsField2 .LoadsCheck label {
  cursor: pointer;
  font-size: 12px;
  font-weight: 100;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                          not supported by any browser */
}
.LoadsField2L {
  font-size: 3vw;
  font-weight: bold;
  padding-top: 5px;
  padding: 2px;
  margin: 0;
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  not supported by any browser */
}
.buildingClassContainer {
  padding-top: 5px;
  font-weight: bold;
  margin-top: 10px;
}
.buildingClassContainer label:first-of-type {
  padding-right: 10px;
}
.panel-group .panel .panel-heading .panel-title .accordion-toggle {
  color: #000 !important;
}

/*COLOR SCHEME!!!!!!!!!!!!!!!!!!!!!!!!
    cyan:   #71FFFF
    red:    #E44C36
    blue:   #1b60ff
*/
/* inject:lessImports */
/* endinject */
.userProfileHeader {
  padding-left: 3px !important;
}
.form-group {
  margin-bottom: 10px;
}
.form-group .formgroupPadding {
  margin-bottom: 10px;
}
.form-group .passwordValidationList .titleSizing {
  font-size: 16px !important;
}
.form-group .passwordValidationList ul,
.form-group .passwordValidationList li {
  font-size: 12px !important;
}
.form-group .changePasswordMsg .invalid {
  font-size: 12px !important;
}
.userProfileContainer .changePasswordContainer .changed-successfully {
  margin-top: 5px;
  padding: 5px;
  font-family: Arial;
  font-size: 12px;
  color: #5cb85c;
}
.userProfileContainer .changePasswordContainer .changePasswordMsg {
  border-radius: 5px;
  box-shadow: 0 1px 3px #ccc;
  border: 1px solid #ddd;
  background-color: lightgrey;
  background: #fefefe;
  position: relative;
  z-index: 1;
  display: block;
  padding-left: 15px;
}
.userProfileContainer .changePasswordContainer .changePasswordMsg img {
  position: absolute;
  left: -20px;
  width: 25px;
  top: 4px;
}
.userProfileContainer .changePasswordContainer .changePasswordMsg ul,
.userProfileContainer .changePasswordContainer .changePasswordMsg li {
  font-size: 12px;
  margin: 0;
  padding: 2px 0px 2px 0px;
  list-style-type: none;
}
.userProfileContainer .changePasswordContainer .changePasswordMsg .caseValid {
  background-image: url(/images/valid.png);
  color: #5cb85c;
}
.userProfileContainer .changePasswordContainer h3 {
  margin-top: 10px;
}
.userProfileContainer .changePasswordContainer button {
  width: 100%;
  margin-bottom: 10px;
}
.userProfileContainer .changePasswordContainer input {
  padding-right: 30px;
}
.userProfileContainer .changePasswordContainer i {
  padding-right: 10px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.userProfileContainer .passwordValidationList {
  background-color: lightgrey;
  position: absolute;
  z-index: 1;
  display: block;
  top: -20px;
  left: -2px;
  padding: 15px;
  font-size: 0.875em;
  border-radius: 5px;
  background: #fefefe;
  box-shadow: 0 1px 3px #ccc;
  border: 1px solid #ddd;
}
.userProfileContainer .passwordValidationList .caretLefChangeP {
  position: absolute;
  left: -19px;
  width: 25px;
  top: 24px;
}
.userProfileContainer .passwordValidationList h4 {
  margin: 0px;
  font-size: 15px;
}
.userProfileContainer .passwordValidationList ul,
.userProfileContainer .passwordValidationList li {
  font-size: 12px;
  margin: 0;
  padding: 2px 0px 2px 0px;
  list-style-type: none;
}
.userProfileContainer .passwordValidationList .caseValid {
  background-image: url(/images/valid.png);
  color: #5cb85c;
}
hr {
  margin-top: 10px;
  margin-bottom: 0px;
}
.invalidInput:focus {
  border-color: #ec3f41;
  border-size: 2px;
}
.invalidMsg {
  font-size: 12px;
  color: #ec3f41;
}
.msgContainer {
  height: 18px;
}
.profileContainer .eachRow {
  margin-bottom: 0px;
}
.profileContainer #emailDisplay {
  pointer-events: none;
}
.profileContainer #occupationSelect {
  width: 190px;
}
.profileContainer #inputPhone {
  width: 200px;
}
.profileContainer .error-message {
  height: 10px;
  margin: 0px;
}
.profileContainer .marginBottom {
  margin-bottom: 20px;
}
.profileContainer .displayedInfo {
  font-size: 13px;
  margin-top: 20px;
}
.tabWide {
  padding-left: 0px;
  padding-right: 0px;
  padding: 0px !important;
}
.tab-content {
  padding-top: 4vw;
}
.tab-content .tab-pane .form-group .messageLable {
  font-size: 12px !important;
}
.tab-content .tab-pane .form-group .submitButtons {
  float: right;
  margin-bottom: 15px;
}
.tab-content .tab-pane .form-group .submitButtons .btn-danger {
  margin-left: 5px;
}
.tab-pane .changePasswordContainer .changPasswordLable {
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .userProfileContainer .container {
    width: 100% !important;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
}

.textArea {
  resize: none;
}
.smallInput {
  width: 50px;
}
.displayInline {
  display: inline;
}
.reportDamage {
  margin: 10px;
}
.reportDamage p {
  margin-left: 5px;
}
.reportDamageNotes {
  color: blue;
}
.reportDamageTitle label {
  font-size: 20px;
  font-weight: normal;
}
.input-validation {
  color: red;
}
.reportDamageContainer .modal-dialog {
  width: 800px;
}
.characterCount {
  float: right;
  color: #7a7a7a;
}

.windLoadingContainer hr {
  margin-bottom: 15px;
  margin-top: 15px;
}
.windLoadingContainer .windLoadSettingsMessage {
  padding-top: 15px;
}
.windLoadingContainer .wlPaddingTop {
  padding-top: 10px;
}
.windLoadingContainer .windSpeedInput input[type="text"] {
  width: 50px;
  float: left;
}
.windLoadingContainer .windSpeedInput label {
  margin: 7px 0px 0px 7px;
}
.windLoadingContainer .windZoneMapAnchor {
  display: block;
  font-size: 60px;
  color: #337AB7;
  width: 100%;
  height: calc(2*15px + 60px);
  padding: 15px;
}
.windLoadingContainer .windZoneMapAnchor .fa {
  margin: 0 auto;
  width: 60px;
  display: block;
  float: left;
}
.windLoadingContainer .windZoneMapAnchor .mapText {
  font-size: 18px;
  line-height: 60px;
  float: left;
  padding-left: 20px;
}

.eccentricityContainer {
  margin-left: 0px;
  margin-right: 0px;
}
.eccentricityCheckboxContainer {
  padding-top: 25px;
}
.tributaryWidth {
  width: 230px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.tributaryWidth label {
  margin-top: 7px;
}
.tributaryWidthInput {
  width: 100px;
  float: right;
}
.eccecntricityDropdown {
  width: 210px;
}

.heightAndSupportsContainer .wallHeightContainer {
  margin-bottom: 15px;
}
.heightAndSupportsContainer label {
  line-height: 29px;
  white-space: normal;
}
.heightAndSupportsContainer fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: #548DD4;
  padding: 0 0.7em 0.7em 0.7em !important;
  margin: 0 0 0.7em 0 !important;
  box-shadow: 0px 0px 0px 0px #000;
}
.heightAndSupportsContainer fieldset legend {
  font-size: 14px !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
}
.heightAndSupportsContainer fieldset .lblleft {
  margin-left: -14px;
  font-size: 20px;
  font-weight: bold;
}

@media (orientation: portrait) {
  .boxblock {
    min-height: 160px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-bearingWidth {
    min-height: 75px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-supportPliesLabelDDL {
    min-height: 80px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-connectorDialogSupportDepth {
    min-height: 150px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
    margin-bottom: 10px;
  }
  .boxblock-skewDialogFieldset {
    min-height: 195px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-pitchDialogFieldset {
    min-height: 147px;
    min-width: 220px;
    padding-left: 0px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-offsetDialogFieldset {
    min-height: 160px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-concealedFlangeFieldset {
    min-height: 180px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-bearingWidthDDLRight {
    min-height: 80px;
    min-width: 182px;
    float: none;
    margin: 0 auto;
  }
  .boxblock-bearingWidthDDLLeft {
    min-height: 80px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
  }
}
@media only screen and (orientation: landscape) {
  .boxblock-showSupportPliesDDL {
    min-height: 70px;
    min-width: 220px;
  }
  .boxblock-skewDialogFieldset {
    min-height: 195px;
    min-width: 220px;
  }
  .boxblock-offsetDialogFieldset {
    min-height: 160px;
    min-width: 220px;
    margin-top: 10px;
  }
  .boxblock-pitchDialogFieldset {
    min-width: 220px;
  }
  .boxblock-bearingWidthDDLRight {
    min-height: 80px;
    min-width: 204px;
    float: left;
    margin: 0 auto;
  }
  .boxblock-bearingWidthDDLLeft {
    min-height: 180px;
    min-width: 220px;
    float: left;
    margin: 0 auto;
  }
}
@media (min-width: 360px) and (orientation: landscape) {
  .boxblock-bearingWidthDDL {
    min-height: 220px;
    min-width: 220px;
    float: left;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-connectorDialogSupportDepth {
    min-height: 205px;
    min-width: 220px;
  }
}
@media (max-width: 481px) and (max-height: 321px) and (orientation: landscape) {
  .boxblock {
    min-height: 160px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-bearingWidth {
    min-height: 220px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-connectorDialogSupportDepth {
    min-height: 150px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
    margin-bottom: 10px;
  }
  .boxblock-skewDialogFieldset {
    min-height: 195px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-pitchDialogFieldset {
    min-height: 147px;
    min-width: 220px;
    padding-left: 0px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-offsetDialogFieldset {
    min-height: 160px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-concealedFlangeFieldset {
    min-height: 180px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
    padding: 0px;
  }
  .boxblock-bearingWidthDDLRight {
    min-height: 80px;
    min-width: 182px;
    float: none;
    margin: 0 auto;
  }
  .boxblock-bearingWidthDDLLeft {
    min-height: 80px;
    min-width: 220px;
    float: none;
    margin: 0 auto;
  }
}

@media (orientation: landscape) {
  .jobsidenav {
    padding-top: 30px;
  }
}
@media (max-width: 321px) and (min-height: 560px) and (orientation: portrait) {
  .rotateGraph {
    top: 18vh;
    left: -37%;
  }
}
@media (max-width: 321px) and (max-height: 480px) and (orientation: portrait) {
  .rotateGraph {
    top: 18vh;
    left: -26%;
  }
}
@media (min-width: 362px) and (max-width: 376px) and (orientation: portrait) {
  .rotateGraph {
    top: 22.5vh !important;
    left: -46% !important;
  }
}
@media (min-width: 377px) and (max-width: 425px) and (orientation: portrait) {
  .rotateGraph {
    top: 24vh;
    left: -43%;
  }
}

@media (min-width: 320px) {
  .jobSummaryContainer .containerName {
    max-width: 55%;
  }
}
@media (min-width: 375px) {
  .jobSummaryContainer .containerName {
    max-width: 55%;
  }
}
@media (min-width: 411px) {
  .jobSummaryContainer .containerName {
    max-width: 65%;
  }
}
@media (min-width: 414px) {
  .jobSummaryContainer .containerName {
    max-width: 67%;
  }
}
@media (min-width: 768px) {
  .jobSummaryContainer .containerName {
    max-width: 82%;
  }
}
@media (min-width: 1024px) {
  .jobSummaryContainer .containerName {
    max-width: 87%;
  }
}

@font-face {
  font-family: 'forteWebFont';
  src: url('/fonts/forteWebFont.eot?9gbq2');
  src: url('/fonts/forteWebFont.eot?9gbq2#iefix') format('embedded-opentype'), url('/fonts/forteWebFont.ttf?9gbq2') format('truetype'), url('/fonts/forteWebFont.woff?9gbq2') format('woff'), url('/fonts/forteWebFont.svg?9gbq2#forteWebFont') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="forteIcon-"],
[class*=" forteIcon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'forteWebFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.forteIcon-job-file .path1:before {
  content: "\e924";
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-job-file .path2:before {
  content: "\e925";
  margin-left: -1em;
  color: none;
}
.forteIcon-job-file .path3:before {
  content: "\e926";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-job-file .path4:before {
  content: "\e927";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_hip-valley .path1:before {
  content: "\e928";
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path2:before {
  content: "\e945";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path3:before {
  content: "\e946";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path4:before {
  content: "\e947";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path5:before {
  content: "\e948";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_hip-valley .path6:before {
  content: "\e949";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_hip-valley .path7:before {
  content: "\e94a";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_hip-valley .path8:before {
  content: "\e94b";
  margin-left: -1em;
  color: #ffffff;
}
.forteIcon-roof_hip-valley .path9:before {
  content: "\e94c";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_hip-valley .path10:before {
  content: "\e94d";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_hip-valley .path11:before {
  content: "\e94e";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-beam .path1:before {
  content: "\e902";
  color: #dae3e6;
}
.forteIcon-beam .path2:before {
  content: "\e903";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-beam .path3:before {
  content: "\e904";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-beam .path4:before {
  content: "\e905";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-beam .path5:before {
  content: "\e906";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-beam .path6:before {
  content: "\e907";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.4;
}
.forteIcon-beam .path7:before {
  content: "\e908";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.4;
}
.forteIcon-column .path1:before {
  content: "\e909";
  color: #dae3e6;
}
.forteIcon-column .path2:before {
  content: "\e90a";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-column .path3:before {
  content: "\e90b";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-column .path4:before {
  content: "\e90c";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-column .path5:before {
  content: "\e90d";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.4;
}
.forteIcon-column .path6:before {
  content: "\e90e";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.4;
}
.forteIcon-column .path7:before {
  content: "\e90f";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-floor_drop-beam .path1:before {
  content: "\e910";
  color: #ea971f;
}
.forteIcon-floor_drop-beam .path2:before {
  content: "\e911";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_drop-beam .path3:before {
  content: "\e912";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_drop-beam .path4:before {
  content: "\e913";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-floor_drop-beam .path5:before {
  content: "\e914";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-floor_drop-beam .path6:before {
  content: "\e915";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_drop-beam .path7:before {
  content: "\e916";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_flush-beam .path1:before {
  content: "\e917";
  color: #dae3e6;
}
.forteIcon-floor_flush-beam .path2:before {
  content: "\e918";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_flush-beam .path3:before {
  content: "\e919";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-floor_flush-beam .path4:before {
  content: "\e91a";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-floor_flush-beam .path5:before {
  content: "\e91b";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-floor_flush-beam .path6:before {
  content: "\e91c";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_flush-beam .path7:before {
  content: "\e91d";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-floor_joist .path1:before {
  content: "\e91e";
  color: #ea971f;
}
.forteIcon-floor_joist .path2:before {
  content: "\e91f";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-floor_joist .path3:before {
  content: "\e920";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-floor_joist .path4:before {
  content: "\e921";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-floor_joist .path5:before {
  content: "\e922";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-floor_joist .path6:before {
  content: "\e923";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-level .path1:before {
  content: "\e929";
  color: #dae3e6;
}
.forteIcon-level .path2:before {
  content: "\e92a";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-level .path3:before {
  content: "\e92b";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-level .path4:before {
  content: "\e92c";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-level .path5:before {
  content: "\e92d";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-level .path6:before {
  content: "\e92e";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-level .path7:before {
  content: "\e92f";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-level .path8:before {
  content: "\e930";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-level .path9:before {
  content: "\e931";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-post_free-standing .path1:before {
  content: "\e932";
  color: #dae3e6;
}
.forteIcon-post_free-standing .path2:before {
  content: "\e933";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-post_free-standing .path3:before {
  content: "\e934";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_drop-beam .path1:before {
  content: "\e935";
  color: #dae3e6;
}
.forteIcon-roof_drop-beam .path2:before {
  content: "\e936";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_drop-beam .path3:before {
  content: "\e937";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_drop-beam .path4:before {
  content: "\e938";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_drop-beam .path5:before {
  content: "\e939";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_drop-beam .path6:before {
  content: "\e93a";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_drop-beam .path7:before {
  content: "\e93b";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_drop-beam .path8:before {
  content: "\e93c";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_flush-beam .path1:before {
  content: "\e93d";
  color: #dae3e6;
}
.forteIcon-roof_flush-beam .path2:before {
  content: "\e93e";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_flush-beam .path3:before {
  content: "\e93f";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_flush-beam .path4:before {
  content: "\e940";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_flush-beam .path5:before {
  content: "\e941";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_flush-beam .path6:before {
  content: "\e942";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_flush-beam .path7:before {
  content: "\e943";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_flush-beam .path8:before {
  content: "\e944";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_joist .path1:before {
  content: "\e950";
  color: #dae3e6;
}
.forteIcon-roof_joist .path2:before {
  content: "\e951";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_joist .path3:before {
  content: "\e952";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_joist .path4:before {
  content: "\e953";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_joist .path5:before {
  content: "\e954";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-roof_joist .path6:before {
  content: "\e955";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_joist .path7:before {
  content: "\e956";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-roof_joist .path8:before {
  content: "\e957";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-roof_joist .path9:before {
  content: "\e958";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_column .path1:before {
  content: "\e959";
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path2:before {
  content: "\e95a";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path3:before {
  content: "\e95b";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path4:before {
  content: "\e95c";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path5:before {
  content: "\e95d";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path6:before {
  content: "\e95e";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path7:before {
  content: "\e95f";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_column .path8:before {
  content: "\e960";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_column .path9:before {
  content: "\e961";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_column .path10:before {
  content: "\e962";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_column .path11:before {
  content: "\e963";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_header .path1:before {
  content: "\e964";
  color: #dae3e6;
}
.forteIcon-wall_header .path2:before {
  content: "\e965";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_header .path3:before {
  content: "\e966";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_header .path4:before {
  content: "\e967";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_header .path5:before {
  content: "\e968";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_stud .path1:before {
  content: "\e969";
  color: #ea971f;
}
.forteIcon-wall_stud .path2:before {
  content: "\e96a";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_stud .path3:before {
  content: "\e96b";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_stud .path4:before {
  content: "\e96c";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_stud .path5:before {
  content: "\e96d";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_stud .path6:before {
  content: "\e96e";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_stud .path7:before {
  content: "\e96f";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_stud .path8:before {
  content: "\e970";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_wind-still .path1:before {
  content: "\e971";
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path2:before {
  content: "\e972";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path3:before {
  content: "\e973";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path4:before {
  content: "\e974";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path5:before {
  content: "\e975";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path6:before {
  content: "\e976";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_wind-still .path7:before {
  content: "\e977";
  margin-left: -1em;
  color: #ea971f;
}
.forteIcon-wall_wind-still .path8:before {
  content: "\e978";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path9:before {
  content: "\e979";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_wind-still .path10:before {
  content: "\e97a";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-wall_wind-still .path11:before {
  content: "\e97b";
  margin-left: -1em;
  color: #dae3e6;
  opacity: 0.5;
}
.forteIcon-wall_wind-still .path12:before {
  content: "\e97c";
  margin-left: -1em;
  color: #dae3e6;
}
.forteIcon-matman:before {
  content: "\e901";
}
.forteIcon-selectAll:before {
  content: "\e900";
}


/*# sourceMappingURL=mainMobile.b4d94e8c62436fe2acf1.css.map*/