@charset "UTF-8";
/* custom mixins */
@font-face {
  font-family: 'CenturyGothic';
  src: url("../fonts/century-gothic/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../fonts/century-gothic/CenturyGothic.woff") format("woff"), url("../fonts/century-gothic/CenturyGothic.ttf") format("truetype"), url("../fonts/century-gothic/CenturyGothic.svg#CenturyGothic") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'CenturyGothic-Bold';
  src: url("../fonts/century-gothic/CenturyGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/century-gothic/CenturyGothic-Bold.woff") format("woff"), url("../fonts/century-gothic/CenturyGothic-Bold.ttf") format("truetype"), url("../fonts/century-gothic/CenturyGothic-Bold.svg#CenturyGothic-Bold") format("svg");
  font-weight: normal;
  font-style: normal; }
/*!
 * 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
 */
/*this is used in live only*/
.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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    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(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: 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(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: 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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
@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.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
.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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: 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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: 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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  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(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -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(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -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(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.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.5.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/font-awesome/fontawesome-webfont.eot?v=4.5.0");
  src: url("../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../fonts/font-awesome/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../fonts/font-awesome/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../fonts/font-awesome/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../fonts/font-awesome/fontawesome-webfont.svg?v=4.5.0#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.33333em;
  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.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  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 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* 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: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

/* ####### CSS for header Starts ####### */
#headerCntr {
  float: left;
  width: 100%;
  font-family: 'CenturyGothic';
  z-index: 9;
  background: #096bcd; }
  #headerCntr .header-top {
    background: #024890;
    padding: 0 0;
    position: relative; }
    #headerCntr .header-top.canon-header {
      background: white;
      background: -moz-linear-gradient(top, white 0%, #f6f6f6 47%, #d4d4d4 100%);
      background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(47%, #f6f6f6), color-stop(100%, #d4d4d4));
      background: -webkit-linear-gradient(top, white 0%, #f6f6f6 47%, #d4d4d4 100%);
      background: -o-linear-gradient(top, white 0%, #f6f6f6 47%, #d4d4d4 100%);
      background: -ms-linear-gradient(top, white 0%, #f6f6f6 47%, #d4d4d4 100%);
      background: linear-gradient(to bottom, white 0%, #f6f6f6 47%, #d4d4d4 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d4d4d4', GradientType=0 ); }
    #headerCntr .header-top .container-fluid {
      padding-left: 2%;
      padding-right: 2%; }
    #headerCntr .header-top .logoArea {
      padding: 0;
      float: left; }
      #headerCntr .header-top .logoArea a {
        width: 280px;
        padding: 9px 15px;
        display: block; }
        #headerCntr .header-top .logoArea a img {
          vertical-align: -webkit-baseline-middle;
          max-height: 30px;
          margin-top: 3px;
          max-width: 100%; }
    #headerCntr .header-top .poweredBy {
      padding: 15px 10px;
      display: inline-block;
      font-family: Arial; }
    #headerCntr .header-top .userpic {
      margin: 10px 20px;
      position: relative;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      background: #096bcd;
      display: inline-block;
      height: 30px;
      width: 30px;
      border: 2px solid #B9B9B9; }
      #headerCntr .header-top .userpic a {
        display: inline; }
        #headerCntr .header-top .userpic a img.img-circle {
          width: 100%;
          height: 100%; }
      #headerCntr .header-top .userpic .custom-dropdown {
        width: 380px;
        right: -7px;
        left: inherit;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
        min-width: 200px;
        margin: 16px 0 0;
        border-radius: 0 0 4px 4px; }
        #headerCntr .header-top .userpic .custom-dropdown:before {
          left: inherit;
          right: 10px; }
        #headerCntr .header-top .userpic .custom-dropdown .user-picture {
          border: 4px solid #c0c0c1;
          display: inline-block;
          width: 130px;
          height: 130px;
          background: #d6d6d6; }
          #headerCntr .header-top .userpic .custom-dropdown .user-picture img {
            max-width: 100%; }
        #headerCntr .header-top .userpic .custom-dropdown .user-links {
          display: inline-block;
          padding-left: 15px;
          width: 193px; }
          #headerCntr .header-top .userpic .custom-dropdown .user-links ul {
            margin: 0px;
            padding: 0px;
            line-height: 20px; }
            #headerCntr .header-top .userpic .custom-dropdown .user-links ul li {
              font-size: 16px;
              font-family: 'CenturyGothic-Bold';
              max-width: 100%;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap; }
              #headerCntr .header-top .userpic .custom-dropdown .user-links ul li.user-name {
                color: #434343;
                padding: 10px 0 5px 0px; }
              #headerCntr .header-top .userpic .custom-dropdown .user-links ul li a {
                color: #215394;
                padding: 2px 0px;
                display: block;
                width: 100%;
                height: auto;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap; }
                #headerCntr .header-top .userpic .custom-dropdown .user-links ul li a:hover {
                  background: none;
                  color: #434343;
                  -webkit-transition: color 0.25s ease-in-out;
                  -moz-transition: color 0.25s ease-in-out;
                  -ms-transition: color 0.25s ease-in-out;
                  -o-transition: color 0.25s ease-in-out;
                  transition: color 0.25s ease-in-out; }
  #headerCntr .custom-navigations {
    border: 0px;
    padding: 0 3%;
    border-radius: 0;
    background: transparent;
    margin-bottom: 0; }
    #headerCntr .custom-navigations .inner-nav {
      display: block;
      margin: 0 15px; }
    #headerCntr .custom-navigations .nav-backdrop {
      height: 100%;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 4;
      display: none; }
    #headerCntr .custom-navigations .navbar-header {
      margin: 0 !important;
      position: absolute;
      right: 0;
      top: -60px; }
      #headerCntr .custom-navigations .navbar-header .navbar-toggle {
        background: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0 17px; }
        #headerCntr .custom-navigations .navbar-header .navbar-toggle i {
          color: #ffffff;
          cursor: pointer;
          font-size: 24px;
          line-height: 52px; }
    #headerCntr .custom-navigations .navbar-nav {
      margin: 0 -25px; }
      #headerCntr .custom-navigations .navbar-nav li.active a, #headerCntr .custom-navigations .navbar-nav li:hover a {
        background: none;
        color: #fff;
        -webkit-transition: color 0.25s ease-in-out;
        -moz-transition: color 0.25s ease-in-out;
        -ms-transition: color 0.25s ease-in-out;
        -o-transition: color 0.25s ease-in-out;
        transition: color 0.25s ease-in-out; }
      #headerCntr .custom-navigations .navbar-nav li a {
        color: #84b5e6;
        font-size: 14px;
        padding: 15px 25px 15px 10px;
        line-height: 17px; }
        #headerCntr .custom-navigations .navbar-nav li a span.caret {
          display: none; }
      #headerCntr .custom-navigations .navbar-nav li.open a {
        background-color: transparent;
        color: #fff; }
      #headerCntr .custom-navigations .navbar-nav li .custom-dropdown li a {
        font-size: 15px;
        color: #424242;
        padding: 8px 20px; }
        #headerCntr .custom-navigations .navbar-nav li .custom-dropdown li a:hover {
          background: #f2f1f3;
          color: #024890; }
      #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .all-alphabet-group {
        width: 600px; }
        #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .all-alphabet-group a {
          color: #096BCD;
          padding: 10px;
          font-size: 14px;
          display: block; }
      #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group {
        background: #024890; }
        #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group ul {
          margin: 0px;
          padding: 0px; }
        #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group li {
          padding: 0px; }
          #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group li a {
            color: #fff;
            padding: 5px 10px;
            display: block;
            font-size: 14px; }
            #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group li a.fa {
              font-size: 19px; }
            #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group li a:hover {
              background: #096BCD; }
          #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .alphabet-group li.active a {
            text-decoration: none;
            background: #2288ED;
            color: #fff; }
      #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .sort-content {
        margin: 5px 5px 0 5px; }
        #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .sort-content ul {
          margin: 0px;
          padding: 0px; }
          #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .sort-content ul li {
            padding: 0px;
            width: 283px;
            margin: 4px 5px; }
            #headerCntr .custom-navigations .navbar-nav li .custom-dropdown.topicBlock .sort-content ul li a {
              display: block;
              background: #F2F1F3;
              padding: 5px 10px;
              white-space: nowrap;
              overflow: hidden;
              color: #424242;
              text-overflow: ellipsis; }
  #headerCntr .navbar-right-area {
    padding: 0 3%; }
    #headerCntr .navbar-right-area .header-right {
      display: inline-block;
      float: right;
      margin: 6px 0; }
      #headerCntr .navbar-right-area .header-right .searchBlock {
        margin-bottom: 0; }
      #headerCntr .navbar-right-area .header-right .searchBar {
        position: relative;
        display: inline-block;
        margin-bottom: 0;
        padding: 0 0; }
        #headerCntr .navbar-right-area .header-right .searchBar .form-control {
          background-color: #0559ae;
          border: 0 none;
          color: #ffffff;
          height: 35px;
          padding-right: 36px;
          width: 300px; }
        #headerCntr .navbar-right-area .header-right .searchBar button {
          background-color: transparent;
          border: 0 none;
          display: block;
          height: 36px;
          margin: 0 auto;
          position: absolute;
          right: 10px;
          top: 0;
          width: 36px; }
          #headerCntr .navbar-right-area .header-right .searchBar button .icon-search {
            width: 34px;
            height: 34px;
            display: block;
            background-position: 0 0;
            color: transparent; }
  #headerCntr .morebtn {
    display: none;
    color: #fff;
    padding: 3px 15px;
    cursor: pointer;
    font-size: 24px; }

.notification {
  position: absolute;
  padding: 0;
  right: 15px;
  top: 8px;
  line-height: 34px;
  font-family: 'CenturyGothic'; }
  .notification.onHomePage {
    position: relative;
    top: 7px; }
  .notification .notify {
    background: #eec672;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 20px;
    min-width: 35px;
    height: 35px;
    padding: 0 4px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }
  .notification .custom-dropdown {
    right: -5px;
    left: inherit;
    padding: 0px;
    margin-top: 7px; }
    .notification .custom-dropdown:before {
      left: inherit;
      top: -9px;
      right: 13px;
      border-color: transparent transparent #e4e5e8 transparent;
      border-width: 0 9px 9px 9px; }
    .notification .custom-dropdown .todo-list-header {
      font-family: 'CenturyGothic-Bold';
      font-size: 16px;
      background: #e4e5e8;
      padding: 15px 20px;
      color: #424242;
      margin-bottom: 5px; }
    .notification .custom-dropdown .child {
      max-height: 300px; }
    .notification .custom-dropdown li.child li:hover .inner {
      background: #F2F1F3; }
    .notification .custom-dropdown li.child li:hover.overDueToDoList .inner {
      background: #F2DEDF;
      display: block; }
    .notification .custom-dropdown li.overDueToDoList .inner {
      background: #F2DEDF;
      display: block; }
    .notification .custom-dropdown li .inner {
      display: block;
      float: left;
      padding: 5px 30px 5px 60px;
      margin: 7px;
      position: relative; }
      .notification .custom-dropdown li .inner span {
        position: absolute;
        left: 20px;
        display: inline-block;
        text-align: center;
        padding: 8px 15px;
        float: left;
        color: #FFF;
        top: 6px;
        left: 10px; }
        .notification .custom-dropdown li .inner span.red {
          background: #f15d58; }
        .notification .custom-dropdown li .inner span.yellow {
          background: #fec542; }
        .notification .custom-dropdown li .inner span.green {
          background: #78a941; }
        .notification .custom-dropdown li .inner span.blue {
          background: #096bcd; }
        .notification .custom-dropdown li .inner span.collect {
          background: #ed4cef; }
        .notification .custom-dropdown li .inner span.approve {
          background: #590FC4; }
      .notification .custom-dropdown li .inner .to-do-list-content {
        display: inline-block;
        float: left;
        width: 380px; }
        .notification .custom-dropdown li .inner .to-do-list-content a {
          padding: 0px; }
        .notification .custom-dropdown li .inner .to-do-list-content h4 {
          font-size: 15px;
          margin: 0 0 0 0;
          line-height: 18px;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis; }
        .notification .custom-dropdown li .inner .to-do-list-content small {
          color: #a9aaa9;
          font-size: 14px; }
      .notification .custom-dropdown li .inner button {
        border: 0px;
        background: none;
        position: absolute;
        top: 8px;
        right: -20px;
        opacity: 0; }
        .notification .custom-dropdown li .inner button i.icon-delete {
          font-style: normal;
          color: #706B6B;
          font-size: 18px;
          margin: 0; }
      .notification .custom-dropdown li .inner:hover button {
        transition: 0.2s;
        right: 5px;
        opacity: 1; }
    .notification .custom-dropdown .todo-list-footer {
      margin: 5px 20px;
      border-top: 1px solid #E4E3E4; }
      .notification .custom-dropdown .todo-list-footer span {
        font-family: 'CenturyGothic-Bold';
        font-size: 15px;
        padding: 15px 5px;
        color: #034890;
        cursor: pointer;
        width: 100%;
        overflow: hidden;
        float: left; }
    .notification .custom-dropdown .completed-assignments, .notification .custom-dropdown .completed-assign-heading {
      display: none; }

    .view_percent{
        right: auto !important;
        left: 5px;
    }

    .view_percent.exclaim{
      left: 11px;
    }

    .insert_edit_img label , .insert_edit_img input {
        position: static !important;
        line-height: 28px !important;
        height: auto !important;
    }
    .insert_edit_img label{
        padding: 0 2px;
        text-align: center;
    }
    .insert_edit_img label.mce-first{
        padding: 0;
        width: 130px !important;
        text-align: left;
    }

    .insert_edit_img .mce-last{
        float: right;
    }

    .insert_edit_img label , .insert_edit_img input {
        position: static !important;
        line-height: 28px !important;
        height: auto !important;
    }
    .insert_edit_img label{
        padding: 0 2px;
        text-align: center;
    }
    .insert_edit_img label.mce-first{
        padding: 0;
        width: 130px !important;
        text-align: left;
    }

    .insert_edit_img .mce-last{
        float: right;
    }

/* ####### CSS for Tablet and small Desktop Starts ####### */
@media only screen and (max-width: 992px) {
  #headerCntr .custom-navigations .navbar-nav {
    margin: 0 0 0 -15px; }
    #headerCntr .custom-navigations .navbar-nav li a {
      padding: 15px 12px; }
    #headerCntr .custom-navigations .navbar-nav li .custom-dropdown {
      left: 10px; }

  .notification .custom-dropdown .todo-list-header {
    padding: 15px; }
  .notification .custom-dropdown .todo-list-footer {
    margin: 5px 15px; }
  .notification .custom-dropdown li .inner {
    padding-left: 55px;
    padding-right: 25px; }
    .notification .custom-dropdown li .inner .to-do-list-content {
      width: 250px; } }

/* mayank Requirment */

@media only screen and (max-width: 767px) {
  #headerCntr .header-top .logoArea {
    width: auto;
    float: left; }
    #headerCntr .header-top .logoArea a {
      padding-left: 0;
      padding-right: 0;
      width: auto;
      float: left;
      display: inline-block; }
      #headerCntr .header-top .logoArea a img {
        max-width: 250px; }
  #headerCntr .header-top .userpic {
    margin-right: 0; }
    #headerCntr .header-top .userpic .custom-dropdown {
      width: 260px;
      padding: 10px; }
      #headerCntr .header-top .userpic .custom-dropdown:before {
        right: 10px; }
      #headerCntr .header-top .userpic .custom-dropdown .user-picture {
        height: 90px;
        width: 90px; }
  #headerCntr .custom-navigations {
    min-height: 0; }
    #headerCntr .custom-navigations .navbar-header {
      margin: 0 !important;
      position: absolute;
      right: 3px;
      top: 1px; }
    #headerCntr .custom-navigations .navbar-collapse {
      border-top: none;
      position: fixed;
      right: -300px;
      height: 100% !important;
      width: 300px;
      background: #fff;
      z-index: 99999;
      padding: 0;
      transition: all 0.3s ease;
      margin: 0;
      top: 0;
      box-shadow: 0 0 12px #B6B6B6;
      -webKit-box-shadow: 0 0 12px #B6B6B6;
      -moz-box-shadow: 0 0 12px #B6B6B6; }
      #headerCntr .custom-navigations .navbar-collapse.in {
        right: 0px; }
      #headerCntr .custom-navigations .navbar-collapse ul {
        margin: 0; }
    #headerCntr .custom-navigations .navbar-nav li {
      border-bottom: 1px solid #2288ed;
      display: block;
      overflow: hidden;
      width: 100%; }
      #headerCntr .custom-navigations .navbar-nav li a {
        background: #096bcd;
        color: #ffffff;
        display: block;
        padding: 10px;
        font-size: 14px; }
        #headerCntr .custom-navigations .navbar-nav li a span.caret {
          float: right;
          margin: 8px 10px 0;
          display: inline-block; }
      #headerCntr .custom-navigations .navbar-nav li:hover a {
        background: #2288ed;
        text-decoration: none;
        color: #ffffff;
        -webkit-transition: color 0.25s ease-in-out;
        -moz-transition: color 0.25s ease-in-out;
        -ms-transition: color 0.25s ease-in-out;
        -o-transition: color 0.25s ease-in-out;
        transition: color 0.25s ease-in-out; }
      #headerCntr .custom-navigations .navbar-nav li.active a {
        background: #2288ed !important;
        text-decoration: none;
        color: #ffffff; }
      #headerCntr .custom-navigations .navbar-nav li.active:hover a {
        background: #2288ed !important;
        text-decoration: none;
        color: #ffffff; }
      #headerCntr .custom-navigations .navbar-nav li.open a {
        background: #096bcd; }
      #headerCntr .custom-navigations .navbar-nav li .topicBlock {
        position: static;
        width: 100%;
        margin: 0;
        box-shadow: none;
        padding: 0;
        background: #fff;
        border: 0px;
        border-radius: 0; }
        #headerCntr .custom-navigations .navbar-nav li .topicBlock li {
          border-bottom: 1px solid #E4E5E8; }
          #headerCntr .custom-navigations .navbar-nav li .topicBlock li a {
            font-size: 14px;
            color: #424242;
            background: #FFF;
            padding: 10px; }
            #headerCntr .custom-navigations .navbar-nav li .topicBlock li a:hover {
              background: #2288ED;
              color: #FFF; }
        #headerCntr .custom-navigations .navbar-nav li .topicBlock .all-alphabet-group a {
          color: #096BCD;
          padding: 10px;
          font-size: 14px;
          display: block;
          background: #FFF; }
        #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group {
          background: #FFF !important; }
          #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group ul {
            margin: 0px 10px !important;
            padding: 0px; }
          #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group li {
            padding: 0px;
            display: inline-block;
            width: auto; }
            #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group li a {
              color: #fff;
              padding: 5px 10px;
              display: block;
              font-size: 14px;
              background: #096bcd; }
              #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group li a.fa {
                font-size: 19px; }
            #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group li.active a {
              text-decoration: none;
              background: #2288ED;
              color: #fff; }
            #headerCntr .custom-navigations .navbar-nav li .topicBlock .alphabet-group li:hover a {
              text-decoration: none;
              background: #2288ED !important; }
        #headerCntr .custom-navigations .navbar-nav li .topicBlock .sort-content {
          margin: 5px;
          max-height: 300px; }
          #headerCntr .custom-navigations .navbar-nav li .topicBlock .sort-content ul {
            margin: 0px;
            padding: 0 0 5px !important; }
            #headerCntr .custom-navigations .navbar-nav li .topicBlock .sort-content ul li {
              padding: 0px;
              width: 283px;
              margin: 4px 5px;
              border: 0px; }
              #headerCntr .custom-navigations .navbar-nav li .topicBlock .sort-content ul li a {
                display: block;
                background: #F2F1F3;
                padding: 5px 10px;
                white-space: nowrap;
                overflow: hidden;
                color: #424242;
                text-overflow: ellipsis; }
      #headerCntr .custom-navigations .navbar-nav li .manage-dropdown {
        padding: 0; }
        #headerCntr .custom-navigations .navbar-nav li .manage-dropdown li {
          border-bottom: 1px solid #E4E5E8; }
          #headerCntr .custom-navigations .navbar-nav li .manage-dropdown li a {
            font-size: 14px;
            color: #424242;
            background: #fff !important; }
            #headerCntr .custom-navigations .navbar-nav li .manage-dropdown li a i {
              margin: 0 10px 0 0;
              width: 15px;
              text-align: center;
              display: inline-block; }
            #headerCntr .custom-navigations .navbar-nav li .manage-dropdown li a:hover {
              text-decoration: none;
              background: #2288ED;
              color: #fff;
              -webkit-transition: color 0.25s ease-in-out;
              -moz-transition: color 0.25s ease-in-out;
              -ms-transition: color 0.25s ease-in-out;
              -o-transition: color 0.25s ease-in-out;
              transition: color 0.25s ease-in-out; }
          #headerCntr .custom-navigations .navbar-nav li .manage-dropdown li:hover a {
            background: #2288ED !important; }
      #headerCntr .custom-navigations .navbar-nav li:last-child {
        border: none; }
  #headerCntr .navbar-right-area .header-right {
    width: calc(100% - 80px);
    margin: 10px 0;
    padding: 0;
    float: left !important; }
    #headerCntr .navbar-right-area .header-right .userpic {
      display: none; }
    #headerCntr .navbar-right-area .header-right .searchBar {
      padding: 0 15px;
      float: left;
      width: 100%; }
      #headerCntr .navbar-right-area .header-right .searchBar button {
        right: 18px;
        top: -1px; }
        #headerCntr .navbar-right-area .header-right .searchBar button i {
          right: 10px; }
      #headerCntr .navbar-right-area .header-right .searchBar .form-control {
        width: 100% !important; }
  #headerCntr .morebtn {
    display: block; }

  .notification.onHomePage {
    top: 9px;
    right: 39px; } }
