/* Falha ao minimizar. Retornando o conteúdo não minimizado.
(3956,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '<!--'
(3956,34): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-->'
 */
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    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 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default:disabled,.btn-default[disabled]{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary:disabled,.btn-primary[disabled]{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success:disabled,.btn-success[disabled]{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info:disabled,.btn-info[disabled]{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning:disabled,.btn-warning[disabled]{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger:disabled,.btn-danger[disabled]{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.45
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
/* Generated by less 1.7.0 */
/********************************************************************
Theme: Curo - Admin Template
Created: 2014
Creator: Kevin Mckoy
Support: https://wrapbootstrap.com/user/realmckoy01


Structure of CSS

1. General Layout
2. Section Style Section
3. Header  

*********************************************************************/
/********************************************************************/
/********************************************************************/
/* General */


  .mytab tr:nth-child(odd) {
    background-color:#fff;
  }  
  .mytab tr:nth-child(even) {
    background-color:#ccc;
  } 

  .mytab tr:hover { 
      background: #dddddd; 

  }


body {
  font-size: 13px;
  color: #454545;
  background: #fafafa;
  position: relative;
  overflow-x: hidden;
  font-family: 'Source Sans Pro', 'Oxygen', sans-serif;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: 'Oxygen', sans-serif;
  font-weight: 400;
  background: none;
  padding: 0;
  width: auto;
  color: inherit;
  text-align: inherit;
}
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4,
.h4 {
  font-size: 18px;
}
a {
  color: #fff;
  -webkit-transition: all 0.18s ease-in-out;
  -moz-transition: all 0.18s ease-in-out;
  -ms-transition: all 0.18s ease-in-out;
  -o-transition: all 0.18s ease-in-out;
  transition: all 0.18s ease-in-out;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
p {
  background: none;
  padding: 0;
  margin: 0 0 10px;
  text-align: inherit;
  border: none;
  font-family: inherit;
}
input,
textarea {
  border: 1px solid #dddddd;
}
button {
  border-radius: 0;
  border: 1px solid #dddddd;
}
iframe {
  border: none;
}
.squared {
  border-radius: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.padding-5 {
  padding: 5px !important;
}
.padding-10 {
  padding: 10px !important;
}
.padding-15 {
  padding: 15px !important;
}
.padding-20 {
  padding: 20px !important;
}
.no-margin {
  margin: 0 !important;
}
.mg-5 {
  margin: 5 !important;
}
.mg-10 {
  margin: 10px !important;
}
.mg-15 {
  margin: 15px !important;
}
.mg-20 {
  margin: 20px !important;
}
.mg-25 {
  margin: 25px !important;
}
.mg-30 {
  margin: 30px !important;
}
.mg-35 {
  margin: 35px !important;
}
.mg-40 {
  margin: 40px !important;
}
.mg-45 {
  margin: 45px !important;
}
.mg-50 {
  margin: 50px !important;
}
.mg-55 {
  margin: 55px !important;
}
.mg-60 {
  margin: 60px !important;
}
.mg-top-0 {
  margin-top: 0 !important;
}
.mg-top-5 {
  margin-top: 5px !important;
}
.mg-top-10 {
  margin-top: 10px !important;
}
.mg-top-15 {
  margin-top: 15px !important;
}
.mg-top-20 {
  margin-top: 20px !important;
}
.mg-top-25 {
  margin-top: 25px !important;
}
.mg-top-30 {
  margin-top: 30px !important;
}
.mg-top-35 {
  margin-top: 35px !important;
}
.mg-top-40 {
  margin-top: 40px !important;
}
.mg-top-45 {
  margin-top: 45px !important;
}
.mg-top-50 {
  margin-top: 50px !important;
}
.mg-top-55 {
  margin-top: 55px !important;
}
.mg-top-60 {
  margin-top: 60px !important;
}
.mg-btm-0 {
  margin-bottom: 0 !important;
}
.mg-btm-5 {
  margin-bottom: 5px !important;
}
.mg-btm-10 {
  margin-bottom: 10px !important;
}
.mg-btm-15 {
  margin-bottom: 15px !important;
}
.mg-btm-20 {
  margin-bottom: 20px !important;
}
.mg-btm-25 {
  margin-bottom: 25px !important;
}
.mg-btm-30 {
  margin-bottom: 30px !important;
}
.mg-btm-35 {
  margin-bottom: 35px !important;
}
.mg-btm-40 {
  margin-bottom: 40px !important;
}
.mg-btm-45 {
  margin-bottom: 45px !important;
}
.mg-btm-50 {
  margin-bottom: 50px !important;
}
.mg-btm-55 {
  margin-bottom: 55px !important;
}
.mg-btm-60 {
  margin-bottom: 60px !important;
}
.mg-left-0 {
  margin-left: 0 !important;
}
.mg-left-5 {
  margin-left: 5px !important;
}
.mg-left-10 {
  margin-left: 10px !important;
}
.mg-left-15 {
  margin-left: 15px !important;
}
.mg-left-20 {
  margin-left: 20px !important;
}
.mg-left-25 {
  margin-left: 25px !important;
}
.mg-left-30 {
  margin-left: 30px !important;
}
.mg-left-35 {
  margin-left: 35px !important;
}
.mg-left-40 {
  margin-left: 40px !important;
}
.mg-left-45 {
  margin-left: 45px !important;
}
.mg-left-50 {
  margin-left: 50px !important;
}
.mg-left-55 {
  margin-left: 55px !important;
}
.mg-left-60 {
  margin-left: 60px !important;
}
.mg-right-0 {
  margin-right: 0 !important;
}
.mg-right-5 {
  margin-right: 5px !important;
}
.mg-right-10 {
  margin-right: 10px !important;
}
.mg-right-15 {
  margin-right: 15px !important;
}
.mg-right-20 {
  margin-right: 20px !important;
}
.mg-right-25 {
  margin-right: 25px !important;
}
.mg-right-30 {
  margin-right: 30px !important;
}
.mg-right-35 {
  margin-right: 35px !important;
}
.mg-right-40 {
  margin-right: 40px !important;
}
.mg-right-45 {
  margin-right: 45px !important;
}
.mg-right-50 {
  margin-right: 50px !important;
}
.mg-right-55 {
  margin-right: 55px !important;
}
.mg-right-60 {
  margin-right: 60px !important;
}
.bg-blue,
.bg-info {
  background-color: #2980b9 !important;
}
.bg-light-blue {
  background-color: #3498db !important;
}
.bg-red,
.bg-danger {
  background-color: #d40d12 !important;
}
.bg-light-red {
  background-color: #ff1d23 !important;
}
.bg-purple {
  background-color: #8e44ad !important;
}
.bg-light-purple {
  background-color: #9b59b6 !important;
}
.bg-green,
bg-success {
  background-color: #27ae60 !important;
}
.bg-light-green {
  background-color: #2ecc71 !important;
}
.bg-orange,
.bg-warning {
  background-color: #e82c0c !important;
}
.bg-light-orange {
  background-color: #ff530d !important;
}
.bg-pink {
  background-color: #fe31ab !important;
}
.bg-light-pink {
  background-color: #fd32c0 !important;
}
.color-white {
  color: white !important;
}
.color-green,
.text-success {
  color: #27ae60 !important;
}
.color-light-green {
  color: #2ecc71 !important;
}
.color-blue,
.text-info {
  color: #2980b9 !important;
}
.color-light-blue {
  color: #3498db !important;
}
.color-orange,
.text-warning {
  color: #e82c0c !important;
}
.color-light-orange {
  color: #ff530d !important;
}
.color-red,
.text-danger {
  color: #d40d12 !important;
}
.color-light-red {
  color: #ff1d23 !important;
}
.color-purple {
  color: #8e44ad !important;
}
.color-light-purple {
  color: #9b59b6 !important;
}
.color-pink {
  color: #fe31ab !important;
}
.color-light-pink {
  color: #fd32c0 !important;
}
.border-green {
  border: 4px solid #27ae60 !important;
}
.border-light-green {
  border: 4px solid #2ecc71 !important;
}
.border-blue {
  border: 4px solid #2980b9 !important;
}
.border-light-blue {
  border: 4px solid #3498db !important;
}
.border-orange {
  border: 4px solid #e82c0c !important;
}
.border-light-orange {
  border: 4px solid #ff530d !important;
}
.border-red {
  border: 4px solid #d40d12 !important;
}
.border-light-red {
  border: 4px solid #ff1d23 !important;
}
.border-purple {
  border: 4px solid #8e44ad !important;
}
.border-light-purple {
  border: 4px solid #9b59b6 !important;
}
.border-pink {
  border: 4px solid #fe31ab !important;
}
.border-light-pink {
  border: 4px solid #fd32c0 !important;
}
.border-top-green {
  border-top: 4px solid #27ae60 !important;
}
.border-top-light-green {
  border-top: 4px solid #2ecc71 !important;
}
.border-top-blue {
  border-top: 4px solid #2980b9 !important;
}
.border-top-light-blue {
  border-top: 4px solid #3498db !important;
}
.border-top-orange {
  border-top: 4px solid #e82c0c !important;
}
.border-top-light-orange {
  border-top: 4px solid #ff530d !important;
}
.border-top-red {
  border-top: 4px solid #d40d12 !important;
}
.border-top-light-red {
  border-top: 4px solid #ff1d23 !important;
}
.border-top-purple {
  border-top: 4px solid #8e44ad !important;
}
.border-top-light-purple {
  border-top: 4px solid #9b59b6 !important;
}
.border-top-pink {
  border-top: 4px solid #fe31ab !important;
}
.border-top-light-pink {
  border-top: 4px solid #fd32c0 !important;
}
.border-right-green {
  border-right: 4px solid #27ae60 !important;
}
.border-right-light-green {
  border-right: 4px solid #2ecc71 !important;
}
.border-right-blue {
  border-right: 4px solid #2980b9 !important;
}
.border-right-light-blue {
  border-right: 4px solid #3498db !important;
}
.border-right-orange {
  border-right: 4px solid #e82c0c !important;
}
.border-right-light-orange {
  border-right: 4px solid #ff530d !important;
}
.border-right-red {
  border-right: 4px solid #d40d12 !important;
}
.border-right-light-red {
  border-right: 4px solid #ff1d23 !important;
}
.border-right-purple {
  border-right: 4px solid #8e44ad !important;
}
.border-right-light-purple {
  border-right: 4px solid #9b59b6 !important;
}
.border-right-pink {
  border-right: 4px solid #fe31ab !important;
}
.border-right-light-pink {
  border-right: 4px solid #fd32c0 !important;
}
.border-bottom-green {
  border-bottom: 4px solid #27ae60 !important;
}
.border-bottom-light-green {
  border-bottom: 4px solid #2ecc71 !important;
}
.border-bottom-blue {
  border-bottom: 4px solid #2980b9 !important;
}
.border-bottom-light-blue {
  border-bottom: 4px solid #3498db !important;
}
.border-bottom-orange {
  border-bottom: 4px solid #e82c0c !important;
}
.border-bottom-light-orange {
  border-bottom: 4px solid #ff530d !important;
}
.border-bottom-red {
  border-bottom: 4px solid #d40d12 !important;
}
.border-bottom-light-red {
  border-bottom: 4px solid #ff1d23 !important;
}
.border-bottom-purple {
  border-bottom: 4px solid #8e44ad !important;
}
.border-bottom-light-purple {
  border-bottom: 4px solid #9b59b6 !important;
}
.border-bottom-pink {
  border-bottom: 4px solid #fe31ab !important;
}
.border-bottom-light-pink {
  border-bottom: 4px solid #fd32c0 !important;
}
.border-left-green {
  border-left: 4px solid #27ae60 !important;
}
.border-left-light-green {
  border-left: 4px solid #2ecc71 !important;
}
.border-left-blue {
  border-left: 4px solid #2980b9 !important;
}
.border-left-light-blue {
  border-left: 4px solid #004B97 !important;
}
.border-left-orange {
  border-left: 4px solid #e82c0c !important;
}
.border-left-light-orange {
  border-left: 4px solid #ff530d !important;
}
.border-left-red {
  border-left: 4px solid #d40d12 !important;
}
.border-left-light-red {
  border-left: 4px solid #ff1d23 !important;
}
.border-left-purple {
  border-left: 4px solid #8e44ad !important;
}
.border-left-light-purple {
  border-left: 4px solid #9b59b6 !important;
}
.border-left-pink {
  border-left: 4px solid #fe31ab !important;
}
.border-left-light-pink {
  border-left: 4px solid #fd32c0 !important;
}
.bg1 {
  background-image: url('../img/backgrounds/bg1.jpg');
}
.bg2 {
  background-image: url('../img/backgrounds/bg2.jpg');
}
.bg3 {
  background-image: url('../img/backgrounds/bg3.jpg');
}
.blurred-bg1 {
  background-image: url('../img/backgrounds/blurred-bg1.jpg');
}
.blurred-bg2 {
  background-image: url('../img/backgrounds/blurred-bg2.jpg');
}
/* End General */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Form */
.form-control {
  border-radius: 0;
}
.input-sm {
  border-radius: 0;
}
.input-lg {
  border-radius: 0;
}
.input-group-addon {
  border-radius: 0;
}
/* End Component: Form */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Bootstrap Tags Input */
.bootstrap-tagsinput {
  border-radius: 0;
}
.bootstrap-tagsinput .tag {
  font-size: 12px;
  padding: 5px;
  font-weight: lighter;
  letter-spacing: 0.26px;
}
/* End Component: Bootstrap Tags Input */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Timeline */
.timeline-centered {
  position: relative;
  padding: 20px;
  margin-bottom: 30px;
}
.timeline-centered:before,
.timeline-centered:after {
  content: " ";
  display: table;
}
.timeline-centered:after {
  clear: both;
}
.timeline-centered:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  background: #f5f5f6;
  left: 50%;
  top: 20px;
  bottom: 20px;
  margin-left: -4px;
}
.timeline-centered .timeline-entry {
  position: relative;
  width: 50%;
  float: right;
  margin-bottom: 70px;
  clear: both;
}
.timeline-centered .timeline-entry:before,
.timeline-centered .timeline-entry:after {
  content: " ";
  display: table;
}
.timeline-centered .timeline-entry .timeline-entry-inner {
  position: relative;
  margin-left: -22px;
}
.timeline-centered .timeline-entry .timeline-entry-inner:before,
.timeline-centered .timeline-entry .timeline-entry-inner:after {
  content: " ";
  display: table;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
  color: #737881;
  font-size: 12px;
  margin: 0;
  line-height: 1.428571429;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
  position: absolute;
  left: -100px;
  text-align: right;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
  display: block;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child {
  font-size: 15px;
  font-weight: bold;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child {
  font-size: 12px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
  background: #fff;
  color: #737881;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  -moz-box-shadow: 0 0 0 5px #f5f5f6;
  -webkit-box-shadow: 0 0 0 5px #f5f5f6;
  box-shadow: 0 0 0 5px #f5f5f6;
  line-height: 40px;
  font-size: 15px;
  float: left;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
  background-color: #303641;
  color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-secondary {
  background-color: #ee4749;
  color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
  background-color: #00a651;
  color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
  background-color: #21a9e1;
  color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
  background-color: #fad839;
  color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
  background-color: #cc2424;
  color: #fff;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
  position: relative;
  background: #f5f5f6;
  padding: 1.7em;
  margin-left: 70px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
  margin-top: 15px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .title a {
  color: #555555;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .title a:hover {
  color: #aaaaaa;
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .title span {
  -webkit-opacity: .6;
  -moz-opacity: .6;
  opacity: .6;
  -ms-filter: alpha(opacity=60);
  filter: alpha(opacity=60);
}
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #f5f5f6 transparent transparent;
  left: 0;
  top: 10px;
  margin-left: -9px;
}
.timeline-centered .timeline-entry .timeline-entry-inner:after {
  clear: both;
}
.timeline-centered .timeline-entry:after {
  clear: both;
}
.timeline-centered .timeline-entry.begin {
  margin-bottom: 0;
}
.timeline-centered .timeline-entry.left-aligned {
  float: left;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
  margin-left: 0;
  margin-right: -18px;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
  left: auto;
  right: -100px;
  text-align: left;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
  float: right;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
  margin-left: 0;
  margin-right: 70px;
}
.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: -9px;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .timeline-centered:before {
    display: none;
  }
  .timeline-centered .timeline-entry {
    width: 100%;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
    display: none;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
    position: relative;
    left: 0;
    padding: 0;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
    margin-left: 20px;
    margin-top: 5px;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
    margin-left: 0;
  }
  .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
    position: relative;
    right: 0;
    padding: 0;
  }
  .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
    margin-right: 20px;
    margin-top: 5px;
  }
  .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
    margin-right: 0;
  }
}
/* End Component: Timeline */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Popover */
.popover {
  border-radius: 0;
}
/* End Component: Popover */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Bootstrap Switch */
.bootstrap-switch {
  border-radius: 0;
}
.bootstrap-switch .bootstrap-switch-handle-on {
  border-radius: 0;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-blue {
  color: white;
  background: #2980b9;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-light-blue {
  color: white;
  background: #3498db;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-orange {
  color: white;
  background: #e82c0c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-light-orange {
  color: white;
  background: #ff530d;
}
.bootstrap-switch .bootstrap-switch-handle-off {
  border-radius: 0;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-blue {
  color: white;
  background: #2980b9;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-light-blue {
  color: white;
  background: #3498db;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-orange {
  color: white;
  background: #e82c0c;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-light-orange {
  color: white;
  background: #ff530d;
}
/* End Component: Bootstrap Switch */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Sparklines Chart */
.jqstooltip {
  box-sizing: content-box;
}
/* End Component: Sparklines Chart */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Well */
.well {
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 30px;
}
.well .well-heading .controls {
  position: absolute;
  top: 10px;
  right: 30px;
}
.well .well-body {
  margin-top: 20px;
  position: relative;
  z-index: 3;
}
.well .well-image {
  font-size: 90px;
  line-height: 90px;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.well.well-solid {
  color: white;
}
.well:hover .well-image {
  font-size: 60px;
}
.well-white {
  background-color: white;
  color: #454545;
}
.well-blue {
  background-color: #2980b9;
  color: white;
}
.well-light-blue {
  background-color: #3498db;
  color: white;
}
.well-green {
  background-color: #27ae60;
  color: white;
}
.well-light-green {
  background-color: #2ecc71;
  color: white;
}
.well-orange {
  background-color: #e82c0c;
  color: white;
}
.well-light-orange {
  background-color: #ff530d;
  color: white;
}
.well-red {
  background-color: #d40d12;
  color: white;
}
.well-light-red {
  background-color: #ff1d23;
  color: white;
}
.well-purple {
  background-color: #8e44ad;
  color: white;
}
.well-light-purple {
  background-color: #9b59b6;
  color: white;
}
.well-pink {
  background-color: #fe31ab;
  color: white;
}
.well-light-pink {
  background-color: #fd32c0;
  color: white;
}
/* End Component: Well */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Panel */
.panel {
  border-radius: 0;
  margin-bottom: 30px;
}
.panel.solid-color {
  color: white;
}
.panel .panel-heading {
  border-radius: 0;
  position: relative;
}
.panel .panel-heading > .controls {
  position: absolute;
  right: 10px;
  top: 12px;
}
.panel .panel-heading > .controls .nav.nav-pills {
  margin: -8px 0 0 0;
}
.panel .panel-heading > .controls .nav.nav-pills li a {
  padding: 5px 8px;
}
.panel .panel-heading .clickable {
  margin-top: 0px;
  font-size: 12px;
  cursor: pointer;
}
.panel .panel-heading.no-heading-border {
  border-bottom-color: transparent;
}
.panel .panel-heading .left {
  float: left;
}
.panel .panel-heading .right {
  float: right;
}
.panel .panel-title {
  font-size: 16px;
  line-height: 20px;
}
.panel .panel-title.panel-title-sm {
  font-size: 18px;
  line-height: 28px;
}
.panel .panel-title.panel-title-lg {
  font-size: 24px;
  line-height: 34px;
}
.panel .panel-body {
  font-size: 13px;
}
.panel .panel-body > .body-section {
  margin: 0px 0px 20px;
}
.panel .panel-body > .body-section > .section-heading {
  margin: 0px 0px 5px;
  font-weight: bold;
}
.panel .panel-body > .body-section > .section-content {
  margin: 0px 0px 10px;
}
.panel-white {
  border: 1px solid #dddddd;
}
.panel-white > .panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #ddd;
}
.panel-white > .panel-footer {
  background-color: #fff;
  border-color: #ddd;
}
.panel-primary {
  border: 1px solid #dddddd;
}
.panel-purple {
  border: 1px solid #dddddd;
}
.panel-purple > .panel-heading {
  color: #fff;
  background-color: #8e44ad;
  border: none;
}
.panel-purple > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-light-purple {
  border: 1px solid #dddddd;
}
.panel-light-purple > .panel-heading {
  color: #fff;
  background-color: #9b59b6;
  border: none;
}
.panel-light-purple > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-blue,
.panel-info {
  border: 1px solid #dddddd;
}
.panel-blue > .panel-heading,
.panel-info > .panel-heading {
  color: #fff;
  <!-- background-color:#004B97; -->
  background-color: #004B97;
  border: none;
}
.panel-blue > .panel-heading .panel-title a:hover,
.panel-info > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-light-blue {
  border: 1px solid #dddddd;
}
.panel-light-blue > .panel-heading {
  color: #fff;
  background-color: #3498db;
  border: none;
}
.panel-light-blue > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-green,
.panel-success {
  border: 1px solid #dddddd;
}
.panel-green > .panel-heading,
.panel-success > .panel-heading {
  color: #fff;
  background-color: #27ae60;
  border: none;
}
.panel-green > .panel-heading .panel-title a:hover,
.panel-success > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-light-green {
  border: 1px solid #dddddd;
}
.panel-light-green > .panel-heading {
  color: #fff;
  background-color: #2ecc71;
  border: none;
}
.panel-light-green > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-orange,
.panel-warning {
  border: 1px solid #dddddd;
}
.panel-orange > .panel-heading,
.panel-warning > .panel-heading {
  color: #fff;
  background-color: #e82c0c;
  border: none;
}
.panel-orange > .panel-heading .panel-title a:hover,
.panel-warning > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-light-orange {
  border: 1px solid #dddddd;
}
.panel-light-orange > .panel-heading {
  color: #fff;
  background-color: #ff530d;
  border: none;
}
.panel-light-orange > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-red,
.panel-danger {
  border: 1px solid #dddddd;
}
.panel-red > .panel-heading,
.panel-danger > .panel-heading {
  color: #fff;
  background-color: #d40d12;
  border: none;
}
.panel-red > .panel-heading .panel-title a:hover,
.panel-danger > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-light-red {
  border: 1px solid #dddddd;
}
.panel-light-red > .panel-heading {
  color: #fff;
  background-color: #ff1d23;
  border: none;
}
.panel-light-red > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-pink {
  border: 1px solid #dddddd;
}
.panel-pink > .panel-heading {
  color: #fff;
  background-color: #fe31ab;
  border: none;
}
.panel-pink > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-light-pink {
  border: 1px solid #dddddd;
}
.panel-light-pink > .panel-heading {
  color: #fff;
  background-color: #fd32c0;
  border: none;
}
.panel-light-pink > .panel-heading .panel-title a:hover {
  color: #f0f0f0;
}
.panel-group .panel {
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 0;
  border-top: 0;
}
/* End Component: Panel */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Table */
.table thead .th {
  padding: 8px;
}
.table.dataTable.no-footer {
  border-bottom: none;
}
.table.dataTable thead th,
.table.dataTable thead td {
  padding: 8px;
  border-bottom: none;
}
.table.dataTable thead .sorting {
  background: url("datatables/images/sort_both.png") no-repeat center right;
}
.table.dataTable thead .sorting_asc {
  background: url("datatables/images/sort_asc.png") no-repeat center right;
}
.table.dataTable thead .sorting_desc {
  background: url("datatables/images/sort_desc.png") no-repeat center right;
}
.table.dataTable thead .sorting_asc_disabled {
  background: url("datatables/images/sort_asc_disabled.png") no-repeat center right;
}
.table.dataTable thead .sorting_desc_disabled {
  background: url("datatables/images/sort_desc_disabled.png") no-repeat center right;
}
.dataTables_wrapper .dataTables_length {
  margin-bottom: 5px;
}
.dataTables_wrapper .dataTables_length select {
  padding: 5px;
  margin: 0 4px;
}
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 5px;
}
.dataTables_wrapper .dataTables_filter input {
  padding: 5px;
}
.dataTables_wrapper .dataTables_info {
  margin-top: 5px;
}
.dataTables_wrapper .dataTables_paginate {
  margin-top: 5px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  position: relative !important;
  float: left !important;
  padding: 6px 12px !important;
  line-height: 1.42857 !important;
  text-decoration: none;
  background: #fff !important;
  border: 1px solid #DDD !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #eee !important;
  color: #000 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  z-index: 2 !important;
  color: #fff !important;
  background:#004B97 !important;
  border-color:#004B97 !important;
  cursor: default !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
}
/* End Component: Table */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: JVectorMap */
.jvectormap-zoomin,
.jvectormap-zoomout {
  height: auto;
  width: auto;
  padding: 4px;
}
.jvectormap-container svg {
  width: 100%;
}
/* End Component: JVectorMap */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Dropzone */
.dropzone .files {
  margin: 20px -15px 10px;
}
.dropzone .files .file-row {
  margin: 10px 0;
}
.dropzone .files .file-row .preview {
  float: left;
}
.dropzone .files .file-row .preview img {
  width: 80px;
  height: 80px;
}
.dropzone .files .file-row .details {
  display: inline-block;
  margin-left: 10px;
}
.dropzone .files .file-row .row-buttons {
  text-align: right;
}
.dropzone .dz-default.dz-message {
  background-image: url("dropzone/images/spritemap.png");
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5/1), (min-device-pixel-ratio: 1.5), (min-resolution: 138dpi), (min-resolution: 1.5dppx) {
  .dropzone .dz-default.dz-message {
    background-image: url("dropzone/images/spritemap@2x.png");
  }
}
.dropzone .dz-preview .dz-error-mark,
.dropzone-previews .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-success-mark {
  background-image: url("../images/spritemap.png");
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5/1), (min-device-pixel-ratio: 1.5), (min-resolution: 138dpi), (min-resolution: 1.5dppx) {
  .dropzone .dz-preview .dz-error-mark,
  .dropzone-previews .dz-preview .dz-error-mark,
  .dropzone .dz-preview .dz-success-mark,
  .dropzone-previews .dz-preview .dz-success-mark {
    background-image: url("dropzone/images/spritemap@2x.png");
  }
}
.dropzone .dz-preview .dz-progress .dz-upload,
.dropzone-previews .dz-preview .dz-progress .dz-upload {
  background-image: url("dropzone/images/spritemap.png");
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 1.5/1), (min-device-pixel-ratio: 1.5), (min-resolution: 138dpi), (min-resolution: 1.5dppx) {
  .dropzone .dz-preview .dz-progress .dz-upload,
  .dropzone-previews .dz-preview .dz-progress .dz-upload {
    background-image: url("dropzone/images/spritemap@2x.png");
  }
}
@media (max-width: 767px) {
  .dropzone .dz-default.dz-message {
    background-position: 0 -123px;
    width: 268px;
    margin-left: -134px;
    height: 174px;
    margin-top: -87px;
  }
  .dropzone .actions .btn {
    margin-bottom: 5px;
  }
  .dropzone .files .file-row .preview img {
    width: 80px;
    height: 80px;
  }
  .dropzone .files .file-row .row-buttons .btn {
    margin-bottom: 5px;
  }
}
/* End Component: Dropzone */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Alert */
.alert {
  border-radius: 0;
}
.alert-theme {
  position: relative;
}
.alert-theme .left {
  float: left;
  padding: 10px;
  vertical-align: top;
  text-align: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: white;
}
.alert-theme .left .icon {
  font-size: 18px;
}
.alert-theme .right {
  float: right;
  padding: 10px;
  vertical-align: top;
  text-align: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  opacity: 1;
}
.alert-theme .right:hover {
  opacity: 0.9;
}
.alert-theme .right .icon {
  font-size: 18px;
}
.alert-theme .content {
  padding: 0 40px;
}
.alert-theme.alert-success {
  background-color: white;
  color: #27ae60;
}
.alert-theme.alert-success .left,
.alert-theme.alert-success .right {
  background-color: #2ecc71;
}
.alert-theme.alert-info {
  background-color: white;
  color: #2980b9;
}
.alert-theme.alert-info .left,
.alert-theme.alert-info .right {
  background-color: #3498db;
}
.alert-theme.alert-warning {
  background-color: white;
  color: #e82c0c;
}
.alert-theme.alert-warning .left,
.alert-theme.alert-warning .right {
  background-color: #ff530d;
}
.alert-theme.alert-danger {
  background-color: white;
  color: #d40d12;
}
.alert-theme.alert-danger .left,
.alert-theme.alert-danger .right {
  background-color: #ff1d23;
}
/* End Component: Alert */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Breadcrumb */
.breadcrumb {
  border-radius: 0;
}
.breadcrumb .active {
  color: black;
}
.breadcrumb-theme {
  background: none;
  padding: 0;
  margin: 10px 10px 20px 0;
}
.breadcrumb-theme > li {
  margin-bottom: 5px;
}
.breadcrumb-theme > li a {
  display: inline-block;
  background: #f0f0f0;
  text-align: center;
  padding: 0 10px 0 40px;
  height: 36px;
  line-height: 36px;
  position: relative;
  margin: 0 10px 0 0;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  width: 100%;
}
.breadcrumb-theme > li a:after {
  content: "";
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 20px solid #f0f0f0;
  position: absolute;
  right: -20px;
  top: 0;
  z-index: 100;
}
.breadcrumb-theme > li a:before {
  content: "";
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 20px solid #fff;
  position: absolute;
  left: 0px;
  top: 0;
}
.breadcrumb-theme > li.active a {
  background: #eaeaea;
}
.breadcrumb-theme > li.active a:after {
  border-left-color: #eaeaea;
}
.breadcrumb-theme > li + li:before {
  display: none;
  margin-left: -15px;
}
.breadcrumb-theme.breadcrumb-sm > li a {
  padding: 0 10px 0 25px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
}
.breadcrumb-theme.breadcrumb-sm > li a:after {
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #f0f0f0;
  right: -15px;
}
.breadcrumb-theme.breadcrumb-sm > li a:before {
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
  left: 0px;
}
.breadcrumb-theme.breadcrumb-sm > li.active a {
  background: #eaeaea;
}
.breadcrumb-theme.breadcrumb-sm > li.active a:after {
  border-left-color: #eaeaea;
}
.breadcrumb-theme.breadcrumb-lg > li a {
  padding: 0 25px 0 40px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
}
.breadcrumb-theme.breadcrumb-lg > li a:after {
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 19px solid #f0f0f0;
  right: -19px;
}
.breadcrumb-theme.breadcrumb-lg > li a:before {
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 19px solid #fff;
  left: 0px;
}
.breadcrumb-theme.breadcrumb-lg > li.active a {
  background: #eaeaea;
}
.breadcrumb-theme.breadcrumb-lg > li.active a:after {
  border-left-color: #eaeaea;
}
.breadcrumb-theme.breadcrumb-blue > li a {
  background-color: #3498db;
  color: white;
}
.breadcrumb-theme.breadcrumb-blue > li a:after {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #3498db;
}
.breadcrumb-theme.breadcrumb-blue > li a:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
}
.breadcrumb-theme.breadcrumb-blue > li.active a {
  background-color: #2980b9;
}
.breadcrumb-theme.breadcrumb-blue > li.active a:after {
  border-left-color: #2980b9;
}
.breadcrumb-theme.breadcrumb-orange > li a {
  background-color: #ff530d;
  color: white;
}
.breadcrumb-theme.breadcrumb-orange > li a:after {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #ff530d;
}
.breadcrumb-theme.breadcrumb-orange > li a:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
}
.breadcrumb-theme.breadcrumb-orange > li.active a {
  background-color: #e82c0c;
}
.breadcrumb-theme.breadcrumb-orange > li.active a:after {
  border-left-color: #e82c0c;
}
.breadcrumb-theme.breadcrumb-red > li a {
  background-color: #ff1d23;
  color: white;
}
.breadcrumb-theme.breadcrumb-red > li a:after {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #ff1d23;
}
.breadcrumb-theme.breadcrumb-red > li a:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
}
.breadcrumb-theme.breadcrumb-red > li.active a {
  background-color: #d40d12;
}
.breadcrumb-theme.breadcrumb-red > li.active a:after {
  border-left-color: #d40d12;
}
.breadcrumb-theme.breadcrumb-green > li a {
  background-color: #2ecc71;
  color: white;
}
.breadcrumb-theme.breadcrumb-green > li a:after {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #2ecc71;
}
.breadcrumb-theme.breadcrumb-green > li a:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
}
.breadcrumb-theme.breadcrumb-green > li.active a {
  background-color: #27ae60;
}
.breadcrumb-theme.breadcrumb-green > li.active a:after {
  border-left-color: #27ae60;
}
.breadcrumb-theme.breadcrumb-purple > li a {
  background-color: #9b59b6;
  color: white;
}
.breadcrumb-theme.breadcrumb-purple > li a:after {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #9b59b6;
}
.breadcrumb-theme.breadcrumb-purple > li a:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
}
.breadcrumb-theme.breadcrumb-purple > li.active a {
  background-color: #8e44ad;
}
.breadcrumb-theme.breadcrumb-purple > li.active a:after {
  border-left-color: #8e44ad;
}
.breadcrumb-theme.breadcrumb-pink > li a {
  background-color: #fd32c0;
  color: white;
}
.breadcrumb-theme.breadcrumb-pink > li a:after {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fd32c0;
}
.breadcrumb-theme.breadcrumb-pink > li a:before {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
}
.breadcrumb-theme.breadcrumb-pink > li.active a {
  background-color: #fe31ab;
}
.breadcrumb-theme.breadcrumb-pink > li.active a:after {
  border-left-color: #fe31ab;
}
/* End Component: Breadcrumb */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Modal */
.modal-dialog .modal-content {
  border-radius: 0;
}
.modal-dialog .success-icon {
  height: 180px;
  width: 180px;
  line-height: 180px;
  font-size: 80px;
  color: #2ecc71;
  border: 4px solid #2ecc71;
  border-radius: 50%;
}
.modal-dialog .white-icon {
  height: 180px;
  width: 180px;
  line-height: 180px;
  font-size: 80px;
  color: white;
  border: 4px solid white;
  border-radius: 50%;
}
.modal-green .modal-content,
modal-success .modal-content {
  background-color: #2ecc71;
}
.modal-green .modal-content .modal-header,
modal-success .modal-content .modal-header,
.modal-green .modal-content .modal-footer,
modal-success .modal-content .modal-footer {
  border-top: none;
  border-bottom: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal-green .modal-content .modal-body,
modal-success .modal-content .modal-body {
  color: white;
}
.modal-blue .modal-content,
modal-primary .modal-content,
modal-info .modal-content {
  background-color: #3498db;
}
.modal-blue .modal-content .modal-header,
modal-primary .modal-content .modal-header,
modal-info .modal-content .modal-header,
.modal-blue .modal-content .modal-footer,
modal-primary .modal-content .modal-footer,
modal-info .modal-content .modal-footer {
  border-top: none;
  border-bottom: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal-blue .modal-content .modal-body,
modal-primary .modal-content .modal-body,
modal-info .modal-content .modal-body {
  color: white;
}
.modal-orange .modal-content,
modal-warning .modal-content {
  background-color: #ff530d;
}
.modal-orange .modal-content .modal-header,
modal-warning .modal-content .modal-header,
.modal-orange .modal-content .modal-footer,
modal-warning .modal-content .modal-footer {
  border-top: none;
  border-bottom: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal-orange .modal-content .modal-body,
modal-warning .modal-content .modal-body {
  color: white;
}
.modal-red .modal-content,
modal-danger .modal-content {
  background-color: #ff1d23;
}
.modal-red .modal-content .modal-header,
modal-danger .modal-content .modal-header,
.modal-red .modal-content .modal-footer,
modal-danger .modal-content .modal-footer {
  border-top: none;
  border-bottom: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal-red .modal-content .modal-body,
modal-danger .modal-content .modal-body {
  color: white;
}
.modal-purple .modal-content {
  background-color: #9b59b6;
}
.modal-purple .modal-content .modal-header,
.modal-purple .modal-content .modal-footer {
  border-top: none;
  border-bottom: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal-purple .modal-content .modal-body {
  color: white;
}
.modal-pink .modal-content {
  background-color: #fd32c0;
}
.modal-pink .modal-content .modal-header,
.modal-pink .modal-content .modal-footer {
  border-top: none;
  border-bottom: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.modal-pink .modal-content .modal-body {
  color: white;
}
.modal-header-green,
.modal-header-success {
  background-color: #27ae60;
  color: white;
}
.modal-header-green .close,
.modal-header-success .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-light-green {
  background-color: #2ecc71;
  color: white;
}
.modal-header-light-green .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-blue,
.modal-header-primary {
  background-color: #2980b9;
  color: white;
}
.modal-header-blue .close,
.modal-header-primary .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-light-blue,
.modal-header-info {
  background-color: #004B97;
  color: white;
}
.modal-header-light-blue .close,
.modal-header-info .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-orange,
.modal-header-warning {
  background-color: #e82c0c;
  color: white;
}
.modal-header-orange .close,
.modal-header-warning .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-light-orange {
  background-color: #fad839;
  color: white;
}
.modal-header-light-orange .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-red,
.modal-header-danger {
  background-color: #d40d12;
  color: white;
}
.modal-header-red .close,
.modal-header-danger .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-light-red {
  background-color: #ff1d23;
  color: white;
}
.modal-header-light-red .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-purple {
  background-color: #8e44ad;
  color: white;
}
.modal-header-purple .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-light-purple {
  background-color: #9b59b6;
  color: white;
}
.modal-header-light-purple .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-pink {
  background-color: #fe31ab;
  color: white;
}
.modal-header-pink .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
.modal-header-light-pink {
  background-color: #fd32c0;
  color: white;
}
.modal-header-light-pink .close {
  opacity: 1;
  color: white;
  margin-top: 0;
}
/* End Component: Modal */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Progress Bar */
.progress {
  border-radius: 0;
}
.progress.progress-xs {
  height: 12px;
}
.progress.progress-xs .progress-bar {
  line-height: 12px;
}
.progress.progress-sm {
  height: 18px;
}
.progress.progress-sm .progress-bar {
  line-height: 18px;
}
.progress.progress-md {
  height: 22px;
}
.progress.progress-md .progress-bar {
  font-size: 14px;
  line-height: 22px;
}
.progress.progress-lg {
  height: 26px;
}
.progress.progress-lg .progress-bar {
  font-size: 16px;
  line-height: 26px;
}
.progress-bar,
.progress-bar-blue {
  background-color: #2980b9;
}
.progress-bar-info,
.progress-bar-light-blue {
  background-color: #3498db;
}
.progress-bar-success,
.progress-bar-green {
  background-color: #27ae60;
}
.progress-bar-light-green {
  background-color: #2ecc71;
}
.progress-bar-warning,
.progress-bar-orange {
  background-color: #e82c0c;
}
.progress-bar-light-orange {
  background-color: #ff530d;
}
.progress-bar-danger,
.progress-bar-red {
  background-color: #d40d12;
}
.progress-bar-light-red {
  background-color: #ff1d23;
}
.progress-bar-purple {
  background-color: #8e44ad;
}
.progress-bar-light-purple {
  background-color: #9b59b6;
}
.progress-bar-pink {
  background-color: #fe31ab;
}
.progress-bar-light-pink {
  background-color: #fd32c0;
}
/* End Component: Progress Bar */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Slider */
.slider-blue .slider-selection {
  background: #3498db;
}
.slider-blue .slider-handle {
  background: #2980b9;
}
.slider-green .slider-selection {
  background: #2ecc71;
}
.slider-green .slider-handle {
  background: #27ae60;
}
.slider-orange .slider-selection {
  background: #ff530d;
}
.slider-orange .slider-handle {
  background: #e82c0c;
}
.slider-red .slider-selection {
  background: #ff1d23;
}
.slider-red .slider-handle {
  background: #d40d12;
}
.slider-purple .slider-selection {
  background: #9b59b6;
}
.slider-purple .slider-handle {
  background: #8e44ad;
}
.slider-pink .slider-selection {
  background: #fd32c0;
}
.slider-pink .slider-handle {
  background: #fe31ab;
}
/* End Component: Slider */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Navbar */
.navbar {
  border-radius: 0;
}
.navbar-blue {
  background-color: #2980b9;
  border-color: #3498db;
}
.navbar-blue .navbar-toggle {
  border-color: #3498db;
}
.navbar-blue .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-blue .navbar-brand,
.navbar-blue .navbar-text {
  color: white;
}
.navbar-blue .navbar-collapse,
.navbar-blue .navbar-form {
  border-color: #3498db;
}
.navbar-blue .nav > li > a:hover,
.navbar-blue .nav > li > a:focus {
  text-decoration: none;
  background-color: #3498db;
}
.navbar-blue .navbar-nav > li > a {
  color: whitesmoke;
}
.navbar-blue .navbar-nav > .active > a,
.navbar-blue .navbar-nav > .active > a:hover,
.navbar-blue .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #3498db;
}
.navbar-green {
  background-color: #27ae60;
  border-color: #2ecc71;
}
.navbar-green .navbar-toggle {
  border-color: #2ecc71;
}
.navbar-green .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-green .navbar-brand,
.navbar-green .navbar-text {
  color: white;
}
.navbar-green .navbar-collapse,
.navbar-green .navbar-form {
  border-color: #2ecc71;
}
.navbar-green .nav > li > a:hover,
.navbar-green .nav > li > a:focus {
  text-decoration: none;
  background-color: #2ecc71;
}
.navbar-green .navbar-nav > li > a {
  color: whitesmoke;
}
.navbar-green .navbar-nav > .active > a,
.navbar-green .navbar-nav > .active > a:hover,
.navbar-green .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #2ecc71;
}
.navbar-orange {
  background-color: #e82c0c;
  border-color: #ff530d;
}
.navbar-orange .navbar-toggle {
  border-color: #ff530d;
}
.navbar-orange .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-orange .navbar-brand,
.navbar-orange .navbar-text {
  color: white;
}
.navbar-orange .navbar-collapse,
.navbar-orange .navbar-form {
  border-color: #ff530d;
}
.navbar-orange .nav > li > a:hover,
.navbar-orange .nav > li > a:focus {
  text-decoration: none;
  background-color: #ff530d;
}
.navbar-orange .navbar-nav > li > a {
  color: whitesmoke;
}
.navbar-orange .navbar-nav > .active > a,
.navbar-orange .navbar-nav > .active > a:hover,
.navbar-orange .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #ff530d;
}
.navbar-red {
  background-color: #d40d12;
  border-color: #ff1d23;
}
.navbar-red .navbar-toggle {
  border-color: #ff1d23;
}
.navbar-red .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-red .navbar-brand,
.navbar-red .navbar-text {
  color: white;
}
.navbar-red .navbar-collapse,
.navbar-red .navbar-form {
  border-color: #ff1d23;
}
.navbar-red .nav > li > a:hover,
.navbar-red .nav > li > a:focus {
  text-decoration: none;
  background-color: #ff1d23;
}
.navbar-red .navbar-nav > li > a {
  color: whitesmoke;
}
.navbar-red .navbar-nav > .active > a,
.navbar-red .navbar-nav > .active > a:hover,
.navbar-red .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #ff1d23;
}
.navbar-purple {
  background-color: #8e44ad;
  border-color: #9b59b6;
}
.navbar-purple .navbar-toggle {
  border-color: #9b59b6;
}
.navbar-purple .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-purple .navbar-brand,
.navbar-purple .navbar-text {
  color: white;
}
.navbar-purple .navbar-collapse,
.navbar-purple .navbar-form {
  border-color: #9b59b6;
}
.navbar-purple .nav > li > a:hover,
.navbar-purple .nav > li > a:focus {
  text-decoration: none;
  background-color: #9b59b6;
}
.navbar-purple .navbar-nav > li > a {
  color: whitesmoke;
}
.navbar-purple .navbar-nav > .active > a,
.navbar-purple .navbar-nav > .active > a:hover,
.navbar-purple .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #9b59b6;
}
.navbar-pink {
  background-color: #fe31ab;
  border-color: #fd32c0;
}
.navbar-pink .navbar-toggle {
  border-color: #fd32c0;
}
.navbar-pink .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-pink .navbar-brand,
.navbar-pink .navbar-text {
  color: white;
}
.navbar-pink .navbar-collapse,
.navbar-pink .navbar-form {
  border-color: #fd32c0;
}
.navbar-pink .nav > li > a:hover,
.navbar-pink .nav > li > a:focus {
  text-decoration: none;
  background-color: #fd32c0;
}
.navbar-pink .navbar-nav > li > a {
  color: whitesmoke;
}
.navbar-pink .navbar-nav > .active > a,
.navbar-pink .navbar-nav > .active > a:hover,
.navbar-pink .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #fd32c0;
}
@media (max-width: 767px) {
  .navbar-blue .navbar-nav .open .dropdown-menu > li > a {
    color: whitesmoke;
  }
  .navbar-blue .navbar-nav .open .dropdown-menu > li > a:hover {
    color: black;
  }
  .navbar-green .navbar-nav .open .dropdown-menu > li > a {
    color: whitesmoke;
  }
  .navbar-green .navbar-nav .open .dropdown-menu > li > a:hover {
    color: black;
  }
  .navbar-orange .navbar-nav .open .dropdown-menu > li > a {
    color: whitesmoke;
  }
  .navbar-orange .navbar-nav .open .dropdown-menu > li > a:hover {
    color: black;
  }
  .navbar-red .navbar-nav .open .dropdown-menu > li > a {
    color: whitesmoke;
  }
  .navbar-red .navbar-nav .open .dropdown-menu > li > a:hover {
    color: black;
  }
  .navbar-purple .navbar-nav .open .dropdown-menu > li > a {
    color: whitesmoke;
  }
  .navbar-purple .navbar-nav .open .dropdown-menu > li > a:hover {
    color: black;
  }
  .navbar-pink .navbar-nav .open .dropdown-menu > li > a {
    color: whitesmoke;
  }
  .navbar-pink .navbar-nav .open .dropdown-menu > li > a:hover {
    color: black;
  }
}
/* End Component: Navbar */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Pagination */
.pagination li:first-child > a,
.pagination li:first-child > span {
  border-radius: 0;
}
.pagination li:last-child > a,
.pagination li:last-child > span {
  border-radius: 0;
}
/* End Component: Pagination */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Badge */
.badge {
  font-weight: normal;
}
/* End Component: Badge */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Label */
.label {
  border-radius: 0;
}
.label-primary,
.label-blue {
  background-color: #2980b9;
}
.label-info,
.label-light-blue {
  background-color: #3498db;
}
.label-success,
.label-green {
  background-color: #27ae60;
}
.label-light-green {
  background-color: #2ecc71;
}
.label-warning,
.label-orange {
  background-color: #e82c0c;
}
.label-light-orange {
  background-color: #ff530d;
}
.label-danger,
.label-red {
  background-color: #d40d12;
}
.label-light-red {
  background-color: #ff1d23;
}
.label-purple {
  background-color: #8e44ad;
}
.label-light-purple {
  background-color: #9b59b6;
}
.label-pink {
  background-color: #fe31ab;
}
.label-light-pink {
  background-color: #fd32c0;
}
/* End Component: Label */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Callout */
.bs-callout {
  background-color: white;
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #eee;
  border-left: 8px solid #eee;
}
.bs-callout-success {
  border-color: #27ae60;
}
.bs-callout-info {
  border-color: #3498db;
}
.bs-callout-warning {
  border-color: #e82c0c;
}
.bs-callout-danger {
  border-color: #d40d12;
}
/* End Component: Callout */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: List Group */
.list-group .list-group-item:first-child,
.list-group .list-group-item:last-child {
  border-radius: 0;
}
.list-group-inverse .list-group-item {
  color: white;
  background-color: #0f0f0f;
  border-color: #000;
}
.list-group-inverse .list-group-item.active {
  background-color: #212121;
  border-color: #050505;
}
.list-group-inverse .list-group-item.active:hover {
  background-color: #383838;
  border-color: #050505;
}
.list-group-inverse .list-group-item:hover {
  background-color: #222;
}
.list-group-inverse a.list-group-item .list-group-item-heading {
  color: #fff;
}
.list-group-inverse a.list-group-item > .badge {
  color: #e3e3e3;
}
.list-group-inverse a.list-group-item.active > .badge,
.list-group-inverse a.list-group-item:hover > .badge {
  color: white;
}
/* End Component: List Group */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Dropdown */
.dropdown-menu {
  border-radius: 0;
}
.dropdown-menu > .active > a {
  background-color: #15aaaa;
}
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background-color: #15aaaa;
}
/* End Component: Dropdown */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Jumbotron */
.jumbotron {
  border-radius: 0;
}
/* End Component: Jumbotron */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Nav */
.nav-tabs > li > a {
  border-radius: 0;
  color:#999;
}
.nav-pills > li > a {
  border-radius: 0;
}
.nav-green > li:hover > a {
  background-color: #27ae60;
  color: white;
}
.nav-green > li.active > a {
  border-bottom-color: transparent;
}
.nav-green.nav-pills > li.active > a {
  background-color: #27ae60;
}
.nav-green .open > a,
.nav-green .open > a:hover,
.nav-green .open > a:focus {
  color: white;
  background-color: #27ae60;
  border-color: #2ecc71;
}
.nav-blue > li:hover > a {
  background-color: #2980b9;
  color: white;
}
.nav-blue > li.active > a {
  border-bottom-color: transparent;
}
.nav-blue.nav-pills > li.active > a {
  background-color: #2980b9;
}
.nav-blue .open > a,
.nav-blue .open > a:hover,
.nav-blue .open > a:focus {
  color: white;
  background-color: #2980b9;
  border-color: #3498db;
}
.nav-orange > li:hover > a {
  background-color: #e82c0c;
  color: white;
}
.nav-orange > li.active > a {
  border-bottom-color: transparent;
}
.nav-orange.nav-pills > li.active > a {
  background-color: #e82c0c;
}
.nav-orange .open > a,
.nav-orange .open > a:hover,
.nav-orange .open > a:focus {
  color: white;
  background-color: #e82c0c;
  border-color: #ff530d;
}
.nav-red > li:hover > a {
  background-color: #d40d12;
  color: white;
}
.nav-red > li.active > a {
  border-bottom-color: transparent;
}
.nav-red.nav-pills > li.active > a {
  background-color: #d40d12;
}
.nav-red .open > a,
.nav-red .open > a:hover,
.nav-red .open > a:focus {
  color: white;
  background-color: #d40d12;
  border-color: #ff1d23;
}
.nav-purple > li:hover > a {
  background-color: #8e44ad;
  color: white;
}
.nav-purple > li.active > a {
  border-bottom-color: transparent;
}
.nav-purple.nav-pills > li.active > a {
  background-color: #8e44ad;
}
.nav-purple .open > a,
.nav-purple .open > a:hover,
.nav-purple .open > a:focus {
  color: white;
  background-color: #8e44ad;
  border-color: #9b59b6;
}
.nav-pink > li:hover > a {
  background-color: #fe31ab;
  color: white;
}
.nav-pink > li.active > a {
  border-bottom-color: transparent;
}
.nav-pink.nav-pills > li.active > a {
  background-color: #fe31ab;
}
.nav-pink .open > a,
.nav-pink .open > a:hover,
.nav-pink .open > a:focus {
  color: white;
  background-color: #fe31ab;
  border-color: #fd32c0;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-radius: 0;
  }
}
/* End Component: Nav */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Button */
.btn,
button {
  border-radius: 0;
  -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;
}
.btn-xs > .btn,
.btn-group-xs > .btn {
  border-radius: 0;
}
.btn-sm > .btn,
.btn-group-sm > .btn {
  border-radius: 0;
}
.btn-lg > .btn,
.btn-group-lg > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
}
.btn-blue {
  background-color: #3498db;
  border-color: #3498db;
  color: white;
}
.btn-blue:hover,
.btn-blue:visited {
  background-color: #2980b9;
  color: white;
}
.btn-green {
  background-color: #2ecc71;
  border-color: #27ae60;
  color: white;
}
.btn-green:hover,
.btn-green:visited {
  background-color: #27ae60;
  color: white;
}
.btn-orange {
  background-color: #ff530d;
  border-color: #e82c0c;
  color: white;
}
.btn-orange:hover,
.btn-orange:visited {
  background-color: #e82c0c;
  color: white;
}
.btn-red {
  background-color: #ff1d23;
  border-color: #d40d12;
  color: white;
}
.btn-red:hover,
.btn-red:visited {
  background-color: #d40d12;
  color: white;
}
.btn-purple {
  background-color: #9b59b6;
  border-color: #8e44ad;
  color: white;
}
.btn-purple:hover,
.btn-purple:visited {
  background-color: #8e44ad;
  color: white;
}
.btn-pink {
  background-color: #fd32c0;
  border-color: #fe31ab;
  color: white;
}
.btn-pink:hover,
.btn-pink:visited {
  background-color: #fe31ab;
  color: white;
}
/* End Component: Button */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Nav Dropdown List */
.nav-dropdown-list {
  list-style-type: none;
  min-width: 300px;
  padding: 0;
}
.nav-dropdown-list .header {
  display: block;
  text-align: center;
  border-bottom: 1px solid #dddddd;
}
.nav-dropdown-list .header .title {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px;
  background-color: #fff;
}
.nav-dropdown-list .item-list-container {
  display: block;
  background-color: #f8f8f8;
  padding: 0;
}
.nav-dropdown-list .item-list-container .item-list {
  list-style-type: none;
  padding: 0;
}
.nav-dropdown-list .item-list-container .item-list li {
  padding: 10px;
  overflow: hidden;
  background: #efefef;
  border-bottom: 1px solid #dddddd;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.nav-dropdown-list .item-list-container .item-list li a {
  vertical-align: middle;
  font-size: 12px;
  overflow: hidden;
  text-align: left;
  display: block;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.nav-dropdown-list .item-list-container .item-list li a .avatar {
  width: 40px;
  height: auto;
  max-height: 40px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.nav-dropdown-list .item-list-container .item-list li a .info {
  display: inline-block;
  vertical-align: middle;
  width: 208px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dropdown-list .item-list-container .item-list li a .info .name {
  display: block;
  margin: 2px 5px 2px 0;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dropdown-list .item-list-container .item-list li a .info .extra {
  display: block;
  font-size: 12px;
  line-height: 14px;
  margin: 0 5px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dropdown-list .item-list-container .item-list li a .info .date {
  display: block;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dropdown-list .item-list-container .item-list li.unread {
  background-color: #fcfcfc;
}
.nav-dropdown-list .item-list-container .item-list li.unread a {
  color: black;
}
.nav-dropdown-list .item-list-container .item-list li.unread a .info .name {
  font-weight: bold;
}
.nav-dropdown-list .item-list-container .item-list li:hover {
  background: white;
}
.nav-dropdown-list .footer {
  display: block;
  text-align: center;
}
.nav-dropdown-list .footer a {
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  border-radius: 0;
  border: 1px solid #dddddd;
}
/* End Component: Nav Dropdown List */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Nav Dropdown Grid */
.nav-dropdown-grid {
  list-style-type: none;
  min-width: 310px;
  padding: 0;
}
.nav-dropdown-grid .header {
  display: block;
  text-align: center;
  border-bottom: 1px solid #dddddd;
}
.nav-dropdown-grid .header .title {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px;
  background-color: #fff;
}
.nav-dropdown-grid .item-grid-container {
  display: block;
  background-color: #f8f8f8;
  padding: 0;
}
.nav-dropdown-grid .item-grid-container .item-grid {
  list-style-type: none;
  overflow-y: auto;
  padding: 5px;
  max-height: 340px;
}
.nav-dropdown-grid .item-grid-container .item-grid li {
  overflow: hidden;
  display: inline-block;
  background: white;
  margin: 5px;
  vertical-align: top;
  border: 1px solid #dddddd;
}
.nav-dropdown-grid .item-grid-container .item-grid li a {
  vertical-align: middle;
  font-size: 12px;
  overflow: hidden;
  padding: 5px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.nav-dropdown-grid .item-grid-container .item-grid li a > .image {
  width: 120px;
  height: auto;
  max-height: 120px;
  display: block;
  vertical-align: middle;
  margin: 0 auto;
}
.nav-dropdown-grid .item-grid-container .item-grid li a > .icon {
  width: 125px;
  height: 100px;
  font-size: 72px;
  line-height: 100px;
  display: block;
  margin: 0 auto;
}
.nav-dropdown-grid .item-grid-container .item-grid li a > .info {
  width: 100px;
  display: block;
  margin: 0 auto;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.nav-dropdown-grid .item-grid-container .item-grid li a > .info .progress {
  height: 10px;
  margin: 6px auto 0;
}
.nav-dropdown-grid .footer {
  display: block;
  text-align: center;
}
.nav-dropdown-grid .footer a {
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  border-radius: 0;
  border: 1px solid #dddddd;
}
@media (max-width: 767px) {
  .nav-dropdown-grid .item-grid-container .item-grid {
    padding: 5px;
    max-height: 280px;
  }
  .nav-dropdown-grid .item-grid-container .item-grid li {
    overflow: hidden;
    display: inline-block;
    background: white;
    margin: 5px;
    border: 1px solid #dddddd;
  }
  .nav-dropdown-grid .item-grid-container .item-grid li a {
    vertical-align: middle;
    font-size: 12px;
    padding: 5px;
  }
  .nav-dropdown-grid .item-grid-container .item-grid li a > .image {
    width: 80px;
    height: auto;
    max-height: 80px;
  }
  .nav-dropdown-grid .item-grid-container .item-grid li a > .icon {
    width: 85px;
    height: 80px;
    font-size: 72px;
    line-height: 80px;
    display: block;
    margin: 0 auto;
  }
  .nav-dropdown-grid .item-grid-container .item-grid li a > .info {
    width: 110px;
  }
  .nav-dropdown-grid .item-grid-container .item-grid li a > .info .progress {
    height: 10px;
    margin: 6px auto 0;
  }
}
/* End Component: Nav Dropdown Grid */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Datepicker */
.datepicker th,
.datepicker td {
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* End Component: Datepicker */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Weather Widget */
.weather {
  padding: 10px;
  background-position: center;
  background-size: cover;
}
.weather .title {
  margin-top: 0;
}
.weather .top {
  padding: 15px 15px 0 15px;
  margin: -15px -15px 0 -15px;
}
.weather canvas {
  margin-bottom: -5px;
  width: 100%;
}
/* End Component: Weather Widget */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Weather Slider Widget */
.weather-slider {
  padding: 0;
}
.weather-slider .weather-slide {
  padding: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.weather-slider .left {
  display: block;
}
.weather-slider .right {
  text-align: center;
  float: right;
}
.weather-slider .location {
  margin: 0;
}
.weather-slider .temperature {
  font-size: 56px;
  margin: 0;
  line-height: 86px;
}
.weather-slider .owl-controls .owl-pagination {
  margin-top: -36px;
}
.weather-slider .owl-controls .owl-pagination .owl-page span {
  background: white;
  filter: opacity(100);
  opacity: 0.5 !important;
}
.weather-slider .owl-controls .owl-pagination .owl-page.active span {
  background: #f0f0f0;
  opacity: 0.99 !important;
}
/* End Component: Weather Slider Widget */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Social Tile */
.social-tile {
  color: white;
  text-align: center;
}
.social-tile .icon {
  margin: 10px;
}
.social-tile.facebook {
  background-color: #3b5998;
}
.social-tile.twitter {
  background-color: #00aced;
}
.social-tile.dribbble {
  background-color: #E04C86;
}
.social-tile.youtube {
  background-color: #bb0000;
}
.social-tile.linkedin {
  background-color: #007bb6;
}
.social-tile.google-plus {
  background-color: #dd4b39;
}
.social-tile.instagram {
  background-color: #517fa4;
}
.social-tile.pinterest {
  background-color: #cb2027;
}
.social-tile.flickr {
  background-color: #ff0084;
}
.social-tile.tumblr {
  background-color: #32506d;
}
.social-tile.vimeo {
  background-color: #aad450;
}
.social-tile.foursquare {
  background-color: #0072b1;
}
.social-tile.vine {
  background-color: #00a478;
}
/* End Component: Scoial Tile */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: CLNDR Calendar */
.clndr {
  position: relative;
  overflow: hidden;
  height: 479px;
}
.clndr .clndr-controls {
  width: 100%;
  position: relative;
  background: #51d4cc;
  padding: 20px;
  color: white;
}
.clndr .clndr-controls .month {
  display: inline-block;
  width: 33%;
  text-align: center;
  padding: 10px;
  font-size: 24px;
  vertical-align: middle;
}
.clndr .clndr-controls .clndr-control-button {
  width: 32.5%;
  display: inline-block;
  padding: 10px;
}
.clndr .clndr-controls .clndr-control-button.rightalign {
  text-align: right;
}
.clndr .clndr-controls .clndr-control-button .clndr-next-button {
  cursor: pointer;
  padding: 10px;
}
.clndr .clndr-controls .clndr-control-button .clndr-next-button:hover {
  background: #3dbeb6;
}
.clndr .clndr-controls .clndr-control-button .clndr-next-button.inactive {
  opacity: 0.5;
}
.clndr .clndr-controls .clndr-control-button .clndr-next-button.inactive:hover {
  background: none;
  cursor: default;
}
.clndr .clndr-controls .clndr-control-button .clndr-previous-button {
  cursor: pointer;
  padding: 10px;
}
.clndr .clndr-controls .clndr-control-button .clndr-previous-button:hover {
  background: #3dbeb6;
}
.clndr .clndr-controls .clndr-control-button .clndr-previous-button.inactive {
  opacity: 0.5;
}
.clndr .clndr-controls .clndr-control-button .clndr-previous-button.inactive:hover {
  background: none;
  cursor: default;
}
.clndr .clndr-table {
  table-layout: fixed;
  width: 100%;
}
.clndr .clndr-table .header-days {
  height: 55px;
  font-size: 12px;
  font-weight: 600;
  background: white;
}
.clndr .clndr-table .header-days .header-day {
  vertical-align: middle;
  text-align: center;
  border-left: 0;
  border-top: 0;
  color: #000;
}
.clndr .clndr-table .header-days .header-day:last-child {
  border-right: 0;
}
.clndr .clndr-table tr {
  height: 55px;
}
.clndr .clndr-table tr td {
  vertical-align: top;
}
.clndr .clndr-table tr .day {
  border-left: 0;
  border-top: 0;
  width: 100%;
  height: inherit;
}
.clndr .clndr-table tr .day:hover {
  background: #eee;
}
.clndr .clndr-table tr .day.today {
  background: #51d4cc;
}
.clndr .clndr-table tr .day.today:hover {
  background: #30c2b9;
}
.clndr .clndr-table tr .day.today.event {
  background: #a7dbc1;
}
.clndr .clndr-table tr .day.event {
  background: #B4E09F;
}
.clndr .clndr-table tr .day.event:hover {
  background: #96d478;
  cursor: pointer;
}
.clndr .clndr-table tr .day.inactive {
  background: #ddd;
}
.clndr .clndr-table tr .day:last-child {
  border-right: 0;
}
.clndr .clndr-table tr .day .day-contents {
  box-sizing: border-box;
  padding: 8px;
  font-size: 12px;
  text-align: center;
}
.clndr .clndr-table tr .empty,
.clndr .clndr-table tr .adjacent-month {
  border-left: 0;
  border-top: 0;
  width: 100%;
  height: inherit;
  background: #eee;
}
.clndr .clndr-table tr .empty:hover,
.clndr .clndr-table tr .adjacent-month:hover {
  background: #ddd;
}
.clndr .clndr-table tr .empty:last-child,
.clndr .clndr-table tr .adjacent-month:last-child {
  border-right: 0;
}
.clndr .clndr-table tr:last-child .day {
  border-bottom: 0;
}
.clndr .clndr-table tr:last-child .empty {
  border-bottom: 0;
}
.clndr .events {
  position: absolute;
  background: white;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.clndr .events .header {
  background: #4ac7c0;
  padding: 20px;
  position: relative;
}
.clndr .events .header .x-button {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.clndr .events .header .event-header {
  color: white;
  text-align: center;
}
.clndr .events .events-list {
  overflow: auto;
  height: 325px;
}
.clndr .events .events-list .event {
  padding: 30px;
  border-bottom: 1px solid #ccc;
}
.clndr .events .events-list .event a {
  color: black;
}
.clndr .events .events-list .event:hover {
  cursor: pointer;
  background: #f8f8f8;
}
.clndr .events .events-list .event:active,
.clndr .events .events-list .event:focus {
  background: #f2f2f2;
}
.clndr.show-events .clndr-table {
  height: 0;
}
.clndr.show-events .events {
  opacity: 1;
  z-index: 0;
}
@media (max-width: 398px) {
  .clndr .clndr-controls {
    padding: 10px;
  }
  .clndr .clndr-controls .month {
    font-size: 16px;
  }
  .clndr .clndr-controls .clndr-control-button {
    padding: 10px;
  }
  .clndr .clndr-controls .clndr-control-button .clndr-next-button {
    padding: 10px;
  }
  .clndr .clndr-controls .clndr-control-button .clndr-previous-button {
    padding: 10px;
  }
}
/* End Component: CLNDR Calendar */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Product Chooser */
.product-chooser {
  margin-bottom: 20px;
}
.product-chooser .product-chooser-item {
  padding: 11px;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  border: 1px solid #efefef;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.product-chooser .product-chooser-item img {
  padding: 0;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product-chooser .product-chooser-item .title {
  display: block;
  margin: 10px 0 5px 0;
  font-weight: bold;
  font-size: 12px;
}
.product-chooser .product-chooser-item .description {
  font-size: 12px;
  margin: 10px 0 5px 0;
}
.product-chooser .product-chooser-item .feature-list {
  padding: 0;
  text-align: center;
  list-style-type: none;
}
.product-chooser .product-chooser-item .feature-list li {
  display: block;
  padding: 5px;
}
.product-chooser .product-chooser-item .feature-list .title {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
.product-chooser .product-chooser-item .feature-list .feature {
  font-size: 12px;
}
.product-chooser .product-chooser-item input {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
}
.product-chooser .product-chooser-item.selected {
  border: 4px solid #428bca;
  background: #efefef;
  padding: 8px;
  filter: alpha(opacity=100);
  opacity: 1;
}
.product-chooser.disabled .product-chooser-item {
  zoom: 1;
  filter: alpha(opacity=60);
  opacity: 0.6;
  cursor: default;
}
@media (max-width: 767px) {
  .product-chooser .product-chooser-item {
    margin-left: 0;
    margin-right: 0;
  }
}
/* End Component: Product Choooser */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Full Calendar */
.fc-state-default {
  border: 1px solid #ddd;
  background: #f2f2f2;
}
.fc-state-default.fc-corner-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-state-default.fc-state-default.fc-corner-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.fc-ltr .fc-event-hori.fc-event-start,
.fc-ltr .fc-event-hori.fc-event-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.fc-ltr .fc-event-hori.fc-event-end,
.fc-ltr .fc-event-hori.fc-event-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
a.fc-event:hover {
  color: #eaeaea;
}
.external-events {
  width: 100%;
  text-align: left;
}
.external-event {
  margin: 10px 0;
  padding: 6px 10px;
  background: #3366CC;
  color: #fff;
  font-size: 12px;
  width: 100%;
  cursor: pointer;
}
.external-event .borderColor {
  display: none;
}
.external-event .backgroundColor {
  display: none;
}
.external-event .url {
  display: block;
  font-size: 10px;
}
@media (max-width: 767px) {
  .fc-header-left {
    display: block;
    width: 100%;
    text-align: center;
  }
  .fc-header-center {
    display: block;
    width: 100%;
  }
  .fc-header-right {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/* End Component: Full Calendar */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Carousel */
.carousel.theme-carousel {
  overflow: hidden;
}
.carousel.theme-carousel .carousel-control {
  position: absolute;
  top: 50%;
  left: 10px;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: rgba(0, 0, 0, 0.68);
  border: 2px solid white;
  border-radius: 50%;
  opacity: .5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel.theme-carousel .carousel-control.left {
  -webkit-transform: translateX(-120%);
  -moz-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
  -o-transform: translateX(-120%);
  transform: translateX(-120%);
}
.carousel.theme-carousel .carousel-control.left:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel.theme-carousel .carousel-control.right {
  left: auto;
  right: 10px;
  -webkit-transform: translateX(120%);
  -moz-transform: translateX(120%);
  -ms-transform: translateX(120%);
  -o-transform: translateX(120%);
  transform: translateX(120%);
}
.carousel.theme-carousel .carousel-control.right:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel.theme-carousel .carousel-control.right span {
  width: 30px;
}
.carousel.theme-carousel:hover .carousel-control.left {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.carousel.theme-carousel:hover .carousel-control.right {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
@media (max-width: 767px) {
  .carousel.theme-carousel .carousel-control {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .carousel.theme-carousel .carousel-control.left span {
    left: 8px;
    line-height: 0;
  }
  .carousel.theme-carousel .carousel-control.right span {
    width: 20px;
    line-height: 0;
  }
}
/* End Component: Carousel */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Chat */
.chat .chat-wrapper .chat-list-wrapper {
  border: 1px solid #ddd;
  height: 510px;
  overflow-y: auto;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list {
  padding: 0;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li {
  display: block;
  padding: 20px 10px;
  clear: both;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  -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;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .avatar {
  margin-right: 12px;
  float: left;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .avatar img {
  width: 60px;
  height: auto;
  border: 4px solid transparent;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .avatar.available img {
  border-color: #2ecc71;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .avatar.busy img {
  border-color: #ff530d;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header {
  margin-top: 4px;
  margin-bottom: 4px;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header .username {
  font-weight: bold;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header .timestamp {
  float: right;
  color: #999;
  font-size: 11px;
  line-height: 18px;
  font-style: italic;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header .timestamp i {
  margin-right: 4px;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li .body p {
  font-size: 12px;
  line-height: 16px;
  max-height: 32px;
  overflow: hidden;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li:hover {
  background-color: #f4f4f4;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li.active {
  background-color: #eee;
  color: black;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li.active .body .timestamp {
  color: black;
}
.chat .chat-wrapper .chat-list-wrapper .chat-list li.new {
  border-left: 2px solid #2ecc71;
}
.chat .chat-wrapper .message-list-wrapper {
  border: 1px solid #ddd;
  height: 452px;
  position: relative;
  overflow-y: auto;
}
.chat .chat-wrapper .message-list-wrapper .message-list {
  padding: 0;
}
.chat .chat-wrapper .message-list-wrapper .message-list li {
  display: block;
  padding: 20px 10px;
  clear: both;
  position: relative;
  color: white;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .avatar {
  margin-right: 12px;
  display: block;
  float: left;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .avatar img {
  width: 60px;
  height: auto;
  border: 2px solid transparent;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .avatar.available img {
  border-color: #2ecc71;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .avatar.busy img {
  border-color: #ff530d;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .username {
  float: left;
  display: none;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .timestamp {
  text-align: left;
  display: block;
  color: #999;
  font-size: 11px;
  line-height: 18px;
  font-style: italic;
  margin-bottom: 4px;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .timestamp i {
  margin-right: 4px;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .body {
  display: block;
  width: 87%;
  float: left;
  position: relative;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .body .message {
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
  width: auto;
  background: #2ecc71;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .body .message:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #2ecc71 transparent transparent;
  left: 0;
  top: 10px;
  margin-left: -8px;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .body .message a.white {
  color: white;
  font-weight: bolder;
  text-decoration: underline;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.left .body .message img {
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .avatar {
  margin-left: 12px;
  display: block;
  float: right;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .avatar img {
  width: 60px;
  height: auto;
  border: 2px solid transparent;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .avatar.available img {
  border-color: #2ecc71;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .avatar.busy img {
  border-color: #ff530d;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .username {
  float: right;
  display: none;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .timestamp {
  text-align: right;
  display: block;
  color: #999;
  font-size: 11px;
  line-height: 18px;
  font-style: italic;
  margin-bottom: 4px;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .timestamp i {
  margin-right: 4px;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .body {
  display: block;
  width: 87%;
  float: right;
  position: relative;
  text-align: right;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .body .message {
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
  width: auto;
  background: #3498db;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .body .message:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #3498db transparent transparent;
  right: 0;
  top: 10px;
  margin-right: -7px;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .body .message a.white {
  color: white;
  font-weight: bold;
}
.chat .chat-wrapper .message-list-wrapper .message-list li.right .body .message img {
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
.chat .chat-wrapper .compose-area {
  padding: 10px 0;
  text-align: right;
}
.chat .chat-wrapper .compose-box {
  padding: 10px 0;
}
.chat .chat-wrapper .recipient-box {
  padding: 10px 0;
}
.chat .chat-wrapper .recipient-box .bootstrap-tagsinput {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .chat .chat-wrapper .chat-list-wrapper {
    border: 1px solid #ddd;
    height: 300px;
    overflow-y: auto;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list {
    padding: 0;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li {
    display: block;
    padding: 20px 10px;
    clear: both;
    border-bottom: 1px solid #ddd;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li .avatar {
    display: none;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header .username {
    font-weight: bold;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header .timestamp {
    float: right;
    color: #999;
    font-size: 11px;
    line-height: 18px;
    font-style: italic;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li .body .header .timestamp i {
    margin-right: 4px;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li .body p {
    display: none;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li.active {
    color: black;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li.active .body .timestamp {
    color: black;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li.new {
    font-weight: bolder;
  }
  .chat .chat-wrapper .chat-list-wrapper .chat-list li.new .body .timestamp {
    font-weight: bolder;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.left .avatar {
    display: none;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.left .username {
    display: inline-block;
    margin-right: 10px;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.left .body {
    width: 100%;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.right .avatar {
    display: none;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.right .username {
    display: inline-block;
    margin-left: 10px;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.right .timestamp {
    text-align: right;
    display: block;
    color: #999;
    font-size: 11px;
    line-height: 18px;
    font-style: italic;
    margin-bottom: 4px;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.right .timestamp i {
    margin-right: 4px;
  }
  .chat .chat-wrapper .message-list-wrapper .message-list li.right .body {
    width: 100%;
  }
  .chat .chat-wrapper .recipient-box {
    margin-top: 30px;
  }
}
/* End Component: Chat */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Components: Mail */
.message-list-wrapper .nav-tabs .glyphicon:not(.no-margin) {
  margin-right: 10px;
}
.message-list-wrapper .tab-pane .list-group-item:first-child {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.message-list-wrapper .tab-pane .list-group-item:last-child {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.message-list-wrapper .tab-pane .list-group .checkbox {
  display: inline-block;
  margin: 0px;
}
.message-list-wrapper .tab-pane .list-group input[type="checkbox"] {
  margin-top: 2px;
}
.message-list-wrapper .tab-pane .list-group .glyphicon {
  margin-right: 5px;
}
.message-list-wrapper .tab-pane .list-group .glyphicon:hover {
  color: #FFBC00;
}
.message-list-wrapper hr {
  margin-top: 5px;
  margin-bottom: 10px;
}
.message-list-wrapper .nav-pills > li > a {
  padding: 5px 10px;
}
.mail-list {
  font-size: 16px;
}
.mail-list .mail-item {
  font-size: 14px;
  padding: 15px 90px 15px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #222;
}
.mail-list .mail-item.read {
  background-color: #f4f4f4;
  font-weight: normal;
  color: #bbb;
}
.mail-list .mail-item .checkbox {
  width: 20px;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.mail-list .mail-item .star {
  width: 25px;
  margin: 0 10px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
.mail-list .mail-item .attatchment {
  width: 25px;
  margin: 0 10px;
  text-align: center;
  vertical-align: middle;
}
.mail-list .mail-item .avatar {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
}
.mail-list .mail-item .name {
  width: 19%;
  margin: 0 10px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.mail-list .mail-item .subject {
  margin: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.mail-list .mail-item .subject .label {
  margin-right: 8px;
}
.mail-list .mail-item .timestamp {
  float: right;
  position: absolute;
  top: 27px;
  right: 10px;
}
.message-wrapper .message-container .header {
  display: block;
  padding: 0 0 20px;
  margin-bottom: 20px;
}
.message-wrapper .message-container .header .avatar {
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin-right: 10px;
  float: left;
}
.message-wrapper .message-container .header .participants h5 {
  color: #999;
}
.message-wrapper .message-container .header .participants a {
  color: black;
}
.message-wrapper .message-container .header .participants a:hover {
  color: #555555;
}
.message-wrapper .message-container .header .date {
  float: left;
  display: block;
  margin: 0;
}
.message-wrapper .message-container .content {
  border-top: 1px solid #dddddd;
}
.message-wrapper .message-container .content .subject {
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 0 20px;
}
.message-wrapper .message-container .content .message {
  padding: 30px 0;
  font-size: 14px;
  border-bottom: 1px solid #dddddd;
}
.message-wrapper .message-container .content .attatchments-wrapper {
  padding: 30px 0;
}
.message-wrapper .message-container .content .attatchments-wrapper .title {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 12px;
}
.message-wrapper .message-container .content .attatchments-wrapper .attatchments {
  margin-bottom: 20px;
}
.message-wrapper .message-container .content .attatchments-wrapper .attatchments .icon {
  margin-right: 5px;
}
.message-wrapper .message-container .content .reply {
  padding: 30px 0;
  border-top: 1px solid #dddddd;
}
.message-wrapper .message-container .content .reply .reply-btn {
  margin-top: 15px;
}
.compose-container .bootstrap-tagsinput {
  margin: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .mail .btn-group {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .mail-list .mail-item .avatar {
    display: none;
  }
  .mail-list .mail-item .name {
    display: inline;
  }
  .mail-list .mail-item .subject {
    display: none;
  }
  .mail-list .mail-item .star {
    display: none;
  }
  .mail-list .mail-item .timestamp {
    top: 16px;
  }
}
@media (max-width: 384px) {
  .mail-list .mail-item .attatchment {
    display: none;
  }
}
/* End Component: Mail */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Chosen */
.chzn-container-multi .chzn-choices li.search-choice {
  line-height: 18px;
  border-radius: 0;
  background: #eee;
}
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close {
  top: 6px;
}
.chzn-container-multi .chzn-choices li.search-field input[type="text"] {
  height: 30px;
}
.chzn-container .chzn-results li.highlighted {
  background: #2980b9;
}
/* End Component: Chosen */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Pace Loader */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: #29d;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(100%) translateY(-100%) rotate(45deg);
  transform: translateX(100%) translateY(-100%) rotate(45deg);
  pointer-events: none;
}
.pace .pace-activity::before,
.pace .pace-activity::after {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: block;
  border: 5px solid #fff;
  border-radius: 50%;
  content: '';
}
.pace .pace-activity::before {
  margin-left: -40px;
  width: 80px;
  height: 80px;
  border-right-color: rgba(0, 0, 0, 0.2);
  border-left-color: rgba(0, 0, 0, 0.2);
  -webkit-animation: pace-rotation 3s linear infinite;
  animation: pace-rotation 3s linear infinite;
}
.pace .pace-activity::after {
  bottom: 50px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  -webkit-animation: pace-rotation 1s linear infinite;
  animation: pace-rotation 1s linear infinite;
}
.pace.pace-active .pace-activity {
  -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
  transform: translateX(50%) translateY(-50%) rotate(45deg);
}
@-webkit-keyframes pace-rotation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes pace-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* End Component: Pace Loader */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Profile Widget */
.profile-widget {
  position: relative;
}
.profile-widget .image-container {
  background-size: cover;
  background-position: center;
  padding: 190px 0 10px;
}
.profile-widget .image-container .profile-background {
  width: 100%;
  height: auto;
}
.profile-widget .image-container .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto -60px;
  display: block;
}
.profile-widget .details {
  padding: 50px 15px 15px;
  text-align: center;
}
/* End Component: Profile Widget */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Mini Profile Widget */
.mini-profile-widget .image-container .avatar {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  background: white;
  padding: 4px;
  border: 1px solid #dddddd;
}
.mini-profile-widget .details {
  text-align: center;
}
/* End Component: Mini Profile Widget */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Todo List Widget */
.todo-list {
  margin: 0;
  padding: 0px 0px;
  list-style: none;
  overflow-y: auto;
  height: 340px;
}
.todo-list > li {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  padding-right: 30px;
  background: #f3f4f5;
  margin-bottom: 2px;
  border-left: 4px solid transparent;
  color: #444;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.todo-list > li input[type=checkbox] {
  float: left;
  vertical-align: top;
}
.todo-list > li input[type=checkbox]:checked + label {
  text-decoration: line-through;
}
.todo-list > li .text {
  margin-left: 20px;
  font-weight: 500;
  font-size: 12px;
  vertical-align: top;
  display: block;
}
.todo-list > li .tools {
  display: none;
  position: absolute;
  right: 10px;
  top: 12px;
  color: #f56954;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.todo-list > li.active {
  background: #E4E5E6;
}
.todo-list > li.active .text {
  font-weight: 600;
}
.todo-list > li:hover {
  background: #E4E5E6;
  cursor: pointer;
}
.todo-list > li:hover .tools {
  display: inline-block;
}
/* End Component: Todo List Widget */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Component: Posts */
.post .post-heading {
  height: 95px;
  padding: 20px 15px;
}
.post .post-heading .avatar {
  width: 60px;
  height: 60px;
  display: block;
  margin-right: 15px;
}
.post .post-heading .meta .title {
  margin-bottom: 0;
}
.post .post-heading .meta .title a {
  color: black;
}
.post .post-heading .meta .title a:hover {
  color: #aaaaaa;
}
.post .post-heading .meta .time {
  margin-top: 8px;
  color: #999;
}
.post .post-image .image {
  width: 100%;
  height: auto;
}
.post .post-description {
  padding: 15px;
}
.post .post-description p {
  font-size: 14px;
}
.post .post-description .stats {
  margin-top: 20px;
}
.post .post-description .stats .stat-item {
  display: inline-block;
  margin-right: 15px;
}
.post .post-description .stats .stat-item .icon {
  margin-right: 8px;
}
.post .post-footer {
  border-top: 1px solid #ddd;
  padding: 15px;
}
.post .post-footer .input-group-addon a {
  color: #454545;
}
.post .post-footer .comments-list {
  padding: 0;
  margin-top: 20px;
  list-style-type: none;
}
.post .post-footer .comments-list .comment {
  display: block;
  width: 100%;
  margin: 20px 0;
}
.post .post-footer .comments-list .comment .avatar {
  width: 35px;
  height: 35px;
}
.post .post-footer .comments-list .comment .comment-heading {
  display: block;
  width: 100%;
}
.post .post-footer .comments-list .comment .comment-heading .user {
  font-size: 14px;
  font-weight: bold;
  display: inline;
  margin-top: 0;
  margin-right: 10px;
}
.post .post-footer .comments-list .comment .comment-heading .time {
  font-size: 12px;
  color: #aaa;
  margin-top: 0;
  display: inline;
}
.post .post-footer .comments-list .comment .comment-body {
  margin-left: 50px;
}
.post .post-footer .comments-list .comment > .comments-list {
  margin-left: 50px;
}
/* End Component: Posts */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Header Section */
header {
  width: 100%;
  position: relative;
  height: 60px;
  z-index: 500;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #dddddd;
}
header .logo {
  padding: 0px 20px;
  max-width: 240px;
  height: 60px;
  width: 240px;
  display: block;
  color: #555555;
  width: 100%;
  font-size: 20px;
  line-height: 60px;
  border-right: 1px solid #dddddd;
  float: left;
}
header .logo .icon {
  margin-right: 8px;
}
header .logo .image {
  margin-right: 8px;
  height: 40px;
  width: auto;
}
header .logo:hover {
  color: #aaaaaa;
}
header .navbar-main {
  display: block;
  height: 60px;
  font-size: 20px;
  text-align: center;
}
header .navbar-main .button-container {
  display: block;
  padding: 0;
  margin: 0;
}
header .navbar-main .button-container > .item {
  display: block;
  margin: 0;
  float: left;
}
header .navbar-main .button-container > .item > a {
  line-height: 60px;
  padding: 0 20px;
  display: block;
}
header .navbar-main .button-container > .item > a:hover,
header .navbar-main .button-container > .item > a:focus,
header .navbar-main .button-container > .item > a:active {
  text-decoration: none;
}
header .navbar-main .button-container > .item.chat-search {
  height: 60px !important;
  width: 240px;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  display: block;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -ms-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
}
header .navbar-main .button-container > .item.chat-search.collapse {
  width: 0;
  border-left: 0;
}
header .navbar-main .button-container > .item.chat-search.collapse.in {
  width: 240px;
  border-left: 1px solid #dddddd;
}
header .navbar-main .button-container > .item.chat-search.collapse.in.open {
  display: block;
}
header .navbar-main .button-container > .item.chat-search .search-form {
  width: 100%;
  display: block;
  padding: 15px 20px;
  line-height: 60px;
  position: relative;
}
header .navbar-main .button-container > .item.chat-search .search-form input {
  width: 100%;
  padding: 5px 10px;
  display: block;
  height: 30px;
  border: none;
  border-radius: 0;
  background: #f8f8f8;
  outline: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
header .navbar-main .button-container > .item.chat-search .search-form input:focus {
  background: #f2f2f2;
}
header .navbar-main .button-container .nav-button {
  cursor: pointer;
}
header .navbar-main .button-container .nav-button:hover {
  background: rgba(255, 255, 255, 0.5);
}
header .navbar-main .button-container .nav-button:active {
  background: rgba(255, 255, 255, 0.4);
}
header .navbar-main .nav-content {
  display: inline-block;
  text-align: center;
  max-width: 50%;
  width: auto;
}
header .navbar-main .nav-content .page-title {
  display: block;
  line-height: 60px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
header .navbar-main .dropdown-menu {
  z-index: 990;
  width: 100%;
}
.header-fixed header {
  position: fixed;
}
.skin-blue header {
  background-color: rgba(0, 75, 151, 0.9);
  border-color:#004B97;
  color: white;
}
.skin-blue header .logo {
  color: white;
  border-color: #ffffff;
}
.skin-blue header .navbar-main .button-container > .item > a {
  color: white;
}
.skin-blue header .navbar-main .button-container > .item.chat-search {
  border-color: #f2f2f2;
}
.skin-blue header .navbar-main .button-container > .item.chat-search.collapse.in {
  border-color: #f2f2f2;
}
.skin-blue header .navbar-main .nav-content .page-title {
  color: white;
}
.skin-green header {
  background-color: rgba(46, 204, 113, 0.8);
  border-color: #2ecc71;
  color: white;
}
.skin-green header .logo {
  color: white;
  border-color: #2ecc71;
}
.skin-green header .navbar-main .button-container > .item > a {
  color: white;
}
.skin-green header .navbar-main .button-container > .item.chat-search {
  border-color: #2ecc71;
}
.skin-green header .navbar-main .button-container > .item.chat-search.collapse.in {
  border-color: #2ecc71;
}
.skin-green header .navbar-main .nav-content .page-title {
  color: white;
}
.skin-red header {
  background-color: rgba(231, 76, 60, 0.8);
  border-color: #e74c3c;
  color: white;
}
.skin-red header .logo {
  color: white;
  border-color: #e74c3c;
}
.skin-red header .navbar-main .button-container > .item > a {
  color: white;
}
.skin-red header .navbar-main .button-container > .item.chat-search {
  border-color: #e74c3c;
}
.skin-red header .navbar-main .button-container > .item.chat-search.collapse.in {
  border-color: #e74c3c;
}
.skin-red header .navbar-main .nav-content .page-title {
  color: white;
}
.skin-purple header {
  background-color: rgba(155, 89, 182, 0.8);
  border-color: #9b59b6;
  color: white;
}
.skin-purple header .logo {
  color: white;
  border-color: #9b59b6;
}
.skin-purple header .navbar-main .button-container > .item > a {
  color: white;
}
.skin-purple header .navbar-main .button-container > .item.chat-search {
  border-color: #9b59b6;
}
.skin-purple header .navbar-main .button-container > .item.chat-search.collapse.in {
  border-color: #9b59b6;
}
.skin-purple header .navbar-main .nav-content .page-title {
  color: white;
}
.skin-dark header {
  background-color: rgba(35, 35, 35, 0.8);
  border-color: #232323;
  color: white;
}
.skin-dark header .logo {
  color: white;
}
.skin-dark header .navbar-main .button-container > .item > a {
  color: white;
}
.skin-dark header .navbar-main .button-container > .item.chat-search {
  border-color: #232323;
}
.skin-dark header .navbar-main .button-container > .item.chat-search.collapse.in {
  border-color: #232323;
}
.skin-dark header .navbar-main .nav-content .page-title {
  color: white;
}
.skin-dark.dark header .logo {
  background: #232323;
  color: white;
  border-right: 1px solid #2c2c2c;
}
.skin-dark.dark header .logo:hover {
  background: #313131;
}
@media (max-width: 767px) {
  header {
    border: none;
  }
  header .logo {
    float: none;
    max-width: none;
    border-bottom: 1px solid #dddddd;
  }
  header .navbar-main {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #dddddd;
  }
  .skin-blue header .logo {
    border-bottom-color: #2494f2;
  }
  .skin-blue header .navbar-main {
    background: rgba(0, 75, 151, 0.9);
    border-bottom-color: #004B97;
  }
  .skin-green header .logo {
    border-bottom-color: #2ecc71;
  }
  .skin-green header .navbar-main {
    background: rgba(46, 204, 113, 0.8);
    border-bottom-color: #2ecc71;
  }
  .skin-red header .logo {
    border-bottom-color: #e74c3c;
  }
  .skin-red header .navbar-main {
    background: rgba(231, 76, 60, 0.8);
    border-bottom-color: #e74c3c;
  }
  .skin-purple header .logo {
    border-bottom-color: #9b59b6;
  }
  .skin-purple header .navbar-main {
    background: rgba(155, 89, 182, 0.8);
    border-bottom-color: #9b59b6;
  }
  .skin-dark header .logo {
    border-bottom-color: #232323;
  }
  .skin-dark header .navbar-main {
    background: rgba(35, 35, 35, 0.8);
    border-bottom-color: #232323;
  }
}
/* End Header Section */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Sidebar Section */
.sidebar {
  width: 100%;
  max-width: 240px;
  max-height: none;
  position: absolute;
  z-index: 400;
  padding: 0;
  background: white;
  height: auto !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar.sidebar-left {
  left: 0;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.sidebar.sidebar-left.navbar-collapse.collapse.in {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.sidebar.sidebar-right {
  right: 0;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.sidebar.sidebar-right.navbar-collapse.collapse.in {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  position: fixed;
}
.sidebar .sidebar-wrapper .nav-buttons {
  padding: 0;
  list-style-type: none;
  margin-bottom: 20px;
}
.sidebar .sidebar-wrapper .nav-buttons .nav-button {
  display: inline-block;
  padding: 10px 0;
  width: 23%;
  text-align: center;
}
.sidebar .sidebar-wrapper .nav-buttons .nav-button > a > .icon {
  display: block;
  font-size: 100px;
  margin-bottom: 5px;
}
.sidebar .sidebar-wrapper .nav-buttons .nav-button > a > .badge {
  font-size: 12px;
}
.sidebar .sidebar-wrapper .user-container {
  display: inline-block;
  width: 100%;
  padding: 0 20px 20px;
  margin-bottom: 0px;
  border-bottom: 1px solid #dddddd;
}
.sidebar .sidebar-wrapper .user-container .avatar {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 10px;
  border: 1px solid #dddddd;
}
.sidebar .sidebar-wrapper .user-container .name {
  margin-top: 4px;
  margin-bottom: 6px;
  color: black;
}
.sidebar .sidebar-wrapper .user-container .extra {
  margin-top: 6px;
  margin-bottom: 0;
}
.sidebar .sidebar-wrapper .user-container .dropdown-menu {
  width: 100%;
}
.sidebar .sidebar-wrapper .user-container .dropdown-menu > li > a:hover {
  background-color: #3498db;
  color: white;
}
.sidebar .sidebar-wrapper .user-container .dropdown-menu > li > a .icon {
  margin-right: 5px;
}
.sidebar .sidebar-wrapper .sidebar-nav {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.sidebar .sidebar-wrapper .sidebar-nav li {
  border-bottom: 1px solid #dddddd;
}
.sidebar .sidebar-wrapper .sidebar-nav li a {
  padding: 14px 20px;
  display: block;
  font-size: 12px;
  line-height: 20px;
  color: #454545;
  -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;
}
.sidebar .sidebar-wrapper .sidebar-nav li:hover > a {
  background-color: #0cb9b9;
  color: white;
}
.sidebar .sidebar-wrapper .sidebar-nav li.active > a {
  background-color: #15aaaa;
  color: white;
}
.sidebar .sidebar-wrapper .sidebar-nav li.active:hover > a {
  background-color: #0cb9b9;
  color: white;
}
.sidebar .sidebar-wrapper .sidebar-nav li .menu-icon {
  margin-right: 8px;
}
.sidebar .sidebar-wrapper .sidebar-nav li .submenu-indicator {
  line-height: 20px;
  float: right;
}
.sidebar .sidebar-wrapper .sidebar-nav li > ul {
  background: #fdfdfd;
  list-style-type: none;
  padding: 0;
}
.sidebar .sidebar-wrapper .sidebar-nav li > ul > li {
  padding-left: 0;
  border: none;
}
.sidebar .sidebar-wrapper .sidebar-nav li > ul > li a {
  padding: 5px 20px 5px 52px;
}
.sidebar .sidebar-wrapper .sidebar-nav li > ul > li:hover > a {
  color: #0cb9b9;
  background-color: transparent;
}
.sidebar .sidebar-wrapper .sidebar-nav li > ul > li ul li {
  padding-left: 15px;
}
.sidebar .sidebar-wrapper .chat-list-wrapper {
  padding: 20px;
  list-style-type: none;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  color: #454545;
}
.sidebar .sidebar-wrapper .chat-list-wrapper ul {
  padding-left: 30px;
}
.sidebar .sidebar-wrapper .chat-list-wrapper ul li {
  font-size: 14px;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list {
  list-style-type: none;
  padding: 0;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li {
  padding: 0;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li a {
  display: inline-block;
  width: 100%;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li a .image {
  margin-right: 10px;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li a .image .avatar {
  width: 40px;
  height: auto;
  max-height: 40px;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li a .info {
  width: 63.5%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li a .info .name {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar .sidebar-wrapper .chat-list-wrapper .user-list li a .info .extra {
  margin-top: 5px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar .sidebar-wrapper .search-form-container {
  padding: 20px;
  border-bottom: 1px solid #dddddd;
}
.sidebar .sidebar-wrapper .search-form-container .search-form {
  width: 100%;
  display: block;
  position: relative;
}
.sidebar .sidebar-wrapper .search-form-container .search-form > input {
  width: 100%;
  padding: 5px 25px 5px 10px;
  display: block;
  background: #f8f8f8;
  outline: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.sidebar .sidebar-wrapper .search-form-container .search-form > input:focus {
  background: #f2f2f2;
}
.sidebar .sidebar-wrapper .search-form-container .search-form > button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: none;
  border: none;
  outline: none;
}
.sidebar .sidebar-wrapper .search-form-container .side-panel {
  position: relative;
}
.header-fixed .sidebar {
  margin-top: 60px;
  position: fixed;
  height: 100% !important;
}
.header-fixed .sidebar.sidebar-left.navbar-collapse.collapse {
  height: 100% !important;
}
.header-fixed .sidebar.sidebar-right.navbar-collapse.collapse {
  height: 100% !important;
}
.skin-blue .sidebar .sidebar-wrapper .sidebar-nav li:hover > a {
  background-color: #59a9e5;
  color: white;
}
.skin-blue .sidebar .sidebar-wrapper .sidebar-nav li.active > a {
  background-color: #2494f2;
}
.skin-blue .sidebar .sidebar-wrapper .sidebar-nav li.active:hover > a {
  background-color: #59a9e5;
}
.skin-blue .sidebar .sidebar-wrapper .sidebar-nav li > ul li:hover > a {
  color: #59a9e5;
  background-color: transparent;
}
.skin-blue .sidebar .sidebar-wrapper .sidebar-nav li > ul li.active:hover > a {
  color: white;
}
.skin-green .sidebar .sidebar-wrapper .sidebar-nav li:hover > a {
  background-color: #27ae60;
  color: white;
}
.skin-green .sidebar .sidebar-wrapper .sidebar-nav li.active > a {
  background-color: #2ecc71;
}
.skin-green .sidebar .sidebar-wrapper .sidebar-nav li.active:hover > a {
  background-color: #27ae60;
}
.skin-green .sidebar .sidebar-wrapper .sidebar-nav li > ul li:hover > a {
  color: #27ae60;
  background-color: transparent;
}
.skin-green .sidebar .sidebar-wrapper .sidebar-nav li > ul li.active:hover > a {
  color: white;
}
.skin-red .sidebar .sidebar-wrapper .sidebar-nav li:hover > a {
  background-color: #c0392b;
  color: white;
}
.skin-red .sidebar .sidebar-wrapper .sidebar-nav li.active > a {
  background-color: #e74c3c;
}
.skin-red .sidebar .sidebar-wrapper .sidebar-nav li.active:hover > a {
  background-color: #c0392b;
}
.skin-red .sidebar .sidebar-wrapper .sidebar-nav li > ul li:hover > a {
  color: #c0392b;
  background-color: transparent;
}
.skin-red .sidebar .sidebar-wrapper .sidebar-nav li > ul li.active:hover > a {
  color: white;
}
.skin-purple .sidebar .sidebar-wrapper .sidebar-nav li:hover > a {
  background-color: #8e44ad;
  color: white;
}
.skin-purple .sidebar .sidebar-wrapper .sidebar-nav li.active > a {
  background-color: #9b59b6;
}
.skin-purple .sidebar .sidebar-wrapper .sidebar-nav li.active:hover > a {
  background-color: #8e44ad;
}
.skin-purple .sidebar .sidebar-wrapper .sidebar-nav li > ul li:hover > a {
  color: #8e44ad;
  background-color: transparent;
}
.skin-purple .sidebar .sidebar-wrapper .sidebar-nav li > ul li.active:hover > a {
  color: white;
}
.skin-dark .sidebar .sidebar-wrapper .sidebar-nav li:hover > a {
  background-color: #313131;
  color: white;
}
.skin-dark .sidebar .sidebar-wrapper .sidebar-nav li.active > a {
  background-color: #1a1a1a;
}
.skin-dark .sidebar .sidebar-wrapper .sidebar-nav li.active:hover > a {
  background-color: #313131;
}
.skin-dark .sidebar .sidebar-wrapper .sidebar-nav li > ul li:hover > a {
  color: #313131;
  background-color: transparent;
}
.skin-dark .sidebar .sidebar-wrapper .sidebar-nav li > ul li.active:hover > a {
  color: white;
}
.dark .sidebar {
  background: #232323;
}
.dark .sidebar .sidebar-wrapper .nav-buttons .nav-button > a {
  color: white;
}
.dark .sidebar .sidebar-wrapper .nav-buttons .nav-button > a:hover {
  color: #f0f0f0;
}
.dark .sidebar .sidebar-wrapper .user-container {
  border-bottom: 1px solid #313131;
}
.dark .sidebar .sidebar-wrapper .user-container .avatar {
  border: 1px solid #1a1a1a;
}
.dark .sidebar .sidebar-wrapper .user-container .name {
  color: white;
}
.dark .sidebar .sidebar-wrapper .user-container .dropdown-menu {
  background: #2c2c2c;
}
.dark .sidebar .sidebar-wrapper .user-container .dropdown-menu > li a {
  color: white;
}
.dark .sidebar .sidebar-wrapper .user-container .dropdown-menu > li:hover a {
  background: #313131;
}
.dark .sidebar .sidebar-wrapper .user-container .dropdown-menu .divider {
  background: #313131;
}
.dark .sidebar .sidebar-wrapper .search-form-container {
  border-bottom: 1px solid #313131;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li {
  border-bottom: #313131;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li a {
  color: white;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li:hover a {
  background: #313131;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li.active a {
  background: #1a1a1a;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li.active:hover a {
  background: #1a1a1a;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li > ul {
  background: #313131;
}
.dark .sidebar .sidebar-wrapper .sidebar-nav li > ul > li:hover > a {
  color: #bfbfbf;
}
.dark .sidebar .sidebar-wrapper .chat-list-wrapper .heading {
  color: white;
}
@media (max-width: 767px) {
  .sidebar.collapse {
    display: block;
  }
  .sidebar .sidebar-wrapper .nav-buttons .nav-button .dropdown-menu {
    width: 280px;
    min-width: 280px;
  }
  .sidebar .sidebar-wrapper .nav-buttons .nav-button.button-1 .dropdown-menu {
    left: 0;
  }
  .sidebar .sidebar-wrapper .nav-buttons .nav-button.button-2 .dropdown-menu {
    left: -100%;
  }
  .sidebar .sidebar-wrapper .nav-buttons .nav-button.button-3 .dropdown-menu {
    left: -200%;
  }
  .sidebar .sidebar-wrapper .nav-buttons .nav-button.button-4 .dropdown-menu {
    left: -300%;
  }
}
@media (max-width: 384px) {
  .sidebar {
    max-width: none;
    width: 100%;
  }
}
/* End Sidebar Section */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Main Section */
.content-wrapper {
  background: #fafafa;
  margin-left: 240px;
  min-height: 500px;
  height: 100% !important;
  padding: 0;
  position: relative;
  -webkit-transition: margin 0.3s ease;
  -moz-transition: margin 0.3s ease;
  -ms-transition: margin 0.3s ease;
  -o-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.content-wrapper.collapse {
  display: block;
}
.content-wrapper.collapse.in {
  margin-left: 0;
}
.content-wrapper > .content {
  max-width: 1200px;
  height: 100% !important;
  margin-right: auto;
  margin-left: auto;
  padding-top: 20px;
  -webkit-transition: margin 0.5s ease;
  -moz-transition: margin 0.5s ease;
  -ms-transition: margin 0.5s ease;
  -o-transition: margin 0.5s ease;
  transition: margin 0.5s ease;
}
.content-wrapper > .content.collapse {
  display: block;
}
.content-wrapper > .content.collapse.in {
  margin-right: auto;
}
.content-wrapper > .content.full-width {
  max-width: none !important;
}
.content-wrapper > .content .content-title-container .left {
  text-align: left;
  float: left;
}
.content-wrapper > .content .content-title-container .right {
  text-align: right;
  float: right;
}
.content-wrapper > .content .content-title-container .content-title {
  font-size: 20px;
  line-height: 26px;
  margin: 5px 0;
}
.content-wrapper > .content .content-title-container .breadcrumb {
  margin: 5px 10px 0 0;
}
.header-fixed .content-wrapper > .content {
  padding-top: 80px;
}
@media (max-width: 991px) {
  .content-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    margin-left: 0;
  }
  .content-wrapper.collapse {
    margin-left: 0;
  }
  .content-wrapper.collapse.in {
    margin-left: 0;
  }
  .content-wrapper > .content.collapse.in {
    margin-right: 0;
  }
  .content-wrapper > .content .content-title-container .left {
    text-align: center;
    float: none;
  }
  .content-wrapper > .content .content-title-container .right {
    text-align: center;
    float: none;
    margin-top: 10px;
  }
}
/* End Main Section */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Page: Login/Register */
.login,
.register {
  padding: 90px 0;
  background-image: url(../img/backgrounds/blurred-bg1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.login .form-container,
.register .form-container {
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid #ddd;
}
.login .form-container:before,
.register .form-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 3.5px;
  left: 0;
  background: #fff;
  z-index: -1;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  border: 1px solid #ccc;
}
.login .form-container:after,
.register .form-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 3.5px;
  left: 0;
  background: #fff;
  z-index: -1;
  border: 1px solid #ccc;
  top: 5px;
  z-index: -2;
  -webkit-transform: rotateZ(-2deg);
  -moz-transform: rotateZ(-2deg);
  -ms-transform: rotateZ(-2deg);
}
.login .top-wrapper,
.register .top-wrapper {
  padding: 30px;
}
.login .bottom-wrapper,
.register .bottom-wrapper {
  padding: 30px;
}
.login .avatar-container,
.register .avatar-container {
  height: 140px;
  width: 140px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.login .avatar-container .avatar,
.register .avatar-container .avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.login .login-form .has-feedback .form-control-feedback,
.register .login-form .has-feedback .form-control-feedback,
.login .register-form .has-feedback .form-control-feedback,
.register .register-form .has-feedback .form-control-feedback {
  top: 0px;
  width: 34px;
  height: 34px;
  line-height: 34px;
}
@media (max-width: 767px) {
  .login .form-container:before,
  .register .form-container:before,
  .login .form-container:after,
  .register .form-container:after {
    display: none;
  }
}
/* End Page: Login/Register */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Page: Error Page */
.error-page {
  padding: 90px 0;
  background-image: url(../img/backgrounds/blurred-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.error-page .content {
  text-align: center;
  color: white;
}
.error-page .content .title {
  font-size: 142px;
  line-height: 148px;
  margin-bottom: 30px;
}
.error-page .content .message {
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 40px;
}
.error-page .content .search {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .error-page .content .title {
    font-size: 102px;
    line-height: 108px;
  }
  .error-page .content .message {
    font-size: 28px;
    line-height: 32px;
  }
}
/* End Page: Error Page */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Icon Grid Demo */
.icon-list .fa-hover {
  margin-top: 7.5px;
  margin-bottom: 7.5px;
  line-height: 22px;
}
.icon-list .fa-hover a {
  color: black;
  font-size: 12px;
  line-height: 22px;
}
.icon-list .fa-hover a i {
  margin-right: 10px;
  font-size: 22px;
}
#ionicons {
  margin: 40px auto;
  padding-left: 5px;
  width: 100%;
  list-style: none;
  text-align: left;
  font-size: 1px;
}
#ionicons li {
  display: inline-block;
  padding: 22px;
  height: 100%;
  width: 100%;
  max-height: 80px;
  max-width: 80px;
  border-radius: 4px;
  list-style: none;
  text-align: center;
  font-weight: normal;
  font-size: 32px;
}
/* End Icon Grid Demo Page */
/********************************************************************
*********************************************************************
*********************************************************************/
/* Form Wizard Demo Page */
.wizard .wizard-progress {
  margin-top: 5px;
}
.wizard .finish-tab .success-icon {
  height: 180px;
  width: 180px;
  line-height: 180px;
  font-size: 80px;
  color: #2ecc71;
  border: 4px solid #2ecc71;
  border-radius: 50%;
}
/* End Form Wizard Demo Page */

/* Ponteiro do mouse se torna uma m�o */
.MudarMouse{
    cursor: pointer;
}

/* Scroll nos modais */
.ScrollVerticalModal {
        overflow-y: scroll;
        min-width: 220px;
    }

.titulo-seach{
    font-weight: bold !important;
    font-size:15px !important;
}

.margem-pdf {
    margin-right:50px;
}

.whatsappLogo {
    transition: all 0.3s ease;
    font-size: 20px;
    position: fixed;
    bottom: -15px;
    right: 95px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
}

.whatsappImg {
    width: 71px;
    height: 71px;
}

@media (max-width: 1590px) {
    .marginBotButtons {
        margin-bottom: 100px !important;
    }
}

#omnizeButtonFrame, .whatsappLogo, #omnizemessageFrame {
    display: none;
}

#fechaCentralAjuda {
    display: none;
    position: fixed;
    bottom: 78px;
    right: 13px;
    z-index: 20;
}

#painelDeAjuda {
    position: fixed;
    bottom: 4px;
    right: 4px;
}

    #painelDeAjuda .whatsappImg {
        display: block;
        width: 24px;
        height: 24px;
    }

    #painelDeAjuda .botaoChat {
        background-color: rgb(139, 175, 218);
        width: 24px;
        height: 24px;
        display: inline-block;
        vertical-align: middle;
        border-radius: 4.4px;
    }