@media only screen and (max-width: 479px) {
  .notification .custom-dropdown .todo-list-header {
    padding: 15px; }
  .notification .custom-dropdown .todo-list-footer {
    margin: 5px 15px; }
  .notification .custom-dropdown li .inner {
    padding-left: 50px;
    padding-right: 35px;
    margin: 5px; }
    .notification .custom-dropdown li .inner span {
      left: 5px; }
    .notification .custom-dropdown li .inner .to-do-list-content {
      width: 200px; } }
@media only screen and (max-width: 380px) {
  .notification .custom-dropdown li .inner .to-do-list-content {
    width: 180px; } }
/* ####### CSS for header Starts ####### */
.topbar {
  background: #555555;
  float: left;
  position: relative;
  width: 100%; }
  .topbar .practiceTitle {
    line-height: 40px;
    max-width: 100%;
    color: #fff;
    margin-right: 190px;
    font-size: 16px; }
  .topbar .left {
    float: left; }
    .topbar .left ul {
      margin: 0; }
      .topbar .left ul li {
        padding: 0 17px;
        line-height: 40px; }
        .topbar .left ul li a {
          color: #e2e2e2;
          font-size: 16px;
          display: inline-block; }
          .topbar .left ul li a i {
            font-size: 15px;
            color: #fff;
            margin-right: 5px; }
          .topbar .left ul li a:hover {
            color: #aaa; }
            .topbar .left ul li a:hover i {
              color: #aaa; }
        .topbar .left ul li:first-child {
          padding-left: 0; }
        .topbar .left ul li .dropdown-menu {
          background: #555555;
          border-radius: 0;
          border: none;
          padding: 0; }
          .topbar .left ul li .dropdown-menu li {
            padding: 0px;
            border-bottom: 1px solid #222222; }
            .topbar .left ul li .dropdown-menu li a {
              padding: 10px 15px; }
            .topbar .left ul li .dropdown-menu li:hover a {
              background: none;
              color: #aaa;
              -webkit-transition: color 0.25s ease-in-out;
              -moz-transition: color 0.25s ease-in-out;
              -ms-transition: color 0.25s ease-in-out;
              -o-transition: color 0.25s ease-in-out;
              transition: color 0.25s ease-in-out; }
            .topbar .left ul li .dropdown-menu li:last-child {
              border: none; }
  .topbar .right {
    float: right; }
  .topbar .linkDivider {
    position: relative;
    border-left: 3px solid #484848;
    height: 40px;
    right: 104px;
    position: absolute;
    top: 0px; }
    .topbar .linkDivider .previousTopic, .topbar .linkDivider .nextTopic {
      color: #fff;
      font-size: 15px;
      display: block;
      position: absolute;
      top: 9px;
      width: 80px;
      left: -92px; }
      .topbar .linkDivider .previousTopic i, .topbar .linkDivider .nextTopic i {
        font-size: 16px;
        top: 4px;
        position: relative; }
      .topbar .linkDivider .previousTopic:hover, .topbar .linkDivider .nextTopic:hover {
        color: #aaa;
        -webkit-transition: color 0.25s ease-in-out;
        -moz-transition: color 0.25s ease-in-out;
        -ms-transition: color 0.25s ease-in-out;
        -o-transition: color 0.25s ease-in-out;
        transition: color 0.25s ease-in-out; }
    .topbar .linkDivider .nextTopic {
      width: 52px;
      left: auto;
      right: -59px; }
  .topbar .openSidebar {
    display: table;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 40px;
    color: #ffffff;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    outline: none; }
    .topbar .openSidebar i {
      display: table-cell;
      vertical-align: middle; }
    .topbar .openSidebar.active {
      transform: rotate(180deg); }
    .topbar .openSidebar:hover {
      color: #aaa;
      -webkit-transition: color 0.25s ease-in-out;
      -moz-transition: color 0.25s ease-in-out;
      -ms-transition: color 0.25s ease-in-out;
      -o-transition: color 0.25s ease-in-out;
      transition: color 0.25s ease-in-out; }

/* ####### CSS for Tablet and small Desktop Starts ####### */
@media only screen and (max-width: 990px) {
  .topbar .right a.previous-video-link {
    padding: 0 14px; }
  .topbar .left-menu-toggle {
    border-right: 3px solid #484848;
    color: #ffffff;
    display: inline-block;
    float: left;
    font-size: 32px;
    left: 0;
    line-height: 40px;
    padding: 0 13px;
    position: absolute;
    top: 0; } }
@media only screen and (max-width: 767px) {
  /*.topbar {
  	display: none;
  }*/ }
/* ####### CSS for header Starts ####### */
#centerCntr {
  padding: 0 2%;
  /*padding:0 3%;*/
  font-family: 'CenturyGothic'; }
  #centerCntr .view-main-container .nav-tabs {
    border: 0px;
    margin: 0 -25px; }
    #centerCntr .view-main-container .nav-tabs li a {
      color: #000;
      background-color: transparent;
      border: 0;
      font-family: 'CenturyGothic-Bold';
      font-size: 18px;
      padding: 10px 25px 5px 25px;
      cursor: pointer; }
      #centerCntr .view-main-container .nav-tabs li a:hover {
        background-color: transparent; }
      #centerCntr .view-main-container .nav-tabs li a span {
        padding-bottom: 10px; }
    #centerCntr .view-main-container .nav-tabs li.active a, #centerCntr .view-main-container .nav-tabs li:hover a {
      color: #000;
      -webkit-transition: color 0.25s ease-in-out;
      -moz-transition: color 0.25s ease-in-out;
      -ms-transition: color 0.25s ease-in-out;
      -o-transition: color 0.25s ease-in-out;
      transition: color 0.25s ease-in-out; }
      #centerCntr .view-main-container .nav-tabs li.active a span, #centerCntr .view-main-container .nav-tabs li:hover a span {
        border-bottom: 7px solid #eec672;
        -webkit-transition: border-bottom 0.25s ease-in-out;
        -moz-transition: border-bottom 0.25s ease-in-out;
        -ms-transition: border-bottom 0.25s ease-in-out;
        -o-transition: border-bottom 0.25s ease-in-out;
        transition: border-bottom 0.25s ease-in-out; }
  #centerCntr .view-main-container .tab-content {
    padding-top: 30px; }
    #centerCntr .view-main-container .tab-content ul {
      margin: -15px -15px 0 -15px; }
      #centerCntr .view-main-container .tab-content ul li {
        display: inline-block;
        padding-top: 15px;
        padding-bottom: 5px;
        float: left; }

.thumbnail_uplayer {
  padding: 0 0px 20px 30px;
  display: inline-block; }

.merge_thumbnail {
  margin: 0 0 0 -30px; }

.custom-thumbnail {
  padding: 0;
  border: 1px solid #C0C0C0;
  font-family: arial;
  -webkit-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 4px 13px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.25);
  margin-bottom: 0px; }
  .custom-thumbnail .picture-block {
    position: relative;
    height: 270px;
    overflow: hidden;
    background-color: #000; }
    .custom-thumbnail .picture-block img {
      display: block;
      width: auto;
      max-width: 100%;
      margin: 0;
      height: 270px; }
    .custom-thumbnail .picture-block .catgory-duration {
      padding: 10px;
      position: absolute;
      bottom: 0px;
      width: 100%;
      font-size: 14px;
      background: rgba(0, 0, 0, 0.2); }
    .custom-thumbnail .picture-block.imgClass img {
      width: 100%;
      height: auto; }
  .custom-thumbnail .caption {
    padding: 10px;
    font-size: 18px;
    color: #424242;
    font-family: arial; }
    .custom-thumbnail .caption .caption-content {
      height: 60px; }
    .custom-thumbnail .caption .author-name-star {
      /* color set to black for accessibility */
      color: #000; 
      font-size: 14px;
      width: 100%;
      overflow: hidden; }
      .custom-thumbnail .caption .author-name-star .author {
        width: 80%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .custom-thumbnail .caption .author-name-star .rating-block {
        width: 20%;
        text-align: right; }
        .custom-thumbnail .caption .author-name-star .rating-block i {
          font-size: 18px;
          padding-right: 5px; }

/* ####### CSS for Tablet and small Desktop Starts ####### */
@media only screen and (max-width: 1860px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 240px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 240px; } }
/* ####### CSS for Tablet and small Desktop Starts ####### */
@media only screen and (max-width: 1760px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 216px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 216px; } }
@media only screen and (max-width: 1660px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
    height: 80px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
    height: 190px; } }
@media only screen and (max-width: 1560px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block .catgory-duration {
    padding: 10px;
    font-size: 15px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption {
    font-size: 15px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star {
      font-size: 14px; }
      #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star .rating-block i {
        font-size: 15px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
      height: 50px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 180px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 180px; } }
@media only screen and (max-width: 1410px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
    height: 45px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 135px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 135px; } }
@media only screen and (max-width: 1260px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
    height: 45px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 147px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 147px; } }
@media only screen and (max-width: 1199px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block .catgory-duration {
    font-size: 14px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption {
    padding: 10px 15px;
    font-size: 14px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star .author {
      width: 75%; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star .rating-block {
      width: 25%; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
      height: 50px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 225px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 225px; } }
@media only screen and (max-width: 1024px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
    height: 50px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 190px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 190px; } }
@media only screen and (max-width: 850px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption {
    font-size: 13px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
      height: 40px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 176px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 176px; } }
@media only screen and (max-width: 992px) {
  #centerCntr .view-main-container .nav-tabs li a span {
    padding-bottom: 5px; }
  #centerCntr .view-main-container .tab-content {
    padding-top: 20px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star .rating-block i {
      font-size: 14px; } }
@media only screen and (max-width: 767px) {
  #centerCntr .view-main-container .nav-tabs {
    margin: 0 -10px; }
    #centerCntr .view-main-container .nav-tabs li a {
      font-size: 16px;
      padding: 10px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block .catgory-duration {
    font-size: 14px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption {
    font-size: 14px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star {
      font-size: 14px; }
      #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .author-name-star .rating-block i {
        font-size: 14px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
      height: 50px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 190px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 190px; } }
@media only screen and (max-width: 570px) {
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
    height: 70px; }
  #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
    height: 160px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
      height: 160px; } }
@media only screen and (max-width: 479px) {
  #centerCntr .view-main-container .tab-content ul li {
    width: 100%;
    display: block;
    float: none; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
      height: 50px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
      height: 230px; }
      #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
        height: 230px; } }
@media only screen and (max-width: 400px) {
  #centerCntr .view-main-container .tab-content ul li {
    width: 100%;
    display: block;
    float: none; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .caption .caption-content {
      height: 50px; }
    #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block {
      height: 200px; }
      #centerCntr .view-main-container .tab-content ul li .custom-thumbnail .picture-block img {
        height: 200px; } }
/* ####### CSS for header Starts ####### */
.videoTitleBig {
  font-size: 30px;
  color: #424242;
  padding-left: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center; }

.overflow-hidden-div {
  overflow: hidden !important; }

.withOverlay {
  position: relative; }

.audiolisten {
  height: 50px;
  overflow: auto; }

.recordedaudio {
  overflow: auto;
  max-height: 230px; }

.padding0 {
  padding: 0; }

#resolutions-list {
  min-width: 110px; }
  #resolutions-list:before {
    right: auto;
    left: 25px; }
  #resolutions-list li.selected a {
    background: #444;
    color: #fff; }

#resolutions-list:before {
  right: auto;
  left: 25px; }

.overlay-manipulate {
  display: none;
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent; }

.audiocontrol {
  position: absolute;
  color: #fff;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 9;
  padding: 0;
  background: #20292f; }
  .audiocontrol .audiocontent {
    padding: 30px 10px 0 10px;
    margin: 0;
    height: calc(100% - 120px) !important;
    overflow: auto;
    text-align: left; }
    .audiocontrol .viewchatDiv {
      height: calc(100% - 40px) !important;
      }
    .audiocontrol .audiocontent .mCSB_dragger_bar {
      background-color: #777 !important; }
    .audiocontrol .audiocontent .mCSB_draggerRail {
      background-color: #f1f1f1 !important; }
  .audiocontrol .user_chat, .audiocontrol .custmr_chat {
    width: 90%;
    margin: 0 0 20px;
    overflow: hidden; }
  .audiocontrol .audiocontent .img {
    margin: 0 15px 0 0;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url(../images/bot_img.png) center no-repeat;
    background-size: cover; }
    .audiocontrol .audiocontent .img.cst_img {
      margin: 0;
      background-image: url(../images/transprent-image.png); }
  .audiocontrol .audiocontent .chat_pointer.cst_pointer {
    padding: 0 6px 0 0;
    margin: 0 35px 0 0; }
  .audiocontrol .audiocontent .chatting {
    padding: 7px 10px;
    margin: 0 0 0 45px;
    color: #000;
    display: block;
    border-radius: 5px;
    font-size: 12px;
    line-height: 16px;
    position: relative;
    background: #fff; }
    .audiocontrol .audiocontent .chatting:before {
      position: absolute;
      left: -10px;
      top: 10px;
      content: "";
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 0px 15px 10px 0px;
      border-color: transparent #fff transparent transparent; }
    .audiocontrol .audiocontent .chatting.cst_chat {
      margin: 0 45px 0 0;
      color: #fff;
      background: #024890; }
      .audiocontrol .audiocontent .chatting.cst_chat:before {
        position: absolute;
        left: auto;
        right: -10px;
        top: 10px;
        content: "";
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0px 0px 10px 15px;
        border-color: transparent transparent transparent #024890; }
      .audiocontrol .audiocontent .chatting.cst_chat strong, .audiocontrol .audiocontent .chatting.cst_chat img {
        margin-left: 10px;
        position: absolute;
        top: 7px;
        right: 7px;
        cursor: pointer;
        font-size: 16px !important; }
      .audiocontrol .audiocontent .chatting.cst_chat img {margin-left: 10px; width: 20px; height: 20px; margin-right: 6px;}
      .audiocontrol .audiocontent .chatting.cst_chat span {
        width: 88%;
        overflow: hidden;
        display: block; }
  .audiocontrol .mCSB_inside .mCSB_container {
    margin-right: 30px; }
  .audiocontrol .audiofooter {
    padding: 10px 15px;
    text-align: left;
    position: absolute;
    bottom: 25px;
    width: 100%;
    background: #20292f; }
    .audiocontrol .audiofooter .voicerecogni {
      position: relative; }
      .audiocontrol .audiofooter .voicerecogni .hypothesis {
        padding: 6px 45px 5px 20px;
        display: block;
        color: #000;
        border: 0;
        width: 100%;
        border-radius: 8px;
        font-size: 13px;
        line-height: 18px;
        min-height: 29px;
        height: auto;
        overflow: auto;
        background: #fff; }
        .audiocontrol .audiofooter .voicerecogni .hypothesis:before {
          content: attr(data-placeholder);
          color: gray; }
      .audiocontrol .audiofooter .voicerecogni .stopbtn {
        padding: 5px;
        margin: 0;
        position: absolute;
        right: 0px;
        bottom: 0px;
        border: 0;
        border-radius: 10px;
        color: #fff;
        cursor: pointer;
        opacity: 0.8;
        border: 2px solid #fff;
        width: 40px;
        height: 30px;
        background-color: #024890; }
        .audiocontrol .audiofooter .voicerecogni .stopbtn:hover {
          opacity: 1; }
    .audiocontrol .audiofooter .talk_response {
      padding: 0 0 5px 20px;
      font-size: 12px; }
      .audiocontrol .audiofooter .talk_response .talk {
        color: #f8ff2f; }
      .audiocontrol .audiofooter .talk_response .Wait {
        color: #adff2f; }
      .audiocontrol .audiofooter .talk_response span {
        display: block; }
        .audiocontrol .audiofooter .talk_response span i {
          padding: 0 5px 0 0; }

.startinteractive , .wave_form{
  position: absolute;
  top: 47%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%) translateY(-50%);
}

.video-container {
  padding-bottom: 10px;
  margin-bottom: 7px;
  font-family: 'CenturyGothic';
  -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.175);
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.175); }
  /* .video-container.height_320 .video-cntr .videoFlashPlayer {
    height: 320px; } */
  .video-container .video-cntr {
    /* position: relative; */
    margin-left: -15px;
    margin-right: -15px; }
    .video-container .video-cntr .videoTopbar {
      height: 36px;
      /* display: inline-block;
      vertical-align: top; */
      position: relative;
      width: 100%;
      padding: 8px 0;
      z-index: 99;
      top: 0; 
      min-height: 36px;
    }
    .video-container .video-cntr .videoTopbar ul.record1 li .hideChatClass{
        margin:0;
    }
    .video-container .video-cntr .videoTopbar ul.record1 li:last-child{
      position: static;
    }
      .video-container .video-cntr .videoTopbar ul {
        margin: 0; }
        .video-container .video-cntr .videoTopbar ul .troubleshootLink .dropdown-menu:before {
          left: 15px !important; }
        .video-container .video-cntr .videoTopbar ul .troubleshootLink .dot {
          display: none; }
        .video-container .video-cntr .videoTopbar ul li {
          /* float: left; */
          padding: 0px 10px 0px 10px;
          position: relative;
          display: flex;
          align-items: center;
         }
          .video-container .video-cntr .videoTopbar ul li a {
            color: #e2e2e2;
            font-size: 16px;
            /* display: inline-block; */
            padding: 0 5px; 
            display: flex;
            align-items: center;
          }
          .video-container .video-cntr .videoTopbar ul li a .grey-circle{
            margin: 0 ;
          }
            .video-container .video-cntr .videoTopbar ul li a i {
              font-size: 16px; }
            .video-container .video-cntr .videoTopbar ul li a img{width:20px;height:20px}
            .video-container .video-cntr .videoTopbar ul li a:hover {
              color: #aaa;
              -webkit-transition: color 0.25s ease-in-out;
              -moz-transition: color 0.25s ease-in-out;
              -ms-transition: color 0.25s ease-in-out;
              -o-transition: color 0.25s ease-in-out;
              transition: color 0.25s ease-in-out; }
              .video-container .video-cntr .videoTopbar ul li a:hover i {
                color: #aaa;
                -webkit-transition: color 0.25s ease-in-out;
                -moz-transition: color 0.25s ease-in-out;
                -ms-transition: color 0.25s ease-in-out;
                -o-transition: color 0.25s ease-in-out;
                transition: color 0.25s ease-in-out; }
            .video-container .video-cntr .videoTopbar ul li a.redIcon i {
              color: #FF2424; }
            .video-container .video-cntr .videoTopbar ul li a.redIcon:hover i {
              color: #E00C0C; }
          .video-container .video-cntr .videoTopbar ul li.centerAligned {
            position: absolute;
            left: 50%;
            top: 0px;
            margin-left: -21px; }
          .video-container .video-cntr .videoTopbar ul li:first-child {
            padding-left: 5px; }
            .video-container .video-cntr .videoTopbar ul #analyticsItems {
            padding-right: 5px;
            position: absolute;
            right: 0;
           }
          .video-container .video-cntr .videoTopbar ul li .dropdown-menu {
            background: #555555;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            -ms-border-radius: 0px;
            -o-border-radius: 0px;
            border-radius: 0px;
            border: none;
            padding: 0; }
            .video-container .video-cntr .videoTopbar ul li .dropdown-menu li {
              padding: 0px;
              border-bottom: 1px solid #222222;
              float: none;
              display: block !important; }
              .video-container .video-cntr .videoTopbar ul li .dropdown-menu li a {
                padding: 10px 10px;
                width: 100%; }
                .video-container .video-cntr .videoTopbar ul li .dropdown-menu li a i {
                  margin-right: 5px; }
              .video-container .video-cntr .videoTopbar ul li .dropdown-menu li:hover a {
                background: #444;
                color: #fff; }
                .video-container .video-cntr .videoTopbar ul li .dropdown-menu li:hover a i {
                  color: #fff; }
              .video-container .video-cntr .videoTopbar ul li .dropdown-menu li:last-child {
                border: none; }
              .video-container .video-cntr .videoTopbar ul li .dropdown-menu li:before {
                visibility: hidden; }
            .video-container .video-cntr .videoTopbar ul li .dropdown-menu:before {
              content: '';
              border-right: 9px solid transparent;
              border-top: none;
              border-left: 9px solid transparent;
              position: absolute;
              border-bottom: 9px solid #555;
              top: -10px;
              left: 35px; }

            .video-container .video-cntr .videoTopbar ul li .dropdown-menu.dictionaryDiv:before {
              border-right: 0px solid transparent !important;
              border-top: none;
              border-left: 0px solid transparent !important;
              position: absolute;
              border-bottom: 9px solid #555;
            }
            .dictionaryDiv{
              min-width: 60rem !important;
              max-width: 80rem !important;
              max-height: 80rem;
              overflow: auto;
            }

          .dictionaryBadge{
              color: black;
              background-color: #EEC672;
              border-radius: 15px;
              min-height: 30px;
              min-width: 30px;
            }

          .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.leftAligned {
            left: auto;
            right: 0px; }
          .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.centerAligned {
            -moz-transform: translate(-30%, 0%);
            -o-transform: translate(-30%, 0%);
            -ms-transform: translate(-30%, 0%);
            -webkit-transform: translate(-30%, 0%);
            transform: translate(-30%, 0%); }
            .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.centerAligned:before {
              right: auto;
              left: 50%;
              margin-left: -5px; }
          .video-container .video-cntr .videoTopbar ul li.moreDropdown .moreDots {
            display: none; }
          .video-container .video-cntr .videoTopbar ul li.haveLeftDivider:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 12px;
            width: 1px;
            background-color: #d9d9d9;
            height: 15px; }
          .video-container .video-cntr .videoTopbar ul li.uploadingAssets {
            cursor: pointer; }
            .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm #flashContent {
              opacity: 0;
              filter: alpha(opacity=0);
              position: absolute;
              z-index: 1;
              left: 0px;
              top: 0px;
              width: 100%;
              right: 0px;
              bottom: 0px; }
              .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm #flashContent .mobile_upload_block {
                overflow: hidden; }
              .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm #flashContent input[type="file"] {
                cursor: pointer;
                font-size: 27px;
                max-width: 100%; }
            .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm:hover, .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm:focus {
              cursor: pointer; }
              .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm:hover a, .video-container .video-cntr .videoTopbar ul li.uploadingAssets .uploadContentForm:focus a {
                color: #aaa;
                -webkit-transition: color 0.25s ease-in-out;
                -moz-transition: color 0.25s ease-in-out;
                -ms-transition: color 0.25s ease-in-out;
                -o-transition: color 0.25s ease-in-out;
                transition: color 0.25s ease-in-out; }
            .video-container .video-cntr .videoTopbar ul li.uploadingAssets .formOverlay {
              position: absolute;
              z-index: 2;
              left: 0px;
              top: 0px;
              width: 100%;
              height: 100%;
              cursor: default; }
        .video-container .video-cntr .videoTopbar ul .rightFixedItem {
          position: absolute;
          right: 0px;
          top: 0px;
          z-index: 1; }
    .video-container .video-cntr .videoFlashPlayer {
      /* position: relative;
      padding-left: 2px;
      padding-right: 2px;
      padding-bottom: 2px;  */
    }
      .video-container .video-cntr .videoFlashPlayer > img {
        vertical-align: top;
        width: 100%;
        height: auto; }
      .video-container .video-cntr .videoFlashPlayer .record-icon {
        position: absolute;
        top: 40px;
        left: 7px;
        z-index: 9999;
        color: #fff;
        font-size: 14px;
        letter-spacing: 2.5px;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7); }
        .video-container .video-cntr .videoFlashPlayer .record-icon img {
          vertical-align: top; }
      .video-container .video-cntr .videoFlashPlayer .caption {
        position: absolute;
        width: 100%; }
        .video-container .video-cntr .videoFlashPlayer .caption .alert {
          -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
          text-align: left;
          border-radius: 0;
          background: rgba(255, 255, 255, 0.9); }
          .video-container .video-cntr .videoFlashPlayer .caption .alert img {
            width: 90%;
            margin-top: 10px;
            border: 1px solid #181616; }
          .video-container .video-cntr .videoFlashPlayer .caption .alert span {
            color: #333;
            padding-right: 30px;
            font-size: 13px;
            font-weight: bold;
            display: inline-block; }
          .video-container .video-cntr .videoFlashPlayer .caption .alert .close {
            font-size: 19px;
            position: absolute;
            right: 15px;
            top: 15px; }

    .video-container .video-cntr .videoFlashPlayer .wave{
        position: absolute;
        top: 44%;
        width: 100%;
        height: 140px;
        transform: translatey(-50%);
        -webkit-transform: translatey(-50%);
    }
    .video-container .video-cntr .videoFlashPlayer .wave.playing-wave {
        z-index: 9;
    }

      .video-container .video-cntr .videoFlashPlayer .actionPopover {
        padding: 10px 5px;
        position: absolute;
        top: 50%;
        left: 0px;
        width: 100%;
        z-index: 9999;
        color: #fff;
        text-align: center;
        font-size: 16px;
        background: #302e31;
        background: -moz-linear-gradient(top, #302e31 0%, #0d0d0d 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #302e31), color-stop(100%, #0d0d0d));
        background: -webkit-linear-gradient(top, #302e31 0%, #0d0d0d 100%);
        background: -o-linear-gradient(top, #302e31 0%, #0d0d0d 100%);
        background: -ms-linear-gradient(top, #302e31 0%, #0d0d0d 100%);
        background: linear-gradient(top, #302e31 0%, #0d0d0d 100%);
        -moz-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }

        /* abhishek */

        .video-container .video-cntr .videoTopbar ul li.select_microphones{
          padding: 0;
        }

        .video-container .video-cntr .videoTopbar ul li.select_microphones select{
          /* color: #e2e2e2; */
          font-size: 16px;
          display: block;
          padding: 0;
          border: 0;
          overflow: hidden !important;
          line-height: 90px;
          background: transparent;
          }
          .video-container .video-cntr .videoTopbar ul li.select_microphones select:nth-child(2){
            display: none;
          }

.video-container .video-cntr .videoTopbar ul li.select_microphones select:focus{
          outline: 0;
        }

.video-container .video-cntr .videoFlashPlayer .actionPopover.audio-recording{
          height: 70px;
          top: auto;
          bottom: 28%;
        }

        .video-container .video-cntr .videoFlashPlayer .actionPopover.popover_down {
            bottom: -40px;
        }
        .video-container .video-cntr .videoFlashPlayer .actionPopover a {
          color: #fff;
          padding: 7px 10px;
          float: left;
          position: relative;
          -webkit-transition: color 0.25s ease-in-out;
          -moz-transition: color 0.25s ease-in-out;
          -ms-transition: color 0.25s ease-in-out;
          -o-transition: color 0.25s ease-in-out;
          transition: color 0.25s ease-in-out; }
          .video-container .video-cntr .videoFlashPlayer .actionPopover a:hover, .video-container .video-cntr .videoFlashPlayer .actionPopover a:focus {
            color: #6BB2EF;
            background: #0d0d0d;
            background: -moz-linear-gradient(top, #0d0d0d 0%, #302e31 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0d0d0d), color-stop(100%, #302e31));
            background: -webkit-linear-gradient(top, #0d0d0d 0%, #302e31 100%);
            background: -o-linear-gradient(top, #0d0d0d 0%, #302e31 100%);
            background: -ms-linear-gradient(top, #0d0d0d 0%, #302e31 100%);
            background: linear-gradient(top, #0d0d0d 0%, #302e31 100%); }
        .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
          padding: 12px 27px; }
          .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a:before {
            content: '';
            position: absolute;
            top: 0px;
            height: 36px;
            left: -1px;
            width: 1px;
            background-color: #555; }
          .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a.noSeparator:before {
            display: none; }
        .video-container .video-cntr .videoFlashPlayer .actionPopover.animateToTop {
          top: 0%;
          -moz-transform: translate(0%, 0%);
          -o-transform: translate(0%, 0%);
          -ms-transform: translate(0%, 0%);
          -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%); }
        .video-container .video-cntr .videoFlashPlayer .actionPopover.visibleOnHover {
          opacity: 0;
          filter: alpha(opacity=0); }
      .video-container .video-cntr .videoFlashPlayer .uploadProgressMsg {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        background-color: rgba(46, 58, 66, 0.5);
        min-height: 50px;
        padding: 9px 30px;
        color: #fff;
        text-align: center;
        z-index: 9999;
        -moz-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
        .video-container .video-cntr .videoFlashPlayer .uploadProgressMsg .uploadProgressBar {
          background: url("../images/progress_bar.gif") no-repeat scroll center center transparent;
          width: 114px;
          height: 7px;
          margin: 9px auto 0px auto; }
        .video-container .video-cntr .videoFlashPlayer .uploadProgressMsg .removeMsg {
          right: 0px;
          position: absolute;
          color: #ccc;
          top: 0px;
          height: 30px;
          text-align: center;
          width: 30px;
          line-height: 30px; }

          .video-container .video-cntr .videoFlashPlayer .uploadProgressMsg .removeMsg:hover, .video-container .video-cntr .videoFlashPlayer .uploadProgressMsg .removeMsg:focus {
            color: #fff;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.1); }
      .video-container .video-cntr .videoFlashPlayer .videoTitle {
        position: absolute;
        top: 36px;
        left: 0;
        background-color: rgba(46, 58, 66, 0.5);
        min-height: 50px;
        color: #fff;
        text-align: left;
        z-index: 88;
        width: 100%;
        }
        .video-container .video-cntr .videoFlashPlayer .videoTitle .videoHeading {
          padding-left: 15px;
          /* padding-right: 40px; */
          font-size: 16px;
          line-height: 50px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: flex;
          justify-content: space-between;
          /* white-space: nowrap;  */
        }
          .video-container .video-cntr .videoFlashPlayer .videoTitle .videoHeading .removeTitle {
            right: 0px;
            position: static;
            color: white;
            top: 0px;
            height: 50px;
            text-align: center;
            width: 40px;
            line-height: 50px; }
            .video-container .video-cntr .videoFlashPlayer .videoTitle .videoHeading .removeTitle:hover, .video-container .video-cntr .videoFlashPlayer .videoTitle .videoHeading .removeTitle:focus {
              color: #fff;
              cursor: pointer;
              background-color: rgba(255, 255, 255, 0.1); }
      .video-container .video-cntr .videoFlashPlayer:hover, .video-container .video-cntr .videoFlashPlayer:focus {
        -webkit-transition: opacity 0.25s ease-in-out;
        -moz-transition: opacity 0.25s ease-in-out;
        -ms-transition: opacity 0.25s ease-in-out;
        -o-transition: opacity 0.25s ease-in-out;
        transition: opacity 0.25s ease-in-out; }
        .video-container .video-cntr .videoFlashPlayer:hover .visibleOnHover, .video-container .video-cntr .videoFlashPlayer:focus .visibleOnHover {
          opacity: 1;
          filter: alpha(opacity=1); }
    .video-container-partial .video-cntr-partial .videoFlashPlayer-partial {
      overflow: hidden;
      background-color: #20292f;
      text-align: center;
      clear: both;
      z-index: 1;
      position: relative; }
    .video-container .video-cntr .videoFlashPlayer {
      overflow: hidden;
      background-color: #20292f;
      text-align: center;
      clear: both;
      z-index: 1;
      position: static;
      /* height: calc(100% - 50px); */
     }
     .video-container .video-cntr .videoFlashPlayer.leftPanelAudioControl{
        background: none;
     }
     .video-container .video-cntr .videoFlashPlayer.leftPanelAudioControl .videoTitle{
        height: 100%;
        display: flex;
        /* align-items: center; */
        justify-content: center;
    }
    .video-container .video-cntr .videoFlashPlayer.leftPanelAudioControl .videoTitle .videoHeading{
      min-height: 0 !important;
      flex-direction: column;
      align-items: center;
    }
    .video-container .video-cntr .videoFlashPlayer.leftPanelAudioControl .videoTitle .videoHeading .startinteractive{
      position: static !important;
      transform: none !important;
    text-align: center !important;

    }
    .video-container .video-cntr .videoFlashPlayer.leftPanelAudioControl .videoTitle .videoHeading .leftPanelNoBtn{
      text-align: center;
      margin-left: 10px;
    }
      .video-container .video-cntr .videoFlashPlayer .recorderBackground #myElement_wrapper {
        display: inline-block;
        height: 100%;
        width: 100%; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground #myElement_wrapper object {
          vertical-align: middle; }
      .video-container .video-cntr .videoFlashPlayer .recorderBackground .message {
        background-color: #333333;
        text-align: center;
        z-index: 1;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .message .text {
          font-family: arial;
          font-size: 6em;
          line-height: 120px;
          font-weight: bold;
          color: #fff; }
      .video-container .video-cntr .videoFlashPlayer .recorderBackground .help-guide {
        background: none !important;
        text-align: center;
        z-index: 1;
        position: absolute;
        width: 100%;
        height: 88%;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        pointer-events: none;
        -webkit-pointer-events: none; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .help-guide .text {
          font-size: 22px !important;
          font-weight: 300 !important;
          line-height: 30px !important;
          padding: 20px 0;
          width: 100%;
          float: left;
          background: #0b6ccd;
          font-family: arial;
          font-weight: bold;
          color: #fff; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .help-guide .arrow {
          position: absolute;
          width: 225px;
          bottom: -25px;
          height: 145px;
          z-index: -1;
          right: 60px;
          border-left: 2px solid red;
          border-bottom: 2px solid red; }
      .video-container .video-cntr .videoFlashPlayer .recorderBackground .delay_container {
        background: #ccc;
        opacity: 0.7;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 9999;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 224px; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .delay_container.hovermenubg {
          background: #eeeeee;
          z-index: 9990; }
      .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        z-index: 9999;
        -moz-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%); }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer .recordMesssage {
          color: #a2681d;
          letter-spacing: 0.5px; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer .messageLoader {
          background: url("../images/ajax-load-black.gif") no-repeat scroll 0 3px transparent;
          display: inline-block;
          height: 21px;
          width: 16px; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer .messageLoaderStories {
          background: url("../images/ajax-load-black.gif") no-repeat scroll 0 3px transparent;
          float: right;
          height: 21px;
          width: 16px; }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer .msgWrapper {
          background: none repeat scroll 0 0 #FFFFFF;
          border-radius: 7px;
          margin: 0 20px;
          padding: 20px;
          text-align: center;
          display: inline-block;
          -webkit-box-shadow: 0 0 9px rgba(192, 192, 192, 0.7);
          -moz-box-shadow: 0 0 9px rgba(192, 192, 192, 0.7);
          box-shadow: 0 0 9px rgba(192, 192, 192, 0.7); }
        .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer .msgWrapperScreenCast {
          background: none repeat scroll 0 0 grey;
          border-radius: 7px;
          margin: 0 auto;
          opacity: 0.7;
          padding: 20px;
          text-align: center;
          width: 60%;
          color: #fff; }
          .video-container .video-cntr .videoFlashPlayer .recorderBackground .recordMesssageContainer .msgWrapperScreenCast .recordMesssage {
            color: #fff; }
  .video-container .videoAndTinymce {
    background-color: #2e3a42;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    height: 100%;
   }
  .video-container .text-editor-placeholder, .video-container .normal-content-holder {
    position: relative;
    margin-bottom: 2px;
    overflow: auto;
    width: 100%; }
    .video-container .text-editor-placeholder img, .video-container .normal-content-holder img {
      /* max-width : fit-content;  */
    }
  .video-container .text-editor-placeholder {
    overflow-y: hidden;
  height: 100%; 
}
  .video-container .notesLoadingArea {
    color: #e2e2e2;
    font-size: 18px;
    max-height: 360px; }
  .video-container .video-gallary-slider {
    margin-top: 10px; }
    .video-container .video-gallary-slider > .tab-items {
      padding: 0px 20px; }
      .video-container .video-gallary-slider > .tab-items .nav-tabs li a {
        font-size: 18px; }
      .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li a {
        color: #000; }
        .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li a > span {
          border-bottom: 5px solid transparent; }
          .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li a > span .badge {
            color: #000;
            border: 1px solid #000; }
      .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a {
        color: #000; }
        .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a > span, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a > span {
          border-bottom: 5px solid transparent; }
          .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a > span .badge, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a > span .badge {
            color: #000 !important;
            border: 1px solid #000 !important; }
        .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a:hover, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a:focus, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a:hover, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a:focus {
          color: #000; }
          .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a:hover > span, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a:focus > span, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a:hover > span, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a:focus > span {
            border-bottom: 5px solid #eec672; }
            .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a:hover > span .badge, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a:focus > span .badge, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a:hover > span .badge, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a:focus > span .badge {
              color: #000 !important;
              border: 1px solid #000 !important; }
        .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a.dropdown-toggle, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a.dropdown-toggle {
          border: 1px solid #eee; }
          .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a.dropdown-toggle:hover, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:hover a.dropdown-toggle:focus, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a.dropdown-toggle:hover, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li:focus a.dropdown-toggle:focus {
            border: 1px solid #ddd; }
      .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active a {
        color: #000; }
        .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active a > span {
          border-bottom: 5px solid #eec672; }
          .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active a > span .badge {
            color: #000 !important;
            border: 1px solid #000 !important; }
      .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active:hover a, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active:focus a {
        color: #000; }
        .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active:hover a > span, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active:focus a > span {
          border-bottom: 5px solid #eec672; }
          .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active:hover a > span .badge, .video-container .video-gallary-slider > .tab-items .nav-tabs li.dropdown li.active:focus a > span .badge {
            color: #000 !important;
            border: 1px solid #000 !important; }
    .video-container .video-gallary-slider .video-gallary-wrapper {
      padding: 0px 10px 0px 10px; }
      .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item {
        display: inline-block;
        width: 100%;
        /*@include box-shadow(0px 0px 10px -1px rgba(192, 192, 192, 0.7));*/
        overflow: visible; }
        .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .top {
          position: relative;
          background-color: #777; }
          .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .top .time {
            background: rgba(62,51,51, 1);
            color: #ffffff;
            font-size: 14px;
            right: 5px;
            padding: 2px 3px;
            position: absolute;
            top: 5px;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            -ms-border-radius: 2px;
            -o-border-radius: 2px;
            border-radius: 2px;
            z-index: 1; }
          .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .top .info {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 0;
            background: rgba(33,42,47, 1);
            line-height: 20px;
            padding: 0 5px;
            color: #fff;
            font-size: 12px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap; }
        .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .bottom-info {
          background: #fff;
          position: relative;
          padding: 0 5px;
          width: 100%;
          overflow: hidden;
          line-height: 32px;
          font-size: 13px; }
          .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .bottom-info .date {
            display: inline-block;
            vertical-align: top;
            color: #0456f9;
            font-size: 12px;
            font-family: revert;
            font-weight: bold;
            white-space: nowrap;
            text-overflow: ellipsis;
            float: left;
            width: auto;
            padding-right: 0px; }
          .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .bottom-info .ratwithbtn {
            float: right; }
            .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .bottom-info .ratwithbtn .rating {
              position: static;
              float: right; }
          .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .bottom-info .rating {
            color: #555555;
            font-size: 14px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            max-width: 65px;
            position: absolute;
            right: 5px;
            top: 0px; }
            .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .bottom-info .rating i {
              background-position: 0 -29px;
              display: inline-block;
              height: 32px;
              vertical-align: top;
              width: 13px;
              margin-right: 2px; }
      .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel {
        position: relative;
        background-color: #ebebeb;
        padding: 10px 15px 5px 5px;
        z-index: 0; }
        .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-stage-outer {
          padding: 0px; }
        .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav {
          left: 0;
          margin-top: -22px;
          position: absolute;
          top: 50%;
          width: 100%;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none; }
          .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls .owl-prev, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav .owl-prev {
            color: transparent;
            left: -27px;
            position: absolute;
            width: 20px; }
            .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls .owl-prev:before, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav .owl-prev:before {
              content: "\f053";
              font-family: FontAwesome;
              font-size: 30px;
              color: #ccc; }
            .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls .owl-prev:hover:before, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav .owl-prev:hover:before {
              color: #096bcd; }
          .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls .owl-next, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav .owl-next {
            color: transparent;
            right: -25px;
            position: absolute;
            width: 20px; }
            .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls .owl-next:before, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav .owl-next:before {
              content: "\f054";
              font-family: FontAwesome;
              font-size: 30px;
              color: #ccc; }
            .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-controls .owl-next:hover:before, .video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-nav .owl-next:hover:before {
              color: #096bcd; }

.row-offcanvas.row-offcanvas-right {
  float: left;
  /* left: 0; */
  overflow-x: hidden;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.overauto {
  overflow: auto;
  height: 182px;
  padding: 3px 0 0;
  margin: 10px 0 0; }
  .overauto .flag-list li {
    padding: 8px 20px 8px 5px;
    margin-right: 10px; }

.approval_replyBlock {
  height: 307px;
  overflow: auto; }

#approval_replyBlock {
  margin: 0;
  max-height: 213px; }


.recording_session {
  width: 100%;
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: center;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#20292f+0,383838+100 */
  background: #20292f; /* Old browsers */
  background: -moz-linear-gradient(top, #20292f 0%, #383838 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #20292f 0%, #383838 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #20292f 0%, #383838 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20292f', endColorstr='#383838', GradientType=0); /* IE6-9 */
}

.recording_session p{
    margin: 0 0 30px 0;
    font-size: 15px;
}

.recording_session .btn {
  margin: 0 auto 15px;
  color: #fff;
  border-color: #ccc;
  display: block;
  min-width: 200px;
  border-radius: 5px;
  line-height: 25px;
  transition: 0.15s ease all;
  -webkit-transition: 0.15s ease all;
  background: #024890;
}

.recording_session .btn:hover{
    box-shadow: 0 0 6px #ddd;
    -webkit-box-shadow: 0 0 6px #ddd;
}

.recording_session.modal {
  text-align: center;
  padding: 0!important;
  }

.recording_session.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
  }

.recording_session .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  }



/* ####### CSS for Tablet and small Desktop Starts ####### */
@media only screen and (max-width: 1200px) {
  .video-container .video-gallary-slider > .tab-items {
    padding: 0px 20px; }
    .video-container .video-gallary-slider > .tab-items .nav-tabs li a {
      font-size: 16px; } }
@media only screen and (min-width: 1200px) {
  .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
    padding: 12px 32px; } }
@media only screen and (min-width: 992px) and (max-width: 1100px) {
  .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
    padding: 12px 25px;
    font-size: 13px; } 
  .video-container .video-cntr .videoTopbar ul li{
  padding: 0 5px;}
  .video-container .video-cntr .videoTopbar ul li a{
    font-size: 13px;}
  .notesResources nav .nav-tabs > li > a{
    font-size: 14px;}
  .video-container .video-cntr .videoTopbar ul li.phone a i{
    font-size: 16px !important;}}
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .video-container .video-cntr .videoTopbar ul li {
    padding: 0px 5px 0px 5px; }
    .video-container .video-cntr .videoTopbar ul li:last-child {
      padding-right: 0px; }
    .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.centerAligned {
      -moz-transform: translate(-43%, 0%);
      -o-transform: translate(-43%, 0%);
      -ms-transform: translate(-43%, 0%);
      -webkit-transform: translate(-43%, 0%);
      transform: translate(-43%, 0%); }
    .video-container .video-cntr .videoTopbar ul li.moreDropdown .moreText {
      display: none; }
    .video-container .video-cntr .videoTopbar ul li.moreDropdown .moreDots {
      display: block; }
    .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.leftAligned:before {
      right: 4px; } }
@media only screen and (max-width: 766px) {
  .video-container .video-cntr .videoTopbar ul li {
    padding: 0px 9px 0px 9px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
    padding: 12px 14px;
    font-size: 13px; } }
@media only screen and (max-width: 767px) {
  .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
    padding: 12px 36px; } }
@media only screen and (max-width: 480px) {
  .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.leftAligned:before {
    right: 9px; }
  .video-container .video-cntr .videoTopbar ul li.moreDropdown .dropdown-menu.centerAligned {
    -moz-transform: translate(-40%, 0%);
    -o-transform: translate(-40%, 0%);
    -ms-transform: translate(-40%, 0%);
    -webkit-transform: translate(-40%, 0%);
    transform: translate(-40%, 0%); }
  .video-container .video-cntr .videoTopbar ul li.moreDropdown .moreText {
    display: none; }
  .video-container .video-cntr .videoTopbar ul li.moreDropdown .moreDots {
    display: block; }
  .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
    padding: 12px 25px; } }
@media only screen and (max-width: 380px) {
  .video-container .video-cntr .videoFlashPlayer .actionPopover .actionLinks a {
    padding: 12px 14px; } }
.volumeIcon.volumeIconHomePage {
  margin-top: 0px;
  margin-left: 0px;
  top: 10px;
  left: 10px; }
  .volumeIcon.volumeIconHomePage i {
    font-size: 24px; }

.video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .volumeControlBox {
  height: 115px; }

.record-overlay {
  position: absolute;
  z-index: 100;
  background: url(../images/overlay.png) no-repeat;
  width: 48%;
  height: 40px;
  text-indent: -9999px;
  overflow: hidden;
  left: 50%;
  margin-top: -68px;
  top: 50%;
  margin-left: -18%; }

@media (min-width: 992px) and (max-width: 1199px) {
  .record-overlay {
    width: 480px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .record-overlay {
    width: 480px; } }
@media (max-width: 767px) {
  .record-overlay {
    width: 300px; } }
/* ####### CSS for header Starts ####### */
.bottombar {
  background: #555555;
  position: relative;
  min-height: 30px; }
  .bottombar .right {
    float: right; }
    .bottombar .right a.next-video-link {
      color: #fff;
      font-size: 16px;
      position: relative;
      border-left: 3px solid #484848;
      line-height: 40px;
      display: inline-block;
      padding: 0 24px; }
      .bottombar .right a.next-video-link i {
        position: absolute;
        top: 11px;
        left: -8px; }
      .bottombar .right a.next-video-link:hover {
        color: #aaa;
        -webkit-transition: color 0.25s ease-in-out;
        -moz-transition: color 0.25s ease-in-out;
        -ms-transition: color 0.25s ease-in-out;
        -o-transition: color 0.25s ease-in-out;
        transition: color 0.25s ease-in-out; }

.sticky-footer {
  background: transparent;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.53) 160%, #000 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, transparent), color-stop(160%, rgba(0, 0, 0, 0.53)), color-stop(100%, #000));
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.53) 160%, #000 100%);
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.53) 160%, #000 100%);
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.53) 160%, #000 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.53) 160%, #000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d4d4d4', GradientType=0 );
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1; }
  .sticky-footer p {
    padding: 10px 0;
    margin-bottom: 0;
    text-align: center;
    font-family: 'CenturyGothic';
    color: #000;
    font-weight: bold; }

/* ####### CSS for Tablet and small Desktop Starts ####### */
body {
  margin: 0px;
  padding: 0px;
  font-family: 'latoregular', sans-serif;
  font-style: normal !important; }

.alert-error {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #560705;
  font-weight: bold;
  margin-top: 10px;
}

a:hover, a:focus {
  text-decoration: none; }

div.star-rating-readonly a {
  cursor: default !important;
  padding-right: 5px;
  font-size: 9px;
  color: #000;
  font-weight: bold;
  padding-top: 3px; }

.pr15 {
  padding-right: 15px; }

.pr50 {
  padding-right: 50px; }

.text-left {
  text-align: left !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.dIB, .coach_Content .coach_Content_header .header_coach {
  display: inline-block;
  vertical-align: top; }

.m0 {
  margin: 0 !important; }

.mt0 {
  margin-top: 0 !important; }

.mb5 {
  margin-bottom: 5px !important; }

.mb0 {
  margin-bottom: 0 !important; }

.mt10 {
  margin-top: 10px !important; }

.mt5 {
  margin-top: 5px !important; }

.mt20 {
  margin-top: 20px !important; }

#userModal .modal-lg {
  width: 1000px; }

#resolutions-list {
  min-width: 110px; }

#resolutions-list:before {
  right: auto;
  left: 25px; }

.errorMessage {
  color: #c70202;
  margin-top: 5px; }

#wrapper, #mainCntr, #centerCntr, .center-ctr {
  width: 100%;
  height: 100%;
  position: relative; }

#contentCntr {
  /*padding-top: 100px;*/
  position: relative;
  height: inherit;
  overflow: auto;
  padding-bottom: 50px;
}

.icon {
  background: url("../images/icon_sprite.png") no-repeat; }

.border-radius-none {
  border-radius: 0; }

.zenarate-header {
  z-index: 1;
  position: relative;
  float: left;
  width: 100%;
  background: #0b6ccd; }
  .zenarate-header .logo {
    float: left; }
    .zenarate-header .logo img {
      width: 160px;
      vertical-align: middle;
      margin-top: 7px; }
  .zenarate-header ul {
    margin-bottom: 0; }
    .zenarate-header ul li {
      list-style: none;
      display: inline-block; }
      .zenarate-header ul li a {
        float: left;
        font-weight: bold;
        padding: 15px;
        font-size: 16px;
        color: #fff; }

.DescriptionBlock {
  padding: 15px 0; }
  .DescriptionBlock .desc_block {
    padding: 15px;
    background: #F5F5F5; }
  .DescriptionBlock .survery {
    padding: 0 0 0 20px; }
    .DescriptionBlock .survery h3 {
      font-size: 16px;
      font-weight: bold; }
      .DescriptionBlock .survery h3 input {
        padding: 0 3px;
        font-size: 15px;
        line-height: 24px;
        width: 290px;
        font-weight: normal; }
  .DescriptionBlock .memberassignment {
    margin: 50px 0 0; }
  .DescriptionBlock .assignment_tabbedPanels {
    margin: 0; }
    .DescriptionBlock .assignment_tabbedPanels li a {
      padding: 0 8px;
      margin-bottom: -1px;
      margin-right: 5px;
      font-size: 14px; }
    .DescriptionBlock .assignment_tabbedPanels li.active a {
      color: #000;
      border: 1px solid #ccc;
      border-bottom-color: transparent;
      background-color: #fff;
      cursor: default; }
      .DescriptionBlock .assignment_tabbedPanels li.active a:hover {
        border-bottom: 1px solid transparent !important; }
    .DescriptionBlock .assignment_tabbedPanels .helpbtnBlock {
      display: inline-block; }

.audiocontrol .audiocontent .chatting.cst_chat span.corrupted-file {
  margin: 0;
  overflow: visible;
  position: absolute;
  right: 7px;
  top: 7px;
  width: 100%;
}

      .audiocontrol .audiocontent .chatting.cst_chat span.corrupted-file a{
        float: right;
      }

      .audiocontrol .audiocontent .chatting.cst_chat span.corrupted-file a img{
        position: static;
      }

      .audiocontrol .custmr_chat.corrupted-customer-chat{
        overflow: visible;
      }

    .DescriptionBlock .assignment_tabbedPanels .tab-content {
      padding: 25px 10px;
      height: 455px;
      overflow: auto;
      border: 1px solid #ccc;
      font-size: 16px;
      line-height: 30px;
      background: #FFF; }
      .DescriptionBlock .assignment_tabbedPanels .tab-content .tab-pane {
        padding: 0;
        border: 0; }
    .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock th, .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock td {
      padding: 8px 4px;
      text-align: center;
      border: 1px solid #fff;
      border-top-color: #ddd;
      background-color: #e5e5e5; }
      .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock th a, .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock td a {
        font-size: 13px; }
    .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock td {
      background-color: transparent; }
    .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock tbody tr {
      font-size: 13px;
      background-color: #F5F5F5; }
      .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock tbody tr.even {
        background-color: #E5E5E5; }
      .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock tbody tr:hover {
        background-color: #ddd; }
    .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock tbody td {
      padding: 9px;
      text-align: left; }
    .DescriptionBlock .assignment_tabbedPanels .ManagetableBlock input {
      margin: 0; }
  .DescriptionBlock .addmembers {
    margin: 36px 0 0; }
    .DescriptionBlock .addmembers .addmembers_inner {
      padding: 9px;
      height: 210px;
      overflow-y: scroll;
      margin-bottom: 24px;
      width: 100%;
      border: 1px solid #ccc; }
      .DescriptionBlock .addmembers .addmembers_inner h5 {
        font-weight: bold; }
    .DescriptionBlock .addmembers .resultList {
      height: auto;
      max-height: none; }
      .DescriptionBlock .addmembers .resultList .resultList_block {
        margin: 5px 0 0;
        padding: 0;
        border: 0; }
        .DescriptionBlock .addmembers .resultList .resultList_block h5 {
          font-weight: normal;
          float: left;
          width: 95%; }
          .DescriptionBlock .addmembers .resultList .resultList_block h5 strong {
            font-weight: bold; }
        .DescriptionBlock .addmembers .resultList .resultList_block .cross {
          margin: 4px 0 0;
          position: static;
          font-size: 16px;
          font-weight: 700;
          cursor: pointer; }
          .DescriptionBlock .addmembers .resultList .resultList_block .cross img {
            max-width: 100%; }
  .DescriptionBlock .note {
    margin: 20px 0;
    font-family: inherit;
    font-weight: 700;
    line-height: 20px;
    color: inherit;
    text-rendering: optimizelegibility; }
  .DescriptionBlock .btn {
    text-transform: uppercase; }
  .DescriptionBlock .newbtn {
    background-color: #f9f9f9;
    background-image: none;
    font-size: 12px;
    color: #000;
    border-radius: 2px;
    margin-right: 3px;
    margin-bottom: 10px; }
    .DescriptionBlock .newbtn.selected {
      color: #fff;
      text-shadow: none;
      border: 1px solid #0b6ccd;
      background-color: #0b6ccd; }
    .DescriptionBlock .newbtn.backbtn {
      padding: 10px 16px; }

.remove_marg {
  margin-left: -0.2px; }

.fillLogo {
  margin: 50px auto;
  display: block; }

.fillContainer {
  padding-top: 50px;
  float: left;
  width: 100%; }
  .fillContainer .white-box {
    position: relative;
    margin-top: 40px;
    background: white;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.09); }
    .fillContainer .white-box .box-header {
      z-index: 1;
      border-bottom: 1px solid rgba(204, 204, 204, 0.63);
      background: #eee;
      padding: 20px;
      position: relative; }
    .fillContainer .white-box .box-tips {
      position: absolute;
      left: 0%;
      background: #f8f9d5;
      padding: 20px;
      width: 348px;
      z-index: 0;
      border: 1px solid #ddd; }
      .fillContainer .white-box .box-tips ol {
        padding-left: 15px;
        color: #b79555; }
      .fillContainer .white-box .box-tips h2 {
        font-size: 18px;
        margin: 10px 0;
        font-weight: 600;
        color: #666; }
    .fillContainer .white-box .box-content {
      background: #fff;
      z-index: 1;
      position: relative;
      padding: 20px; }
      .fillContainer .white-box .box-content .btn-primary {
        background-color: #0b6ccd;
        border-color: #0b6ccd; }
  .fillContainer .text-dblue {
    margin-top: 0;
    margin-bottom: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600; }
  .fillContainer .subHeading {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 20px; }

.guidecontext label {
  display: inline-block;
  margin-right: 20px; }
  .guidecontext label input {
    display: inline-block;
    margin: -2px 4px 0 0;
    vertical-align: middle; }
  .guidecontext label .tooltip.right {
    width: 200px; }
    .guidecontext label .tooltip.right .tooltip-arrow {
      top: 50%;
      left: -5px;
      margin-top: -11px;
      border-left-width: 0;
      border-right-color: #999999;
      border-right-color: rgba(0, 0, 0, 0.25);
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 11px; }
      .guidecontext label .tooltip.right .tooltip-arrow:after, .guidecontext label .tooltip.right .tooltip-arrow:before {
        right: 100%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      .guidecontext label .tooltip.right .tooltip-arrow:after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: #fff;
        border-width: 10px;
        margin-top: -10px; }
      .guidecontext label .tooltip.right .tooltip-arrow:before {
        border-color: transparent;
        border-right-color: #666;
        border-width: 11px;
        margin-top: -11px; }
  .guidecontext label .helpbtnBlock {
    display: inline-block;
    position: relative;
    vertical-align: text-bottom;
    margin-left: 3px;
    line-height: 20px; }

.popover.resourcesContent {
  background: #0b6ccd;
  border: 1px solid #555;
  color: #fff;
  font-weight: normal; }
  .popover.resourcesContent .popover-content {
    padding: 7px;
    min-width: 144px;
    background: #0b6ccd;
    font-family: "fontHelvetica",arial; }
    .popover.resourcesContent .popover-content ul {
      margin-left: 16px;
      padding: 0px; }
      .popover.resourcesContent .popover-content ul li {
        font-size: 13px;
        margin: 3px 0px !important;
        line-height: 20px; }
    .popover.resourcesContent .popover-content h5 {
      margin: 0px;
      font-size: 14px; }
  .popover.resourcesContent.right .arrow {
    border-right-color: #555; }
    .popover.resourcesContent.right .arrow:after {
      border-right-color: #0b6ccd; }

.formMsg {
  color: green;
  margin-bottom: 10px; }

.buttonGroup {
  background: #F9F9F9;
  border: 1px dashed #DADADA;
  border-radius: 4px;
  line-height: 20px;
  font-size: 14px;
  padding: 4px 9px;
  margin: 0px; }

.borderAndSpace {
  border-bottom: 1px solid #8FCBFF;
  padding-bottom: 5px;
  margin-bottom: 10px;
  background: #f7f7f7; }

.coaches_Certify_heading {
  color: #333;
  font-size: 14px; }
  .coaches_Certify_heading .name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }

.starblock .star-rating-control {
  display: inline-block; }

.btn_certify {
  width: 76px;
  display: block;
  vertical-align: middle;
  margin: 0 auto;
  border: 2px solid #dadada;
  padding: 2px 20px;
  text-align: center;
  background-color: #fff; }

.certified_container .certified_text.error {
  color: #d14641; }
.certified_container .certified_text.success {
  color: #58b058; }

.coaches_container {
  padding: 10px;
  margin-bottom: 5px; }

.auto_save_block {
  position: absolute;
  top: 0px;
  font-size: 14px;
  padding: 10px 0px;
  right: 18px;
  color: #d6d6d6;
  margin: 0; }
  .auto_save_block .saveStatus {
    display: inline-block; }
    .auto_save_block .saveStatus .saveLight {
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      background-color: #a8d200;
      width: 10px;
      height: 10px;
      display: inline-block;
      margin-left: 7px; }
    .auto_save_block .saveStatus .saveText {
      margin-left: 2px; }

.accordianArrow {
  position: absolute;
  top: 0px;
  font-size: 18px;
  height: 40px;
  line-height: 24px;
  padding: 7px 9px;
  right: 0px;
  color: #d6d6d6; }
  .accordianArrow:hover, .accordianArrow:active {
    color: #fff;
    cursor: pointer;
    -webkit-transition: color 0.25s ease-in-out;
    -moz-transition: color 0.25s ease-in-out;
    -ms-transition: color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out; }

.coach_Content {
  padding: 0 10px 10px;
  background: #F9F9F9;
  border: 1px solid #DADADA;
  margin-top: 0px;
  margin-bottom: 10px; }
  .coach_Content .coach_Content_header {
    /*background: #024890;*/
    background-color: #454545;
    color: #fff;
    margin: 10px 0 0; }
    .coach_Content .coach_Content_header .header_coach {
      width: 100%; }
      .coach_Content .coach_Content_header .header_coach h5 {
        font-size: 13px;
        display: inline-block;
        vertical-align: top;
        margin: 5px;
        font-weight: 400; }
        .coach_Content .coach_Content_header .header_coach h5 label {
          font-size: 14px; }
        .coach_Content .coach_Content_header .header_coach h5.right {
          float: right;
          text-align: right; }
    .coach_Content .coach_Content_header .cc-list label {
      padding-left: 5px; }
    .coach_Content .coach_Content_header .cc-list .cc_list_main {
      border-bottom: none;
      margin: 0 0 0 38px; }
      .coach_Content .coach_Content_header .cc-list .cc_list_main:before, .coach_Content .coach_Content_header .cc-list .cc_list_main:after {
        display: none; }
  .coach_Content .coach_Content_textarea {
    margin: 0;
    position: relative; }
    .coach_Content .coach_Content_textarea .content {
      margin-right: 30px;
      background: #FFF;
      border: 1px solid #ccc;
      border-radius: 0 0 4px 4px;
      padding: 5px;
      position: relative;
      min-height: 70px;
      border-top: 0; }
      .coach_Content .coach_Content_textarea .content p {
        padding: 5px;
        margin: 0 0 10px; }
      .coach_Content .coach_Content_textarea .content .message_remove p {
        color: #AAA; }
      .coach_Content .coach_Content_textarea .content .Btn_more {
        position: absolute;
        bottom: 0;
        right: 12px;
        color: #0b6ccd; }
    .coach_Content .coach_Content_textarea .iconBlock {
      position: absolute;
      right: 0px;
      top: 0px;
      width: 30px;
      text-align: center; }
      .coach_Content .coach_Content_textarea .iconBlock button {
        background: none;
        margin: 0;
        border: 0;
        padding: 3px; }
      .coach_Content .coach_Content_textarea .iconBlock.replyIcon {
        margin-top: 14px; }
  .coach_Content.child_level1 {
    margin-left: 20px; }
  .coach_Content.child_level2 {
    margin-left: 40px; }
  .coach_Content.child_level3 {
    margin-left: 60px; }
  .coach_Content.child_level4 {
    margin-left: 80px; }

.uploading-progress {
  background: url(../images/ajax-load-black.gif) no-repeat 0% 0% transparent;
  display: none;
  height: 20px;
  width: 15px; }

.modal.replyModal .modal-body {
  max-height: 300px; }

.to_listBlock {
  margin-right: 15px;
  float: left; }

.replyBlock .email_box .to_listBlock label {
  margin-bottom: 0px;
  vertical-align: top;
  margin-top: 2px; }
.replyBlock .email_box .to_listBlock .enter_email {
  display: inline-block;
  margin-left: 5px;
  /*border-bottom: 1px solid #8FCBFF;*/
  line-height: 23px;
  max-width: 400px;
  min-width: 200px;
  position: relative;
  padding: 0;
  /*&:before{
  	content: "";
  	height: 5px;
  	position: absolute;
  	bottom: 0;
  	border-left: 1px solid #8FCBFF;
  	left: 0;
  }
  &:after{
  	content: "";
  	height: 5px;
  	position: absolute;
  	bottom: 0;
  	border-right: 1px solid #8FCBFF;
  	right: 0;
  }*/ }
  .replyBlock .email_box .to_listBlock .enter_email.superBox {
    min-width: 100px; }
    .replyBlock .email_box .to_listBlock .enter_email.superBox .select2-choices {
      margin-bottom: 0 !important;
      border: 1px solid #aaa;
      background: #fff;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(0.5, #fff));
      background-image: -webkit-linear-gradient(center top, #eee 0%, #fff 15%);
      background-image: -moz-linear-gradient(center top, #eee 0%, #fff 15%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
      background-image: linear-gradient(top, #fff 0%, #eee 50%); }
    .replyBlock .email_box .to_listBlock .enter_email.superBox .select2-search-choice {
      margin: 5px !important; }
    .replyBlock .email_box .to_listBlock .enter_email.superBox .select2-search-field {
      display: none; }
.replyBlock textarea {
  resize: none;
  padding: 5px;
  margin-top: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  border: 1px solid #ccc; }

.cc-list {
  position: relative; }
  .cc-list label {
    margin-bottom: 0px;
    vertical-align: top;
    margin-top: 5px;
    float: left; }
  .cc-list .cc_list_main {
    display: block;
    margin: 0 0 0 34px;
    position: relative;
    padding: 0 27px 0 5px;
    /*border-bottom: 1px solid #8FCBFF;*/
    /*line-height: 25px;*/
    /*min-width: 200px;*/
    /*&:before{
    	content: "";
    	height: 5px;
    	position: absolute;
    	bottom: 0;
    	border-left: 1px solid #8FCBFF;
    	left: 0;
    }
    &:after{
    	content: "";
    	height: 5px;
    	position: absolute;
    	bottom: 0;
    	border-right: 1px solid #8FCBFF;
    	right: 0;
    }*/ }
    .cc-list .cc_list_main.closed {
      padding-right: 0;
      height: auto;
      overflow: hidden; }
      .cc-list .cc_list_main.closed .select2-container {
        width: 100%; }
      .cc-list .cc_list_main.closed .select2-choices {
        margin-bottom: 1px !important;
        margin-right: 3px !important; }
        .cc-list .cc_list_main.closed .select2-choices .select2-search-choice {
          margin-bottom: 5px !important;
          margin-top: 5px !important; }
    .cc-list .cc_list_main .cc_list_Block {
      overflow: hidden; }
      .cc-list .cc_list_main .cc_list_Block li {
        float: left;
        position: relative;
        margin-right: 7px;
        padding-right: 5px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 100%; }
        .cc-list .cc_list_main .cc_list_Block li:after {
          content: ",";
          position: absolute;
          right: 1px;
          bottom: 0px; }
        .cc-list .cc_list_main .cc_list_Block li:last-child:after {
          display: none; }
  .cc-list .loadMore, .cc-list .showLess {
    position: absolute;
    right: 5px;
    top: 0px;
    z-index: 11;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }

.commontitleBar {
  background-color: #024890;
  color: #FFF;
  width: 100%;
  min-height: 41px;
  line-height: 34px;
  text-align: center;
  padding: 8px 15px 8px 70px;
  position: relative; }
  .commontitleBar .title {
    font-size: 25px;
    display: inline-block;
    vertical-align: top;
    /*max-width: 1400px;*/ }
    .commontitleBar .title h1 {
      margin-top: 0px; }
    .commontitleBar .title h2 {
      margin-top: 0px; }
    .commontitleBar .title h3 {
      margin-top: 0px; }
    .commontitleBar .title h4 {
      margin-top: 0px; }
    .commontitleBar .title h5 {
      margin-top: 0px; }
    .commontitleBar .title h6 {
      margin-top: 0px; }
  .commontitleBar .goBack {
    /* color: #6BB2EF; */
    color: #fff;
    height: 30px;
    display: inline-block;
    position: absolute;
    font-size: 16px;
    left: 10px;
    line-height: 30px;
    top: 50%;
    margin-top: -15px; }
    .commontitleBar .goBack:hover, .commontitleBar .goBack:active {
      color: #fff;
      -webkit-transition: color 0.25s ease-in-out;
      -moz-transition: color 0.25s ease-in-out;
      -ms-transition: color 0.25s ease-in-out;
      -o-transition: color 0.25s ease-in-out;
      transition: color 0.25s ease-in-out; }

.mce-panel {
  border: none !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px; }
  .mce-panel .mce-btn-group .mce-btn {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px; }
    .mce-panel .mce-btn-group .mce-btn.mce-first, .mce-panel .mce-btn-group .mce-btn.mce-last {
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px; }

.resultList {
  max-height: 250px;
  margin-bottom: 10px;
  overflow: auto; }
  .resultList #assignedSecondaryCoachesList {
    width: 100%; }
  .resultList .resultList_block {
    border-bottom: 1px solid #ccc;
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    float: left;
    width: 100%; }
    .resultList .resultList_block .memberIcon {
      position: absolute;
      top: 7px;
      left: 5px;
      z-index: 1; }
    .resultList .resultList_block .memberName {
      padding-right: 27px;
      padding-left: 25px; }
    .resultList .resultList_block .removeOption {
      position: absolute;
      top: 6px;
      right: 5px;
      z-index: 1; }
      .resultList .resultList_block .removeOption img {
        max-width: 20px; }

.resultList_privateStory img.guestImg {
  margin-right: 10px; }

.fieldBlock {
  position: relative; }

.assignment_date_block .hasDatepicker {
  width: 77% !important; }

#pswd_info {
  position: absolute;
  margin-top: -10px;
  bottom: -115px\9;
  left: 20px;
  width: 88%;
  padding: 15px;
  background: #fefefe;
  font-size: .875em;
  box-shadow: 0 1px 3px #ccc;
  border: 1px solid #ddd;
  /*display: none;*/
  z-index: 99; }
  #pswd_info h4 {
    margin: 0 0 10px 0;
    padding: 0;
    font-weight: normal;
    font-size: 18px; }
  #pswd_info ul {
    list-style: none;
    margin-left: 0; }
  #pswd_info .invalid {
    background: url(../images/invalid.png) no-repeat 0 50%;
    padding-left: 30px;
    line-height: 24px;
    color: #DD4B39; }
  #pswd_info .valid {
    background: url(../images/valid.png) no-repeat 0 50%;
    padding-left: 30px;
    line-height: 24px;
    color: #3a7d34; }

.mb30 {
  margin-bottom: 30px; }

.plr0 {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.mb20 {
  margin-bottom: 20px; }

.mb10 {
  margin-bottom: 10px; }

.currentPageSize {
  margin-top: 20px; }
  .currentPageSize .pageSize {
    margin-left: 10px; }

.sort-link {
  background: url(../images/up-down-arrow.png) right 4px/8px no-repeat;
  padding-right: 20px;
  color: #333333; }

.actions-btn {
  padding-top: 20px;
  /*z-index: 999;*/
  margin-bottom: 20px; }
.actions-btn .btn-default{
    margin-left: 5px;
    margin-top: 5px;
}
.widget-header .pagination {
  margin-top: 3px !important;
  margin-bottom: 0 !important; }
.widget-header .pagination.list-view-grid {
    margin-top: 3px !important;
}
.widget-header h3 {
  top: 0;
  position: relative;
  left: 10px;
  display: inline-block;
  margin-right: 3em;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #555;
  line-height: 34px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); }

  
  .userList .widget-content {
    height: 325px;
    overflow: auto; }
    .userList .widget-content ul {
      padding-left: 30px;
      list-style: none; }
      .userList .widget-content ul h3 {
        font-weight: bold;
        font-size: 18px;
        color: #333; }

.termsAndCondition {
  max-width: 840px;
  background: #FDFDFD;
  border: 1px solid #ddd;
  padding: 30px;
  margin: 30px auto;
  box-shadow: 0px 10px 20px 0 rgba(0, 0, 0, 0.26); }
  .termsAndCondition p {
    font-size: 16px;
    color: #999;
    line-height: 30px;
    max-height: 300px;
    padding-right: 20px;
    overflow: auto;
    margin: 30px 0; }
  .termsAndCondition h2 {
    font-weight: bold;
    margin: 0; }
  .termsAndCondition label {
    vertical-align: middle; }
    .termsAndCondition label span {
      vertical-align: sub;
      padding-left: 10px; }
    .termsAndCondition label input {
      vertical-align: middle;
      width: 20px;
      height: 20px; }
  .termsAndCondition button {
    float: right; }

.ht240 {
  height: 240px;
  overflow: auto; }

.notification-pannel {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background: #fff;
  border: 1px solid #C5C5C5;
  box-shadow: 1px 3px 4px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 999;
  right: 20px;
  display: none;
  top: 40px;
  border-radius: 5px;
  max-width: 400px; }
  .notification-pannel .n_header {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px 10px 20px; }
    .notification-pannel .n_header span {
      font-size: 18px; }
    .notification-pannel .n_header .n_close {
      float: right;
      font-size: 21px;
      border: 0;
      background: none;
      font-weight: bold;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: 0.2; }
  .notification-pannel .alert-box {
    background: #eee;
    border: 1px solid #C5C5C5;
    border-radius: 4px; }
  .notification-pannel .n_content {
    color: #333;
    float: left;
    width: 100%;
    padding: 10px 20px 0 20px; }
    .notification-pannel .n_content p {
      line-height: 21px; }
  .notification-pannel .n_footer {
    border-top: 1px solid #ccc;
    padding: 10px 20px 10px 20px;
    float: left;
    width: 100%; }

.neworkflow .modalmanage {
  /*.modal-dialog { width: 780px; }*/ }

.divduedate h4 {
  margin: 0;
  font-size: 14px;
  line-height: 18px; }

.approval_replyBlock .replyBlock {
  padding: 7px 15px !important;
  margin-bottom: 0; }
  .approval_replyBlock .replyBlock .email_box {
    margin-bottom: 10px; }
.approval_replyBlock .prps_dd .popover {
  top: -10px !important; }
  .approval_replyBlock .prps_dd .popover .arrow {
    top: 20px !important; }

.approval_parent .coach_Content {
  padding: 0;
  border-radius: 4px;
  background-color: #fff; }
  .approval_parent .coach_Content .coach_Content_textarea .content {
    padding: 0;
    margin: 0;
    width: 96%;
    border-left: 0;
    border-bottom: 0;
    border-top: 0;
    border-radius: 0;
    background: none; }
    .approval_parent .coach_Content .coach_Content_textarea .content .coach_Content_header {
      margin: 0; }
    .approval_parent .coach_Content .coach_Content_textarea .content p {
      padding-bottom: 0;
      margin: 0; }
    .approval_parent .coach_Content .coach_Content_textarea .content .Btn_more {
      margin: 0 4px 4px 0;
      position: static; }
  .approval_parent .coach_Content .coach_Content_textarea .iconBlock {
    position: static;
    width: 4%;
    margin: 0; }
    .approval_parent .coach_Content .coach_Content_textarea .iconBlock button {
      margin-top: 3px;
      display: block; }
    .approval_parent .coach_Content .coach_Content_textarea .iconBlock a {
      margin-top: 3px;
      display: block; }
      .approval_parent .coach_Content .coach_Content_textarea .iconBlock a i {
        color: #000; }

.video-container .normal-content-holder.coaches-area {
  overflow: auto; }

.scrollheight .popover {
  width: 550px;
  max-width: none; }
  .scrollheight .popover .popover-content p {
    font-size: 13px; }

.role_Name .popover {
  top: -15px !important;
  width: 362px;
  max-width: none; }
  .role_Name .popover .arrow {
    top: 22px; }

#network-modal.modal {
  text-align: center;
  padding: 0 !important; }
  #network-modal.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px; }
#network-modal .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle; }

#stats-modal.modal {
  text-align: center;
  padding: 0 !important; }
  #stats-modal.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px; }
#stats-modal .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle; }

.caption .caption-content {
  position: relative; }

.dot {
  position: absolute;
  top: 5px;
  right: 0px;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%; }
  .dot.view-red {
    position: static;
    margin: 10px 5px 0 0;
    float: left;
    width: 11px;
    height: 11px;
    background-color: red; }
  .dot.view-green {
    position: static;
    margin: 10px 5px 0 0;
    float: left;
    width: 11px;
    height: 11px;
    background-color: green; }
  .dot.green {
    background: green; }
  .dot.red {
    background: red; }

.assign_about {
  padding: 0 30px; }
  .assign_about .req_info {
    padding: 15px 0;
    display: block; }
  .assign_about .com_n {
    padding: 15px;
    background-color: #F5F5F5; }
    .assign_about .com_n .form-group {
      overflow: hidden; }
  .assign_about .assignment_date_block {
    position: relative; }
    .assign_about .assignment_date_block .hasDatepicker {
      width: 88%;
      border-radius: 0px; }
    .assign_about .assignment_date_block .ui-datepicker-trigger {
      padding: 7px 0 7px 7px;
      Position: absolute;
      top: 0;
      right: 7px;
      cursor: pointer;
      border-left: 1px solid #ccc; }
  .assign_about .helpbtnBlock {
    display: inline-block; }
  .assign_about textarea.form-control {
    height: 114px; }
  .assign_about .practice_view {
    margin: 7px 0 20px; }
    .assign_about .practice_view span {
      display: inline-block;
      margin: 0 5px 0 0; }
    .assign_about .practice_view input {
      margin: 0 5px 0 0; }
    .assign_about .practice_view label {
      margin: 0; }
  .assign_about .grid-view table tr th, .assign_about .grid-view table tr td {
    font-size: 13px; }

.assignment_tabbedPanels {
  margin: 50px 0 0; }
  .assignment_tabbedPanels .nav-tabs {
    border: 0; }
    .assignment_tabbedPanels .nav-tabs li {
      margin-bottom: 0; }
      .assignment_tabbedPanels .nav-tabs li a {
        padding: 2px 10px 6px;
        margin-right: 4px;
        line-height: 24px;
        border: 1px solid #dadada;
        border-bottom: 0; }
      .assignment_tabbedPanels .nav-tabs li.active a {
        background: #fff; }
        .assignment_tabbedPanels .nav-tabs li.active a:hover {
          border-bottom: 0; }
  .assignment_tabbedPanels .tab-content {
    background: #fff; }
    .assignment_tabbedPanels .tab-content .tab-pane {
      padding: 15px;
      margin: -1px 0 0;
      border: 1px solid #ddd; }

.grid-view .filters input, .grid-view .filters select {
  width: 100%;
  border: 1px solid #ccc; }

.ManageBlock th, .ManageBlock td {
  padding: 8px 4px;
  text-align: center;
  border: 1px solid #fff;
  border-top-color: #ddd;
  background-color: #e5e5e5; }
.ManageBlock td {
  background-color: transparent; }
.ManageBlock tbody tr {
  font-size: 13px;
  background-color: #F5F5F5; }
  .ManageBlock tbody tr.even {
    background-color: #E5E5E5; }
.ManageBlock tbody td {
  padding: 9px;
  text-align: left; }

.backoverlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.8); }
  .backoverlay .dashboard-loading {
    margin-left: -240px;
    margin-top: -45px;
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 480px; }
    .backoverlay .dashboard-loading span {
      margin-top: 10px;
      font-size: 20px;
      line-height: 24px;
      display: block;
      color: #fff; }

.minhght {
  min-height: 215px; }
  .minhght .tooltipNw .popover {
    width: 200px; }
  .minhght .arrow {
    top: 33px !important; }
  .minhght .tooltip-arrow {
    border-right-color: #0b6ccd !important; }
  .minhght .popover-content ul {
    margin: 0; }
  .minhght .popover-content li {
    overflow: hidden; }
    .minhght .popover-content li i {
      width: 25px;
      height: auto; }
    .minhght .popover-content li p {
      padding: 0 10px 0 0;
      float: right;
      width: 80%; }

.gettingdiv {
  display: none;
  position: absolute;
  top: 0;
  z-index: 9999;
  background: #ccc;
  opacity: 0.7;
  font-size: 78px;
  height: 100%;
  width: 100%;
  color: #fff;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f2f5f6+0,e3eaed+58,c8d7dc+100 */
  background: #f2f5f6;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2f5f6 0%, #e3eaed 58%, #c8d7dc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f2f5f6 0%, #e3eaed 58%, #c8d7dc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f2f5f6 0%, #e3eaed 58%, #c8d7dc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f5f6', endColorstr='#c8d7dc',GradientType=0 );
  /* IE6-9 */ }
  .gettingdiv p {
    color: #000;
    text-shadow: -3px 4px 2px #000;
    -webkit-text-shadow: -3px 4px 2px #000; }
  .gettingdiv .instruction {
    padding: 20px;
    font-size: 38px;
    text-shadow: none; }

.progress_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5); }
  .progress_overlay .container {
    height: 100%;
    position: relative; }
  .progress_overlay .backcolor {
    padding: 30px 15px;
    margin: auto;
    height: 100px;
    width: 60%;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #fff; }
    .progress_overlay .backcolor .talk_response {
      padding: 0 0 5px 20px; }
      .progress_overlay .backcolor .talk_response span {
        text-align: center;
        color: #000;
        font-size: 18px; }
  .progress_overlay #myProgress {
    background-color: #ddd; }

.gettingReadyText a {
  padding: 5px 35px;
  margin: 40px 0 0;
  font-size: 42px;
  text-shadow: -3px 2px 1px #000;
  -webkit-text-shadow: -3px 2px 1px #000;
  /*background: #aaa;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  transition: 0.7s ease all;
  -webkit-transition: 0.7s ease all;
  &:hover{
  	background: #fff !important;
  	color: #337ab7 !important;
  	border-color: #fff;
  }*/ }

.expandsubmit {
  display: none; }

#connection-error {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 999999 !important;
  /* Add a z-index if needed */
  right: 0;
  /* Center the snackbar */
  bottom:-25px;
  /* 30px from the bottom */ }

@media (max-width: 1024px) {
  #myElement_controlbar {
    opacity: 1 !important;
    display: block !important; }

  .iconBlock .tooltip {
    display: none !important; } }
.widget-content {
  padding: 0;
  background: #FFF;
  border: 1px solid #D5D5D5;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  overflow: auto;
  width: 100%; }
  .widget-content .table {
    margin-bottom: 0; }
    .widget-content .table thead tr th, .widget-content .table tbody td {
      font-size: 13px;
      color: #333; }
      .widget-content .table thead tr th a, .widget-content .table tbody td a {
        font-size: 13px;
        color: #333; }

.login-container {
  font-weight: bold;
  font-family: CenturyGothic;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5; }
  .login-container .heading {
    font-weight: bold;
    margin-bottom: 15px; }
  .login-container .sub-heading {
    font-weight: bold;
    font-family: CenturyGothic;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5; }

.form-box input[type="text"], .form-box input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #fafafa;
  transition: 0.2s ease-in-out; }
  .form-box input[type="text"]:focus, .form-box input[type="password"]:focus {
    outline: 0;
    background: #eee; }
.form-box input[type="text"] {
  border-radius: 5px 5px 0 0; }
.form-box input[type="password"] {
  border-radius: 0 0 5px 5px;
  border-top: 0; }
.form-box button.login {
  margin-top: 15px;
  padding: 10px 20px; }
.form-box .forgotPassword {
  margin-top: 10px; }

.password {
  position: relative; }
  .password input[type="password"] {
    padding-right: 30px; }

.password .glyphicon, #password2 .glyphicon {
  display: none;
  right: 15px;
  position: absolute;
  top: 12px;
  cursor: pointer; }

.widget-header {
  position: relative;
  height: 40px;
  line-height: 40px;
  background: #E9E9E9;
  background: -moz-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #e9e9e9));
  background: -webkit-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  background: -o-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  background: -ms-linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  background: linear-gradient(top, #fafafa 0%, #e9e9e9 100%);
  text-shadow: 0 1px 0 #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), inset 0 1px 0 white, inset 0 -1px 0 rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #bababa;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
  border: 1px solid #D5D5D5;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-background-clip: padding-box; }

.videoAndTinymce {
  position: relative; }
  .videoAndTinymce .col-sm-8, .videoAndTinymce .col-sm-6 {
    position: static; }

@media only screen and (max-width: 1600px) {
  .commontitleBar .title {
    max-width: 1290px; } }
@media only screen and (max-width: 1400px) {
  .commontitleBar .title {
    max-width: 1090px; } }
@media only screen and (max-width: 1200px) {
  .commontitleBar .title {
    max-width: 880px; } }
@media only screen and (max-width: 1050px) {
  .video-container .video-cntr .videoTopbar ul .troubleshootLink .link {
    display: none; }

  .video-container .video-cntr .videoTopbar ul .troubleshootLink .dot {
    display: block; }

  .site1cntr {
    width: 90%; } }
@media only screen and (max-width: 980px) {
  .memberassignment .col-sm-6 {
    float: none;
    width: auto; }

  .commontitleBar .title {
    max-width: 650px; }

  .site1cntr {
    width: 90%; }

  .team-modal .rw-width .col-sm-12 .col-sm-6 input {
    margin-bottom: 10px; }
  .team-modal .rw-width .col-sm-12 .col-sm-6.rowleft {
    width: 45%;
    margin-right: 30px;
    background: #F5F5F5;
    padding: 0px 20px; }
  .team-modal .rw-width .col-sm-12 .col-sm-12.rowleft {
    margin-right: 30px;
    background: #F5F5F5;
    padding: 10px 20px; }
  .team-modal .rw-width .col-sm-12 .col-sm-6.right-primary {
    background: #F5F5F5;
    width: 50%;
    padding: 0px 20px; } }
#secondary_coach .widget-content {
  max-height: 250px;
  overflow-x: auto;
  margin-bottom: 30px; }

@media (max-width: 1200px) {
  #userModal .modal-lg {
    width: 90%;
    margin: 0 auto; } }
@media only screen and (max-width: 768px) {
  .assign_about {
    padding: 0; }

  .team-modal .modal-body .rw-width.storyapproval span {
    padding-right: 10px !important; }
  .team-modal .modal-body .rw-width .helpbtnBlock .popover.right .arrow:after {
    border-top-color: #0B6CCD;
    border-right-color: transparent !important; }

  .approvprocess .popover {
    width: 235px;
    left: -10px !important;
    top: -125px !important; }
    .approvprocess .popover.right .arrow {
      left: 50%;
      margin-top: 57px;
      margin-left: 0px;
      border: 0; }
      .approvprocess .popover.right .arrow:after {
        border: 0;
        left: -7px;
        border-top: 10px solid transparent;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent; }
    .approvprocess .popover .popover-content {
      height: 113px;
      overflow: auto; }

  .role_Name .popover {
    width: 180px; }

  .notesResources {
    max-height: none; }

  .neworkflow .custom-table {
    padding-bottom: 0px; }
  .neworkflow .actioning_btn .widget-header {
    position: static; }
    .neworkflow .actioning_btn .widget-header .page-nation {
      position: absolute;
      left: 10px;
      bottom: 10px; }
  .neworkflow .actioning_btn .currentPageSize {
    margin-bottom: 90px; }

  .scrollheight .popover {
    width: 90%;
    left: auto !important;
    right: 30px;
    max-width: none; }

  .approval_parent .coach_Content .coach_Content_textarea .content {
    width: 100%;
    border: 0; }
    .approval_parent .coach_Content .coach_Content_textarea .content .Btn_more {
      margin-bottom: 0; }
  .approval_parent .coach_Content .coach_Content_textarea .iconBlock {
    width: 100%;
    margin: 0 0 5px;
    text-align: center; }
    .approval_parent .coach_Content .coach_Content_textarea .iconBlock button {
      margin-top: 0;
      display: inline-block; }
    .approval_parent .coach_Content .coach_Content_textarea .iconBlock a {
      margin-top: 0;
      display: inline-block; }

  #workflow-form {
    padding: 10px; }

  #form-story {
    padding: 10px; }

  .neworkflow {
    margin-top: 5px; }
    .neworkflow .actions-btn {
      padding: 15px 15px 0 !important;
      margin-bottom: 0; }
      .neworkflow .actions-btn .btn {
        margin-bottom: 10px; }
    .neworkflow .modalmanage .modal-dialog {
      width: auto; }
    .neworkflow .actioning_btn .widget-header {
      border-left: 0;
      border-right: 0;
      border-radius: 0; }
      .neworkflow .actioning_btn .widget-header h3 {
        left: 0; }
    .neworkflow .actioning_btn .widget-content {
      border-left: 0;
      border-right: 0;
      border-radius: 0; }

  .video-container .video-cntr .videoTopbar ul .troubleshootLink .link {
    display: block; }

  .video-container .video-cntr .videoTopbar ul .troubleshootLink .dot {
    display: none; }

  .team-modal .modal-body .modalBodyCont .controls .col-sm-4 {
    padding: 0 !important; }

  .guidecontext label {
    display: block; }

  .maxnone {
    max-height: none !important; }
    .maxnone .prps_dd {
      text-align: left !important; }
      .maxnone .prps_dd .col-sm-12 {
        padding: 0; }
        .maxnone .prps_dd .col-sm-12 strong {
          width: 92.4%;
          display: inline-block; }

  .leftContsm3 .leftCont.flaging {
    margin-bottom: 5px !important; }

  .rightContsm9 {
    padding: 0 !important; }

  .stryaprov .col-sm-9.pull-right {
    float: none !important; }
  .stryaprov .col-sm-3 {
    overflow: hidden; }
    .stryaprov .col-sm-3 .popover {
      width: auto !important; }
  .stryaprov .controls .col-sm-4 .helpbtnBlock {
    overflow: hidden; }
    .stryaprov .controls .col-sm-4 .helpbtnBlock .rsm {
      margin: 0; }

  .commontitleBar .title {
    font-size: 21px;
    /*max-width: 350px;*/ }
    .commontitleBar .title h1 {
      font-size: 16px; }
    .commontitleBar .title h2 {
      font-size: 16px; }
    .commontitleBar .title h3 {
      font-size: 16px; }
    .commontitleBar .title h4 {
      font-size: 16px; }
    .commontitleBar .title h5 {
      font-size: 16px; }
    .commontitleBar .title h6 {
      font-size: 16px; }

  .coach-block {
    margin-bottom: 20px; }

  .actions-btn {
    position: static; }

  .site1cntr {
    width: 90%; }

  .team-modal .modal-body .modalBodyCont .row .col-sm-6.radioField {
    padding: 0px !important; }
  .team-modal .modal-body .modalBodyCont .row .col-sm-6 .col-sm-7 {
    padding: 0px;
    margin: 0px; }
  .team-modal .controls .selected {
    margin-bottom: 5px;
    width: 100%; }
  .team-modal .rw-width .col-sm-12 .col-sm-6 input {
    margin-bottom: 10px; }
  .team-modal .rw-width .col-sm-12 .col-sm-6.rowleft {
    padding: 10px !important;
    width: 100% !important;
    margin-top: 0px;
    margin-bottom: 28px; }
  .team-modal .rw-width .col-sm-12 .col-sm-6.right-primary {
    padding: 10px !important;
    width: 100% !important; } }
@media only screen and (max-width: 767px) {
  .normal-content-holder {
    /* height: auto !important;  */
  }

  .videoAndTinymce .col-sm-8 {
    position: relative;
    height: 40px; }
    .videoAndTinymce .col-sm-8.heightAuto {
      height: auto; }

  .videoAndTinymce .col-sm-6 {
    position: relative; }

  .video-container .notesLoadingArea {
    width: 100% !important; }

  .container-fluid .video-container .notesLoadingArea {
    height: 40px !important; }

  .DescriptionBlock .survery {
    padding: 0 0 0 5px; }

  .DescriptionBlock .addmembers .resultList .resultList_block h5 {
    width: 89%; } }
@media only screen and (max-width: 479px) {
  #pswd_info {
    width: 74%; }

  #userModal .modal-lg {
    width: 100%; }

  .loader {
    width: 100%; }

  .site1cntr {
    width: 90%; }

  .team-modal .modal-body .modalBodyCont .row .col-sm-6.radioField {
    padding: 0px !important; }
  .team-modal .modal-body .modalBodyCont .row .col-sm-6 .col-sm-7 {
    padding: 0px;
    margin: 0px; }
  .team-modal .modal-body .modalBodyCont .row .col-sm-6 .col-sm-5.sm-2 {
    width: 100% !important; }
  .team-modal .rw-width .col-sm-12 .col-sm-6 input {
    margin-bottom: 10px; }
  .team-modal .rw-width .col-sm-12 .col-sm-6.rowleft {
    padding: 10px !important;
    width: 100% !important;
    margin-top: 0px;
    margin-bottom: 28px; }
  .team-modal .rw-width .col-sm-12 .col-sm-6.right-primary {
    padding: 10px !important;
    width: 100% !important; }
  .team-modal .update-modal {
    width: 99%;
    margin: 0px auto; } }
@media only screen and (max-width: 350px) {
  #pswd_info {
    width: 74%; }

  .log-cont .bigLOGO img {
    width: 100%; }
  .log-cont .loader {
    width: 100%; }

  .video-container .video-cntr .videoTopbar ul .troubleshootLink .link {
    display: none; }

  .video-container .video-cntr .videoTopbar ul .troubleshootLink .dot {
    display: block; }

  .site1cntr {
    width: 90%; } }
/**priya**/
/*#### login form css ###**/
.log-cont {
  max-width: 350px;
  padding: 0 20px;
  margin: 50px auto 0px auto;
  position: relative;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.4);
  padding: 22px 20px;
  font-family: fontHelvetica,arial;
  font-weight: 300; }
  .log-cont h3.login-h3 {
    color: #003b5d;
    padding-bottom: 10px; }
  .log-cont h4.login-h4 {
    font-size: 18px;
    padding-bottom: 10px; }
  .log-cont .sub-heading {
    font-family: fontHelvetica,arial;
    font-weight: 300;
    line-height: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin: 16px 0px 22px 0px; }
  .log-cont h3 {
    color: #003b5d; }
  .log-cont .sign {
    font-size: 24px;
    padding: 5px 0;
    display: block;
    line-height: 40px; }
  .log-cont .form-box input[type="text"], .log-cont .form-box input[type="password"] {
    background-color: #fff;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-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 linear .2s,box-shadow linear .2s;
    -moz-transition: border linear .2s,box-shadow linear .2s;
    -o-transition: border linear .2s,box-shadow linear .2s;
    transition: border linear .2s,box-shadow linear .2s;
    border-radius: 0px;
    margin-bottom: 10px; }
  .log-cont .btn-primary {
    background-color: #006dcc;
    background-image: -moz-linear-gradient(top, #08c, #04c);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
    background-image: -webkit-linear-gradient(top, #08c, #04c);
    background-image: -o-linear-gradient(top, #08c, #04c);
    background-image: linear-gradient(to bottom, #08c, #04c);
    border-color: #04c #04c #002a80;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    margin-top: 27px; }
  .log-cont .btn-primary:hover {
    background: #04c; }

/**combined css*/
.modal .replyModal .modal-body {
  max-height: 300px; }

.modal-cs {
  max-width: 370px; }

.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
  z-index: 0; }

/*comment area section**/
.coach {
  padding-top: 10px; }
  .coach.private_comment input {
    float: left; }
  .coach.private_comment label {
    margin: 0 0 0 5px; }

.coaching-text textarea {
  height: 87px; }

.errorSummary,
.errorSummary {
  color: #DD4B39 !important; }
  .errorSummary p,
  .errorSummary p {
    color: #DD4B39 !important; }

/** loader css **/
.loader {
  float: left;
  text-align: center; }
  .loader img {
    margin: 70px auto;
    height: 80px; }

/**new pages for sharperax bootstrap3**/
.table-responsive .currentPageSize {
  margin-bottom: 35px; }
.table-responsive .widget-content .table tbody td .table-input, .table-responsive .widget-content .table tbody td select {
  width: 100%;
  height: 30px;
  line-height: 30px; }
.table-responsive .widget-content .table tbody td a {
  color: #025179; }

.video-container .notesLoadingArea {
  color: #e2e2e2;
  font-size: 18px;
  max-height: 360px;
  position: absolute;
  /*z-index: 999;*/
  height: 100% !important;
  width: 50%;
  background: #2e3a42;
  right: 0; }

/* popover */
.helpbtnBlock {
  margin-top: 10px; }
  .helpbtnBlock .shr-green.fa-comment {
    right: 17px; }
  .helpbtnBlock .shr-green:hover {
    color: #048104; }
  .helpbtnBlock .shr-red:hover {
    color: #FF6347; }
  .helpbtnBlock .popover {
    background: #0B6CCD;
    border-color: #0B6CCD;
    color: #fff; }
    .helpbtnBlock .popover.right .arrow:after {
      border-right-color: #0B6CCD; }
    .helpbtnBlock .popover.left .arrow:after {
      border-left-color: #0B6CCD; }
    .helpbtnBlock .popover.bottom .arrow:after {
      border-bottom-color: #0B6CCD; }
    .helpbtnBlock .popover.top .arrow:after {
      border-top-color: #0B6CCD; }
    .helpbtnBlock .popover .popover-content, .helpbtnBlock .popover .popover {
      background: #0B6CCD;
      border-color: #0B6CCD;
      color: #fff; }

.surveytest {
  margin: 5px 30px; }

.cgreen {
  color: #98b523; }

.cwarning {
  color: #ffc80c; }

/**team modal*/
.team-modal .modal-content .modal-header h3.modal-title {
  font-weight: bold;
  font-size: 24px; }
.team-modal .rw-width .col-sm-12 .col-sm-4.create_story_div {
  background: #F5F5F5;}
.team-modal .modal-title {
  font-weight: bold; }
.team-modal .modal-footer .selected {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
.team-modal .modal-footer .updatedis {
  overflow: hidden; }
  .team-modal .modal-footer .updatedis .uploading-progress {
    margin: 8px 15px 0 0; }
.team-modal .approvprocess .popover {
  width: 260px; }
  .team-modal .approvprocess .popover .popover-content {
    height: 113px;
    overflow: auto; }
.team-modal .controls .selected {
  padding: 7px 11px;
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }
.team-modal .modal-body {
  /*min-height: 430px;*/
  overflow-y: auto; }
  .team-modal .modal-body.visibling {
    overflow: visible; }
    .team-modal .modal-body.visibling .popover {
      width: 150px; }
  .team-modal .modal-body .modal-textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #ccc; }
  .team-modal .modal-body .grey-bg {
    background: #F5F5F5;
    padding: 20px;
    width: 100%; }
  .team-modal .modal-body .modalBodyCont {
    background: #F5F5F5;
    padding: 0px 23px 15px 23px;
    margin-bottom: 15px; }
    .team-modal .modal-body .modalBodyCont .paddingTop20 .col-sm-12 {
      padding: 0 15px; }
    .team-modal .modal-body .modalBodyCont .paddingTop20 .col-md-12 {
      padding: 0; }
    .team-modal .modal-body .modalBodyCont .memberIcon .fa {
      font-size: 8px;
      vertical-align: middle; }
    .team-modal .modal-body .modalBodyCont .resultList {
      overflow: visible; }
    .team-modal .modal-body .modalBodyCont .upDownArrow {
      position: absolute;
      top: 7px;
      right: 25px; }
      .team-modal .modal-body .modalBodyCont .upDownArrow .fa {
        font-size: 14px;
        vertical-align: text-top; }
    .team-modal .modal-body .modalBodyCont .deleteOption {
      position: absolute;
      top: 6px;
      right: 5px; }
      .team-modal .modal-body .modalBodyCont .deleteOption .fa {
        font-size: 18px; }
      .team-modal .modal-body .modalBodyCont .deleteOption .tooltip-arrow + .tooltip > .tooltip-inner, .team-modal .modal-body .modalBodyCont .deleteOption .blue-tooltip + .tooltip > .tooltip-inner {
        background-color: #0B6CCD; }
    .team-modal .modal-body .modalBodyCont .row .col-sm-6.radioField {
      padding: 4px 0px 0px 69px; }
      .team-modal .modal-body .modalBodyCont .row .col-sm-6.radioField .col-sm-9 input[type="radio"] {
        margin-right: 0px; }
      .team-modal .modal-body .modalBodyCont .row .col-sm-6.radioField .col-sm-3 h4 {
        margin: 0px; }
    .team-modal .modal-body .modalBodyCont .row .col-sm-6 span {
      padding-right: 10px; }
    .team-modal .modal-body .modalBodyCont .row .col-sm-6 .col-sm-5.sm-2 {
      padding: 0px;
      margin: 0px;
      width: 28%; }
      .team-modal .modal-body .modalBodyCont .row .col-sm-6 .col-sm-5.sm-2 h4 {
        margin: 5px 0px; }
    .team-modal .modal-body .modalBodyCont .controls {
      margin-top: 10px; }
      .team-modal .modal-body .modalBodyCont .controls .col-sm-4 {
        padding: 0 7px 0 0; }
        .team-modal .modal-body .modalBodyCont .controls .col-sm-4 input {
          padding: 8px 0;
          width: 100%; }
        .team-modal .modal-body .modalBodyCont .controls .col-sm-4 .pase {
          margin: 0; }
        .team-modal .modal-body .modalBodyCont .controls .col-sm-4.nopad {
          padding-right: 0; }
  .team-modal .modal-body .rw-width {
    margin: 0px auto 15px; }
    .team-modal .modal-body .rw-width.modal-tprow {
      margin-top: 0px; }
    .team-modal .modal-body .rw-width.storyapproval {
      margin-top: 3px; }
      .team-modal .modal-body .rw-width.storyapproval span {
        padding-right: 13px;
        margin-left:10px;
      }
      .team-modal .modal-body .rw-width.storyapproval span.actions {
        width: 100%;
        float: left;
      }
    .team-modal .modal-body .rw-width .errorMessage {
      display: none;
      color: #c70202; }
    .team-modal .modal-body .rw-width .helpbtnBlock {
      margin-top: 10px; }

.team-modal .modal-body .rw-width .helpbtnBlock.d-inline-block {
        display: inline-block;
    }

.team-modal .modal-body .rw-width .helpbtnBlock.add_element_row {
  border-radius: 50%;
  width: 17px;
  text-align: center;
  padding: 3px 0;
  background: #0c6ccd;
}

.team-modal .modal-body .rw-width .helpbtnBlock.add_element_row a{
        color: #fff;
        font-size: 10px;
    }

.team-modal .modal-body .rw-width .helpbtnBlock .popover {
        background: #0B6CCD;
        border-color: #0B6CCD;
        color: #fff; }
        .team-modal .modal-body .rw-width .helpbtnBlock .popover.right .arrow:after {
          border-right-color: #0B6CCD; }
        .team-modal .modal-body .rw-width .helpbtnBlock .popover.left .arrow:after {
          border-left-color: #0B6CCD; }
        .team-modal .modal-body .rw-width .helpbtnBlock .popover .popover-content, .team-modal .modal-body .rw-width .helpbtnBlock .popover .popover {
          background: #0B6CCD;
          border-color: #0B6CCD;
          color: #fff; }
  .team-modal .modal-body .taggingcol .col-sm-6 {
    padding: 0 15px !important;
    width: 32% !important;
    margin: 0 15px 0 0;
    height: 390px;
    overflow: auto; }
  .team-modal .modal-body .taggingcol .check {
    width: 6% !important;
    margin-right: 2px !important; }
  .team-modal .modal-body .taggingcol .storyapproval span {
    padding-right: 3px !important; }
.team-modal h3 {
  font-size: 21px;
  font-weight: bold;
  margin-top: 0px; }
.team-modal .brand {
  width: 86% !important; }
  .team-modal .brand.select-brand {
    height: 26px; }
  .team-modal .brand h5 {
    padding: 0px 24px; }
.team-modal .col-sm-12 {
  margin: 0px;
  padding: 0px; }
  .team-modal .col-sm-12 h5 {
    padding: 0px;
    margin: 0px;
    font-weight: bold;
    font-size: 17px; }
  .team-modal .col-sm-12 .name {
    width: 100%; }
  .team-modal .col-sm-12 .col-sm-6 {
    padding: 0px 10px 0px 0px; }
    .team-modal .col-sm-12 .col-sm-6.right-primary {
      background: #F5F5F5;
      width: 53%;
      padding: 0px 20px; }
    .team-modal .col-sm-12 .col-sm-6.rowleft {
      width: 45%;
      margin-right: 15px;
      background: #F5F5F5;
      padding: 0px 20px; }
    .team-modal .col-sm-12 .col-sm-12.rowleft {
      margin-right: 15px;
      background: #F5F5F5;
      padding: 10px 20px; }
    .team-modal .col-sm-12 .col-sm-6.embdvds {
      padding: 0; }
      .team-modal .col-sm-12 .col-sm-6.embdvds .helpbtnBlock {
        width: auto; }
        .team-modal .col-sm-12 .col-sm-6.embdvds .helpbtnBlock .popover {
          width: 100%; }
    .team-modal .col-sm-12 .col-sm-6 .rw-width {
      margin: 14px auto; }
      .team-modal .col-sm-12 .col-sm-6 .rw-width.storyapproval {
        margin-top: 3px; }
    .team-modal .col-sm-12 .col-sm-6 .field-box {
      width: 97%; }
    .team-modal .col-sm-12 .col-sm-6 .check {
      width: 4%;
      margin-right: 5px;
      margin-top: 0px; }
      .team-modal .col-sm-12 .col-sm-6 .check.check1 {
        margin-top: 12px; }
    .team-modal .col-sm-12 .col-sm-6 input {
      width: 100%; }

/** team modal end*/
.stryaprov .col-sm-3 {
  padding-right: 0; }
  .stryaprov .col-sm-3 .helpbtnBlock {
    margin: 12px 0 0 5px; }
    .stryaprov .col-sm-3 .helpbtnBlock .popover {
      width: 73%; }

/**Setting icon**/
.admin-menu {
  color: #ddd;
  font-size: 32px;
  margin-top: 10px; }

.pull-right > .admin-dropdown {
  right: 85px;
  top: 40px; }
  .pull-right > .admin-dropdown:before {
    left: 153px; }

/** Support modal **/
#support-modal {
  font-family: 'latoregular', sans-serif;
  font-style: normal; }
  #support-modal .modal-dialog p {
    color: #333333;
    font-size: 14px;
    font-family: 'latoregular', sans-serif; }
  #support-modal .modal-dialog .modal-header h4 {
    font-size: 18px;
    color: #fff !important;
    font-weight: 700;
    font-family: 'latoregular', sans-serif; }
  #support-modal .modal-dialog .modal-body p, #support-modal .modal-dialog .modal-body .fontNormal {
    color: #333333;
    font-size: 14px;
    font-family: 'latoregular', sans-serif; }
  #support-modal .modal-dialog .modal-body textarea.form-control {
    height: 52px; }
  #support-modal .modal-dialog .modal-body .form-control {
    font-family: 'latoregular', sans-serif;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    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;
    -o-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; }
  #support-modal .modal-dialog .modal-body span.required {
      color: red;
  }
/**update modal start**/
#embed-dialog {
  width: 725px; }

.update-modal {
  width: 425px; }
  .update-modal .network_block label {
    font-weight: 300; }
  .update-modal .rwAction {
    margin: 0px auto 0px auto;
    background: #F5F5F5;
    padding: 17px 20px 0px 20px; }
  .update-modal .action_block i img {
    height: 22px; }

.center-ctr {
  padding: 0 2%;
  font-family: 'latoregular', sans-serif; }
  .center-ctr select, .center-ctr .center-ctr-select {
    background: #fff;
    height: 27px;
    border-radius: 2px;
    border: 1px solid #ccc; }
  .center-ctr input[type="radio"] {
    margin-right: 8px; }

/**update modal end**/
.site1cntr {
  padding-left: 0px;
  padding-right: 0px;
  background-color: #FFF;
  margin: 0 auto;
  max-width: 1027px; }
  .site1cntr .modal-backdrop {
    background: #fff !important; }
  .site1cntr .modal {
    margin-top: 70px; }
    .site1cntr .modal .modal-dialog {
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
      width: 400px;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      border: 1px solid rgba(0, 0, 0, 0.333);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      top: 35%;
      z-index: 10000; }
      .site1cntr .modal .modal-dialog .modal-content {
        border-radius: 0px; }
        .site1cntr .modal .modal-dialog .modal-content .modal-header {
          padding: 9px 15px; }
          .site1cntr .modal .modal-dialog .modal-content .modal-header .close {
            font-weight: 700;
            font-size: 27px; }
          .site1cntr .modal .modal-dialog .modal-content .modal-header h3 {
            margin: 0px;
            font-weight: 700;
            text-transform: uppercase; }
        .site1cntr .modal .modal-dialog .modal-content .heading {
          width: 27%;
          padding: 5px 0; }
        .site1cntr .modal .modal-dialog .modal-content .name-fld {
          margin: 0px;
          padding: 0px; }
        .site1cntr .modal .modal-dialog .modal-content label {
          width: 100%;
          font-weight: 400; }
        .site1cntr .modal .modal-dialog .modal-content .title {
          width: 65%;
          height: 30px;
          line-height: 30px; }
        .site1cntr .modal .modal-dialog .modal-content .radio-label .label1, .site1cntr .modal .modal-dialog .modal-content .radio-label .label2 {
          display: inline-block;
          margin-right: 20px; }
        .site1cntr .modal .modal-dialog .modal-content .radio-label .label1 {
          width: 20%; }
        .site1cntr .modal .modal-dialog .modal-content .radio-label .label2 {
          width: 30%; }
        .site1cntr .modal .modal-dialog .modal-content .errorSummary {
          color: #DD4B39; }
      .site1cntr .modal .modal-dialog .modal-footer .btn-primary {
        background-color: #006dcc;
        background-image: -moz-linear-gradient(top, #08c, #04c);
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
        background-image: -webkit-linear-gradient(top, #08c, #04c);
        background-image: -o-linear-gradient(top, #08c, #04c);
        background-image: linear-gradient(to bottom, #08c, #04c);
        border-color: #04c #04c #002a80;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); }
      .site1cntr .modal .modal-dialog .modal-footer .close-btn {
        padding: 4px 12px;
        vertical-align: middle;
        cursor: pointer;
        color: #333;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
        background-color: #f5f5f5;
        background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
        background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
        background-image: -o-linear-gradient(top, #fff, #e6e6e6);
        background-image: linear-gradient(to bottom, #fff, #e6e6e6);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        border: 1px solid #ccc;
        border-bottom-color: #b3b3b3;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
  .site1cntr .tab-box {
    margin-bottom: 48px; }
  .site1cntr .row-fluid .breadcrumb {
    margin-top: 10px;
    border: 1px solid #dadada; }
    .site1cntr .row-fluid .breadcrumb li {
      color: #000; }
  .site1cntr .row-fluid .nav-tabs > li a {
    margin-bottom: -1px;
    background: #f9f9f9;
    margin-right: 5px;
    border: 1px solid #dadada;
    cursor: pointer;
    color: #08c;
    font-size: 18px; }
  .site1cntr .row-fluid .nav-tabs > .active > a {
    color: #555;
    border: 1px solid #ccc;
    border-bottom-color: transparent;
    background: #fff; }
  .site1cntr .row-fluid .tab-content {
    background-color: #F5F5F5;
    padding: 10px 16px 40px 16px; }
    .site1cntr .row-fluid .tab-content .tab-pane .sm-2 {
      padding-left: 0px; }

.newtheme-heading {
  padding-bottom: 40px; }
  .newtheme-heading ul {
    margin: 25px 0px 0px 0px;
    padding: 0px; }
    .newtheme-heading ul li.active {
      list-style-type: none; }
      .newtheme-heading ul li.active a span {
        border-bottom: 7px solid #EEC672;
        color: #000;
        padding-bottom: 10px; }

/**## On Off Switch Button ##**/
/**## onOffCheckBox ##**/
.onOffCheckBox {
  width: 75px;
  height: 20px;
  background: #337ab7;
  position: relative;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2); }
  .onOffCheckBox:after {
    content: 'NO';
    color: #fff;
    position: absolute;
    right: 10px;
    top: -2px;
    z-index: 0;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15); }
  .onOffCheckBox:before {
    content: 'YES';
    color: #fff;
    position: absolute;
    left: 10px;
    z-index: 0;
    top: -2px;
    font: 12px/26px Arial, sans-serif;
    font-weight: bold; }
  .onOffCheckBox label {
    display: block;
    width: 30px;
    height: 15px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 5px;
    z-index: 1;
    background: #fcfff4;
    background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    border-radius: 50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3); }
  .onOffCheckBox input[type=checkbox] {
    /*visibility: hidden;*/
    opacity: 0;
  }
    .onOffCheckBox input[type=checkbox]:checked + label {
      left: 40px; }
  .onOffCheckBox.tagchek {
    float: right; }

.wd45 {
  width: 45%; }

.wd65 {
  width: 65%; }

.disabledDiv {
  position: absolute;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 777;
  opacity: .5; }

.switchBlock {
  position: relative; }

.m-right-0 {
  margin-right: 0 !important; }

/***## Record Section ##**/
img.wid100 {
  width: 100% !important; }

.wid100 {
  width: 100% !important; }

.wid50 {
  width: 50% !important; }

.video-container .video-gallary-slider .video-gallary-wrapper .gallary-item {
  overflow: visible;
  padding: 5px 0 5px 14px;
  border: 0; 
  position:relative;
}
  .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .cc_slide {
    border: 6px solid #ccc;
    overflow: hidden; }
  .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .volumeControlBox {
    height: 115px; }
    .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .volumeControlBox img {
      width: auto; }
  .video-container .video-gallary-slider .video-gallary-wrapper .gallary-item .gallary-item .top {
    background-color: #A2A2A2 !important; }
.video-container .video-gallary-slider .video-gallary-wrapper .owl-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 0; }
.video-container .video-cntr .videoFlashPlayer > img {
  width: 150px;
  height: 150px; }
.video-container .video-cntr .videoFlashPlayer .recorder {
  text-align: center;
  z-index: 77777;
  height: 220px;
  padding-top: 0px; }
  .video-container .video-cntr .videoFlashPlayer .recorder img {
    height: 130px;
    width: 130px; }
  .video-container .video-cntr .videoFlashPlayer .recorder .fa {
    color: #fff;
    font-size: 100px; }
.video-container .video-cntr .videoFlashPlayer .recorderBackground .mic-icon {
  background: #20292f; }
.video-container .video-cntr .videoFlashPlayer .record-pauseSection {
  padding: 5px 0 0 5px;
  bottom: 0;
  height: 30px;
  width: 100%;
  background: #333333;
  position: absolute;
  z-index: 7777; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .record {
    height: 20px;
    width: 20px;
    background: #f53333;
    border-radius: 50%;
    border: 2px solid #333333;
    box-shadow: 0 0 0 2px #fff;
    padding: 2px; }
    .video-container .video-cntr .videoFlashPlayer .record-pauseSection .record:hover {
      box-shadow: 0 0 0 2px #696969 !important; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .pull-left {
    padding: 0; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .stop {
    height: 16px;
    width: 16px;
    background: #f53333;
    border: 2px solid #333333;
    position: relative;
    top: 2px;
    float: left;
    padding: 2px 0px;
    box-shadow: 0 0 0 2px #fff; }
    .video-container .video-cntr .videoFlashPlayer .record-pauseSection .stop:hover {
      box-shadow: 0 0 0 2px #696969 !important; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .record:hover, .video-container .video-cntr .videoFlashPlayer .record-pauseSection .stop:hover {
    box-shadow: 0 0 0 2px #fff; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .pause, .video-container .video-cntr .videoFlashPlayer .record-pauseSection .play {
    font-size: 21px;
    color: #fff;
    padding: 0px 0px 0px 10px;
    vertical-align: -moz-middle-with-baseline; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .pause {
    float: left; }
    .video-container .video-cntr .videoFlashPlayer .record-pauseSection .pause:before {
      margin: 0;
      display: block; }
  .video-container .video-cntr .videoFlashPlayer .record-pauseSection .rightText {
    color: #fff;
    padding: 5px 15px 5px 0px; }

.audioOverlay {
  height: 104px;
  width: 103px;
  position: absolute;
  top: 100px;
  z-index: 9999;
  cursor: pointer; }

.leftContsm3 {
  padding: 0px; }
  .leftContsm3 .leftCont {
    padding: 20px; }
    .leftContsm3 .leftCont .firstRow {
      margin-bottom: 20px; }
    .leftContsm3 .leftCont .leftContRow {
      padding: 10px 20px;
      border-top: 1px solid #ccc; }
      .leftContsm3 .leftCont .leftContRow label {
        margin-bottom: 10px; }
    .leftContsm3 .leftCont.flaging {
      padding: 0;
      margin-bottom: 0;
      height: auto; }
      .leftContsm3 .leftCont.flaging .nav-tabs {
        margin: 0;
        border-radius: 0;
        border: 0; }
        .leftContsm3 .leftCont.flaging .nav-tabs li {
          width: 50%;
          text-align: center;
          margin: 0;
          border: 0; }
          .leftContsm3 .leftCont.flaging .nav-tabs li:first-child a {
            margin: 0; }
          .leftContsm3 .leftCont.flaging .nav-tabs li.active a {
            color: #000; }
          .leftContsm3 .leftCont.flaging .nav-tabs li a {
            margin: 0 0 0 5px;
            border: 1px solid #ddd;
            border-bottom: 0;
            font-weight: bold; }
      .leftContsm3 .leftCont.flaging .tabing {
        margin: 10px;
        height: auto; }
      .leftContsm3 .leftCont.flaging .firstRow {
        padding: 10px;
        margin: -1px 0 0;
        border: 1px solid #ddd;
        background: #fff; }

.rightContsm9 {
  padding: 0px 0px 0px 5px; }

.selectOverflow .select2-container-multi .select2-choices {
  height: 34px !important;
  overflow-y: scroll; }

.blue-tooltip + .tooltip .tooltip-inner {
  background-color: #0b6ccd; }
.blue-tooltip + .tooltip > .tooltip-arrow {
  border-top-color: #0b6ccd; }

.guidecontext .popover {
  width: 170px; }

/**Volume control icon **/
.icon_approve {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0;
  width: 100%; }
  .icon_approve img {
    width: 100%; }

.volumeIcon {
  background: #0079bb;
  padding: 2px 12px;
  margin: 0px;
  border-radius: 4px;
  float: left;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 6;
}
  .volumeIcon .fa {
    color: #fff;
    font-size: 20px; }

.flag {
  position: absolute;
  left: 5px;
  top: 0px;
  font-size: 25px;
  z-index: 9;
  width: auto;
  margin-top: 0; }
  .flag .whitespace {
    background-color: #fff;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 11px;
    height: 12px;
    z-index: -9; }
  .flag .popover {
    width: initial;
    top: 1px !important; }
    .flag .popover .arrow {
      margin-top: -15px; }
    .flag .popover .popover-content {
      padding: 7px 10px; }
  .flag .green {
    color: #98b523; }
  .flag .yellow {
    color: #ffc80c; }
  .flag .blue {
    color: #096bcd; }
  .flag .red {
    color: red; }

.toolTipNw .popover {
  top: -25px !important;
  left: 25.625px;
  display: block;
  font-size: 13px;
  width: 170px;
  background: #0b6ccd;
  color: #fff; }
  .toolTipNw .popover.right > .arrow:after {
    border-right-color: #0b6ccd; }
.toolTipNw .popover-content {
  padding: 9px 0px; }
  .toolTipNw .popover-content ul {
    margin-left: 0px;
    padding-left: 14px;
    list-style: none; }
  .toolTipNw .popover-content i {
    float: left;
    /* padding: 0px 6px; */
    width: 42px;
    height: 128px; }
    .toolTipNw .popover-content i img {
      height: 22px;
      width: 22px; }
.toolTipNw .toolTipNw .popover-content p {
  width: 134px; }

.coach_boxContent {
  margin-top: 10px; }

.hideChatClass{
    margin-top: 9px;
    display: flex;
}
.hideChatClass span{
    margin-right: 6px;
    color: white;
}

.audiocontrol .audiofooter .voicerecogni .stopbtn{
    width: 44px;
    opacity: 1;
}

.d-inline-block {
  display: inline-block;
}
.stopBtnLoader {
    margin-top: -1px;
    margin-left: 6px;
    border: 2px solid #3498db;
    border-radius: 100%;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    width: 17px;
    height: 17px;
    -webkit-animation: spin 0.9s linear infinite; /* Safari */
    animation: spin 0.9s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*.toolTipNw .popover{
	top: -25px !important;
    left: 25.625px;
    display: block;
    font-size: 13px;
    width: 170px;
    background: #0b6ccd;
    color:#fff;
}

.toolTipNw .popover.right > .arrow:after {

    border-right-color: #0b6ccd;
}

.toolTipNw .popover-content {
    padding: 9px 0px;
}

.toolTipNw .popover-content ul{
    margin-left: 0px;
    padding-left: 14px;
    list-style: none;
}*/
/*.toolTipNw .popover-content i{
float: left;
     padding: 0px 6px;
    width: 42px;
    height: 128px;
}*/
/*.toolTipNw .popover-content p{
    width: 134px;

}*/

/*# sourceMappingURL=sh-style.css.map */

/**
Added by Raghav
*/

/**
Generic Classes
*/
.input-fullwidth
{
  width:100%;
}

.grey-bg
{
  background-color: #f5f5f5;
}

.ptb0
{
  padding:0px;
}
.pt10{
  padding-top:10px;
}
/**
Search Page list
*/

.search-header{
  font-weight: 700;
}
li.story-list {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}


li.story-list:hover {
  background: #f2f2f2;
}

.storySearchHeading h3 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 700;
}

.thumbsVideo {
  background: none repeat scroll 0 0 #ccc;
  height: 93px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 124px;
}

.thumbsVideo span {
  padding: 10px;
  display: block;
  text-align: center;
}

.thumbsVideo img {
  height: 100%;
  width: 100%;
}

.headingVideo {
  font-size: 20px!important;
  color: #06c;
  font-weight: bold;
}

.summaryData .innerExpanderContent p, .summaryData .innerExpanderContent span, .summaryData .innerExpanderContent strong, .summaryData .innerSummaryLinesExpander {
  text-decoration: none!important;
  font-weight: 400!important;
  font-size: 14px!important;
  font-style: normal!important;
  font-family: fontHelvetica,arial!important;
  text-align: left!important;
}

.summaryData li {
  padding: 5px 0;
}

/**
Bootstrap Fix Helpers
*/
.ui_tpicker_timezone select
{
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .assignment_date_block .hasDatepicker {
      width: 93% !important;
  }
}


.DescriptionBlock .assignment_tabbedPanels .ManagetableBlock th
{
  font-size: 13px;
}


.ManagetableBlock.table th a {
  font-size: 13px!important;
  white-space: normal;
  color: #555!important;
}

.ManagetableBlock.table th a i{
  line-height: 18px;
}

.DescriptionBlock .addmembers .resultList .resultList_block .cross img {
  min-width: 15px;
}

.select2-minheight-55 .select2 .selection .select2-selection
{
  min-height: 55px;
}

.user-form-wrapper
{
  margin: 15px 0 50px 0;
  border: 1px solid #dadada;
  padding: 12px;
}

.brand-settings-block{
  padding-top: 0;
  padding-bottom: 20px;
}

.has-switch label{
  z-index: 1 !important;
}
/*Captivate Player Styles*/
.captivate-wrapper
{

}

.captivate-wrapper .captivate-controls
{
  width: 100%;
  height: 100%;
  position: absolute;
  background: #09294e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.captivate-wrapper .captivate-controls .captivate-overlay-image-play {
  opacity: .6;
  cursor: pointer;
  transition: all 300ms ease-out;
}
.captivate-wrapper .captivate-controls .captivate-overlay-image-play:hover {
  opacity: 1;
}
.captivate-wrapper .captivate-controls .captivate-overlay-image-play svg {
  fill: white;
  width: 25%;
}
.captivate-wrapper .captivate-controls .captivate-overlay-image-play p {
  color: white;
  margin-top: 10px;
  font-size: 16px;
}

.captivate-wrapper .captivate-content button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: #09294e;
  border: none;
  padding: 5px 10px;
  color: white;
  font-weight: bold;
  opacity: .6;
  transition: all 300ms ease-out;
}
.captivate-wrapper .captivate-content button:hover {
  opacity: 1;
}

.videoFlashPlayer .videoTitle .videoHeading a:hover{
  color:#fff;
  text-decoration: none;
}

.videoFlashPlayer .videoTitle .videoHeading a{
  color:#eec672;
  font-size: 18px;
  /*text-decoration: underline;*/
}
.mce-edit-area.mce-container.mce-panel.mce-first.mce-last .mce-stack-layout{
  height: 100%;
}


.audioRecHeading{
  justify-content: flex-start !important;
}

.audioRecHeading .removeTitle{
  position:absolute !important;
  top:100px !important;
}

.uploadFormDialog{
  z-index: 9999 !important;
}

#saveLinksModal{
  z-index: 9999;
}

div.history-listview-container{margin:0px 30px;}

@media only screen and (max-width: 800px) {
  .audiocontrol .viewchatDiv {
    height: calc(100% - 20px) !important;
  }
}