@charset "UTF-8";

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

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

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

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

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

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

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

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

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

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

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

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

.flash {
  animation-name: flash;
}

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

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

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

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

.pulse {
  animation-name: pulse;
}

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

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

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

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

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

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

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

.rubberBand {
  animation-name: rubberBand;
}

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

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

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

.shake {
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  animation-name: tada;
}

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

@keyframes wobble {
  from {
    transform: none;
  }

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

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

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

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

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

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  animation-name: bounceIn;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

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

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

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

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

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

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

.bounceInUp {
  animation-name: bounceInUp;
}

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

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

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

.bounceOut {
  animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

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

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

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

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

.fadeInDown {
  animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
  animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
  animation-name: fadeInUp;
}

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

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

.rotateIn {
  animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

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

.hinge {
  animation-name: hinge;
}

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

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

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

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

.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

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

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

.zoomInDown {
  animation-name: zoomInDown;
}

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

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

.zoomInLeft {
  animation-name: zoomInLeft;
}

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

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

.zoomInRight {
  animation-name: zoomInRight;
}

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

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

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

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

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

.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
  animation-name: zoomOutRight;
}

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

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

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}

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

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

.slideOutDown {
  animation-name: slideOutDown;
}

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

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

.slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.slideOutRight {
  animation-name: slideOutRight;
}

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

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

.slideOutUp {
  animation-name: slideOutUp;
}


/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.html")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.html")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.html")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.html")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.html")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.html")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.html")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.003;filter:Alpha(Opacity=.3)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}


/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.8.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2017 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.chosen-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.html") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("chosen-sprite.html") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url("chosen-sprite.html") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("chosen-sprite.html") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
          box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url("chosen-sprite.html") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("chosen-sprite%402x.html") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */


/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */a.meanmenu-reveal{display:none}.mean-container .mean-bar{float:left;width:100%;position:relative;background:#0c1923;padding:4px 0;min-height:42px;z-index:999999}.mean-container a.meanmenu-reveal{width:22px;height:22px;padding:13px 13px 11px;position:absolute;top:0;right:0;cursor:pointer;color:#fff;text-decoration:none;font-size:16px;text-indent:-9999em;line-height:22px;font-size:1px;display:block;font-family:Arial,Helvetica,sans-serif;font-weight:700}.mean-container a.meanmenu-reveal span{display:block;background:#fff;height:3px;margin-top:3px}.mean-container .mean-nav{float:left;width:100%;background:#0c1923;margin-top:44px}.mean-container .mean-nav ul{padding:0;margin:0;width:100%;list-style-type:none}.mean-container .mean-nav ul li{position:relative;float:left;width:100%}.mean-container .mean-nav ul li a{display:block;float:left;width:90%;padding:1em 5%;margin:0;text-align:left;color:#fff;border-top:1px solid #383838;border-top:1px solid rgba(255,255,255,.5);text-decoration:none;text-transform:uppercase}.mean-container .mean-nav ul li li a{width:80%;padding:1em 10%;border-top:1px solid #f1f1f1;border-top:1px solid rgba(255,255,255,.25);opacity:.75;filter:alpha(opacity=75);text-shadow:none!important;visibility:visible}.mean-container .mean-nav ul li.mean-last a{border-bottom:0;margin-bottom:0}.mean-container .mean-nav ul li li li a{width:70%;padding:1em 15%}.mean-container .mean-nav ul li li li li a{width:60%;padding:1em 20%}.mean-container .mean-nav ul li li li li li a{width:50%;padding:1em 25%}.mean-container .mean-nav ul li a:hover{background:#252525;background:rgba(255,255,255,.1)}.mean-container .mean-nav ul li a.mean-expand{margin-top:1px;width:26px;height:32px;padding:12px!important;text-align:center;position:absolute;right:0;top:0;z-index:2;font-weight:700;background:rgba(255,255,255,.1);border:0!important;border-left:1px solid rgba(255,255,255,.4)!important;border-bottom:1px solid rgba(255,255,255,.2)!important}.mean-container .mean-nav ul li a.mean-expand:hover{background:rgba(0,0,0,.9)}.mean-container .mean-push{float:left;width:100%;padding:0;margin:0;clear:both}.mean-nav .wrapper{width:100%;padding:0;margin:0}.mean-container .mean-bar,.mean-container .mean-bar *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.mean-remove{display:none!important}


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url(fancybox_sprite.html);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(fancybox_loading.html) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(blank.html); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: visible !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url(fancybox_overlay.html);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url(fancybox_sprite%402x.html);
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url(fancybox_loading%402x.html);
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

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

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

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

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

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

/**
 * Address styling not present in IE 8/9.
 */

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

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

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

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

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

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

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

/**
 * Re-set default cursor for disabled elements.
 */

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

/**
 * Remove inner padding and border in Firefox 4+.
 */

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

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

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

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

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

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

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

/**
 * Define consistent border, margin, and padding.
 */

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

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

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

td,
th {
  padding: 0;
}


/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important;
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white;
	filter:alpha(opacity=0);
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}

.pushbar.opened{
display: block;
}

html.pushbar_locked{
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}


.pushbar_locked .pushbar_main_content.pushbar_blur{
	filter:blur(15px);
}
.pushbar{
	z-index: 1000;
	position: fixed;
	will-change: transform;
	overflow-y: auto;
	transition:transform 0.3s ease;
	will-change: transform;
	background:#fff;
}
.pushbar_overlay{
	z-index: -999;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
    will-change: opacity;
    transition:opacity 0.3s ease;
    opacity:0;
    will-change: opacity;
	background: #3c3442;
}
html.pushbar_locked .pushbar_overlay{
	opacity:0.8;
	z-index: 999;
    transition:opacity 0.3s ease;
}


.pushbar.from_left{
	top: 0;
	left: 0;
	width: 256px;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transform: translateZ(0) translateX(-100%);
}

.pushbar.from_right{
	top: 0;
	right: 0;
	width: 256px;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transform: translateZ(0) translateX(100%);
}

.pushbar.from_top{
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	transform: translateZ(0) translateY(-100%);
}
.pushbar.from_bottom{
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	transform: translateZ(0) translateY(100%);
}

.pushbar.opened{
   transform: translateX(0px) translateY(0px);
}

.ui-ios-overlay {
	z-index: 9999999990 !important;
}


/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.html) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

.ui-ios-overlay {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000,endColorstr=#cc000000);
  background: rgba(0,0,0,0.8);

}
.ui-ios-overlay .title {
  color: #FFF;
  font-weight: bold;
  text-align: center;
  display: block;
  font-size: 18px;
  position: absolute;
  top: 175px;
  left: 0;
  width: 100%;
}
.ui-ios-overlay img {
  display: block;
  margin: 20% auto 0 auto;
}
.ui-ios-overlay .spinner {
  left: 50% !important;
  top: 40% !important;
}

.ios-overlay-show {
  -webkit-animation-name: ios-overlay-show;
  -webkit-animation-duration: 750ms;
  -moz-animation-name: ios-overlay-show;
  -moz-animation-duration: 750ms;
  -ms-animation-name: ios-overlay-show;
  -ms-animation-duration: 750ms;
  -o-animation-name: ios-overlay-show;
  -o-animation-duration: 750ms;
  animation-name: ios-overlay-show;
  animation-duration: 750ms;
}

@-webkit-keyframes ios-overlay-show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes ios-overlay-show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-ms-keyframes ios-overlay-show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes ios-overlay-show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes ios-overlay-show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.ios-overlay-hide {
  -webkit-animation-name: ios-overlay-hide;
  -webkit-animation-duration: 750ms;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: ios-overlay-hide;
  -moz-animation-duration: 750ms;
  -moz-animation-fill-mode: forwards;
  -ms-animation-name: ios-overlay-hide;
  -ms-animation-duration: 750ms;
  -ms-animation-fill-mode: forwards;
  -o-animation-name: ios-overlay-hide;
  -o-animation-duration: 750ms;
  -o-animation-fill-mode: forwards;
  animation-name: ios-overlay-hide;
  animation-duration: 750ms;
  animation-fill-mode: forwards;
}

@-webkit-keyframes ios-overlay-hide {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@-moz-keyframes ios-overlay-hide {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@-ms-keyframes ios-overlay-hide {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@-o-keyframes ios-overlay-hide {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes ios-overlay-hide {
  0% { opacity: 1; }
  100% { opacity: 0; }
}


/**
 * EasyZoom core styles
 */
.easyzoom {
	position: relative;

	/* 'Shrink-wrap' the element */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.easyzoom img {
	vertical-align: bottom;
}

.easyzoom.is-loading img {
	cursor: progress;
}

.easyzoom.is-ready img {
	cursor: crosshair;
}

.easyzoom.is-error  img {
	cursor: not-allowed;
}

.easyzoom-notice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 150;
	width: 10em;
	margin: -1em 0 0 -5em;
	line-height: 2em;
	text-align: center;
	background: #FFF;
	box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
	position:absolute;
	z-index: 100;
	overflow: hidden;
	background: #FFF;
}

/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	margin-left: 20px;
}

.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/*# sourceMappingURL=slick.min.css.map */

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.3/customize/?id=ff1f17ed2ca6d16ada0872cb803327c5)
 * Config saved to config.json and https://gist.github.com/ff1f17ed2ca6d16ada0872cb803327c5
 *//*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regulard41d.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1200px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);-webkit-background-clip:padding-box;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;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);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}


 /*================================================
 [  Table of contents  ]
 ================================================
 01. General
 02. Page section margin padding
 03. Section title 1
 04. Section title 2
 05. button
 06. button small
 07. share button
 08. Text color
 09. Input
 10. Extra class
 12. loading
 13. Box Layout
 14. Back to top
 15. Basic margin padding

 ======================================
 [ End table content ]
 ======================================*/

 /*************************
     General
 *************************/
 /*-----------------------------------------
     Google Font Rubik , Raleway and Shadows
 -------------------------------------------*/
 body {
     font-family: 'Rubik', sans-serif;
     font-weight: 400;
     font-style: normal;
     line-height: 25px;
     color: #7a7a7a;
     font-size: 14px;
 }
 img{
     max-width: 100%;
     transition: all 0.3s ease-out 0s;
     padding: 0px;
 }
 .img-full img{
     width: 100%
 }
 a,
 .btn {
     -webkit-transition: all 0.3s ease-out 0s;
     -moz-transition: all 0.3s ease-out 0s;
     -ms-transition: all 0.3s ease-out 0s;
     -o-transition: all 0.3s ease-out 0s;
     transition: all 0.3s ease-out 0s;
 }
 .btn {
     border-radius: 0px;
     font-size: 14px;
     padding: 0px 15px;
     height: 30px;
     line-height: 30px;
 }
 a:focus,
 .btn:focus {
     text-decoration: none;
     outline: none;
 }
 a:focus,
 a:hover {
     color: #eb3e32;
     text-decoration: none;
 }
 a,
 button,
 input {
     outline: medium none;
     color: #7a7a7a;
 }
 .uppercase {
     text-transform: uppercase
 }
 .capitalize {
     text-transform: capitalize
 }
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Rubik', sans-serif;
     font-weight: normal;
     color: #363f4d;
     margin-top: 0px;
     font-style: normal;
     font-weight: 400;
     margin: 0 0 5px;
 }
 h1 a,
 h2 a,
 h3 a,
 h4 a,
 h5 a,
 h6 a {
     color: inherit;
 }
 h1 {
     font-size: 33px;
     font-weight: 500;
 }
 h2 {
     font-size: 27px;
 }
 h3 {
     font-size: 21px;
 }
 h4 {
     font-size: 15px;
 }
 h5 {
     font-size: 12px;
 }
 h6 {
     font-size: 10px;
 }
 ul {
     margin: 0px;
     padding: 0px;
 }
 li { list-style: none }
 p {
     font-size: 14px;
     font-weight: normal;
     line-height: 24px;
     color: #7a7a7a;
     margin-bottom: 15px;
 }
 hr{
     margin: 60px 0;
     padding: 0px;
     border-bottom: 1px solid #eceff8;
     border-top: 0px;
 }
 hr.style-2{
     border-bottom: 1px dashed #f10;
 }
 hr.mp-0 {
     margin: 0;
     border-bottom: 1px solid #eceff8;
 }
 hr.mtb-40 {
     margin: 40px 0;
     border-bottom: 1px solid #eceff8;
     border-top: 0px;
 }
 label {
     font-size: 15px;
     font-weight: 400;
     color: #626262;
 }
 *::-moz-selection {
     background: #91b2c3;
     color: #fff;
     text-shadow: none;
 }
 ::-moz-selection {
     background: #91b2c3;
     color: #fff;
     text-shadow: none;
 }
 ::selection {
     background: #91b2c3;
     color: #fff;
     text-shadow: none;
 }
 .mark, mark {
     background: #eb3e32 none repeat scroll 0 0;
     color: #ffffff;
 }
 span.tooltip-content {
   color: #00a9da;
   cursor: help;
   font-weight: 600;
 }
 .f-left {
     float: left
 }
 .f-right {
     float: right
 }
 .fix {
     overflow: hidden
 }
 .browserupgrade {
     margin: 0.2em 0;
     background: #ccc;
     color: #000;
     padding: 0.2em 0;
 }
 /***************************
     transtion
 ****************************/
 a.button-small::after {
     -webkit-transition: all 0.3s ease-out 0s;
     -moz-transition: all 0.3s ease-out 0s;
     -ms-transition: all 0.3s ease-out 0s;
     -o-transition: all 0.3s ease-out 0s;
     transition: all 0.3s ease-out 0s;
 }
 .share ul,
 .share:hover ul {
     transition: all 0.4s ease-in-out;
     -webkit-transition: all 0.4s ease-in-out;
     -ms-transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
     -o-transition: all 0.4s ease-in-out;
 }
 a.button-border span,
 a.button-border-white span,
 input,
 select,
 textarea {
     -webkit-transition: all 0.5s ease-out 0s;
     -moz-transition: all 0.5s ease-out 0s;
     -ms-transition: all 0.5s ease-out 0s;
     -o-transition: all 0.5s ease-out 0s;
     transition: all 0.5s ease-out 0s;
 }

 /*************************
     Section title 1
 ***********************/
 .section-title1-border {
 	border-bottom: 2px solid #eb3e32;
 	margin: 0 0 30px;
 }
 .section-title1 h3 {
 	background: #eb3e32;
 	border-radius: 4px 4px 0 0;
 	color: #fff;
 	font-size: 14px;
 	display: inline-block;
 	line-height: 24px;
 	text-transform: uppercase;
 	padding: 10px 20px;
 	position: relative;
 	margin: 0;
 	font-weight: 700;
 }
 /*************************
     section title 2
 *************************/
 .section-title2 h3 {
 	background: #eb3e32;
 	border-radius: 4px 4px 0 0;
 	color: #fff;
 	font-size: 14px;
 	display: block;
 	line-height: 26px;
 	text-transform: uppercase;
 	padding: 10px 20px;
 	position: relative;
 	font-weight: 700;
 	margin: 0;
 }
 /*************************
     section title 3
 *************************/
 .section-title3 > h3 {
 	font-size: 30px;
 	color: #ffffff;
 	text-align: center;
 	font-family: Raleway;
 	font-weight: 900;
 	font-style: normal;
 	margin-bottom: 20px;
 	line-height: 24px;
 }
 .section-title3 > p {
 	text-align: center;
 	font-style: italic;
 	color: #717171;
 	margin-bottom: 35px;
 }
 /*************************
          button
 *************************/
 a.button {
 	font-size: 13px;
 	color: #fff;
 	line-height: 46px;
 	text-transform: uppercase;
 	font-weight: 700;
 	display: inline-block !important;
 	vertical-align: top;
 	padding: 0 40px;
     font-weight: 500;
 	background: #EB3E32;
 	border-radius: 5px;
 }
 a.button:hover{
     background: #363F4D;
 }
 .cart-button a.button2 {
 	border: none;
 	background: #586985;
 	color: #a3acb9;
 	height: 50px;
 	line-height: 50px;
 	text-align: center;
 	padding: 0 20px;
 	display: block;
 	text-transform: capitalize;
 	font-size: 14px;
 	margin-bottom: 15px;
 	border-radius: 2px;
 	font-weight: 400;
 }
 .cart-button {
 	background: #37475b;
 	margin: 0 -35px;
 	padding: 25px 35px;
 }
 .cart-button a.button2:hover{
     background: #EB3E32;
     color: #fff;
 }
 a.button.add-btn,a.button.add-btn.big {
 	background: #363F4D;
 	height: 40px;
 	line-height: 40px;
 	position: absolute;
 	left: 0;
 	top: 40px;
 	opacity: 0;
 	visibility: hidden;
 	transition: all 0.3s ease-in-out;
 	margin: 0 12px;
 	right: 0;
   text-transform: uppercase;
   font-weight: bold;
 	font-size: 14px;
   z-index: 100;
 }
 a.button.add-btn.big {
 	top: auto;
 	bottom: 15px;
 }
 a.button.add-btn:hover{
     background: #EB3E32;
 }
 /*Modal button*/
 .button {
 	font-size: 13px;
 	color: #fff;
 	line-height: 46px;
 	text-transform: uppercase;
 	font-weight: 700;
 	display: inline-block !important;
 	vertical-align: top;
 	padding: 0 40px;
 	background: #EB3E32;
 	border-radius: 5px;
 }
 .button:hover{
     background: #363F4D;
 }
 /*about button*/
 .button2 {
     background: none;
 	border: 1px solid #4c4c4c;
 	color: #7a7a7a;
 	height: 40px;
 	line-height: 40px;
 	margin-top: 26px;
 	box-shadow: none;
 	border-radius: 3px;
 	display: inline-block;
 	font-size: 1em;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	transition: all .3s ease-out;
 	vertical-align: middle;
 }
 .button2:hover{
     background: #EB3E32;
     color: #fff;
     border-color: #EB3E32;
 }
 /*************************
         button small
 *************************/
 a.button-small {
     border: 0 none;
     border-radius: 3px;
     box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03) inset;
     cursor: pointer;
     display: inline-block;
     margin-right: 10px;
     overflow: hidden;
     padding: 0;
     position: relative;
     background-color: #eb3e32;
     color: #fff;
     font-size: 15px;
 }
 a.button-small i {
     background: rgba(0, 0, 0, 0.09);
     display: block;
     float: left;
     padding: 10px;
     font-size: 13px;
     color: #fff;
     font-weight: normal;
     width: 40px;
     text-align: center;
 }
 a.button-small span {
     display: block;
     float: left;
     position: relative;
     z-index: 2;
     padding: 8px 10px;
     font-size: 13px;
     color: #fff;
     font-weight: normal;
 }
 a.button-small:after {
     background: rgba(0, 0, 0, 0.09) none repeat scroll 0 0;
     content: "";
     height: 100%;
     right: 0;
     position: absolute;
     top: 0;
     width: 0;
     z-index: 1;
 }
 a.button-small:hover::after { width: 100% }
 .form-button,.readmore-button,.price-button,.compare-btn {
 	background: #363f4d;
 	box-shadow: none;
 	border: 0;
 	border-radius: 3px;
 	color: #fff;
 	display: inline-block;
 	font-size: 1em;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 	vertical-align: middle;
 	white-space: nowrap;
 }
 .action-btn.big,.action-btn.small {
     background: #363f4d;
     color: #fff;
     display: block;
     border-radius: 3px;
     font-size: 1em;
     font-weight: 400;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     text-align: center;
     text-transform: capitalize;
     height: 35px;
     line-height: 35px;
     padding: 0 15px;
     min-width: 170px;
     transition: all 0.3s ease-in-out;
 }
 .action-btn.big{
     min-width: 170px;
 }
 .action-btn.small{
     min-width: 35px;
 }
 .readmore-button{
     letter-spacing: 2px;
     margin-bottom: 25px;
 }
 .price-button {
 	padding: 0 15px;
 	height: 30px;
 	line-height: 28px;
 	font-size: 12px;
 	width: 60px;
 	display: block;
 	margin-top: 10px;
 }
 .price-button:focus {
 	background: #363f4d;
 }
 .compare-btn {
 	font-weight: 700;
 	position: relative;
 	float: right;
 	height: 35px;
 	line-height: 35px;
 }
 .compare-btn::after {
 	content: "\f00c";
 	font-family: FontAwesome;
 	font-weight: normal;
 	vertical-align: bottom;
 	margin-left: 5px;
 }
 .form-button:hover,.readmore-button:hover,.price-button:hover,.compare-btn:hover,.action-btn.big:hover,.action-btn.small:hover{
     background: #eb3e32;
     color: #fff;
 }
 .quantity-button {
 	background: #363f4d;
 	box-shadow: none;
 	border: 0;
 	border-radius: 3px;
 	color: #fff;
 	display: block;
 	font-size: 1em;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 	vertical-align: middle;
 	white-space: nowrap;
 	min-width: 190px;
 	background: #eb3e32;
 	margin: 0;
 }
 .quantity-button:hover{
     background: #363F4D;
     color: #fff;
 }
 /*************************
         buttons variation
 *************************/
 a.button.large {margin-right: 0px; }
 a.button.large span { padding: 16px 80px; font-size: 18px;  }
 a.button.large i { padding: 20px; width: 60px; font-size: 18px; }
 a.button.medium span { padding: 14px 60px; font-size: 16px; }
 a.button.medium i { padding: 17px; width: 50px; font-size: 16px; }
 a.button.small span { padding: 12px 40px; }
 a.button.small i { padding: 14px; width: 45px; }
 a.button.small span { padding: 12px 40px; }
 a.button.small i { padding: 15px; width: 45px; }
 a.button.extra-small span { padding: 8px 20px; font-size: 13px; }
 a.button.extra-small i { padding: 11px; width: 38px; font-size: 13px; }

 /*************************
        social-icon
 *************************/
 .social-icon ul { margin: 0; padding: 0; }
 .social-icon ul li { display: inline-block; list-style: none; }
 .social-icon ul li a { display: block; margin: 3px; width: 50px; height: 50px; line-height: 50px; font-size: 16px; color: #fff; background: #eb3e32; text-align: center; border-radius: 50%; }
 .social-icon ul li a:hover { background: #EB3B60; }

 .social-icon.socile-icon-style-2 ul li a { color: #fff; background: #323232; border-radius: 0;}
 .social-icon.socile-icon-style-2 ul li a:hover { background: #EB3B60;  }

 .social-icon.socile-icon-style-3 ul li a { color: #fff; background: transparent; border:1px solid #fff; }
 .social-icon.socile-icon-style-3 ul li a:hover { background: #EB3B60; border-color:#EB3B60; }


 /*************************
         Text color
 *************************/
 .text-blue { color: #eb3e32; }
 .text-white { color: #fff ;}
 .text-black { color: #363636; }
 .text-theme { color: #f10; }

 .text-white h1, .text-white p, .text-white h2{ color: #fff; }
 .text-white { color: #fff; }
 .text-black { color: #363636 ;}
 .text-theme { color: #f10; }
 /*************************
         Input
 *************************/
 input {
 	background: #fff;
 	border: 0;
 	height: 50px;
 	box-shadow: none;
 	padding-left: 10px;
 	font-size: 13px;
 	color: #000;
 	width: 100%;
 }
 select, select.form-control {
 	-moz-appearance: none;
     -webkit-appearance: none;
 	background: rgba(0, 0, 0, 0) url("../img/arow.png") no-repeat scroll 90% center;
 	border: 0;
 	border-radius: 0;
 	box-shadow: none;
 	cursor: pointer;
 	line-height: 100%;
 	max-width: 100%;
 	outline: 0 none;
 	position: relative;
 	text-indent: 0.01px;
 	text-overflow: "";
 	width: 100%;
 	padding: 0 25px;
 	color: #7a7a7a;
 	height: 50px;
 	font-size: 12px;
 }
 option {
     background: #fff;
     border: 0px solid #626262;
     padding-left: 10px;
     font-size: 14px;
 }
 input:focus {
     background: #fff;
 }
 textarea {
 	resize: vertical;
 	background: #fff;
 	border: 1px solid #ebebeb;
 	padding: 10px;
 	width: 100%;
 	font-size: 14px;
 	height: 135px;
 	padding: 15px;
 }
 textarea:focus {
     background: transparent;
     border: 1px solid #ebebeb;
     outline: none;
 }
 ::-moz-placeholder {
     color: #444;
     font-size: 13px;
 }
 .input-group.divcenter.input-group .form-control { padding-left: 0px }
 /*************************
         back-to-top
 *************************/
 #scrollUp {
 	width: 50px;
 	height: 50px;
 	background: #EB3E32;
 	bottom: 50%;
 	right: 12px;
 	line-height: 45px;
 	text-align: center;
 	font-size: 18px;
 	color: #fff;
 	border-radius: 100%;
 	border: 2px solid #ddd;
 	transition: all 0.6s ease-in-out;
 }
 #scrollUp:hover {
    border-color: #eb3e32;
 }
 /*************************
   Basic margin padding
 *************************/
 .m-0 {
     margin-top: 0;
     margin-right: 0;
     margin-bottom: 0;
     margin-left: 0;
 }
 .p-0 {
     padding-top: 0;
     padding-right: 0;
     padding-bottom: 0;
     padding-left: 0;
 }
 /*************************
          Margin top
 *************************/
 .mt-0 { margin-top: 0 !important }
 .mt-10 { margin-top: 10px }
 .mt-15 { margin-top: 15px }
 .mt-20 { margin-top: 20px }
 .mt-30 { margin-top: 30px }
 .mt-40 { margin-top: 40px }
 .mt-50 { margin-top: 50px }
 .mt-60 { margin-top: 60px }
 .mt-70 { margin-top: 70px }
 .mt-80 { margin-top: 80px }
 .mt-90 { margin-top: 90px }
 .mt-100 { margin-top: 100px }
 .mt-110 { margin-top: 110px }
 .mt-120 { margin-top: 120px }
 .mt-130 { margin-top: 130px }
 .mt-140 { margin-top: 140px }
 .mt-150 { margin-top: 150px }
 /*************************
       Margin right
 *************************/
 .mr-0 { margin-right: 0px }
 .mr-10 { margin-right: 10px }
 .mr-15 { margin-right: 15px }
 .mr-20 { margin-right: 20px }
 .mr-30 { margin-right: 30px }
 .mr-40 { margin-right: 40px }
 .mr-50 { margin-right: 50px }
 .mr-60 { margin-right: 60px }
 .mr-70 { margin-right: 70px }
 .mr-80 { margin-right: 80px }
 .mr-90 { margin-right: 90px }
 .mr-100 { margin-right: 100px }
 .mr-110 { margin-right: 110px }
 .mr-120 { margin-right: 120px }
 .mr-130 { margin-right: 130px }
 .mr-140 { margin-right: 140px }
 .mr-150 { margin-right: 150px }
 /*************************
       Margin bottom
 *************************/
 .mb-0 { margin-bottom: 0 }
 .mb-10 { margin-bottom: 10px }
 .mb-15 { margin-bottom: 15px }
 .mb-20 { margin-bottom: 20px }
 .mb-30 { margin-bottom: 30px }
 .mb-35 { margin-bottom: 35px }
 .mb-40 { margin-bottom: 40px }
 .mb-50 { margin-bottom: 50px }
 .mb-55 { margin-bottom: 55px }
 .mb-60 { margin-bottom: 60px }
 .mb-70 { margin-bottom: 70px }
 .mb-80 { margin-bottom: 80px }
 .mb-85 { margin-bottom: 85px }
 .mb-90 { margin-bottom: 90px }
 .mb-100 { margin-bottom: 100px }
 .mb-110 { margin-bottom: 110px }
 .mb-120 { margin-bottom: 120px }
 .mb-130 { margin-bottom: 130px }
 .mb-140 { margin-bottom: 140px }
 .mb-150 { margin-bottom: 150px }
 /*************************
         Margin left
 *************************/
 .ml-0 { margin-left: 0 }
 .ml-10 { margin-left: 10px }
 .ml-15 { margin-left: 15px }
 .ml-20 { margin-left: 20px }
 .ml-30 { margin-left: 30px }
 .ml-40 { margin-left: 40px }
 .ml-50 { margin-left: 50px }
 .ml-60 { margin-left: 60px }
 .ml-70 { margin-left: 70px }
 .ml-80 { margin-left: 80px }
 .ml-90 { margin-left: 90px }
 .ml-100 { margin-left: 100px }
 .ml-110 { margin-left: 110px }
 .ml-120 { margin-left: 120px }
 .ml-130 { margin-left: 130px }
 .ml-140 { margin-left: 140px }
 .ml-150 { margin-left: 150px }
 /*************************
         Padding top
 *************************/
 .pt-0 { padding-top: 0 }
 .pt-10 { padding-top: 10px }
 .pt-15 { padding-top: 15px }
 .pt-20 { padding-top: 20px }
 .pt-30 { padding-top: 30px }
 .pt-30 { padding-top: 35px }
 .pt-40 { padding-top: 40px }
 .pt-50 { padding-top: 50px }
 .pt-60 { padding-top: 60px }
 .pt-70 { padding-top: 70px }
 .pt-80 { padding-top: 80px }
 .pt-90 { padding-top: 90px }
 .pt-100 { padding-top: 100px }
 .pt-110 { padding-top: 110px }
 .pt-120 { padding-top: 120px }
 .pt-130 { padding-top: 130px }
 .pt-140 { padding-top: 140px }
 .pt-150 { padding-top: 150px }
 /*************************
         Padding right
 *************************/
 .pr-0 { padding-right: 0 }
 .pr-10 { padding-right: 10px }
 .pr-15 { padding-right: 15px }
 .pr-20 { padding-right: 20px }
 .pr-30 { padding-right: 30px }
 .pr-40 { padding-right: 40px }
 .pr-50 { padding-right: 50px }
 .pr-60 { padding-right: 60px }
 .pr-70 { padding-right: 70px }
 .pr-80 { padding-right: 80px }
 .pr-90 { padding-right: 90px }
 .pr-100 { padding-right: 100px }
 .pr-110 { padding-right: 110px }
 .pr-120 { padding-right: 120px }
 .pr-130 { padding-right: 130px }
 .pr-140 { padding-right: 140px }
 /*************************
         Padding bottom
 *************************/
 .pb-0 { padding-bottom: 0 }
 .pb-10 { padding-bottom: 10px }
 .pb-15 { padding-bottom: 15px }
 .pb-20 { padding-bottom: 20px }
 .pb-30 { padding-bottom: 30px }
 .pb-40 { padding-bottom: 40px }
 .pb-50 { padding-bottom: 50px }
 .pb-55 { padding-bottom: 55px }
 .pb-60 { padding-bottom: 60px }
 .pb-70 { padding-bottom: 70px }
 .pb-80 { padding-bottom: 80px }
 .pb-85 { padding-bottom: 85px }
 .pb-90 { padding-bottom: 90px }
 .pb-100 { padding-bottom: 100px }
 .pb-110 { padding-bottom: 110px }
 .pb-120 { padding-bottom: 120px }
 .pb-130 { padding-bottom: 130px }
 .pb-140 { padding-bottom: 140px }
 .pb-150 { padding-bottom: 150px }
 /*************************
         Padding left
 *************************/
 .pl-0 { padding-left: 0 }
 .pl-10 { padding-left: 10px }
 .pl-15 { padding-left: 15px }
 .pl-20 { padding-left: 20px }
 .pl-30 { padding-left: 30px }
 .pl-40 { padding-left: 40px }
 .pl-50 { padding-left: 50px }
 .pl-60 { padding-left: 60px }
 .pl-70 { padding-left: 70px }
 .pl-80 { padding-left: 80px }
 .pl-90 { padding-left: 90px }
 .pl-100 { padding-left: 100px }
 .pl-110 { padding-left: 110px }
 .pl-120 { padding-left: 120px }
 .pl-130 { padding-left: 130px }
 .pl-140 { padding-left: 140px }
 .pl-150 { padding-left: 150px }


 /***************************
     Page section padding
 ****************************/
 .ptb-0 { padding: 0 }
 .ptb-10 { padding: 10px 0 }
 .ptb-20 { padding: 20px 0 }
 .ptb-30 { padding: 30px 0 }
 .ptb-40 { padding: 40px 0 }
 .ptb-50 { padding: 50px 0 }
 .ptb-60 { padding: 60px 0 }
 .ptb-70 { padding: 70px 0 }
 .ptb-80 { padding: 80px 0 }
 .ptb-90 { padding: 90px 0 }
 .ptb-100 { padding: 100px 0 }
 .ptb-110 { padding: 110px 0 }
 .ptb-120 { padding: 120px 0 }
 .ptb-130 { padding: 130px 0 }
 .ptb-140 { padding: 140px 0 }
 .ptb-150 { padding: 150px 0 }

 /***************************
     Page section margin
 ****************************/
 .mtb-0 { margin: 0 }
 .mtb-10 { margin: 10px 0 }
 .mtb-15 { margin: 15px 0 }
 .mtb-20 { margin: 20px 0 }
 .mtb-30 { margin: 30px 0 }
 .mtb-40 { margin: 40px 0 }
 .mtb-50 { margin: 50px 0 }
 .mtb-60 { margin: 60px 0 }
 .mtb-70 { margin: 70px 0 }
 .mtb-80 { margin: 80px 0 }
 .mtb-90 { margin: 90px 0 }
 .mtb-100 { margin: 100px 0 }
 .mtb-110 { margin: 110px 0 }
 .mtb-120 { margin: 120px 0 }
 .mtb-130 { margin: 130px 0 }
 .mtb-140 { margin: 140px 0 }
 .mtb-150 { margin: 150px 0; }

 /*************************
         Extra class
 *************************/
 .pricing .container .row [class*="col-"] { }



 /*Custom cloumn*/

 .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10 {
     float: left;
 }
 .col-1{
     width: 10%;
 }
 .col-2{
     width: 20%;
 }
 .col-3{
     width: 25%;
 }
 .col-4{
     width: 35%;
 }
 .col-5{
     width: 50%;
 }
 .col-6{
     width: 65%;
 }
 .col-7{
     width: 70%;
 }
 .col-8{
     width: 80%;
 }
 .col-9{
     width: 90%;
 }
 .col-10{
     width: 100%;
 }
  /*************************************
     Background variation set
  **************************************/
 /*colored background*/
  .white-bg { background: #f7f7f7 !important; }
  .gray-bg { background: #F9F9F9 !important; }
  .blue-bg { background: #eb3e32 !important; }
  .default-bg { background: #eb3e32!important; }
  .transparent-bg { background: transparent !important; }

 /*Opacity background*/
  .bg-opacity-black-10:before, .bg-opacity-black-20:before, .bg-opacity-black-30:before, .bg-opacity-black-40:before, .bg-opacity-black-50:before, .bg-opacity-black-60:before, .bg-opacity-black-70:before, .bg-opacity-black-80:before, .bg-opacity-black-90:before,  .bg-opacity-white-10:before,  .bg-opacity-white-20:before,  .bg-opacity-white-30:before,  .bg-opacity-white-40:before,  .bg-opacity-white-50:before,  .bg-opacity-white-60:before,  .bg-opacity-white-70:before,  .bg-opacity-white-80:before,  .bg-opacity-white-90:before{
     content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: -1;
  }
  .bg-opacity-black-10:before {  background: rgba(0, 0, 0, 0.1);}
  .bg-opacity-black-20:before {  background: rgba(0, 0, 0, 0.2);}
  .bg-opacity-black-30:before {  background: rgba(0, 0, 0, 0.3);}
  .bg-opacity-black-40:before {  background: rgba(0, 0, 0, 0.4);}
  .bg-opacity-black-50:before {  background: rgba(0, 0, 0, 0.5);}
  .bg-opacity-black-60:before {  background: rgba(0, 0, 0, 0.6);}
  .bg-opacity-black-70:before {  background: rgba(0, 0, 0, 0.7);}
  .bg-opacity-black-80:before {  background: rgba(0, 0, 0, 0.8);}
  .bg-opacity-black-90:before {  background: rgba(0, 0, 0, 0.9);}

  .bg-opacity-white-10:before {  background: rgba(255, 255, 255, 0.1);}
  .bg-opacity-white-20:before {  background: rgba(255, 255, 255, 0.2);}
  .bg-opacity-white-30:before {  background: rgba(255, 255, 255, 0.3);}
  .bg-opacity-white-40:before {  background: rgba(255, 255, 255, 0.4);}
  .bg-opacity-white-50:before {  background: rgba(255, 255, 255, 0.5);}
  .bg-opacity-white-60:before {  background: rgba(255, 255, 255, 0.6);}
  .bg-opacity-white-70:before {  background: rgba(255, 255, 255, 0.7);}
  .bg-opacity-white-80:before {  background: rgba(255, 255, 255, 0.8);}
  .bg-opacity-white-90:before {  background: rgba(255, 255, 255, 0.9);}


 /*image background*/
 .bg-1 {
     background: url(../img/bg/bg-1.html);
     background-position: center center;
 	background-size: cover;
 	background-repeat: no-repeat;
 }
 .bg-2 {
     background: url(../img/bg/bg-2.html);
     background-position: center center;
 	background-size: cover;
 	background-repeat: no-repeat;
 }
 .bg-3 {
 	background: url(../img/bg/footer-bg1.html);
 	background-position: center center;
 	background-size: cover;
 	background-repeat: no-repeat;
 }
  .bg-4 {
      background: url(../img/about/1.jpg);
      background-position: center center;
 	 background-repeat: no-repeat;
 	 background-size: cover;
 }
  .bg-5 {
      background: url(../img/about/2.jpg);
      background-position: center center;
 	 background-size: cover;
 	 background-repeat: no-repeat;
 }
  .bg-6 { background: url(../../images/bg/6.html);}
  .bg-7 { background: url(../../images/bg/7.html);}
  .bg-8 { background: url(../../images/bg/8.html);}
  .bg-9 { background: url(../../images/bg/9.html);}
  .bg-10 { background: url(../../images/bg/10.html);}

 /*pattern background*/
 .pattern-bg { background:url(../../images/pattern/pattern-bg.html) repeat; background-position: top right; background-color: rgba(236, 239, 247, 1); }
 /*separator*/
 .separator{
     position: relative;
     display: inline-block;
     clear: both;
     background: rgba(0, 0, 0, 0.07) none repeat scroll 0 0;
     bottom: 0;
     height: 1px;
     width: 33%;
 }
 .separator::before {
   background: #eb3e32 none repeat scroll 0 0;
   content: "";
   display: block;
   height: 1px;
   position: absolute;
   transition: all 0.4s ease 0s;
   width: 100px;
 }

 .section-title:hover .separator::before {
   width: 75%;
 }

 .separator i {
   background: #ECEFF7 none repeat scroll 0 0;
   color: #eb3e32;
   display: block;
   font-size: 20px;
   height: 40px;
   line-height: 40px;
   position: absolute;
   text-align: center;
   top: -20px;
   width: 40px;
 }
 .separator span {
   background: #ffffff none repeat scroll 0 0;
   border: 1px solid #eb3e32;
   border-radius: 100%;
   display: block;
   height: 10px;
   position: absolute;
   top: -5px;
   width: 10px;
 }
 .separator i, .separator span {
   left: 0;
   transform: none;
 }
 .text-center .separator::before, .text-center .separator i, .text-center .separator span  {
   left: 50%;
   transform: translateX(-50%);
 }

 .text-right .separator::before, .text-right .separator i, .text-right .separator span  {
   left: auto;
   transform: none;
   right: 0;
 }


 /*--------------------------------------------------
     CSS INDEX
     ================


     1. Header CSS
         1.1 Header Top CSS
         1.2 Header Middle CSS
         1.3 Header Bottom CSS
     2. Slider CSS
     3. Offer Area CSS
     4. Corporate About CSS
     5. All Product Area CSS
         5.1 Left Side Product CSS
             5.1.1 Desktop & Television Product CSS
             5.1.2 Smartphone & Tablet Product Area CSS
         5.2 Right Side Product CSS
     6. Hot Categories Area CSS
     7. All Slide Product Area CSS
     8. Brand Area CSS
     9. Footer Area CSS
         9.1 Footer Top Area CSS
         9.2 Footer Middel Area CSS
         9.3 Footer Bottom Area CSS
     10. Modal Area CSS
     11. Home 2
     12. Home 3
     13. Home 4
     14. Home 5
     15. Home 6
     16. Home 7
     17. About Page CSS
     18. Protfolio Page CSS
     19. My Account Page CSS
     20. Wishlist Page CSS
     21. Shopping Cart Page CSS
     22. Checkout Page CSS
     23. Shop Page CSS
         23.1 Shop Left Sidebar CSS
     24. Single Product CSS
     25. Blog Page CSS
         25.1 Blog Right Sidebar CSS
         25.2 Blog Post Img CSS
         25.3 Catagorey Blog CSS
     26. Service Page CSS
         26.1 Our Service Area CSS
         26.2 Pricing Table CSS
     27. Contact Page CSS
     28. Frequently Questions Page CSS
     29. Error 404 Page CSS
 ---------------------------------------------------/


 /*----------------------------------------*/
 /*  1. Header CSS
 /*----------------------------------------*/
 /*----------------------------------------*/
 /*  1.1 Header Top CSS
 /*----------------------------------------*/
 html, body {
 	overflow-x: hidden;
 }

 .header-container {
 	background: #eb3e32;
 	color: #fff;
 }
 .header-top-area {
 	border-bottom: 1px solid rgba(255,255,255,0.3);
 }
 .header-top-menu > ul > li {
 	display: inline-block;
 	position: relative;
 	padding-right: 16px;
 	margin-right: 16px;
 	font-size: 12px;
 	padding-top: 5px;
 	padding-bottom: 5px;
 	line-height: 25px;
 }
 .header-top-menu > ul > li:last-child{
     padding-right: 0px;
     margin-right: 0px;
 }
 .support:before,.account:before {
 	content: "\f2d2";
 	font-family: "Ionicons";
 	font-size: 18px;
 	display: inline-block;
 	margin-right: 7px;
 	vertical-align: top;
 }
 .account:before {
 	content: "\f43d";
 }
 .header-top-menu > ul > li:after {
 	position: absolute;
 	content: "";
 	width: 1px;
 	height: 16px;
 	background: rgba(84, 82, 82, 0.5);
 	-webkit-transform: translateY(-50%);
 	        transform: translateY(-50%);
 	top: 50%;
 	right: 0;
 	z-index: 99;
 }
 .header-top-menu > ul > li:last-child:after{
     display: none;
 }
 .header-top-menu > ul > li > span {
 	padding: 10px 0;
 	margin-right: 10px;
 	line-height: 25px;
 	color: #fff;
 }
 .header-top-menu > ul > li > a {
 	display: inline-block;
 	font-weight: 400;
 	text-align: left;
 	color: #fff;
 	font-size: 12px;
 }
 .header-top-menu > ul > li > a > i {
 	margin-left: 5px;
 }
 .ht-dropdown {
 	position: absolute;
 	top: 150%;
 	width: 120px;
 	background: #fff;
 	z-index: 9999;
 	right: 0;
 	padding: 5px 15px;
 	text-align: center;
 	box-shadow: 0 0 5px rgba(0,0,0,0.2);
 	border-radius: 3px;
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	visibility: hidden;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .header-top-menu > ul > li:hover ul.ht-dropdown{
     top: 100%;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }

 .ht-dropdown > li > a {
 	display: block;
 	line-height: 36px;
 	font-size: 12px;
 	font-weight: 400;
 	text-transform: capitalize;
 }
 .ht-dropdown > li:not(:last-child) {
 	border-bottom: 1px solid #ebebeb;
 }
 /*----------------------------------------*/
 /*  1.2 Header Middle CSS
 /*----------------------------------------*/
 .logo {
 	padding: 44px 0;
 }
 .search-box-area {
 	border-radius: 30px;
 	position: relative;
 	background: #fff;
 	display: block;
 	vertical-align: middle;
 	margin: 35px -50px 35px 50px;
 	z-index: 11;
 	overflow: visible;
 	height: 50px;
 }
 .select-area {
 	width: 30%;
 	float: left;
 	background: #fff;
 	border-radius: 25px 0 0 25px;
 }
 .search-box {
 	width: 70%;
 	float: left;
     position: relative;
     background: #fff;
 	height: 50px;
 	border-radius: 0 30px 30px 0;
 }
 .search-box input {
 	padding: 0 95px 0 20px;
 	float: left;
 	margin: 13px 0 0;
 	outline: medium none;
 	height: 25px;
 }
 .search-box button {
 	position: absolute;
 	right: -1px;
 	width: 67px;
 	height: 50px;
 	border: 0;
 	background: #363F4D;
 	display: block;
 	color: #fff;
 	font-size: 24px;
 	z-index: 99;
 	top: 0px;
 	border-radius: 0 25px 25px 0;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .search-box button:hover{
     color: #EB3E32;
 }
 .mini-cart-area {
 	margin-left: 60px;
 }
 .mini-cart-area > ul > li {
 	display: inline-block;
 	position: relative;
 	padding: 36px 0px;
 }
 .mini-cart-area > ul > li > a {
 	font-size: 24px;
 	color: #fff;
 	display: block;
 	margin-right: 15px;
 	width: 45px;
 	height: 45px;
 	border: 2px solid #fff;
 	line-height: 40px;
 	text-align: center;
 	border-radius: 100%;
 	position: relative;
 }
 .mini-cart-area > ul > li:first-child > a:hover{
     color: #363F4D;
 }
 .cart-add {
 	position: absolute;
 	top: -6px;
 	right: -14px;
 	font-size: 14px;
 	width: 25px;
 	height: 25px;
 	line-height: 25px;
 	background: #d52115;
 	border-radius: 100%;
 }
 .cart-total {
 	position: absolute;
 	right: -70px;
 	top: 0;
 	font-size: 14px;
 	font-weight: 600;
 }
 .cart-total {
 	position: absolute;
 	right: -84px;
 	top: 0;
 	font-size: 14px;
 	font-weight: 600;
 }
 .cart-total i.fa{
     margin-left: 3px;
 }
 .cart-dropdown {
 	position: absolute;
 	width: 350px;
 	background: #fff;
 	right: 0;
 	top: 120%;
 	text-align: left;
 	padding: 10px 35px 0 35px;
 	border-radius: 3px;
 	box-shadow: 0 0 7px 0 rgba(0,0,0,0.15);
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	visibility: hidden;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 	z-index: 999;
 }
 .mini-cart-area > ul > li:hover .cart-dropdown{
     top: 86%;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .cart-dropdown:after {
 	position: absolute;
 	content: "";
 	top: -20px;
 	right: 33px;
 	border-bottom: 10px solid #fff;
 	border-radius: ;
 	border-right: 10px solid transparent;
 	border-left: 10px solid transparent;
 	border-top: 10px solid transparent;
     z-index: 99;
 }
 .cart-item {
 	padding: 20px 0;
 	display: block;
 	position: relative;
 	border-bottom: 1px solid #ebebeb;
     overflow: hidden;
 }
 .cart-img {
 	float: left;
 	width: 30%;
 }
 .cart-content {
 	float: left;
 	padding-left: 20px;
 	width: 70%;
 }
 .cart-content > h4 > a {
 	font-size: 14px;
 	text-transform: capitalize;
 }
 .cart-price {
 	font-size: 14px;
 	color: #eb3e32;
 	font-weight: 600;
 }
 .cart-close {
 	position: absolute;
 	top: 20px;
 	right: 0;
     font-size: 16px;
     z-index: 9;
 }
 .cart-quantity {
 	color: #bfbfbf;
 	font-size: 12px;
 	line-height: 20px;
 	padding: 5px 0;
 	display: block;
 	margin: 0;
 }
 .cart-total-amount > h4 {
 	font-weight: 700;
 	text-transform: uppercase;
 }
 /*----------------------------------------*/
 /*  1.3 Header Bottom CSS
 /*----------------------------------------*/
 .main-menu-area .logo-sticky {
 	display: none;
 }
 .main-menu-area {
 	background: #363f4d;
 	padding: 0 30px;
 	border-radius: 30px 30px 0 0;
     position: relative;
 }
 .main-menu > li {
 	display: inline-block;
 	position: relative;
 }
 .main-menu > li > a {
 	font-size: 12px;
 	text-transform: uppercase;
 	color: #363f4;
 	font-weight: 500;
 	display: block;
 	padding: 15px 15px;
 }
 .main-menu > li:first-child > a{
     padding-left: 0;
 }
 .main-menu > li.active > a,.main-menu > li:hover > a{
     color: #f8b831;
 }
 .main-menu > li.new:before,.main-menu > li.hot:before {
 	position: absolute;
 	content: "new";
 	width: 40px;
 	height: 20px;
 	background: #68B501;
 	top: 5px;
     color: #fff;
 	right: -11px;
 	line-height: 20px;
 	text-align: center;
 	text-transform: capitalize;
 	font-size: 10px;
 	border-radius: 2px;
     z-index: 99;
 }
 .main-menu > li.hot:before{
     background: #EB3E32;
     content: "hot"
 }
 .main-menu > li.new:after,.main-menu > li.hot:after {
 	position: absolute;
 	content: "";
 	top: 25px;
 	line-height: ;
 	right: 8px;
 	border: ;
 	border-top: 5px solid #68B501;
 	border-right: 5px solid transparent;
 	border-left: 5px solid transparent;
 	border-bottom: 5px solid transparent;
     z-index: 99;
 }
 .main-menu > li.hot:after{
     border-top: 5px solid #EB3E32;
 	border-right: 5px solid transparent;
 	border-left: 5px solid transparent;
 	border-bottom: 5px solid transparent;
 }
 .dropdown,.mega-menu {
 	position: absolute;
 	width: 250px;
 	background: #fff;
 	padding: 20px 10px;
 	box-shadow: 0 1px 2px 2px rgba(0,0,0,0.2);
 	border-radius: 3px;
 	text-align: left;
     z-index: 999;
     top: 100%;
     left: -29px;
     -webkit-transform: perspective(600px) rotateX(-90deg);
             transform: perspective(600px) rotateX(-90deg);
     -webkit-transform-origin: 0 0 0;
             transform-origin: 0 0 0;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     visibility: hidden;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .main-menu li:last-child ul.dropdown{
     left: 0;
 }
 .main-menu > li:hover .dropdown,.main-menu > li:hover .mega-menu{
     -webkit-transform: perspective(600px) rotateX(0deg);
             transform: perspective(600px) rotateX(0deg);
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .dropdown > li > a {
 	font-size: 13px;
 	display: block;
 	padding: 10px 25px;
 	text-transform: capitalize;
 	line-height: 18px;
 }
 .mega-menu{
     width: 750px;
     padding: 45px 30px;
     left: 0;
 }
 .mega-menu > li {
 	width: 33.33%;
 	float: left;
 	padding: 0px 15px 20px 15px;
 }
 .mega-menu > li > ul > li.mega-title > a {
 	font-size: 12px;
 	text-transform: uppercase;
 	color: #363f4d;
 	font-weight: 500;
 	display: block;
 }
 .mega-menu > li > ul > li.mega-title > a:hover{
     color: #EB3E32;
 }
 .mega-menu > li > ul > li > a {
 	font-size: 13px;
 	text-transform: capitalize;
 	display: block;
 	padding: 2px 0;
 	line-height: 22px;
 }
 .mega-menu > li.menu-img {
 	width: 100%;
 	padding-bottom: 0;
 }
 /*----------------------------------------*/
 /*  Sticky Menu CSS
 /*----------------------------------------*/
 .header-sticky.sticky {
 	background: rgba(54,63,77,0.9);
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
     text-align: center;
 	box-shadow: 0 1px 3px rgba(0,0,0,0.11);
 	z-index: 99999;
 	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
 	        animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
 }
 .header-sticky {
     -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
     transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
 }
 .logo-sticky {
 	display: none;
 }
 .header-sticky.sticky .logo-sticky {
 	float: left;
 	margin: 16px 0;
     display: block;
 }
 .header-sticky.sticky .logo-sticky a{
     vertical-align: middle;
     display: table-cell;
 }
 .header-sticky.sticky .main-menu-area {
 	
 	background: transparent;
 }
 /*Mobile Menu CSS*/

 .mobile-menu{
     background: #363F4D;
     position: relative;
 }
 .mobile-menu:before {
 	position: absolute;
 	content: "MENU";
 	color: #fff;
 	top: 15px;
 	left: 10px;
 	z-index: 99999999;
 	font-size: 18px;
 	text-transform: uppercase;
 	font-weight: 400;
 }
 .mean-container .mean-nav ul li a.mean-expand {
     height: 23px;
 }
 .mean-container .mean-bar {
 	background: #363F4D;
 	padding: 5px 0;
 	border-radius: 10px 10px 0 0;
 }
 .mean-container .mean-nav {
     background: #f8f8f8;
 }
 .mean-container a.meanmenu-reveal {
 	top: 3px;
 }
 .mean-container .mean-nav ul li a {
     color: #333;
     border-top: 1px solid #ccc;
 }
 .mean-container .mean-nav ul li a:hover {
     color: #E03550;
 }
 .mean-container .mean-nav ul li a.mean-expand:hover {
     background: #f8f8f8;
     color: #E03550;
 }
 .mean-container .mean-nav ul li {
 	border-top: 1px solid #ebebeb;
 }
 .mean-container .mean-nav ul li li a {
 	padding: 10px 10%;
 }
 /*----------------------------------------*/
 /*   2. Slider CSS
 /*----------------------------------------*/
 .slider-wrapper {
     position: relative;
 }
 .nivo-caption {
     height: 100%;
     background: transparent;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     padding: 0;
 }
 .nivo-caption p {
     padding: 0;
     margin-bottom: 15px;
 }
 .slider-caption {
     height: 100%;
 }
 .slider-text {
 	position: absolute;
 	top: 0;
 	left: 8%;
 	display: -webkit-box;
 	display: -ms-flexbox;
 	display: flex;
 	-webkit-box-orient: vertical;
 	-webkit-box-direction: normal;
 	    -ms-flex-direction: column;
 	        flex-direction: column;
 	-webkit-box-pack: center;
 	    -ms-flex-pack: center;
 	        justify-content: center;
 	height: 100%;
 	text-align: left;
 	width: 92%;
 }
 .slider-text > h1 {
 	font-size: 48px;
 	line-height: 1.2;
 	text-transform: capitalize;
 	font-weight: 700;
 	color: #363f4d;
 	margin-bottom: 4px;
 	font-family: Rubik;
 }
 .slider-text > h5 {
 	color: #EB3E32;
 	text-transform: capitalize;
 	font-weight: 500;
 	font-size: 14px;
 	line-height: 22px;
 	font-family: Rubik;
 	font-weight: 400;
 }
 .slider-text > h4 {
 	font-size: 16px;
 	color: #333C49;
 	margin: 40px 0;
 	font-weight: 400;
     font-family: Rubik;
 }
 .slider-text > h4 > span{
     font-size: 30px;
     line-height: 30px;
     color: #EB3E32;
     font-family: Rubik;
     font-weight: 500;
 }
 .nivo-controlNav {
 	position: absolute;
 	z-index: 9;
 	bottom: 20px;
 	left: 8%;
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     visibility: hidden;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .slider-wrapper:hover .nivo-controlNav{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .nivo-controlNav a {
     width: 10px;
     height: 10px;
     background: #CCCCCC;
     text-indent: -9999px;
     display: inline-block;
     margin-right: 8px;
     line-height: 10px;
     border-radius: 100%;
     z-index: 999;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .nivo-controlNav a:hover{
     -webkit-transform: scale(1.5);
             transform: scale(1.5);
     background: #EB3E32;
 }
 .nivo-controlNav a.active {
     background: #EB3E32;
     -webkit-transform: scale(1.5);
             transform: scale(1.5);
 }
 /*----------------------------------------*/
 /*   3. Offer Area CSS
 /*----------------------------------------*/
 .offer-img > a,.offer-img2 > a,.categories-img > a {
 	display: block;
 	overflow: hidden;
 	border-radius: 4px;
 	position: relative;
 }
 .categories-img > a{border-radius: 0;}
 .offer-img > a:before,.categories-img > a:before {
 	background: rgba(0,0,0,0.1);
 	content: "";
 	display: inline-block;
 	position: absolute;
 	top: 0;
 	right: 0;
 	bottom: 0;
 	left: 0;
 	pointer-events: none;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 	filter: alpha(opacity=0);
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	z-index: 1;
 }
 .offer-img > a > img,.categories-img > a > img{
     -webkit-transition: all 300ms ease-in;
     transition: all 300ms ease-in;
 }
 .offer-img > a > img:hover,.categories-img > a > img:hover{
     -webkit-transform: scale(1.1);
             transform: scale(1.1);
 }
 .offer-img > a:hover:before,.categories-img > a:hover:before{
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 /*----------------------------------------*/
 /*   4. Corporate About CSS
 /*----------------------------------------*/
 .all-about {
 	overflow: hidden;
 	border-radius: 4px;
 	margin-bottom: 0px;
 	background-color: transparent;
 }
 .single-about {
 	background: #fff;
 	text-align: center;
 	padding: 28px 0;
 	position: relative;
 }
 .single-about:after {
 	position: absolute;
 	right: 0;
 	top: 50%;
 	margin-top: -20px;
 	content: "";
 	height: 40px;
 	width: 1px;
 	background: #ebebeb;
 }
 .single-about.not-border:after{
     display: none;
 }
 .block-wrapper, .block-wrapper2, .block-wrapper3, .block-wrapper4, .block-wrapper5 {
 	display: inline-block;
 	vertical-align: top;
 	background: url(../img/icon/1.png) left center no-repeat;
 	padding-left: 56px;
 	padding-top: 10px;
 	padding-bottom: 10px;
 }
 .block-wrapper2{
     background: url(../img/icon/2.png) left center no-repeat;
 }
 .block-wrapper3{
     background: url(../img/icon/3.png) left center no-repeat;
 }
 .block-wrapper4{
     background: url(../img/icon/4.png) left center no-repeat;
 }
 .block-wrapper5{
     background: url(../img/icon/halal_icon.png) left center no-repeat;
 		background-size: contain;
 }
 .about-content h5 {
 	color: #363f4d;
 	font-weight: 600;
 	text-transform: capitalize;
 	margin: 0;
 	font-size: 16px;
 	line-height: 20px;
 	display: block;
 	text-align: left;
 }
 .about-content p {
 	font-size: 12px;
 	margin: 0;
 	text-align: left;
 }
 /*------------------------------------------------*/
 /*   5. All Product Area CSS
 /*------------------------------------------------*/
 /*------------------------------------------------*/
 /*   5.1 Left Side Product CSS
 /*------------------------------------------------*/
 /*------------------------------------------------*/
 /*   5.1.1 Desktop & Television Product CSS
 /*------------------------------------------------*/
 .product-tab-menu-area {
 	position: relative;
 }
 .product-tab {
 	position: absolute;
 	top: -65px;
 	right: 80px;
 }
 .product-tab > ul > li {
 	display: inline-block;
 	padding: 0 10px;
 }
 .product-tab > ul > li > a{
     color: #363f4d;
     font-size: 14px;
     text-transform: capitalize;
     display: block;
     line-height: 30px;
 }
 .product-tab > ul > li.active > a,.product-tab > ul > li > a:hover{
     color: #EB3E32;
 }
 .tab-content .tab-pane {
    display: block;
    height: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
 }
 .tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1;
 }
 .all-product,.product-container{
     padding: 0 15px
 }
 .item-col2 {
 	padding: 0;
 }
 .item-col2{
     margin-top: 5px;
 }
 .item-col .single-product,.single-item.,.single-product3 {
 	position: relative;
 	display: block;
 	overflow: hidden;
 }
 .single-item{
     padding: 15px 0;
 }
 /*.single-product:after,.item-col2 .single-product:after {
 	position: absolute;
 	content: "";
 	border-right: 1px solid #ebebeb;
 	top: 15px;
 	right: 0px;
 	bottom: 15px;
 	z-index: 999;
 }*/
 .product-container .col-md-3:last-child .single-product:after {
 	border-right: 0;
 }
 .owl-item.last.active .col-md-12:last-child .single-product:after{
     border-right: 0;
 }
 .all-list-product .owl-item.active:after,.hot-deal-of-product .owl-item.active:after,.new-arrival-list-product .owl-item.active:after,.electronic-product3 .owl-item.active:after {
 	content: "";
 	border-right: 1px solid #ebebeb;
 	display: block;
 	position: absolute;
 	top: 15px;
 	right: 0;
 	bottom: 15px;
 	z-index: 1;
 }
 .all-list-product:last-child .owl-item.active.last:after,.hot-deal-of-product:last-child .owl-item.active.last:after,.new-arrival-list-product:last-child .owl-item.active.last:after,.electronic-product3:last-child .owl-item.active.last:after{
     border-right: 0;
 }
 .product-img {
 	position: relative;
 	overflow: hidden;
 }
 .product-img a {
 	display: block;
 	position: relative;
 }
 .product-img a img {
 	-webkit-transition: all 0.5s ease-in-out;
 	transition: all 0.5s ease-in-out;
 	width: 100%;
 }
 .product-img a img.hover-img {
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 99;
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 }
 .single-product:hover .product-img a img.hover-img,.single-item:hover .product-img a img.hover-img,.single-product3:hover .product-img a img.hover-img{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 .sicker {
 	position: absolute;
 	top: 25px;
 	right: 15px;
 	width: 35px;
 	height: 20px;
 	background: #EB3E32;
 	color: #fff;
 	line-height: 20px;
 	border-radius: 2px;
 	text-align: center;
 	font-size: 12px;
 	z-index: 991;
 }
 .product-content {
 	text-align: center;
 	padding: 10px 0;
 	overflow: hidden;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .product-action {
 	text-align: center;
 	position: absolute;
 	bottom: 15px;
 	left: 0;
 	right: 0;
 	z-index: 992;
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	visibility: hidden;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .single-product:hover .product-action,.single-product3:hover .product-action{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .product-action > li {
 	display: inline-block;
 	margin-right: 5px;
 }
 .product-action > li {
 	display: inline-block;
 	margin-right: 5px;
 }
 .product-action > li > a {
 	display: block;
 	width: 35px;
 	height: 35px;
 	background: #363F4D;
 	color: #fff;
 	border-radius: 3px;
 	line-height: 35px;
 	text-align: center;
 	font-size: 16px;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .tooltip-inner {
 	padding: 5px 8px;
 	border-radius: 0;
     background: #363f4d;
 }
 .tooltip.top .tooltip-arrow {
 	border-top-color: #363f4d;
 }
 .product-action > li > a:hover {
 	background: #EB3E32;
 	color: #fff;
 }
 .product-content > h2 {
 	font-size: 18px;
 	font-weight: 400;
 	text-transform: capitalize;
 	text-align: center;
 	margin-top: 10px;
 	margin-bottom: 10px;
 }

 .product-content p {
 	font-size: 13px;
 	line-height: 20px;
 	padding: 10px;
 	margin-bottom: 0;
 }
 .rating i.fa:not(:last-child) {
 	color: #F9BA48;
 }
 .product-price  span.old-price {
 	color: #a4a4a4;
 	text-decoration: line-through;
 	margin-right: 5px;
 	font-size: 14px;
 	font-weight: 400;
 }
 .product-price  span.new-price{
     font-size: 16px;
     font-weight: 500;
     color: #EB3E32;
 }
 #grid-view .single-product a.button.add-btn {
 	top: 10%;
 	height: 45px;
 	line-height: 45px;
 }
 .single-product .meta_desc p {
 	padding: 0;
 }
 .single-product .meta_desc {
 	margin: 0;
 	margin-bottom: 10px;
   margin-top: 10px;
 }
 .single-product .meta_desc .b-r {
 	border-right: 1px solid #CCC;
 }
 .single-product:hover a.button.add-btn,.single-product3:hover a.button.add-btn{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 /*----------------------------------------------*/
 /*   5.1.2 Smartphone & Tablet Product Area CSS
 /*-----------------------------------------------*/
 .slide-active2 .slick-slide > div:last-child .single-product {
 	border-bottom: 0;
 }
 .single-product.style-2,.single-product3 {
 	border-bottom: 1px solid #ebebeb;
 	padding: 15px 0;
 	overflow: hidden;
 }
 .single-product.style-2:after{
     border-right: 0;
 }
 .all-list-product .col-md-12:last-child .single-product,.new-arrival-list-product .col-md-12:last-child .single-product,.electronic-product3 .col-md-12:last-child .single-product3 {
 	border: none;
 }
 .single-product.style-2 > .product-img {
 	padding-right: 4%;
 }
 .single-product.style-2 > .col-6 > .product-content {
 	text-align: left;
 	padding: 0;
 	padding-left: 4%;
 }
 .single-product.style-2 > .col-6 > .product-content > h2 {
 	text-align: left;
 }
 .single-product.style-2 > .col-4 > .product-img > a {
 	display: block;
 }
 /*----------------------------------------------*/
 /*   5.2 Right Side Product CSS
 /*-----------------------------------------------*/
 .hot-deal-product,.new-arrivals-product,.our-blog {
 	border: 1px solid #ebebeb;
 	border-radius: 3px;
 }
 .owl-nav > div {
 	position: absolute;
 	top: -65px;
 	right: 36px;
 	width: 28px;
 	height: 14px;
 	font-size: 18px;
 	color: #b2b2b2;
 	text-align: center;
 }
 .owl-nav > div.owl-prev:after {
 	position: absolute;
 	content: "";
 	top: 6px;
 	right: 1px;
 	width: 1px;
 	height: 12px;
 	background: #b2b2b2;
 }
 .owl-nav > div.owl-next {
 	right: 12px;
 }
 .count-down-box {
 	margin-bottom: 25px;
 }
 .count-box {
 	display: block;
 	width: 100%;
 	overflow: hidden;
 }
 .single-count {
 	width: 55px;
 	height: 70px;
 	display: inline-block;
 	text-align: center;
     margin-right: 3px;
 	font-size: 14px;
 	text-transform: capitalize;
 	line-height: 18px;
 	background: #f4f6f7;
 	padding-top: 17px;
 	border-radius: 3px;
 }
 .single-count span {
 	font-size: 14px;
 	color: #232f3e;
 	display: block;
 	font-weight: 700;
 }
 .slick-arrow {
 	position: absolute;
 	top: -45px;
 	right: 40px;
 	width: 28px;
 	height: 14px;
 	font-size: 18px;
 	color: #000;
 	text-align: center;
 	cursor: pointer;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .slick-arrow:hover{
     color: #fff;
 }
 .slick-next-btn.slick-arrow:after {
 	position: absolute;
 	content: "";
 	top: 4px;
 	right: 28px;
 	width: 1px;
 	height: 12px;
 	background: #000;
 }
 .slick-next-btn.slick-arrow{
   right: 12px;
 }

 /*----------------------------------------------*/
 /*   6. Hot Categories Area CSS
 /*-----------------------------------------------*/
 .single-categories {
 	position: relative;
 }
 .single-categories:after {
 	position: absolute;
 	content: "";
 	border-right: 1px solid #ebebeb;
 	top: 15px;
 	right: -15px;
 	bottom: 15px;
 }
 .hot-categories .col-md-3:last-child .single-categories:after{
     border-right: 0;
 }
 .categories-content > h3 {
 	font-family: Rubik;
 	font-size: 16px;
 	color: #363f4d;
 	font-size: ;
 	font-weight: 500;
 	line-height: 46px;
 	text-transform: capitalize;
 }
 .catgories-list > li {
 	line-height: 26px;
 	margin: 0;
 	display: block;
 }
 /*----------------------------------------------*/
 /*   7. All Slide Product Area CSS
 /*-----------------------------------------------*/
 .slide-active3 .slick-current {
 	border-top: 0;
 }
 .hot-del-single-product {
 	background: #fff;
 	padding: 10px;
 	border-radius: 0 0 4px 4px;
 	box-shadow: 0 1px 0 #ebebeb;
 }
 .single-product.hot-deal {
 	border-bottom: 1px solid #ebebeb;
 }
 .single-product.hot-deal:after {
 	border-right: 0;
 }

 /*----------------------------------------------*/
 /*   8. Brand Area CSS
 /*-----------------------------------------------*/
 .brand-area {
 	border-bottom: 1px solid #ebebeb;
 }
 .single-brand.img-full {
 	padding: 30px;
 }
 .brand-active.owl-carousel .single-brand img{
     width: auto;
 }
 /*----------------------------------------------*/
 /*   9. Footer Area CSS
 /*-----------------------------------------------*/
 /*----------------------------------------------*/
 /*   9.1 Footer Top Area CSS
 /*-----------------------------------------------*/
 .single-footer {
 	text-align: left;
 }
 .footer-logo {
 	margin-bottom: 30px;
 }
 .contact > p > label {
 	margin-right: 10px;
 }
 .contact > p:last-child {
 	margin-bottom: 0;
 }
 .footer-title {
 	margin-bottom: 20px;
 }
 .footer-title > h3 {
 	color: #636363 !important;
 	font-size: 14px;
 	text-transform: uppercase;
 	font-weight: 700;
 	font-family: Rubik;
 }
 .footer-info > li {
 	display: block;
 	margin-bottom: 5px;
 }
 .footer-info > li:last-child{
     margin-bottom: 0px;
 }
 .footer-info > li > a {
 	display: block;
 	text-transform: capitalize;
 }
 .footer-info > li > a {
 	display: block;
 	text-transform: capitalize;
 	line-height: 28px;
 }
 .socil-icon > li {
 	display: inline-block;
 	margin: 10px 10px 0 0;
 }
 .socil-icon > li > a {
 	display: block;
 	padding: 0 6px;
 	background: #222;
 	width: 40px;
 	height: 40px;
 	line-height: 40px;
 	text-align: center;
 	color: #FFF !important;
 	font-size: 16px;
 }
 .socil-icon > li > a:hover{
     color: #79d1e7;
 }
 .socil-icon > li:nth-child(2) > a{
     color: #4575cd;
 }
 .socil-icon > li:nth-child(3) > a{
     color: #eb3e32;
 }
 .socil-icon > li:nth-child(4) > a{
     color: #eb3e32;
 }
 .socil-icon > li:nth-child(5) > a{
     color: #d560d9;
 }
 .socil-icon > li:nth-child(6) > a{
     color: #f3a927;
 }
 .footer-content {
 	overflow: hidden;
 }
 .footer-content > a {
 	float: left;
 	width: 50%;
 	padding-right: 5px;
 	display: block;
 }
 /*----------------------------------------------*/
 /*   9.2 Footer Middel Area CSS
 /*-----------------------------------------------*/
 .news-latter-area {
 	padding: 40px 10px;
 	background: #fff;
 	box-shadow: 0 1px 0 0 #ebebeb;
 }
 .news-lettar-content {
 	padding-left: 85px;
 	position: relative;
 	text-align: left;
 	display: inline-block;
 }
 .icon {
 	position: absolute;
 	left: 0;
 	bottom: 0px;
 	display: block;
 }
 .news-lettar-content > p {
 	margin-bottom: 0;
 }
 .news-lettar-content > p > label {
 	font-size: 20px;
 	font-weight: 500;
 	margin-bottom: 5px;
 	display: ;
 }
 .news-latter-subscribe-box {
 	background: #f3f3f3;
 	position: relative;
 	margin: auto;
 	width: 100%;
 	max-width: 495px;
     border-radius: 30px;
 	padding-right: 70px;
 }
 .style2 {
 	background: #f3f3f3 !important;
 	color: #898d90 !important;
 	border: 0;
 	padding: 0 20px;
 	height: 50px;
 	line-height: 50px;
 	text-transform: capitalize;
 	width: 100%;
 	border-radius: 30px 0 0 30px;
 }
 .news-latter-subscribe-box button {
 	background: #363f4d;
 	border: 0;
 	border-radius: 0 30px 30px 0;
 	position: absolute;
 	right: 0;
 	top: 0;
 	bottom: 0;
 	color: #fff;
 	font-size: 24px;
 	font-weight: 700;
 	padding: 0;
 	height: auto;
 	width: 67px;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 }
 .wdget-title > h4 {
 	display: block;
 	margin: 0 10px 0 0;
 	float: left;
 	font-size: 12px;
 	line-height: 26px;
 	font-weight: 500;
 }
 .wdget-nav > li {
 	display: inline-block;
 	margin: 0 10px 0 0;
 	line-height: 26px;
 }
 .wdget-nav > li > a {
 	font-size: 12px;
 	text-transform: capitalize;
 	display: block;
 }
 /*----------------------------------------------*/
 /*   9.3 Footer Bottom Area CSS
 /*-----------------------------------------------*/
 .footer-bottom-area {
 	padding: 18px 0;
 	border-top: 1px solid #161616;
 }
 .copyright-text > p {
 	margin-bottom: 0;
 }
 .copyright-text > p > a {
 	color: #000000;
 }
 .copyright-text > p > a:hover{
     text-decoration: underline;
 }
 /*----------------------------------------*/
 /*  10. Modal Area CSS
 /*----------------------------------------*/
 #myModal .modal-dialog {
     margin: 5% auto;
     min-height: 300px;
     padding: 20px;
     width: 870px;
 }
 .modal-product-tab, .modal-tab-menu-active {
 	float: left;
 	width: 100%;
 }
 .modal-content {
     border-radius: 0;
     position: relative;
     overflow: hidden;
 }
 .modal-header {
     padding: 0;
     border: none;
 }
 .modal-body {
 	padding: 20px;
 }
 .modal-header button.close {
 	position: absolute;
 	top: 10px;
 	right: 10px;
 	opacity: 1;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 	width: 30px;
 	height: 30px;
 	border: 1px solid #808080;
 	border-radius: 50%;
 	font-size: 16px;
 	line-height: 25px;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 	z-index: 99;
 	color: #808080;
 }
 .modal-header button.close:hover{
     color: #eb3e32;
     border-color: #eb3e32;
 }
 .modal-tab-menu-active .slick-slide a {
 	float: left;
 	width: 100%;
 	padding: 0 5px 5px;
 }
 .modal-tab-menu-active .slick-slide a img{
    border: 1px solid #ebebeb;
 }
 .modal-tab-menu-active .slick-dots{
     text-align: center;
 }
 .modal-tab-menu-active .slick-dots li {
 	display: inline-block;
 	width: 13px;
 	height: 13px;
 	cursor: pointer;
 	margin: 0 2px;
 }
 .modal-tab-menu-active .slick-dots li button {
 	background: none;
 	border: 2px solid #ebebeb;
 	border-radius: 100%;
 	height: 100%;
 	margin: 0;
 	opacity: 1;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 	overflow: hidden;
 	padding: 0;
 	position: static;
 	text-indent: -9999px;
 	visibility: visible;
 	width: 100%;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .modal-tab-menu-active .slick-dots li button:hover,.modal-tab-menu-active .slick-dots li.slick-active button{
     background: #ebebeb;
 }
 .product-info h2 {
     font-size: 22px;
     font-weight: 400;
     margin-bottom: 20px;
 }
 .product-info a.see-all {
     margin-bottom: 40px;
     display: inline-block;
     text-decoration: underline;
     color: #808080;
 }
 .product-info a.see-all:hover {
     color: #E03550;
 }
 .add-to-cart.quantity {
 	margin: 0 0 20px;
 	border-bottom: 1px solid #ebebeb;
 	overflow: hidden;
 	padding: 0 0 38px;
 }
 .add-quantity {
 	margin-bottom: 10px;
 	float: left;
 	width: 100%;
 }
 .quantity.modal-quantity {
 	border: 1px solid #ebebeb;
 	height: 42px;
 	float: left;
 	width: auto;
 	margin-right: 5px;
 }
 .quantity.modal-quantity label {
 	font-weight: 700;
 	margin-bottom: 5px;
 	font-size: 14px;
 	margin-left: 10px;
 }
 .quantity.modal-quantity input {
 	border: 0;
 	height: 42px;
 	background: transparent;
 }
 .cart-description p {
 	border-bottom: 1px solid #ebebeb;
 	color: #808080;
 	font-size: 14px;
 	line-height: 21px;
 	margin: 0 0 25px;
 	padding: 0 0 15px;
 }
 .social-share h3 {
 	background: none;
 	color: #808080;
 	float: left;
 	line-height: 30px;
     font-size: 22px;
     font-weight: 700;
 	margin: 0 0 5px;
 	text-align: left;
 	text-transform: uppercase;
 	width: 100%;
 }
 .socil-icon2 > li {
     display: inline-block;
     margin-right: 10px;
 }
 .socil-icon2 > li > a {
 	font-size: 18px;
 	color: #808080;
 	width: 40px;
 	height: 30px;
 	display: block;
 	border: 1px solid #ebebeb;
 	line-height: 28px;
 	text-align: center;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .socil-icon2 > li:nth-child(1) > a:hover {
     background: #3B579D;
     border-color: #3B579D;
     color: #fff;
 }
 .socil-icon2 > li:nth-child(2) > a:hover {
     background: #3ACAFF;
     border-color: #3ACAFF;
     color: #fff;
 }
 .socil-icon2 > li:nth-child(3) > a:hover {
     background: #CB2027;
     border-color: #CB2027;
     color: #fff;
 }
 .socil-icon2 > li:nth-child(4) > a:hover {
     background: #D11717;
     border-color: #D11717;
     color: #fff;
 }
 .socil-icon2 > li:nth-child(5) > a:hover {
     background: #0097BD;
     border-color: #0097BD;
     color: #fff;
 }

 /*----------------------------------------*/
 /*  11. Home 2
 /*----------------------------------------*/
 .home-2 .header-container {
 	background: #fff;
 	color: #363F4D;
 }
 .home-2 .header-top-menu > ul > li > a,.home-2 .header-top-menu > ul > li > span{
     color: #363F4D;
 }
 .home-2 .header-top-area {
 	border-bottom: 1px solid #ebebeb;
 }
 .home-2 .search-box-area {
 	border: 2px solid #EB3E32;
 	overflow: visible;
 	height: 54px;
 }
 .home-2 .search-box button {
 	background: #EB3E32;
 	height: 54px;
 	top: -2px;
 	right: -2px;
 }
 .home-2 .search-box button:hover{
     background: #363F4D;
     color: #fff;
 }
 .home-2 .mini-cart-area > ul > li > a{
     border-color: #EB3E32;
     color: #EB3E32;
 }
 .home-2 .cart-add {
 	color: #fff;
 }
 .home-2 .cart-total {
 	color: #363F65;
 }
 .side-menu {
 	position: relative;
 }
 .category-heading > h2 {
 	background: #EB3E32;
 	color: #fff;
 	font-size: 13px;
 	font-weight: 500;
 	height: 50px;
 	line-height: 50px;
 	padding: 0 15px;
 	border-radius: 4px 4px 0 0;
 	height: 100%;
 	position: relative;
 	text-transform: uppercase;
 	cursor: pointer;
 }
 .category-heading > h2 > i {
 	font-size: 24px;
 	vertical-align: middle;
 	margin-right: 10px;
 }
 .category-menu-list {
 	width: 100%;
 	position: absolute;
 	top: 100%;
 	left: 0;
 	z-index: 100;
 }
 .category-menu-list > ul {
 	background: #fff;
 	border-radius: 0px 0px 4px 4px;
 	margin-top: -2px;
 }
 .category-menu-list ul > li,.cat-dropdown > li > a {
 	padding: 0 20px;
 	position: relative;
 	text-align: left;
 }
 .category-menu-list > ul > li:last-child a,.cat-dropdown > li:last-child > a {
   border-bottom: 0;
 }
 .category-menu-list > ul > li > a,.cat-dropdown > li > a {
 	display: block;
 	text-transform: capitalize;
 	border-bottom: 1px solid #ebebeb;
 	color: #7a7a7a;
 	height: 45px;
 	line-height: 45px;
 	overflow: hidden;
 	padding: 0;
 	font-size: 14px;
 }
 .category-menu-list > ul > li.right-menu > a:after {
 	content: "\f105";
 	font-family: FontAwesome;
 	float: right;
 	vertical-align: top;
 }
 .category-menu-list > ul > li.rx-parent > a {
 	font-size: 14px;
 	font-weight: 600;
 	color: #363f4d;
 }
 .rx-parent {
   cursor: pointer;
 }
 .category-menu-list ul > li span.fa {
 	float: left;
 	padding-top: 15px;
 	margin-right: 15px;
 }
 .rx-child, .category-menu-list ul li a.rx-show {
 	display: none;
 }
 .category-menu-list ul li.rx-change a.rx-show {
 	display: block;
 }
 .category-menu-list ul li.rx-change a.rx-default {
 	display: none;
 }
 .cat-dropdown,.cat-mega-menu {
 	position: absolute;
 	top: 0;
 	left: 100%;
     background: #fff;
 	z-index: 999;
 	width: 220px;
 	border-top: 1px solid #EB3E32;
     box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.1);
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	visibility: hidden;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .cat-dropdown > li > a{
     font-size: 12px;
 }
 .cat-dropdown > li > a:hover{
     color: #EB3E32;
 }
 .cat-mega-menu {
 	width: 670px;
     padding: 10px;
     overflow: hidden;
 }
 li.right-menu .cat-mega-menu > li {
 	width: 33.33%;
 	float: left;
 	padding: 15px 20px;
 }
 .cat-mega-menu > li > ul > li.cat-mega-title > a {
 	font-weight: 700;
 	text-transform: capitalize;
 	font-size: 12px;
 	margin-bottom: 15px;
 	display: block;
 	line-height: 2.8;
     pointer-events: none;
 }
 .cat-mega-menu > li > ul > li > a{
     font-size: 12px;
     display: block;
     line-height: 2;
 }
 .category-menu-list > ul > li:hover .cat-dropdown,.category-menu-list > ul > li:hover .cat-mega-menu{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .home-2 .slider-text > h5 {
 	color: #fff;
 	font-weight: 400;
 }
 .home-2 .slider-text > h1 {
 	color: #fff;
 }
 .home-2 .slider-text > h4 {
 	color: #fff;
 	font-weight: 400;
 }
 .home-2 .slider-text > h4 > span {
 	color: #FCE700;
 	font-weight: 500;
 }
 .home-2 a.button.sec-slide {
 	background: #363F4D;
 	color: #fff;
 	font-weight: 500;
 }
 .home-2 a.button.sec-slide:hover{
     background: #FFEA00;
     color: #fff;
 }
 .home-2 .slider-text > h5.sec-slide{
     color: #69ACFF;
 }
 .home-2 .slider-text > h4.sec-slide > span{
     color: #69ACFF;
 }
 .home-2 .single-product.hot-deal {
 	border-bottom: 0;
 }
 .our-single-blog {
 	padding: 20px;
 }
 .our-blog-img img {
 	border-radius: 4px;
 }
 .our-blog-content > h3 {
 	font-size: 16px;
 	font-weight: 500;
 	text-transform: none;
 	margin-bottom: 10px;
 }
 .our-blog-author {
 	text-transform: capitalize;
 	display: block;
 	margin-bottom: 10px;
 }
 .our-blog-author > a {
 	color: #EB3E32;
 }
 .our-blog-author > a:hover{
     color: #4c4c4c;
 }
 .our-blog-des > p {
 	margin-bottom: 10px;
 }
 .blog-meta span {
 	font-size: 12px;
 }
 .post-comment i {
 	font-size: 18px;
 	vertical-align: ;
 	margin-right: 6px;
 	vertical-align: middle;
 }
 .our-blog-active .owl-nav > div {
 	top: -40px;
 	color: #fff;
 }
 .our-blog-active .owl-nav > div.owl-prev:after {
 	top: 6px;
 	background: #fff;
 }
 /*----------------------------------------*/
 /*  12. Home 3
 /*----------------------------------------*/
 .home-3 .header-container {
 	background: #fff;
 	color: #363F4D;
 }
 .home-3 .header-top-menu > ul > li > a,
 .home-3 .header-top-menu > ul > li > span{
     color: #363F4D;
 }
 .home-3 .header-top-area {
 	border-bottom: 1px solid #ebebeb;
 }
 .home-3 .search-box-area {
 	border: 2px solid #EB3E32;
 	overflow: visible;
 	height: 54px;
 }
 .home-3 .search-box button {
 	background: #EB3E32;
 	height: 54px;
 	top: -2px;
 	right: -2px;
 }
 .home-3 .search-box button:hover{
     background: #363F4D;
     color: #fff;
 }
 .home-3 .mini-cart-area > ul > li > a{
     border-color: #EB3E32;
     color: #EB3E32;
 }
 .home-3 .cart-add {
 	color: #fff;
 }
 .home-3 .cart-total {
 	color: #363F65;
 }
 .home-3 .header-bottom-area {
 	border-top: 1px solid #ebebeb;
 }
 .home-3 .header-sticky.sticky {
 	background: rgba(255,255,255,0.95);
 }
 .home-3 .header-sticky.sticky .col-md-3.col-sm-3,
 .home-7 .header-sticky.sticky .col-md-3.col-sm-3 {
 	display: none;
 }
 .home-3 .header-bottom-area.header-sticky.sticky .col-md-9.col-sm-9,
 .home-7 .header-bottom-area.header-sticky.sticky .col-md-9.col-sm-9 {
 	width: 100%;
 }
 .home-3 .header-bottom-area.header-sticky.sticky .logo-sticky,
 .home-7 .header-bottom-area.header-sticky.sticky .logo-sticky {
 	float: left;
     margin: 13px 0;
 }
 .home-3 .header-sticky.sticky .main-menu-area,
 .home-7 .header-sticky.sticky .main-menu-area {
 	float: right;
 }
 .home-3 .category-heading > h2 {
 	height: 60px;
 	line-height: 60px;
 	margin: 0;
 }
 .home-3 .category-menu-list {
 	display: none;
 }
 .home-3 .main-menu-area {
 	background: #fff;
 }
 .home-3 .main-menu > li > a,.home-7 .main-menu > li > a {
 	color: #363f4d;
     padding: 17px 20px;
 }
 .home-3 .main-menu > li:hover > a,.home-3 .main-menu > li.active > a{
     color: #EB3E32;
 }
 .home-3 .dropdown, .mega-menu,
 .home-7 .dropdown, .mega-menu {
 	left: 0;
 }
 .home-3 .slider-text {
 	left: 20%;
 	width: 100%;
 }
 .home-3 .nivo-controlNav {
 	left: 0;
 	right: 0;
 	text-align: center;
 }
 .home-3 .slider-text > h5,.home-3 .slider-text > h4 > span {
 	color: #FFD200;
 }
 .home-3 .slider-text > h1 {
 	color: #fff;
 }
 .home-3 .slider-text > h1 > span {
 	font-size: 71px;
 }
 .home-3 .slider-text > h4 {
 	color: #fff;
 }
 .home-3 a.button {
 	background: #fff;
 	color: #363F4D;
 }
 .home-3 a.button:hover{
     background: #EB3E32;
     color: #fff;
 }
 .home-3 .single-product.hot-deal-list {
 	overflow: hidden;
 }
 .home-3 .single-product.hot-deal-list .product-img {
 	float: left;
 	width: 50%;
     padding-right: 25px;
 }
 .home-3 .hot-deal-of-product .product-content {
 	text-align: left;
     float: left;
     width: 50%;
 }
 .home-3 .product-content > h2.pro-title{
     text-align: left;
 }
 .home-3 .pro-rating-price{
     padding: 0;
 }
 .home-3 .count-down-box,.home-7 .count-down-box {
 	text-align: center;
 	margin-bottom: 0px;
 }
 .home-3 .button.add-btn {
 	background: #363F4D;
 	color: #fff;
 }
 .home-3 .our-single-blog {
 	overflow: hidden;
 	padding: 0;
 	margin-right: 15px;
 }
 .home-3 .our-blog-img {
 	float: left;
 	width: 45%;
 }
 .home-3 .our-blog-content {
 	width: 55%;
 	float: left;
 	padding-left: 30px;
 	margin: 0;
 }
 .home-3 .brand-active {
 	border-top: 1px solid #ebebeb;
 }
 /*----------------------------------------*/
 /*  13. Home 4
 /*----------------------------------------*/
 .home-4 .header-container {
 	background: #fff;
 	color: #363F4D;
 }
 .home-4 .header-top-menu > ul > li > a,.home-4 .header-top-menu > ul > li > span{
     color: #363F4D;
 }
 .home-4 .header-top-area {
 	border-bottom: 1px solid #ebebeb;
 }
 .home-4 .search-box-area {
 	border: 2px solid #EB3E32;
 	overflow: visible;
 	height: 54px;
 }
 .home-4 .search-box button {
 	background: #EB3E32;
 	height: 54px;
 	top: -2px;
 	right: -2px;
 }
 .home-4 .search-box button:hover{
     background: #363F4D;
     color: #fff;
 }
 .home-4 .mini-cart-area > ul > li > a{
     border-color: #EB3E32;
     color: #EB3E32;
 }
 .home-4 .cart-add {
 	color: #fff;
 }
 .home-4 .cart-total {
 	color: #363F65;
 }
 .home-4 .slider-text {
 	top: -40px;
 }
 .home-4 .slider-text > h1 {
 	color: #fff;
     font-weight: 700;
 }
 .home-4 .slider-text > h4 {
 	color: #fff;
 	margin-top: 20px;
 }
 .home-4 .slider-text > h4 > span {
 	color: #FFEA00;
 }
 .home-4 .slider-button a.button {
 	background: #fff;
 	color: #363F4D;
 }
 .home-4 .slider-button a.button:hover{
     background: #FFEA00;
     color: #fff;
 }
 .home-4 .single-product.hot-deal {
 	border-bottom: 0;
 }
 .home-4 .pro-rating-price {
 	padding: 0;
 }
 .home-4 .our-single-blog {
 	overflow: hidden;
 	padding: 0;
     margin-right: 15px;
 }
 .home-4 .our-blog-img {
 	float: left;
 	width: 45%;
 }
 .home-4 .our-blog-content {
 	width: 55%;
 	float: left;
 	padding-left: 30px;
 	margin: 0;
 }
 .home-4 .brand-active {
 	border-top: 1px solid #ebebeb;
 }
 /*----------------------------------------*/
 /*  14. Home 5
 /*----------------------------------------*/
 .home-5 a:focus,.home-5 a:hover {
 	color: #68B501;
 }
 .home-5 .header-container {
     background: #68b501;
     color: #fff;
 }
 .home-5 .search-box button:hover{
     color: #68B501;
 }
 .home-5 .mini-cart-area > ul > li > a:hover{
     color: #fff;
 }
 .home-5 .main-menu > li > a {
 	color: #fff;
 }
 .home-5 .main-menu > li.active > a,.home-5 .main-menu > li:hover > a{
     color: #68B501;
 }
 .home-5 .mega-menu > li > ul > li.mega-title > a:hover {
 	color: #68B501;
 }
 .home-5 .main-menu > li.hot:before {
 	background: #68B501;
 }
 .home-5 .main-menu > li.hot:after {
 	border-top: 5px solid #68B501;
 }
 .home-5 .cart-add {
 	background: #4b8201;
 }
 .home-5 .cart-price{
     color: #68B501;
 }
 .home-5 .cart-button a.button2:hover{
     background: #68B501;
     color: #fff;
 }
 .home-5 .slider-text {
 	top: -15px;
 }
 .home-5 .slider-text > h5 {
 	font-family: 'Shadows Into Light', cursive;
 	font-size: 24px;
 	line-height: 24px;
 }
 .home-5 .slider-text > h4 {
 	margin: ;
 	font-size: 18px;
 	margin-top: 20px;
 }
 .home-5 .nivo-controlNav a.active,.home-5 .nivo-controlNav a:hover {
 	background: #68B501;
 }
 .home-5 .sicker {
 	background: #68B501;
 }
 .home-5 .product-price > span.new-price {
 	color: #68B501;
 }
 .home-5 a.button {
 	background: #363F4D;
     color: #fff;
 }
 .home-5 a.button:hover{
     background: #68B501;
 }
 .home-5 .section-title1-border {
 	border-bottom: 2px solid #68B501;
 }
 .home-5 .section-title1 h3 {
 	background: #68B501;
 }
 .home-5 .section-title2 h3 {
 	background: #68B501;
 }
 .home-5 .product-tab > ul > li.active > a,.home-5 .product-tab > ul > li > a:hover {
 	color: #68B501;
 }
 .home-5 .product-action > li > a:hover {
 	background: #68B501;
     color: #fff;
 }
 .home-5 .copyright-text > p > a{
     color: #68B501;
 }
 .home-5 .copyright-text > p > a:hover{
     text-decoration: underline;
 }
 .home-5 #scrollUp {
 	background: #68B501;
 }
 .home-5 #scrollUp:hover {
 	border-color: #68B501;
 }
 /*----------------------------------------*/
 /*  15. Home 6
 /*----------------------------------------*/
 .home-6 a:focus,.home-6 a:hover {
 	color: #68b501;
 	text-decoration: none;
 }
 .home-6 .header-container {
 	background: #fff;
 	color: #363F4D;
 }
 .home-6 .header-top-menu > ul > li > a,.home-6 .header-top-menu > ul > li > span{
     color: #363F4D;
 }
 .home-6 .header-top-area {
 	border-bottom: 1px solid #ebebeb;
 }
 .home-6 .search-box-area {
 	border: 2px solid #68B501;
 	overflow: visible;
 	height: 54px;
 }
 .home-6 .search-box button {
 	background: #68B501;
 	height: 54px;
 	top: -2px;
 	right: -2px;
 }
 .home-6 .search-box button:hover{
     background: #363F4D;
     color: #fff;
 }
 .home-6 .mini-cart-area > ul > li > a{
     border-color: #68b501;
     color: #68b501;
 }
 .home-6 .cart-add {
 	color: #fff;
 	background: #4B8201;
 }
 .home-6 .cart-total {
 	color: #363F65;
 }
 .home-6 .cart-price{
     color: #68B501;
 }
 .home-6 .cart-button a.button2:hover{
     background: #68B501;
     color: #fff;
 }
 .home-6 .single-product.hot-deal{
     border-bottom: 0;
 }
 .home-6 .pro-rating-price {
 	padding: 0;
 }
 .home-6 .product-price > span.new-price {
 	color: #68B501;
 }
 .home-6 a.button.add-btn.big {
 	top: auto;
 	bottom: 15px;
 }
 .home-6 .nivo-controlNav a.active,.home-6 .nivo-controlNav a:hover {
 	background: #68B501;
 }
 .home-6 .sicker {
 	background: #68B501;
 }
 .home-6 a.button {
 	background: #363F4D;
     color: #fff;
 }
 .home-6 .main-menu > li > a {
 	color: #fff;
 }
 .home-6 .main-menu > li.active > a,.home-6 .main-menu > li:hover > a{
     color: #68B501;
 }
 .home-6 .mega-menu > li > ul > li.mega-title > a:hover {
 	color: #68B501;
 }
 .home-6 .main-menu > li.hot:before {
 	background: #68B501;
 }
 .home-6 .main-menu > li.hot:after {
 	border-top: 5px solid #68B501;
 }
 .home-6 .category-heading > h2 {
 	background: #68B501;
 }
 .home-6 .category-menu-list > ul > li > a:hover{
 	color: #7a7a7a;
 }
 .home-6 .cat-dropdown,.home-6 .cat-mega-menu{
     border-top: 1px solid #68B501;
 }
 .home-6 .slider-text {
 	top: -35px;
 }
 .home-6 .slider-text > h5 {
 	font-family: 'Shadows Into Light', cursive;
 	color: #FFCD05;
 	font-size: 24px;
 	line-height: 24px;
 }
 .home-6 .slider-text > h1 {
 	color: #fff;
 }
 .home-6 .slider-text > h4 {
 	color: #fff;
 }
 .home-6 .slider-text > h4 > span {
 	color: #FFEA00;
 }
 .home-6 .slider-button a.button {
 	background: #fff;
 	color: #363F4D;
 }
 .home-6 .slider-button a.button:hover{
     background: #FFEA00;
     color: #fff;
 }
 .home-6 .section-title2 h3 {
 	background: #68B501;
 }
 .home-6 .section-title1 h3 {
 	background: #68b501;
 }
 .home-6 .section-title1-border {
 	border-bottom: 2px solid #68B501;
 }
 .home-6 .product-tab > ul > li.active > a,.home-6 .product-tab > ul > li > a:hover {
 	color: #68b501;
 }
 .home-5 a.button {
 	background: #363F4D;
 	color: #fff;
 }
 .home-6 a.button:hover {
 	background: #68b501;
 	color: #fff;
 }
 .home-6 .product-action > li > a:hover {
 	background: #68B501;
     color: #fff;
 }
 .home-6 .our-single-blog {
 	overflow: hidden;
 	padding: 0;
     margin-right: 15px;
 }
 .home-6 .our-blog-img {
 	float: left;
 	width: 45%;
 }
 .home-6 .our-blog-content {
 	width: 55%;
 	float: left;
 	padding-left: 30px;
 	margin: 0;
 }
 .home-6 .copyright-text > p > a{
     color: #68B501;
 }
 .home-6 .copyright-text > p > a:hover{
     text-decoration: underline;
 }
 .home-6 #scrollUp {
 	background: #68B501;
 }
 .home-6 #scrollUp:hover {
 	border-color: #68B501;
 }
 /*----------------------------------------*/
 /*  16. Home 7
 /*----------------------------------------*/
 .home-7 a:focus,.home-7 a:hover {
 	color: #F1B306;
 	text-decoration: none;
 }
 .home-7 .header-container {
 	background: #20252d;
 	color: #fff;
 }
 .home-7 .header-top-area {
 	border-bottom: 1px solid rgba(255,255,255,0.1);
 }
 .home-7 .search-box button {
 	background: #F1B306;
 }
 .home-7 .search-box button:hover {
 	color: #fff;
 }
 .home-7 .mini-cart-area > ul > li > a{
     color: #f1b306;
     border-color: #f1b306;
 }
 .home-7 .cart-add {
 	background: #bf8e05;
 	color: #fff;
 }
 .home-7 .cart-total {
 	color: #fff;
 }
 .home-7 .cart-price{
     color: #f1b306;
 }
 .home-7 .cart-button a.button2:hover{
     color: #fff;
     background: #f1b306;
 }
 .home-7 .header-bottom-area {
 	border-top: 1px solid rgba(255,255,255,0.1);
 	background: url("../img/bg/menu-bg.png") repeat-x 0 0;
 }
 .home-7 .header-sticky.sticky {
 	background: rgba(54,63,77,0.9);
 }
 .home-7 .category-heading > h2 {
 	height: 60px;
 	line-height: 60px;
 	margin: 0;
     background: #f1b306;
 }
 .home-7 .category-menu-list {
 	display: none;
 }
 .home-7 .cat-dropdown, .cat-mega-menu{
     border-top: 1px solid #f1b306;
 }
 .home-7 .main-menu-area {
 	background: transparent;
 }
 .home-7 .main-menu > li > a {
 	color: #fff;
 }
 .home-7 .main-menu > li:hover > a,.home-7 .main-menu > li.active > a{
     color: #f1b306;
 }
 .home-7 .mega-menu > li > ul > li.mega-title > a:hover {
 	color: #f1b306;
 }
 .home-7 .main-menu > li.hot:before {
 	background: #f1b306;
 }
 .home-7 .main-menu > li.hot:after {
 	border-top: 5px solid #f1b306;
 }
 .home-7 .slider-text {
 	left: 20%;
 	width: 100%;
 }
 .home-7 .nivo-controlNav {
 	left: 0;
 	right: 0;
 	text-align: center;
 }
 .home-7 .slider-text > h5, .home-7 .slider-text > h4 > span {
 	color: #363f4d;
 }
 .home-7 .slider-text > h1 {
 	color: #363f4d;
 }
 .home-7 .slider-text > h1 > span{
     font-size: 71px;
     font-weight: 700;
 }
 .home-7 .slider-text > h4 {
 	color: #363f4d;
 	font-size: 14px;
 	margin-top: 20px;
 }
 .home-7 .slider-button a.button {
 	background: #FFD200;
 	color: #fff;
 }
 .home-7 .slider-button a.button:hover {
 	background: #363F4D;
 	color: #fff;
 }
 .home-7 a.button {
 	background: #363F4D;
 	color: #fff;
 }
 .home-7 a.button:hover{
     background: #FFD200;
     color: #fff;
 }
 .home-7 .product-action > li > a:hover{
     background: #FFD200;
     color: #fff;
 }
 .home-7 .sicker {
 	background: #F1B306;
 }
 .home-7 .product-price > span.new-price {
 	color: #F1B306;
 }
 .home-7 .single-product.hot-deal-list {
 	overflow: hidden;
 }
 .home-7 .single-product.hot-deal-list .product-img {
 	float: left;
 	width: 50%;
     padding-right: 25px;
 }
 .home-7 .hot-deal-of-product .product-content {
 	text-align: left;
     float: left;
     width: 50%;
 }
 .home-7 .product-content > h2.pro-title{
     text-align: left;
 }
 .home-7 .pro-rating-price{
     padding: 0;
 }
 .home-7 .count-down-box {
 	text-align: center;
 }
 .home-7 .section-title1 h3 {
 	background: #F1B306;
 }
 .home-7 .section-title1-border {
 	border-bottom: 2px solid #F1B306;
 }
 .home-7 .product-tab > ul > li.active > a,.home-7 .product-tab > ul > li > a:hover{
     color: #F1B306;
 }
 .home-7 .our-single-blog {
 	padding: 0;
 	overflow: hidden;
 	margin-right: 15px;
 }
 .home-7 .our-blog-img {
 	float: left;
 	width: 45%;
 }
 .home-7 .our-blog-content {
 	width: 55%;
 	float: left;
 	padding-left: 30px;
 	margin: 0;
 }
 .home-7 .brand-active {
 	border-top: 1px solid #ebebeb;
 }
 .home-7 .copyright-text > p > a{
     color: #F1B306;
 }
 .home-7 .copyright-text > p > a:hover{
     text-decoration: underline;
 }
 /*----------------------------------------*/
 /*  17. About Page CSS
 /*----------------------------------------*/
 .breadcrumbs > ul > li {
 	display: inline-block;
 	color: #eb3e32;
 	line-height: 30px;
 	font-size: 14px;
 	text-transform: capitalize;
 }
 .breadcrumbs > ul > li > a {
 	display: inline-block;
 	color: #363f4d;
 }
 .breadcrumbs > ul > li > a:hover{
     color: #eb3e32;
 }
 .breadcome-separator {
 	margin: 0 10px;
 	display: inline-block;
 	color: #363f4d;
 }
 .heading-banner-title {
 	margin-top: 20px;
 }
 .heading-banner-title > h1 {
 	font-size: 30px;
 	font-weight: 700;
 	font-family: Rubik;
 	text-transform: uppercase;
 	letter-spacing: 1px;
 	margin: 0;
 }
 .about-us-area {
 	margin-top: 20px;
 	background-position: left;
 	background-repeat: no-repeat;
 	background-size: cover;
 	position: relative;
 }
 .about-progress-area {
 	position: relative;
 }
 .about-us-img,.about-us-img2 {
 	position: absolute;
 	left: 0;
 	top: 0;
 	height: 100%;
 	width: 50%;
 	padding: 100px;
 }
 .about-us-img2{
     left: auto;
     right: 0;
 }
 .about-us-content {
 	padding-top: 100px;
 	padding-right: 50px;
 	padding-left: 50px;
 	padding-bottom: 100px;
 	float: right;
 	width: 50%;
 }
 .about-us-title > h2 {
 	text-transform: uppercase;
 	margin-bottom: 40px;
 	font-weight: 900;
 	font-size: 24px;
 }
 .about-us-content > p {
 	text-align: justify;
 	margin-bottom: 15px;
 }
 .button2 {
     background: none;
 	border: 1px solid #4c4c4c;
 	color: #7a7a7a;
 	height: 40px;
 	line-height: 40px;
 	margin-top: 26px;
 	box-shadow: none;
 	border-radius: 3px;
 	display: inline-block;
 	font-size: 1em;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	-webkit-transition: all .3s ease-out;
 	-moz-transition: all .3s ease-out;
 	-ms-transition: all .3s ease-out;
 	-o-transition: all .3s ease-out;
 	vertical-align: middle;
 	white-space: nowrap;
 }
 .button2:hover{
     background: #EB3E32;
     color: #fff;
     border-color: #EB3E32;
 }
 .single-count-box {
 	padding: 90px 0;
 	background: #f3f3f3;
 	text-align: center;
 }
 .counter-up-area .col-3:nth-child(1) .single-count-box{
     border-bottom: 1px solid #ddd;
 }
 .counter-up-area .col-3:nth-child(2) .single-count-box{
     background: #E8E8E8;
     border-bottom: 1px solid #ddd;
 }
 .counter-up-area .col-3:nth-child(4) .single-count-box{
     background: #E8E8E8;
 }
 .counter-img {
 	display: inline-block;
 	margin-right: 20px;
 	vertical-align: middle;
 }
 .counter-content {
 	display: inline-block;
 	vertical-align: middle;
 	text-align: left;
 	color: #4c4c4c;
 }
 .counter-number > h2 {
 	font-size: 30px;
 	font-weight: 700;
 	margin: 0;
 }
 .counter-title > h5 {
 	font-size: 12px;
 	font-weight: 700;
 	text-transform: uppercase;
 }
 .all-progressbar {
 	padding-top: 80px;
 	padding-left: 160px;
 	padding-right: 160px;
 	padding-bottom: 80px;
 	float: left;
 	width: 50%;
 }
 .progress-title {
 	margin-bottom: 35px;
 }
 .progress-title > h2 {
 	font-size: 30px;
 	font-weight: 900;
 	font-family: Raleway;
 	text-align: left;
 	font-style: normal;
 	color: #444;
 }
 .skill-content {
 	overflow: hidden;
     padding: 15px 0;
 }
 .skill .progress-bar {
 	background: #7B7B7B;
 	position: relative;
 	border-radius: 3px;
 }
 .skill .progress .lead {
 	position: absolute;
 	font-size: 12px;
 	left: 0px;
 	top: 0px;
 	text-transform: uppercase;
 	color: #fff;
 	width: 100%;
 	z-index: 99;
 }
 .skill .progress .lead > span.progress-count {
 	background: #3e3e3e;
 	border: 3px solid #a0a0a0;
 	border-radius: 100%;
 	color: #fff;
 	display: block;
 	font-size: 11px;
 	font-weight: 700;
 	height: 40px;
 	left: 0px;
 	line-height: 35px;
 	position: absolute;
 	text-align: center;
 	text-shadow: none;
 	top: -10px;
 	width: 40px;
 }
 .skill .progress .lead > span.progress-name {
 	padding-left: 55px;
 	height: 15px;
 	line-height: 15px;
 }
 .skill .progress {
 	height: 15px;
 	background: #f0f0f0;
 	border-radius: 3px;
 	position: relative;
 	box-shadow: none;
 	overflow: visible;
 	margin-bottom: 40px;
 	padding-left: 10px;
 }
 /*----------------------------------------*/
 /*  18. Protfolio Page CSS
 /*----------------------------------------*/
 .protfolio-menu-area {
 	background: #f5f5f5;
 }
 .protfolio-menu {
 	padding: 60px 0;
 	text-align: center;
 }
 .protfolio-menu > ul > li {
 	color: #666;
 	margin-right: 2px;
 	cursor: pointer;
 	position: relative;
 	z-index: 2;
 	padding: 0 30px;
 	border: none;
 	line-height: 45px;
 	font-size: 12px;
 	font-weight: 600;
 	display: inline-block;
 	background: #fff;
 	margin-bottom: 5px;
 	-webkit-transition: all 0.4s ease-out;
 	transition: all 0.4s ease-out;
 	text-transform: capitalize;
 }
 .protfolio-menu > ul > li:hover,.protfolio-menu > ul > li.active{
     color: #fff;
     background: #0162bd;
 }
 .protfolio-menu > ul > li:after {
 	content: "";
 	display: block;
 	position: absolute;
 	top: 2px;
 	right: 2px;
 	border-color: transparent;
 	border-width: 5px;
 	border-style: solid;
 	border-top-color: #fff;
 	border-right-color: #fff;
 }
 .protfolio-item {
 	padding: 0 15px;
 	padding-bottom: 30px;
 }
 .single-protfolio {
 	position: relative;
 	padding-top: 30px;
 }
 .protfolio-img {
 	position: relative;
 }
 .protfolio-img:before {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background: #000;
 	z-index: 9;
 	content: "";
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	visibility: hidden;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .single-protfolio:hover .protfolio-img > a {
     opacity: 0.3;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
     visibility: visible;
 }
 .protfolio-img > a:hover{
     background: #F26667;
     color: #fff;
 }
 .protfolio-img > a {
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	color: #fff;
 	width: 50px;
 	height: 50px;
 	background: #0162BD;
 	line-height: 50px;
 	text-align: center;
 	-webkit-transform: translateY(-50%) translateX(-50%);
 	        transform: translateY(-50%) translateX(-50%);
 	border-radius: 100%;
 	font-size: 16px;
     z-index: 99;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     visibility: hidden;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .single-protfolio:hover .protfolio-img > a{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .link > a {
 	position: absolute;
 	bottom: 80px;
 	right: 8px;
 	width: 60px;
 	height: 60px;
 	background: #0162BD;
 	line-height: 55px;
 	text-align: center;
 	color: #fff;
 	display: block;
 	border-radius: 100%;
 	border: 4px solid #fff;
 	font-size: 16px;
     z-index: 99;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     visibility: hidden;
 }
 .link > a:hover{
     background: #F26667;
     color: #fff;
     border-color: #4FC1F0;
 }
 .single-protfolio:hover .link > a{
     bottom: 10px;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .protfolio-info {
 	padding: 20px;
 	background: #f5f5f5;
 	position: absolute;
 	bottom: -86px;
 	left: 0;
 	width: 100%;
 	z-index: 99;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	visibility: hidden;
 }
 .single-protfolio:hover .protfolio-info{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
     visibility: visible;
 }
 .protfolio-info > h3 {
 	font-size: 17px;
 	line-height: 22px;
 	color: #000000;
 	font-weight: 700;
 	padding: 0px 0px 0px 0px;
 	border-radius: 0px 0px 0px 0px;
 	z-index: 2;
 	display: block;
 	font-family: "Raleway";
 	text-transform: capitalize;
 }
 .protfolio-info > span {
 	font-size: 12px;
 	line-height: 20px;
 	color: #71a9d0;
 	font-weight: 400;
 	display: block;
 	text-align: left;
 	clear: both !important;
 	margin: 0px 0px 0px 0px;
 	padding: 0px 0px 0px 0px;
 	border-radius: 0px 0px 0px 0px;
 	position: relative;
 	z-index: 2;
 	text-transform: capitalize;
 }
 .fancybox-item.fancybox-close {
 	background: url(../img/fancybox_sprite.png);
 }
 /*----------------------------------------*/
 /*  19. My Account Page CSS
 /*----------------------------------------*/
 .form-login-title > h2,.form-register-title > h2 {
 	font-size: 24px;
 	font-weight: 700;
 	text-transform: capitalize;
 	line-height: 1.35;
 }
 .login-form,.register-form {
 	padding: 20px;
 	background: #FFF;
 	border: 1px solid #d3ced2;
 	margin: 30px 0;
 	text-align: left;
 	border-radius: 5px;
 }
 .form-fild,.login-submit,.lost-password,.register-submit {
 	margin-bottom: 10px;
 }
 .form-fild > p {
 	margin: 0;
 }
 .form-fild > p span.required,.lost-password > a {
 	color: #eb3e32;
 }
 .form-fild > input {
 	border: 1px solid #e5e5e5;
 	border-radius: 0;
 	height: 42px;
 	padding: 0 0 0 10px;
 }
 input.checkbox {
 	width: 0;
 	height: 0;
 	margin: 0;
 	display: inline-block;
 }
 .customer-login-register.register-pt-0 {
 	padding-top: 0;
 }
 .login-submit > label {
 	margin-left: 10px;
 }
 /*----------------------------------------*/
 /*  20. Wishlist Page CSS
 /*----------------------------------------*/
 .wishlist-table table {
 	background: #fff;
 	border: 1px solid #ebebeb;
 	color: #4c4c4c;
 	width: 100%;
 	border-right: 0;
 	border-radius: 5px;
 }
 .wishlist-table table tr {
 	border-bottom: 1px solid #ebebeb;
 }
 .wishlist-table table thead th {
 	border-bottom: 1px solid #ebebeb;
 	padding: 16px 12px;
 	border-top: 1px solid #e7e7e7;
 	background: #f6f6f6;
 	text-align: center;
 	text-transform: uppercase;
 	font-size: 10px;
 	font-weight: 500;
 	border-right: 1px solid #ebebeb;
 }
 .wishlist-table table thead th.product-remove{
     width: 40px;
     vertical-align: middle;
 }
 .wishlist-table table tbody tr td.product-remove {
 	padding: 16px 0;
 	width: 40px;
 }
 .wishlist-table table tbody tr td.product-remove > a {
 	font-size: 20px;
 	width: 30px;
 	height: 30px;
 	line-height: 30px;
 	color: #7a7a7a;
 	font-weight: 700;
 	text-align: center;
 }
 .wishlist-table table tbody tr td.product-remove > a:hover,.wishlist-table table tbody tr td.product-name > a:hover,.shopping-cart-table table tr td.product-remove > a:hover{
     color: #EB3E32;
 }
 .wishlist-table table tbody tr td {
 	padding: 16px 12px;
 	text-align: center;
 	vertical-align: middle;
 	font-size: 12px;
 	font-weight: 400;
 	border-right: 1px solid #ebebeb;
 }
 .wishlist-table table tbody tr td.product-name > a {
 	color: #363f4d;
 }
 .wishlist-table table tbody tr td.product-price {
 	color: #EB3E32;
 	font-weight: 500;
 }
 .wishlist-table table tbody tr td.product-stock-status span.wishlist-in-stock {
 	color: #30b878;
 }
 .wishlist-table table tbody tr td.product-stock-status span.wishlist-out-stock {
 	color: #EB3E32;
 }
 .wishlist-btn {
 	background: #363f4d;
 	box-shadow: none;
 	border: 0;
 	border-radius: 3px;
 	color: #fff;
 	display: block;
 	font-size: 12px;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 	vertical-align: middle;
 	white-space: nowrap;
 }
 .wishlist-btn:hover{
     background: #EB3E32;
     color: #fff;
 }
 .wishlist-table table tfoot tr td {
 	font-weight: 700;
 	padding: 25px 10px;
 	font-size: 12px;
 	border-bottom: 1px solid #ebebeb;
 	font-weight: 700;
 }
 /*----------------------------------------*/
 /*  21. Shopping Cart Page CSS
 /*----------------------------------------*/
 .shop-form {
 	margin-bottom: 30px;
 }
 .product-quantity > select {
 	border: 1px solid #ebebeb;
 	width: 80px;
 	height: 35px;
 	padding-left: 15px;
 }
 .shopping-cart-table table tr td.product-price,.shopping-cart-table table tr td.product-subtotal {
 	color: #eb3e32;
 	font-weight: 500;
 }
 .shopping-cart-table table tr td.product-quantity input.input-text {
 	width: 60px;
 	border: 2px solid #ebebeb;
 	border-radius: 0;
 	height: 42px;
 	padding: 0 0 0 10px;
 	text-align: center;
 	font-size: 15px;
 	font-weight: normal;
 	margin-left: 5px;
 }
 .shopping-cart-table table tr td.action {
 	padding: 10px;
 	border: 0;
 }
 .input-copun {
 	border: 1px solid #d3ced2;
 	border-radius: 0;
 	width: 200px;
 	float: left;
 	padding: 6px 15px 6px;
 	margin: 0 4px 0 0;
 	line-height: 1;
 	height: 42px;
 	font-size: 14px;
 	font-weight: 500;
 }
 .coupon {
 	overflow: hidden;
 	margin: 0 0 30px;
 	width: 100%;
 	padding-bottom: 10px;
 }
 .wishlist-btn.shopping-btn {
 	font-size: 14px;
 }
 .update-btn {
 	background: #363f4d;
 	box-shadow: none;
 	border: 0;
 	border-radius: 3px;
 	color: #fff;
 	display: block;
 	font-size: 14px;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 	vertical-align: middle;
 	float: none;
 	cursor: not-allowed !important;
 	color: #fff;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
 }
 .update-btn:hover{
     background: #ebe9eb;
     color: #7a7a7a;
 }
 .shopping-cart-total {
 	width: 100%;
 	margin-bottom: 35px;
 	overflow: hidden;
 	background: #FFF;
   padding: 10px 20px;
 }
 .shopping-cart-total > h2 {
 	font-size: 14px;
 	text-transform: uppercase;
 	font-weight: 500;
 	background: #f5f5f5;
 	padding: 10px 20px;
 	border-radius: 5px;
 	border: 1px solid #ebebeb;
 	line-height: 40px;
 }
 .shop-table table {
 	text-align: right;
 	margin: 0 0 10px 0;
 	width: 100%;
 	float: right;
 	color: #4c4c4c;
 }
 .shop-table tr {
 	border-bottom: 1px solid #ebebeb;
 	text-align: right;
 }
 .shop-table tr td {
 	text-align: right;
 	padding: 10px 0;
 }
 .shop-table tr td span {
 	font-weight: 500;
 	color: #363f4d;
 	font-size: 16px;
 }
 .shop-table tr.order-total {
 	display: block;
 }
 .shop-table tr.order-total td {
 	padding: 10px 0;
 	display: block;
 }
 .shop-table tr td a {
 	display: block;
 	color: #EB3E32;
 }
 .shop-table tr td a:hover{
     color: #4c4c4c;
 }
 .shop-table tr td:before {
     content: attr(data-title) ": ";
     font-weight: 700;
     float: left;
 }
 .shop-table tr.order-total td span {
 	color: #EB3E32;
 }
 .proceed-to-checkout {
 	float: left;
 	width: 100%;
 	text-align: right;
 }
 .checkout-button {
     background: #eb3e32;
 	border-color: #eb3e32;
 	color: #fff;
 	margin: 0 !important;
 	border: 0;
 	border-radius: 3px;
 	display: inline-block;
 	font-size: 1em;
 	font-weight: 400;
 	height: 42px;
 	line-height: 42px;
 	overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 }
 .checkout-button:hover{
     background: #d52115;
     color: #fff;
     border-color: #d52115;
 }
 /*----------------------------------------*/
 /*  22. Checkout Page CSS
 /*----------------------------------------*/
 .coupon-accordion > h3 {
 	background: #f7f6f7;
 	margin: 0 0 2em;
 	padding: 1em 2em 1em 3.5em;
 	font-size: 14px;
 	border-top: 3px solid #1e85be;
 	position: relative;
 	width: auto;
 	color: #515151;
 }
 .coupon-accordion > h3 > span {
 	cursor: pointer;
 	color: #EB3E32;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .coupon-accordion > h3 > span:hover{
     color: #333;
 }
 .coupon-accordion > h3:before {
 	position: absolute;
 	content: "\f133";
 	font-family: fontawesome;
 	top: 1em;
 	left: 1.5em;
 	display: inline-block;
 	color: #1e85be;
 }
 .coupon-content,.create-account,.ship-box {
 	display: none;
 }
 #checkout_coupon {
 	border: 1px solid #d3ced2;
 	padding: 20px;
 	border-radius: 5px;
 	display: none;
 }
 .billing-fields {
 	margin-bottom: 30px;
 	overflow: hidden;
 }
 #billing_country_chosen,
 #billing_country2_chosen{
 	width: 100% !important;
 }
 .chosen-container-single .chosen-single {
 	background: #fff;
 	padding: 2px 10px;
 	border-radius: 5px;
     height: 30px;
     border: 1px solid #aaa;
     box-shadow: none;
 }
 .chosen-container-active.chosen-with-drop .chosen-single {
 	border: 1px solid #aaa;
 	border-bottom-right-radius: 0;
 	border-bottom-left-radius: 0;
 	background: #fff;
 }
 .chosen-container-single .chosen-single div b {
 	background: url("../img/chosen-sprite.png") no-repeat 0px 4px;
 }
 .chosen-container-single .chosen-single span {
 	margin-right: 0;
 	background: #fff;
 }
 .chosen-container-single .chosen-single div {
 	background: #fff;
 }
 .checkout-form-area {
 	padding: 15px 0;
 	margin-bottom: 100px;
 }
 .checkout-title > h3 {
 	font-size: 20px;
 	text-transform: uppercase;
 	font-weight: 500;
 	border-bottom: 1px solid #ebebeb;
 	padding-bottom: 10px;
 	margin: 0 0 20px;
 }
 .form-fild.first-name,.form-fild.last-name,.form-fild.billing_phone,.form-fild.email {
 	width: 47%;
 	margin: 0 0 40px;
     padding: 0;
 }
 .form-fild.last-name, .form-fild.email {
 	float: right;
 }
 .form-fild.company-name,.form-fild.country,.form-fild.billing_address_1,.form-fild.billing_address_2,.form-fild.billing_postcode,.form-fild.billing_city {
 	margin: 0 0 40px;
 }
 .create-acc {
 	margin-bottom: 10px;
 }
 .ship-fild {
 	padding-bottom: 10px;
 	margin-bottom: 20px;
 	border-bottom: 1px solid #ebebeb;
 }
 .create-acc > input[type="checkbox"], .ship-fild > input[type="checkbox"] {
 	display: inline-block;
 	position: relative;
 	top: 2px;
 	margin-right: 5px;
 	width: auto;
 	height: auto;
 }
 .form-fild.billing_password label {
 	padding-left: 20px;
 	color: #a00;
 }
 .shipping-fields {
 	margin-bottom: 30px;
 }
 .your-order-title > h3 {
 	padding-bottom: 10px;
 	border: ;
 	border-bottom: 1px solid #ebebeb;
 	margin-bottom: 20px;
 	font-size: 20px;
 	font-weight: 500;
 	text-transform: uppercase;
 	width: 100%;
 }
 .your-order-table table {
 	background: #fff;
 	width: 100%;
 	color: #4c4c4c;
 	margin: 0 0 50px;
 }
 .your-order-table table tr {
 	border-bottom: 1px solid #ebebeb;
 }
 .your-order-table table tr:last-child {
 	border-bottom: none;
 }
 .your-order-table table tr th.product-name {
 	width: 35%;
 }
 .your-order-table table tr th.total{
     width: 65%;
 }
 .your-order-table table tr th,.your-order-table table tr td {
 	background: none;
 	border-bottom: 1px solid #dedede;
 	border-right: none;
 	border-top: none;
 	font-size: 14px;
 	padding: 15px 0;
 	text-align: center;
     text-transform: uppercase;
 }
 .your-order-table table tr th,.cart-subtotal td{
    font-weight: 500;
 }
 .your-order-table table tr.cart-subtotal th,.your-order-table table tr.shipping th,.your-order-table table tr.order-total th {
 	font-weight: 700;
 }
 .your-order-table table tr td {
 	text-transform: none;
 }
 .your-order-table table tr.order-total th,.your-order-table table tr.order-total td{
     font-size: 18px;
     border-bottom: none;
 }
 .shipping td p {
 	font-weight: 500;
 	color: #4c4c4c;
 	margin: 0;
 }
 .order-total td {
 	color: #EB3E32;
 }
 .checkout-payment li {
 	text-align: left;
 	line-height: 2px;
 	padding: 0 0 15px;
 	font-weight: 400;
 }
 .checkout-payment li > input[type="radio"] {
 	height: auto;
 	width: auto;
 	margin-right: 5px;
 }
 .pay-box {
 	background: none;
 	box-shadow: none;
 	font-size: 12px;
 	margin: 0;
 	padding: 0;
 	position: relative;
 	text-shadow: none;
 	width: 100%;
 	line-height: 1.5;
 	color: #515151;
 	margin-top: 10px;
 }
 .pay-box:before {
 	content: '';
 	display: block;
 	border: 1em solid #dfdcde;
 	border-right-color: transparent;
 	border-left-color: transparent;
 	border-top-color: transparent;
 	position: absolute;
 	top: -.75em;
 	left: 0;
 	margin: -1em 0 0 2em;
 }
 .pay-box.payment_method_cheque > p {
 	font-size: 12px;
 }
 .payment_method_paypal-li img {
 	max-height: 52px;
 	vertical-align: middle;
 	margin: -2px 15px 0 .5em;
 }
 .payment_method_paypal-li a {
 	display: inline-block;
 	font-size: 11px;
 	color: #eb3e32;
 }
 .payment_method_paypal {
 	display: none;
 }
 .order-btn {
 	background: #eb3e32;
 	font-size: 14px;
 	height: 50px;
 	margin: 0;
     display: block;
     border-radius: 3px;
     border: 0;
     color: #fff;
     display: inline-block;
     box-shadow: none;
     line-height: 42px;
     overflow: hidden;
 	padding: 0 25px;
 	text-shadow: none;
 	text-transform: capitalize;
 	text-align: center;
     -webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 	vertical-align: middle;
 	white-space: nowrap;
     font-weight: 400;
     width: 100%;
 }
 .order-btn:hover{
     background: #d52115;
     color: #fff;
 }
 /*----------------------------------------*/
 /*  23. Shop Page CSS
 /*----------------------------------------*/
 /*----------------------------------------*/
 /*  23.1 Shop Left Sidebar CSS
 /*----------------------------------------*/
 .shop-product-area .tab-content .tab-pane {
 	display: none;
 	height: auto;
 }
 .shop-product-area .tab-content .tab-pane.active {
 	display: block;
 }
 .widget.widget-shop-categories {
 	margin: 0;
     border-radius: 4px 4px 0 0;
 }
 .widget.widget-compare {
 	margin-top: 30px;
 }
 .product-categories > li > a {
 	font-size: 14px;
 	text-transform: capitalize;
 	color: #363f4d;
 	display: inline-block;
 }
 .widget.widget-price-slider,.widget.widget-brand,.widget.widget-manufacture,.widget.widget-color {
 	border-top: 0;
 	border-radius: 0;
 	background: #f6f6f6;
 	margin: 0;
 }
 .widget.widget-brand,.widget.widget-manufacture,.widget.widget-color{
     background: #fff;
 }
 .widget.widget-color{
     margin: 0 0 30px 0;
 }
 .widget.widget-price-slider h3.widget-title,.widget.widget-brand h3.widget-title,.widget.widget-manufacture h3.widget-title,.widget.widget-color h3.widget-title {
 	font-size: 12px;
 	margin: 0;
 	border-bottom: 0;
 	font-weight: 500;
 }
 .price-filter {
 	margin-top: 30px;
 	font-size: 12px;
 }
 #slider-range {
 	margin-bottom: 25px;
 }
 .ui-widget.ui-widget-content {
 	border: 0;
 	background: #E5E5E5;
 	height: 5px;
 }
 .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
 	background: #eb3e32;
 	height: 15px;
     border: 0;
 	width: 15px;
 	border-radius: 100%;
 }
 .ui-widget-header {
 	border: 0;
 	background: #EB3E32;
 	color: #fff;
 	font-weight: bold;
 }
 .price-filter input.amount {
 	width: 100px;
 	border-radius: 0;
 	height: 30px;
 	background: #f6f6f6;
     color: #363f4d;
 }
 .compare-menu {
 	margin-bottom: 10px;
 }
 .clear-all {
 	font-size: 12px;
 	line-height: 35px;
 	float: left;
 	text-transform: none;
 }
 .shop-tab-menu {
 	border: 1px solid #ebebeb;
 	padding: 13px 15px;
 	border-radius: 4px;
 }
 .shop-tab > ul > li {
 	display: inline-block;
 	margin-right: 25px;
 	margin-top: 5px;
 }
 .shop-tab > ul > li > a {
 	font-size: 21px;
 	color: #363f4d;
 	display: block;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .shop-tab > ul > li.active > a,.shop-tab > ul > li:hover > a{
     color: #EB3E32;
 }
 .toolbar-form {
 	float: left;
     width: 52%;
 }
 .toolbar-select span {
 	color: #363f4d;
 }
 .order-by {
 	width: 69%;
 	height: 30px;
 	border: 1px solid #ebebeb;
 	text-align: left;
 	font-size: 14px;
 	padding: 0 10px;
 }
 .show-result {
 	float: right;
 	height: 32px;
 	line-height: 30px;
 	margin: 0 0 0 15px;
 }
 .show-result p{
     font-size: 14px;
     color: #363f4d;
 }
 .product-container {
 	overflow: hidden;
   padding-bottom: 5px;
   position: relative;
 }
 /*.product-container:after {
 	position: absolute;
 	content: "";
 	border-bottom: 1px solid #ebebeb;
 	display: block;
 	bottom: 0;
 	left: 15px;
 	right: 15px;
   z-index: 99;
 }*/
 .product-container:last-child:after{
     border-bottom: 0;
 }
 .product-content-2 > h2 {
 	font-size: 16px;
 	text-transform: capitalize;
 	font-weight: 400;
 	margin-bottom: 15px;
 }
 .product-discription > p {
 	font-size: 14px;
 	margin-bottom: 25px;
 }
 .product-cart-area-list > li {
 	display: inline-block;
 }
 /*----------------------------------------*/
 /*  24. Single Product CSS
 /*----------------------------------------*/
 .single-product-info {
 	overflow: hidden;
 	margin-bottom: 50px;
 }
 .single-product-tab {
 	margin-top: 15px;
 }
 .discription-tab-content {
     overflow: hidden;
 }
 .discription-tab-content .tab-pane {
     overflow: hidden;
 }
 .easyzoom-flyout img {
 width: auto !important;
 max-width: none !important;
 }
 .single-product-tab-menu {
 	width: 100%;
 	padding: 0 30px;
 	text-align: center;
 }
 .single-product-tab-menu > li {
 	display: inline-block;
 	width: 20%;
 	margin: 0 10px;
 }
 .single-product-content {
 	position: relative;
 }
 .single-product-content h1 {
 	font-size: 24px;
 }
 .product-nav {
 	position: absolute;
 	top: 0;
 	right: 0;
 }
 .product-nav > a {
 	display: inline-block;
 	width: 30px;
 	height: 30px;
 	border: 1px solid #d1d1d1;
 	line-height: 28px;
 	text-align: center;
 	border-radius: 3px;
 	color: #d1d1d1;
 	position: relative;
     margin-right: 5px;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .product-nav > a:hover{
     background: #EB3E32;
     border-color: #EB3E32;
     color: #fff;
 }
 .product-title {
 	font-size: 16px;
 	font-weight: 500;
 	text-transform: capitalize;
 	margin-bottom: 16px;
 	color: #363f4d;
 }
 .product-rating {
 	margin-bottom: 20px;
 }
 .product-rating i.fa {
 	color: #F9BA48;
 }
 .product-rating i.fa.on-color{
     color: #e1e1e1;
 }
 .review-link {
 	color: #EB3E32;
 	margin-left: 10px;
 }
 .single-product-price {
 	margin-bottom: 25px;
 }
 .single-product-price > .old-price {
 	color: #a4a4a4;
 	font-size: 16px;
 	font-weight: 400;
 	margin-right: 5px;
 	text-decoration: line-through;
 }
 .single-product-price > .new-price {
 	color: #EB3E32;
 	font-weight: 700;
 	font-size: 20px;
 }
 .product-description > p {
 	margin-bottom: 25px;
 	color: #7a7a7a;
 	font-size: 14px;
 }
 .single-product-quantity {
 	border-bottom: 1px solid #ebebeb;
 	margin: 0 0 20px;
 	padding-bottom: 20px;
 }
 .quantity {
 	margin: 0 0 20px;
 }
 .quantity label {
 	margin-right: 5px;
 }
 .quantity input {
 	width: 75px;
 	border: 1px solid #ebebeb;
 	border-radius: 3px;
 	height: 36px;
 	font-size: 16px;
 	line-height: 34px;
 	color: #363f4d;
 	padding: 0 0 0 10px;
 	line-height: ;
 }
 .wislist-compare-btn ul > li {
 	display: inline-block;
 	margin-right: 15px;
 	position: ;
 }
 .wislist-compare-btn ul > li > a.wishlist,.wislist-compare-btn ul > li > a.compare {
 	position: relative;
 	font-size: 12px;
 	display: block;
 	text-align: center;
 	line-height: 30px;
 	font-weight: 400;
 	text-transform: capitalize;
 }
 .wislist-compare-btn ul > li > a.wishlist:before,.wislist-compare-btn ul > li > a.compare:before {
 	content: '\f08a';
 	font-family: FontAwesome;
 	color: #eb3e32;
 	display: inline-block;
 	font-size: 16px;
 	width: 30px;
 	height: 30px;
 	line-height: 28px;
 	border: 1px solid #EB3E32;
 	border-radius: 100%;
 	text-align: center;
 	margin-right: 5px;
 	vertical-align: middle;
 }
 .wislist-compare-btn ul > li > a.compare:before{
     content: "\f079"
 }
 .product-meta {
 	margin: 20px 0 10px;
 	border-top: 1px solid #ebebeb;
 	padding-top: 15px;
 	text-transform: capitalize;
 }
 .single-product-sharing > ul > li {
 	display: inline-block;
 	margin-right: 10px;
 }
 .single-product-sharing > ul > li > a {
 	color: #fff;
 	width: 16px;
 	height: 16px;
 	background: #7a7a7a;
 	font-size: 10px;
 	display: block;
 	line-height: 17px;
 	text-align: center;
 	border-radius: 2px;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .single-product-sharing > ul > li > a:hover{
     background: #EB3E32;
     color: #fff;
 }
 .single-product-tab-menu .owl-nav > div {
 	position: absolute;
 	top: 50%;
 	left: 25px;
 	-webkit-transform: translateY(-50%);
 	        transform: translateY(-50%);
 	background: #f2f2f2;
 	width: 32px;
 	height: 32px;
 	text-align: center;
 	line-height: 32px;
     border-radius: 3px;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .single-product-tab-menu .owl-nav > div.owl-prev:after{
     display: none;
 }
 .single-product-tab-menu .owl-nav > div.owl-next{
     left: auto;
     right: 25px;
 }
 .single-product-tab-menu .owl-nav > div:hover{
     background: #EB3E32;
     color: #fff;
 }
 .single-product-tab-menu:hover .owl-nav > div{
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 .discription-tab-menu > ul {
 	border-bottom: 2px solid #F1B307;
 	text-align: left;
 }
 .discription-tab-menu > ul > li {
 	display: inline-block;
 }
 .discription-tab-menu > ul > li > a {
 	font-size: 14px;
 	background: #f3f2f2;
 	font-weight: 700;
 	padding: 10px 20px;
 	text-transform: uppercase;
 	display: inline-block;
 	border-radius: 4px 4px 0 0;
 	line-height: 26px;
 	color: #a8acb3;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .discription-tab-menu > ul > li.active > a,.discription-tab-menu > ul > li > a:hover{
     background: #f8b831;
     color: #000;
 }
 .description-content,.review-page-comment {
 	padding: 30px 0 20px;
 }
 .review-comment {
 	margin: 0 auto;
 	width: 650px;
 }
 .review-comment > h2 {
 	font-size: 18px;
 	font-weight: 700;
 	text-transform: uppercase;
 	margin-bottom: 20px;
 }
 .review-comment > ul {
 	margin: 0 0 25px;
 }
 .review-comment > ul > li {
 	margin-bottom: 20px;
 }
 .review-comment > ul > li > .product-comment img {
 	width: 60px;
 	float: left;
 }
 .review-comment > ul > li .product-comment .product-comment-content {
 	border: 1px solid #ebebeb;
 	border-radius: 3px;
 	margin-left: 80px;
 	position: relative;
 	padding: 10px 10px 0;
 }
 .review-comment > ul > li .product-comment .product-comment-content:before {
 	position: absolute;
 	content: "";
 	top: 10px;
 	left: -6px;
 	border-bottom: 1px solid #ebebeb;
 	border-left: 1px solid #ebebeb;
 	display: block;
 	width: 10px;
 	height: 10px;
 	-webkit-transform: rotate(45deg);
 	        transform: rotate(45deg);
 	z-index: 999;
 }
 .pro-comments-rating {
 	float: right;
 }
 .product-comment-content > p > strong {
 	text-transform: uppercase;
 	font-size: 16px;
 	color: #777;
 	line-height: 2;
 }
 .review-comment-form-author{
     margin-bottom: 10px;
 }
 .review-comment-form-author input,.review-comment-form-email input {
 	width: 40%;
 	border: 1px solid #ebebeb;
 	border-radius: 0;
 	display: block;
 	height: 40px;
 }
 /*----------------------------------------*/
 /*  25. Blog Page CSS
 /*----------------------------------------*/
 .single-blog-post {
 	overflow: hidden;
 	width: 100%;
 }
 .post-thumbnail {
 	width: 40%;
 	float: left;
 	margin: 0;
 }
 .post-thumbnail > a {
 	width: 100%;
 	display: inline-block;
 	text-align: center;
 }
 .postinfo-wrapper {
 	width: 60%;
 	padding: 0 0 0 30px;
 	float: left;
 	text-align: left;
 }
 .postinfo-wrapper .post-header {
 	position: relative;
 	float: none;
 	margin: 0 0 20px;
 	display: block;
 }
 .postinfo-wrapper .post-header .post-category {
 	font-size: 13px;
 	display: block;
 	margin-bottom: 15px;
 	color: #eb3e32;
 	text-transform: capitalize;
 }
 .postinfo-wrapper .post-header .post-category a {
 	padding: 0 5px;
 	color: #eb3e32;
 	text-decoration: underline;
 }
 .postinfo-wrapper .post-header h1.post-title {
 	font-size: 30px;
 	font-weight: 500;
 	margin-bottom: 10px;
 	line-height: 1;
 	text-transform: capitalize;
 	letter-spacing: 2px;
 }
 .postinfo-wrapper .post-header h1.post-title.post-icon:before {
 	content: "\f2a6";
 	font-family: 'Ionicons';
 	display: inline-block;
 	margin-right: 18px;
 	color: #eb3e32;
 	-webkit-transform: rotate(45deg);
 	-moz-transform: rotate(45deg);
 	-ms-transform: rotate(45deg);
 	-o-transform: rotate(45deg);
 }
 .postinfo-wrapper .post-header h1.post-title a{
     color: #363f4d;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .postinfo-wrapper .post-header h1.post-title a:hover {
     color: #eb3e32
 }
 .blog-meta,.post-author,.post-date {
 	color: #808080;
 	letter-spacing: 1px;
 }
 .post-separator {
 	margin: 0 10px;
 	display: inline-block;
 }
 .entry-summary > p {
 	margin-bottom: 30px;
 	text-align: left;
 }
 .social-sharing {
 	float: left;
 	margin: 0;
 }
 .social-title {
 	float: left;
 	font-size: 12px;
 	color: #808080;
 	margin: 0 20px 0 0;
 	line-height: 26px;
 	font-weight: 700;
 }
 .blog-social-icon {
 	float: left;
 	margin: 0;
 	padding: 0;
 }
 .blog-social-icon > li {
 	float: left;
 }
 .blog-social-icon > li > a {
 	background: #f7f7f7;
 	border-radius: 100%;
 	color: #353535;
 	display: inline-block;
 	font-size: 12px;
 	height: 26px;
 	line-height: 26px;
 	margin-right: 10px;
 	text-align: center;
 	width: 26px;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .blog-social-icon > li > a:hover{
     background: #eb3e32;
     color: #fff;
 }
 .comment {
 	float: right;
 	color: #808080;
 }
 .post-slider .owl-nav > div {
 	position: absolute;
 	top: 50%;
 	left: 40px;
 	-webkit-transition: ;
 	transition: ;
 	-webkit-transform: translateY(-50%);
 	        transform: translateY(-50%);
 	width: 40px;
 	height: 40px;
 	line-height: 40px;
 	background: #000;
 	color: #fff;
 	font-size: 30px;
 	opacity: 0;
 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	border-radius: 100%;
 	text-align: center;
 	z-index: 5;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .post-slider .owl-nav div.owl-next{
     right: 40px;
     left: auto;
 }
 .post-slider .owl-nav > div.owl-prev:after{
     display: none;
 }
 .post-slider:hover .owl-nav > div{
     left: 10px;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 .post-slider:hover .owl-nav div.owl-next{
     right: 10px;
     left: auto;
     opacity: 1;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
 }
 .post-slider .owl-dots {
 	position: absolute;
 	top: 50%;
     -webkit-transform: translateY(-50%);
             transform: translateY(-50%);
 	left: 0;
 	right: 0;
 	text-align: center;
 }
 .post-slider .owl-dot {
 	width: 15px;
 	height: 15px;
 	background: #000;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	display: inline-block;
 	margin: 0 5px;
 	border-radius: 100%;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .post-slider:hover .owl-dot{
     opacity: 0.5;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
 }
 .post-slider .owl-dot:hover,.post-slider .owl-dot.active{
     background: #fff;
     outline-offset: 10px;
 }
 .player > audio {
 	width: 100%;
 	margin-top: 10px;
 	margin-bottom: 20px;
 	float: left;
 }
 .pagination {
 	float: left;
 	width: 100%;
 	margin: 0 0 30px;
 	border: 1px solid #ebebeb;
 	border-radius: 4px;
 	padding: 13px 15px;
 	text-align: center;
 }
 .page-number > li {
 	display: inline-block;
 }
 .page-number > li > a {
 	background: #f1f1f1;
 	border-radius: 3px;
 	color: #363f4d;
 	display: inline-block;
 	padding: 0;
 	font-size: 1em;
 	font-weight: normal;
 	text-align: center;
 	text-transform: uppercase;
 	line-height: 32px;
 	height: 32px;
 	width: 32px;
 }
 .page-number > li.active > a,.page-number > li > a:hover{
     background: #eb3e32;
     color: #fff;
 }
 /*----------------------------------------*/
 /*  25.1 Blog Right Sidebar CSS
 /*----------------------------------------*/
 .right-sidebar-area {
 	overflow: hidden;
 	margin-bottom: 30px;
 }
 .widget {
 	padding: 20px;
 	border: 1px solid #ebebeb;
 	margin: 0 0 30px 0;
 	border-radius: 4px;
 	width: 100%;
 	float: left;
 }
 .widget-title,.widget-shop-title,.widget-compare-title,.widget-shop-tag-title {
 	font-size: 18px;
 	text-transform: uppercase;
 	font-weight: 700;
 	letter-spacing: 1px;
 	margin: 0 0 20px;
 	padding: 0 0 15px;
 	border-bottom: 1px solid #ebebeb;
 	line-height: 1;
 }
 .widget-title{text-transform: none;}
 .widget-shop-title,.widget-compare-title,.widget-shop-tag-title{
     font-size: 16px;
 }
 .sidebar-menu,.recent-menu,.archive-menu,.product-categories,.brand-menu,.compare-menu{
     width: 100%;
     float: left;
 }
 .sidebar-menu > li,.recent-menu > li,.archive-menu > li,.product-categories > li {
 	float: left;
 	width: 100%;
 	margin-bottom: 10px;
 }
 .brand-menu > li {
 	position: relative;
 	line-height: 30px;
 }
 .brand-menu > li > input {
 	width: auto;
 	height: auto;
 	margin-right: 10px;
 	border: 1px solid #ebebeb;
 	border-radius: 3px;
 	margin-top: 0;
 	color: #ebebeb;
 }
 .product-categories > li,.brand-menu > li,.compare-menu > li{
 	float: left;
 	width: 100%;
 	overflow: hidden;
 	line-height: 44px;
     margin: 0;
 }
 .product-categories > li:not(:last-child),.compare-menu > li{
     border-bottom: 1px solid #ebebeb;
 }
 .sidebar-menu > li > a,.recent-menu > li > a,.archive-menu > li > a,.brand-menu > li > a,.compare-menu > li > a {
 	color: #4c4c4c;
 	margin-right: 5px;
     text-transform: capitalize;
 }
 .blog-input {
 	margin-top: 20px;
 	float: left;
 	width: 100%;
 	color: #808080;
 	position: relative;
 }
 .blog-input > input {
 	border: 1px solid #ebebeb;
 	border-radius: 0;
 	height: 34px;
 	padding: 0 40px 0 15px;
 }
 .blog-input > button {
 	background: transparent;
 	border: 0;
 	position: absolute;
 	right: 0;
 	top: 0;
 	padding: 0 10px;
 	height: 34px;
 }
 .fb-page {
 	overflow: hidden;
 }
 .fb-page iframe {
 	width: 100%;
 }
 .widget-tag ul > li {
 	display: inline-block;
 }
 .widget-tag ul > li > a {
 	display: block;
 	border: 1px solid #ebebeb;
 	color: #555;
 	padding: 0 18px;
 	margin: 0 2px 6px 0;
 	line-height: 29px;
 	font-size: 13px;
 	border-radius: 3px;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .widget-tag ul > li > a:hover{
     background: #eb3e32;
     border-color: #eb3e32;
     color: #fff;
 }
 #Instafeed {
 	padding: 5px;
 }
 #Instafeed > li {
 	display: ;
 	float: left;
 	width: 33.33%;
 	padding: 5px;
 }
 #Instafeed li a img {
 	width: 100%;
 }
 /*----------------------------------------*/
 /*  25.2 Blog Post Img CSS
 /*----------------------------------------*/
 .blog-post-wrapper {
 	overflow: hidden;
     margin: 0 0 40px;
     width: 100%;
 }
 .blog-post-wrapper .post-thumbnail {
 	width: 100%;
 }
 .blog-post-wrapper .postinfo-wrapper {
 	width: 100%;
 	padding: 0;
 	float: right;
 }
 .blog-post-wrapper .postinfo-wrapper .post-header {
 	margin: 30px 0 20px;
 }
 .blog-post-wrapper .post-date {
 	font-size: 14px;
 	font-style: normal;
 }
 .blog-post-wrapper .post-separator {
 	margin: 0 25px;
 }
 .entry-content blockquote {
 	margin: 40px 0 40px 0;
 	border-left: 5px solid #eb3e32;
 	padding: 0 0 0 10px;
 }
 .entry-content blockquote > p{
     font-size: 18px;
     line-height: 26px;
     font-style: italic;
     color: #afafaf;
 }
 .entry-meta-small {
 	border-top: 1px solid #ebebeb;
 	border-bottom: 1px solid #ebebeb;
 	padding: 15px 0;
 	text-transform: uppercase;
 	font-size: 13px;
 	margin: 0 0 30px;
 	color: #808080;
 }
 .blog-post-wrapper .social-sharing {
 	margin-bottom: 30px;
 }
 .relatedposts {
 	float: left;
 	width: 100%;
 }
 .relatedposts > h3 {
 	display: inline-block;
 	font-size: 20px;
 	margin: 0 0 30px;
 	padding: 0 0 20px;
     line-height: 1.35;
 	text-transform: capitalize;
 	font-weight: 700;
 }
 .relatedthumb .image {
 	margin-bottom: 25px;
 }
 .relatedthumb h4 {
 	text-transform: ;
 	font-size: 14px;
 	text-transform: capitalize;
 	font-weight: 700;
 	line-height: 1.35;
 	margin: 0;
 }
 .post-date {
 	font-style: italic;
 	letter-spacing: .5px;
 	font-size: 12px;
 	color: #808080;
 }
 .comments-wrapper {
 	border: 1px solid #ebebeb;
 	padding: 30px;
 	margin-bottom: 30px;
 }
 h3.comments-title,h3.user-comment-title {
 	border-bottom: 1px solid #ebebeb;
 	font-size: 16px;
 	font-weight: 500;
 	margin: 0 0 30px;
 	padding: 0 0 20px;
 }
 .single-reply {
 	overflow: hidden;
 	margin-bottom: 30px;
 }
 .user-comment {
 	padding-left: 30px;
 }
 .comment-author {
 	float: left;
 	width: 7%;
 }
 .comment-info {
 	float: left;
 	width: 90%;
 	margin-left: 15px;
 }
 .comment-author-info {
 	margin: 0 0 15px;
 	color: #808080;
 	line-height: 1;
 	position: relative;
 }
 .comment-admin {
 	color: #363f4d;
 	font-size: 12px;
 	font-weight: 700;
 	display: block;
 }
 .comment-reply {
     position: absolute;
     top: 0;
     right: 0;
 	display: inline-block;
 	background: #ebebeb;
 	border-radius: 3px;
 	box-shadow: none;
 	color: #4c4c4c;
 	display: inline-block;
 	font-size: 12px;
 	font-weight: bold;
 	height: 28px;
 	line-height: 28px;
 	padding: 0 20px;
 	text-shadow: none;
 	text-transform: capitalize;
 	-webkit-transition: all .4s ease-out;
 	-moz-transition: all .4s ease-out;
 	-ms-transition: all .4s ease-out;
 	-o-transition: all .4s ease-out;
 }
 .comment-reply:hover{
     background: #eb3e32;
     color: #fff;
 }
 .comment-author-info span {
 	display: block;
 	font-size: 12px;
 	font-style: italic;
 	margin-top: 10px;
 }
 .comment-form-comment{
     margin-bottom: 10px;
 }
 .comment-input {
 	margin: 0 -10px;
     overflow: hidden;
 }
 .comment-form-author,.comment-form-email,.comment-form-url{
 	float: left;
 	padding: 0 10px;
 	width: 33.3333%;
     margin-bottom: 10px;
 }
 .comment-form-author > input,.comment-form-email > input,.comment-form-url > input{
     border: 1px solid #ebebeb;
 	border-radius: 0;
 	padding-left: 15px;
 	width: 100%;
 	height: 46px;
 }
 .comment-submit {
 	margin-top: 20px;
 	margin-bottom: 10px;
 }
 /*----------------------------------------*/
 /*  25.3 Catagorey Blog CSS
 /*----------------------------------------*/
 .archive-header {
 	border-bottom: 1px solid #ebebeb;
 	margin-bottom: 30px;
 }
 .archive-title {
 	margin: 0 0 10px;
 	font-size: 30px;
 	font-weight: 700;
 	line-height: 1.35;
 	text-transform: capitalize;
 }
 .archive-title span {
 	text-transform: uppercase;
 }
 /*----------------------------------------*/
 /*  26. Service Page CSS
 /*----------------------------------------*/
 .service-title > h4 {
 	font-size: 14px;
 	color: #444444;
 	text-align: left;
 	font-family: Raleway;
 	font-weight: 900;
 	font-style: normal;
 	margin-bottom: 20px;
 }
 .service-content > p {
 	margin-bottom: 30px;
 }
 /*----------------------------------------*/
 /*  26.1 Our Service Area CSS
 /*----------------------------------------*/
 .single-service {
 	overflow: hidden;
 }
 .service-icon {
 	width: 10%;
 	height: 40px;
 	color: #4fc1f0;
 	font-size: 34px;
 	line-height: 40px;
 	text-align: center;
 	padding-top: 10px;
 }
 .service-info {
 	width: 90%;
 	padding-left: 20px;
 }
 .service-info > h3 {
 	font-size: 13px;
 	color: #c6c6c6;
 	text-align: left;
 	font-family: Raleway;
 	font-weight: 700;
 	font-style: normal;
 }
 .service-info > p {
 	margin-bottom: 35px;
 }
 .unlimited-ideas-content {
 	text-align: center;
 	padding-top: 180px;
 	padding-right: 80px;
 	padding-left: 80px;
 	padding-bottom: 30px;
 }
 .unlimited-ideas-title > h2 {
 	font-size: 30px;
 	color: #444444;
 	text-align: center;
 	font-family: Raleway;
 	font-weight: 900;
 	font-style: normal;
 }
 .service-btn {
 	display: inline-block;
 	border: 2px solid #2A2A2A;
 	padding: 13px 19px;
 	padding-right: 48px;
     position: relative;
 	color: #2A2A2A;
 	background: transparent;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .unlimited-ideas-btn > a > i.fa {
 	position: absolute;
 	right: 20px;
 	top: 50%;
 	-webkit-transform: translateY(-50%);
 	        transform: translateY(-50%);
 }
 .service-btn:hover{
     border-color: #2A2A2A;
     background: #2A2A2A;
     color: #fff;
 }
 /*----------------------------------------*/
 /*  26.2 Pricing Table CSS
 /*----------------------------------------*/
 .pricing-head > h4 {
 	padding: 20px;
 	text-align: center;
 	background: #f06a60;
 	color: #fff;
 	font-weight: 600;
 	text-transform: uppercase;
 	margin: 0;
 }
 .active-table .pricing-head > h4 {
 	background: #eb3e32;
 }
 .pricing-body {
 	padding: 0 20px 40px 20px;
 	text-align: center;
 	background: #fff;
 	border-radius: 0px 0px 3px 3px;
 	box-shadow: 0 1px #fff inset, 0 1px 3px rgba(34,25,25,0.4);
 }
 .price {
 	font-size: 48px;
 	font-weight: bold;
 	margin: 0;
 	padding: 50px 0;
 	text-transform: uppercase;
     color: #7a7a7a;
 }
 .desc-price {
 	font-size: 12px;
 }
 .pricing-body > ul {
 	padding-left: 15px;
 	margin-bottom: 20px;
 }
 .pricing-body > ul > li {
 	padding: 15px 0;
 	border-bottom: 1px solid #ebebeb;
 	margin-bottom: 10px;
 }
 .pricing-body > ul > li:first-child{
     border-top: 1px solid #ebebeb;
 }
 .pricing-button {
 	border: 1px solid #4c4c4c;
 	padding: 0 20px;
 	line-height: 40px;
 	margin: 40px 0 0;
 	display: inline-block;
 	border-radius: 3px;
 	text-transform: capitalize;
 	font-size: 14px;
 	color: #4c4c4c;
 	height: 42px;
 	-webkit-transition: all 0.3s ease-in-out;
 	transition: all 0.3s ease-in-out;
 }
 .active-table .pricing-button{
     background: #eb3e32;
     border-color: #eb3e32;
     color: #fff;
 }
 .pricing-button:hover{
     background: #EB3E32;
     color: #fff;
     border-color: #EB3E32;
 }
 .active-table .pricing-button:hover{
     background: #4C4C4C;
     border-color: #4C4C4C;
     color: #fff;
 }
 /*----------------------------------------*/
 /*  27. Contact Page CSS
 /*----------------------------------------*/
 .contact-form-title > h2 {
 	font-size: 22px;
 	font-weight: 700;
 	margin-bottom: 35px;
 	line-height: 1.35;
 }
 .first-name, .last-name, .email, .subject,.billing_phone {
 	width: 50%;
 	float: left;
 	margin-bottom: 20px;
 	padding: 0 10px;
 }
 .first-name,.email,.billing_phone{
     padding-left: 0px;
 }
 .first-name > input, .last-name > input, .email > input, .subject > input, .billing_phone > input {
 	border: 1px solid #ebebeb;
 	border-radius: 0;
 	padding-left: 15px;
 	width: 100%;
 	height: 46px;
 }
 .contact-address > ul > li {
 	display: block;
 	padding: 10px 0;
 	border-top: 1px solid #e4e4e4;
 	margin-bottom: 10px;
 }
 .contact-address > ul > li > i.fa {
 	height: 40px;
 	width: 40px;
 	text-align: center;
 	line-height: 40px;
 }
 p.form-messege.success {
 	color: #68B501;
 	margin-top: 10px;
 	border: 1px solid #ebebeb;
 	padding: 5px 10px;
     text-transform: capitalize;
 	font-weight: 600;
 	margin-bottom: 0;
 }
 .form-messege.error {
 	margin-top: 10px;
 	padding: 5px 10px;
 	border: 1px solid #ebebeb;
 	font-weight: 600;
 	text-transform: capitalize;
 	color: #eb3e32;
     margin-bottom: 0;
 }
 /*----------------------------------------*/
 /*  28. Frequently Questions Page CSS
 /*----------------------------------------*/
 .frequently-title > h4 {
 	font-size: 18px;
 	font-weight: 700;
 	line-height: 1.35;
 }
 .frequently-title > p {
 	margin-bottom: 0;
 }
 .panel-group .panel {
 	margin-bottom: 10px;
 	border-radius: 0;
 	border: 1px solid #ebebeb;
 }
 .panel.panel-default.active{
     border: 1px solid #EB3E32;
 }
 .panel-default > .panel-heading {
 	color: #7a7a7a;
 	background-color: #f8f8f8;
 	padding: 0;
 }
 .panel-title > a {
 	display: block;
 	padding: 15px 30px 15px 25px;
 	position: relative;
 }
 .panel-title a:after {
 	position: absolute;
 	content: "\f068";
 	right: 15px;
 	top: 50%;
 	-webkit-transform: translateY(-50%);
 	        transform: translateY(-50%);
 	font-family: FontAwesome;
 	font-size: 12px;
 	color: #7a7a7a;
 }
 .panel-title a.collapsed:after{
     content: "\f067"
 }
 .panel-body {
 	border-top: 1px solid #ebebeb;
 }
 /*----------------------------------------*/
 /*  29. Error 404 Page CSS
 /*----------------------------------------*/
 .error-404-area {
 	border-top: 1px solid #f0f0f0;
 	text-align: center;
 }
 .search-form-wrapper > h1 {
 	font-size: 200px;
 	font-weight: 900;
 	color: #eb3e32;
 	line-height: 1.1;
 	margin: 0 0 30px;
 	letter-spacing: 10px;
 }
 .search-form-wrapper > h2 {
 	color: #4c4c4c;
 	font-size: 35px;
 	text-transform: uppercase;
 	font-weight: 700;
 }
 .error-message > p {
 	font-size: 22px;
 	width: 60%;
 	text-align: center;
 	color: #4c4c4c;
 	margin: 20px auto 30px;
 	font-weight: 300;
 }
 .form-input {
 	position: relative;
 	width: 450px;
 	margin: 0 auto;
 	text-align: center;
 }
 .form-input > input {
 	background: #f8f8f8;
 	border: 1px solid #e9e9e9;
 	border-radius: 30px;
 	height: 45px;
 	margin: 0 auto;
 	width: 450px;
 	padding-left: 20px;
 	padding-right: 80px;
 }
 .form-input > button {
 	background: none;
 	border: 0;
 	color: #4f4f4f;
 	font-size: 18px;
 	height: 100%;
 	position: absolute;
 	right: 0;
 	top: 0;
 	width: 50px;
     z-index: 99;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
 }
 .form-input > button:hover{
     color: #EB3E32;
 }
 .back-to-home a {
 	background: #eb3e32;
 	border-radius: 35px;
 	box-shadow: none;
 	color: #fff;
 	display: inline-block;
 	font-size: 12px;
 	font-weight: 400;
 	height: 40px;
 	line-height: 40px;
 	margin-top: 60px;
 	padding: 0 30px;
 	text-shadow: none;
 	text-transform: uppercase;
 	-webkit-transition: all .3s ease;
 	transition: all .3s ease;
 	white-space: nowrap;
 }
 .back-to-home a:hover{
     background: #d52115;
 }

 .download_img {
 	width: 150px;
 	opacity: 0.8;
 }

 .download_img:hover {
 	opacity: 1;
 }

 /*#slider img {
 	height: 420px;
 }*/

 #slider .owl-stage-outer, #mobile_slider .owl-stage-outer{
 	border: 1px solid #e6e6e6;
 }

 #slider .owl-prev, #mobile_slider .owl-prev{
   top: 50%;
 	left: 20px;
   font-size: 40px;
   color: #f8b831;
 }

 #slider .owl-prev:after, #mobile_slider .owl-prev:after{
 	display: none;
 }

 #slider .owl-next, #mobile_slider .owl-next {
   top: 50%;
 	right: 20px;
   font-size: 40px;
   color: #f8b831;
 }

 .payment_mode {
 	text-align: center;
 }

 .payment_mode img {
 	width: 100px;
 }

 .payment_mode .payment_mode_container {
 	padding: 10px;
 }

 .payment_mode .payment_mode_container:hover {
 	background-color: #eb3e32;
 }

 .payment_mode .selected {
 	background-color: #eb3e32;
   border: 1px solid #eb3e32;
 	border-radius: 4px;
 	box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
 	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
 }

 .checkout hr {
 	margin-top: 20px;
 	margin-bottom: 20px;
 }

 .mandatory {
 	color: #eb3e32;
 }

 #new_address_modal input, #edit_address_modal input {
 	border-radius: 2px;
 }

 #new_address_modal #pick_from_map, #edit_address_modal #pick_from_map {
 	font-size: 12px;
 	color: #EB3E32;
 	cursor: pointer;
 }

 #map_container {
 	background: rgba(37, 30, 30, 0.6);
 }

 #slider .owl-stage-outer {
 	border: none;
 }

 .slot-btn {
 	font-size: 13px;
 	color: #000;
 	background: transparent;
 	border: 1px solid #CCC;
 	width: 100%;
 	margin-bottom: 20px;
 }

 .slot-btn.active {
 	background: #FEBE10;
 	box-shadow: none;
 }

 .pointer {
 	cursor: pointer;
 }

 .powered-by-img i {
 	font-size: 12px;
 }

 .powered-by-img img {
 	height: 10px;
 }

 .powered-by-img {
 	opacity: 0.5;
 }

 .powered-by-img:hover {
 	opacity: 1;
 }

 .error-404-area h1 {
 	color: #f8b831;
 }

 .page {
 	background: #FFF;
 	padding: 35px;
 	margin-bottom: 20px;
 }

 .owl-item .single-product, .owl-item .single-product3 {
 	border: 1px solid #CCC;
 	background: #FFF;
  border-radius: 5px !important;
  transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  min-height: 250px;
 }

.owl-item .single-product:hover, .owl-item .single-product3:hover {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10), 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10), 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

 .owl-item .single-product img, .owl-item .single-product3 img {
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
 }

 #side_menu li a {
 	color: #000;
 }

 #side_menu .img-containter img {
 	width: 30px;
 	margin: auto;
 }

 #side_menu h6 {
 	margin-top: 10px;
 }

 #side_menu .col-xs-4 {
 	text-align: center;
 }


 /*Laptop Device :1200*/
 @media (min-width: 1200px) and (max-width: 1500px){
 .mega-menu {
 	width: 640px;
 }
 .main-menu li:last-child ul.dropdown {
 	left: auto;
     right: 0;
 }

 }
 /* Normal desktop :992px. */
 @media (min-width: 992px) and (max-width: 1199px) {
 /*index page css*/
 .search-box-area {
 	margin: 35px 0px 35px 15px;
 }
 .mini-cart-area {
 	margin-left: 10px;
 }
 .header-top-menu > ul > li,.header-top-menu > ul > li > a,select, select.form-control,.search-box input {
 	font-size: 10px;
 }
 .main-menu li:last-child ul.dropdown {
 	left: auto;
     right: 0;
 }
 .mega-menu {
 	width: 550px;
 }
 .single-count {
 	width: 40px;
 	padding-top: 25px;
     font-size: 12px;
 }
 .section-title1 h3,.main-container .title1 h3 {
 	font-size: 12px;
 }
 .single-brand.img-full {
 	padding: 15px;
 }
 .footer-content > p,.contact > p,.contact > p > label,.footer-info > li > a,.footer-title > h3 {
 	font-size: 12px;
 }
 .contact > p {
 	line-height: 20px;
 	margin-bottom: 10px;
 }
 .footer-info > li > a {
 	line-height: 24px;
 }
 .news-lettar-content > p {
 	font-size: 12px;
 }
 .socil-icon > li {
 	margin: 10px 5px 0 0;
 }
 /*home 2 css*/
 .category-menu-list > ul > li > a, .cat-dropdown > li > a {
 	height: 36px;
 	line-height: 36px;
 }
 .category-menu-list ul > li span.fa {
 	padding-top: 10px;
 }
 .home-3 .main-menu > li > a, .home-7 .main-menu > li > a {
 	padding: 17px 17px;
 }
 .home-3 .mega-menu,.home-7 .mega-menu {
 	width: 550px;
 	padding: 45px 30px;
 }
 .home-3 .slider-text > h5,.home-7 .slider-text > h5 {
 	font-size: 12px;
 }
 .home-3 .slider-text > h1,.home-7 .slider-text > h1 {
 	font-size: 28px;
 	line-height: 28px;
 }
 .home-3 .slider-text > h1 > span,.home-7 .slider-text > h1 > span {
 	font-size: 36px;
 	line-height: 36px;
 }
 .home-3 .slider-text > h4,.home-7 .slider-text > h4 {
 	font-size: 12px;
 	margin: 15px 0;
 }
 .home-3 .slider-text > h4 > span,.home-7 .slider-text > h4 > span {
 	font-size: 20px;
 	line-height: 20px;
 }
 .home-3 .nivo-controlNav,.home-7 .nivo-controlNav {
 	bottom: 0;
 }
 .home-4 .slider-text > h1 {
 	font-size: 38px;
 	line-height: 38px;
 }
 .home-4 .slider-text > h4 {
 	margin: 18px 0;
 }
 .home-4 .slider-text > h4 {
 	font-size: 12px;
 	margin: 15px 0;
 }
 .home-4 .slider-text > h4 > span {
 	font-size: 16px;
 }
 .home-6 .slider-text > h4 > span {
 	font-size: 26px;
 }
 /*about page css*/
 .all-progressbar {
 	padding-left: 100px;
 	padding-right: 100px;
 }
 .progress-title > h2 {
 	font-size: 22px;
 }
 /*services page css*/
 .service-content > p,.service-info > p,.unlimited-ideas-description > p {
 	font-size: 12px;
 }
 .unlimited-ideas-content {
 	padding-top: 30px;
 }
 .unlimited-ideas-description.mtb-60 {
 	margin: 30px 0;
 }
 /*frequently-questions page css*/
 .frequently-title > p {
 	font-size: 12px;
 }
 /*contact page css*/
 .contact-form-title > h2,.your-order-title > h3,.checkout-title > h3  {
 	font-size: 18px;
 }
 /*checkout page css*/
 .coupon-accordion > h3,.form-fild > p > label,.login-form p,.login-submit label span,.lost-password > a,.create-acc label,.ship-fild label,.payment_method_cheque-li label,.checkout-payment li label,.pay-box.payment_method_paypal p,.wishlist-btn.shopping-btn,.form-button,.comment {
 	font-size: 12px;
 }
 /*blog page css*/
 .entry-summary > p{
     font-size: 12px;
     margin-bottom: 15px;
 }
 .sidebar-menu > li, .recent-menu > li, .archive-menu > li, .product-categories > li {
 	font-size: 12px;
 }
 .archive-title {
 	font-size: 22px;
 }
 /*blog post img page css*/
 .entry-content p,.comment-info p,.contact-form p,.comment-form-comment label,.comment-input label {
 	font-size: 12px;
 }
 .entry-content blockquote {
 	margin: 25px 0 25px 0;
 }
 /*shop page css*/
 .item-col2 a.button.add-btn {
 	padding: 0 20px;
 }
 .product-action > li {
 	margin-right: 0px;
 }
 .show-result p,.toolbar-select,.order-by {
 	font-size: 12px;
 }
 .widget-shop-title, .widget-compare-title, .widget-shop-tag-title,.product-categories > li > a,.sidebar-menu > li > a, .recent-menu > li > a, .archive-menu > li > a, .brand-menu > li,.compare-menu > li > a,.product-discription > p {
 	font-size: 12px;
 }
 .product-discription > p {
 	margin-bottom: 15px;
 }
 /*single product page css*/
 .product-title {
 	font-size: 14px;
 	margin-bottom: 10px;
 }
 .product-rating,.single-product-price {
 	margin-bottom: 10px;
 }
 .product-description > p,.quantity label,.quantity input,.quantity-button,.product-meta,.description-content p,.comment-reply-title,.description p,.comment-notes,.comment-form-rating label,.review-comment-form-author label,.review-comment-form-email label {
 	font-size: 12px;
 }
 .single-product-sharing > ul > li {
 	margin-right: 5px;
 }
 .review-comment > h2 {
 	font-size: 16px;
 }
 }
 /* Tablet desktop :768px. */
 @media (min-width: 768px) and (max-width: 991px) {
 /*index page css*/
 .header-top-menu > ul > li {
 	padding-right: 10px;
 	margin-right: 10px;
 	font-size: 10px;
 }
 .header-top-menu > ul > li > a,.product-price > span.old-price,.section-title2 h3 {
 	font-size: 10px;
 }
 .search-box-area {
 	margin: 35px 0px 35px 0px;
 }
 .mini-cart-area {
 	margin-left: 20px;
 }
 .search-box input,select, select.form-control {
 	font-size: 10px;
 }
 .search-box input {
     padding: 0 70px 0 20px;
 }
 .search-box button {
 	width: 55px;
 	font-size: 18px;
 }
 .select-area {
 	width: 40%;
 }
 .search-box {
 	width: 60%;
 }
 .main-menu > li > a {
 	padding: 20px 15px;
 }
 .main-menu > li > a,.mega-menu > li > ul > li > a {
 	font-size: 10px;
 }
 .mega-menu > li > ul > li > a {
 	line-height: 18px;
 }
 .dropdown {
 	width: 200px;
 }
 .main-menu li:last-child ul.dropdown{
     left: auto;
     right: 0;
 }
 .mega-menu {
 	width: 450px;
 	padding: 45px 30px;
 }
 .header-sticky.sticky .main-menu-area {
 	padding: 0;
 }
 .cat-mega-menu {
 	width: 560px;
 }
 .slider-text > h5 {
 	font-size: 12px;
 	line-height: 20px;
 }
 .slider-text > h1 {
 	font-size: 36px;
 	line-height: 36px;
 }
 .slider-text > h4 {
 	font-size: 14px;
 	margin: 15px 0;
 }
 .nivo-controlNav {
 	bottom: 0px;
 }
 .col-3 {
 	width: 50%;
 }
 .all-about .col-3 .single-about .block-wrapper2:nth-child(2) .single-about::after{
     display: none;
 }
 .section-title1 h3,.about-content h5,.product-tab > ul > li > a,.rating,.footer-content > p,.contact > p,.contact > p > label,.footer-title > h3,.footer-info > li > a,.copyright-text {
 	font-size: 12px;
 }
 .home-3 .count-down-box .count-box .pro-countdown .single-count,
 .home-7 .count-down-box .count-box .pro-countdown .single-count {
 	width: 40px;
 	height: 60px;
 }
 .product-action > li {
 	margin-right: 0px;
 }
 .product-content > h2 {
     margin-bottom: 10px;
     font-size: 11px;

 }
 .product-tab {
 	right: 50px;
 }
 a.button.add-btn.big {
 	padding: 0 5px;
 	bottom: 27px;
 }
 .single-categories {
 	margin-bottom: 30px;
 }
 .single-brand {
 	padding: 15px;
 }
 .footer-top-area .row [class*="col-"]:nth-child(2n+1) {
     clear: both;
 }
 .single-footer,.copyright-text,.payment-img.text-right {
 	text-align: left;
 }
 .footer-info > li > a {
 	line-height: 22px;
 }
 .footer-title {
 	margin-top: 20px;
 }
 .footer-content > a {
 	float: none;
 	display: inline-block;
 	width: auto;
 }
 .news-lettar-content {
 	margin-bottom: 20px;
 }
 .copyright-text > p {
 	margin-bottom: 10px;
     font-size: 12px;
 }
 #myModal .modal-dialog {
 	margin: 8% auto;
 	min-height: 300px;
 	padding: 20px;
 	width: 700px;
 }
 /*home-2 css*/
 .category-menu-list > ul > li > a, .cat-dropdown > li > a {
 	height: 26px;
 	line-height: 26px;
 	font-size: 12px;
 }
 .category-menu-list ul > li span.fa {
 	padding-top: 6px;
 	margin-right: 10px;
 }
 .home-2 .our-blog-des > p {
 	margin-bottom: 10px;
 	font-size: 12px;
 }
 .home-2 .blog-post-date {
 	float: none !important;
 	text-align: ;
 	display: block;
 }
 .home-2 .our-blog {
 	margin-bottom: 20px;
 }
 .home-3 .main-menu > li > a, .home-7 .main-menu > li > a {
 	color: #363f4d;
 	padding: 12px 10px;
 }
 .home-3 .main-menu li:last-child ul.dropdown,.home-7 .main-menu li:last-child ul.dropdown {
 	left: auto;
 	right: 0;
 }
 .home-7 .main-menu > li > a{
     color: #fff;
 }
 .home-3 .dropdown, .mega-menu, .home-7 .dropdown, .mega-menu {
 	left: -35px;
 }
 .home-3 .main-menu > li.new::before,.home-3 .main-menu > li.hot::before,.home-7 .main-menu > li.new::before,.home-7 .main-menu > li.hot::before {
 	width: 35px;
 	height: 15px;
 	line-height: 15px;
 }
 .home-3 .main-menu > li.new::after,.home-3 .main-menu > li.hot::after,.home-7 .main-menu > li.new::after,.home-7 .main-menu > li.hot::after {
 	top: 20px;
 	right: 2px;
 }
 .home-3 .category-heading > h2,.home-7 .category-heading > h2 {
 	height: 50px;
 	line-height: 50px;
 	margin: 0;
 }
 .home-3 .category-menu-list > ul > li > a,.home-3 .cat-dropdown > li > a,.home-7 .category-menu-list > ul > li > a,.home-7 .cat-dropdown > li > a {
 	height: 35px;
 	line-height: 35px;
 }
 .home-7 .category-menu-list ul > li span.fa,.home-7 .category-menu-list ul > li span.fa {
 	padding-top: 10px;
 	margin-right: 10px;
 }
 .home-3 .slider-text > h1,.home-7 .slider-text > h1 {
 	font-size: 24px;
 	line-height: 24px;
 }
 .home-3 .slider-text > h1 > span,.home-7 .slider-text > h1 > span {
 	font-size: 28px;
 	line-height: 28px;
 }
 .home-3 .slider-text > h4 > span,.home-7 .slider-text > h4 > span {
 	font-size: 16px;
 	line-height: 16px;
 }
 .home-3 .slider-text > h4,.home-7 .slider-text > h4 {
 	margin: 10px 0;
 	font-size: 10px;
 }
 .home-3 a.button,.home-7 a.button {
 	line-height: 40px;
 	padding: 0 20px;
 }
 .home-3 .hot-deal-product-des > p,.home-7 .hot-deal-product-des > p {
 	font-size: 10px;
 	margin-bottom: 5px;
 	line-height: 16px;
 }
 .home-3 .single-count,.home-7 .single-count {
 	width: 40px;
 	height: 60px;
     font-size: 12px;
 }
 .home-4 .slider-text > h1 {
 	font-size: 24px;
 	line-height: 24px;
 }
 .home-4 .slider-text > h4 {
 	margin: 10px 0;
 	font-size: 12px;
 }
 .home-4 .slider-text > h4 > span {
 	font-size: 22px;
 }
 .home-4 .slider-button a.button {
 	padding: 0 20px;
 }
 .home-6 .slider-text > h5 {
 	font-size: 18px;
 }
 .home-6 .slider-text > h1 {
 	font-size: 24px;
 	line-height: 24px;
 }
 .home-6 .slider-text > h4 {
 	margin: 10px 0;
 }
 .home-6 .slider-text > h4 > span {
 	font-size: 24px;
 }
 .home-6 .slider-button a.button {
 	padding: 0 20px;
 }
 /*about page css*/
 .breadcrumbs > ul > li {
 	font-size: 12px;
 }
 .heading-banner-title > h1 {
 	font-size: 24px;
 }
 .counter-up-area .col-3 {
 	width: 50%;
 }
 .all-progressbar {
 	padding-left: 25px;
 	padding-right: 25px;
 }
 .progress-title > h2 {
 	font-size: 24px;
 }
 /*service page css*/
 .service-content > p,.breadcrumbs > ul > li {
 	font-size: 12px;
 }
 .service-title > h4 {
 	font-size: 12px;
 	margin-bottom: 10px;
 }
 .unlimited-ideas-content {
 	padding-top: 30px;
 }
 .unlimited-ideas-description > p {
 	font-size: 12px;
 }
 .unlimited-ideas-description {
 	margin: 30px 0;
 }
 /*frequently-questions page css*/
 .frequently-title > h4 {
 	font-size: 16px;
 }
 .frequently-title > p {
 	font-size: 12px;
 }
 .panel-title {
 	font-size: 14px;
 }
 .panel-body {
 	font-size: 12px;
 }
 /*contact page css*/
 .contact-form-title > h2 {
 	font-size: 18px;
 }
 .contact-address-info {
 	margin-top: 30px;
 }
 .contact-description {
 	margin: 25px 0;
 }
 .contact-description > p,.woring-hours > p,.contact-address > ul > li {
 	font-size: 12px;
 }
 .contact-address > ul > li {
 	padding: 5px 0;
 	margin-bottom: 5px;
 }
 /*my account page css*/
 .form-fild > p > label,.login-submit label,.lost-password > a {
 	font-size: 12px;
 }
 .form-button, .readmore-button, .price-button, .compare-btn {
 	font-size: 12px;
 }
 /*shopping cart page css*/
 .shopping-cart-table table tr td,.wishlist-btn.shopping-btn,.update-btn,.shopping-cart-total > h2,.shop-table tr td,.shop-table tr td span,.proceed-to-checkout {
 	font-size: 12px;
 }
 /*contact page css*/
 .contact-form-title > h2,.your-order-title > h3,.checkout-title > h3  {
 	font-size: 18px;
 }
 /*checkout page css*/
 .coupon-accordion > h3,.form-fild > p > label,.login-form p,.login-submit label span,.lost-password > a,.create-acc label,.ship-fild label,.payment_method_cheque-li label,.checkout-payment li label,.pay-box.payment_method_paypal p,.wishlist-btn.shopping-btn,.form-button {
 	font-size: 12px;
 }
 /*blog page css*/
 .entry-summary > p{
     font-size: 12px;
     margin-bottom: 15px;
 }
 .sidebar-menu > li, .recent-menu > li, .archive-menu > li, .product-categories > li {
 	font-size: 12px;
 }
 .archive-title {
 	font-size: 22px;
 }
 /*blog post img page css*/
 .entry-content p,.comment-info p,.contact-form p,.comment-form-comment label,.comment-input label {
 	font-size: 12px;
 }
 .entry-content blockquote {
 	margin: 25px 0 25px 0;
 }
 .relatedthumb:last-child{
     margin-bottom: 10px;
 }
 /*shop page css*/
 .item-col2 a.button.add-btn {
 	padding: 0 20px;
 }
 .product-action > li {
 	margin-right: 0px;
 }
 .show-result p,.toolbar-select,.order-by,.product-discription > p {
 	font-size: 12px;
 }
 .product-content-2 > h2,.product-discription > p,.product-price {
 	margin-bottom: 10px;
 }
 /*single product page css*/
 .product-title {
 	font-size: 14px;
 	margin-bottom: 10px;
 }
 .product-rating,.single-product-price {
 	margin-bottom: 10px;
 }
 .product-description > p,.quantity label,.quantity input,.quantity-button,.product-meta,.description-content p,.comment-reply-title,.description p,.comment-notes,.comment-form-rating label,.review-comment-form-author label,.review-comment-form-email label {
 	font-size: 12px;
 }
 .single-product-sharing > ul > li {
 	margin-right: 5px;
 }
 .review-comment > h2 {
 	font-size: 16px;
 }
 /*404 Error page css*/
 .search-form-wrapper > h1 {
 	font-size: 100px;
 	line-height: 100px;
 }
 .search-form-wrapper > h2 {
 	font-size: 20px;
 }
 .error-message > p {
 	font-size: 16px;
 }
 .form-input,.form-input > input {
 	width: 300px;
 }
 }


 /* small mobile :320px. */
 @media (max-width: 767px) {
 .container {width:320px}
 .col-5 {
 	width: 100%;
 }
 /*index page css*/
 .mobile-menu .mean-nav > ul {
 	height: 220px;
 	overflow-y: auto;
 }
 .header-top-menu > ul > li,.header-top-menu > ul > li > a,.about-content p,.news-lettar-content > p {
 	font-size: 10px;
 }
 .header-top-menu {
 	text-align: center;
 }
 .logo {
 	text-align: center;
 	padding: 20px 0;
 }
 .search-box-area{
     margin: 0;
 }
 .select-area,.main-menu-area,.header-sticky.sticky,.single-about::after,.single-categories::after {
 	display: none;
 }
 .search-box {
 	width: 100%;
 	border-radius: 30px;
 }
 .search-box input {
 	border-radius: 30px;
 }
 .mini-cart-area {
 	margin: 0;
 	text-align: center;
 }
 .mini-cart-area > ul > li {
 	padding: 20px 0;
 	text-align: center;
 }
 .cart-total {
 	right: -72px;
 	font-size: 12px;
 }
 .cart-dropdown {
 	width: 280px;
 	right: -84px;
 	z-index: 9999999999999;
 }
 .cart-dropdown::after {
 	right: 40%;
 }
 .cart-content > h4 > a {
     font-size: 12px;
 }
 .slider-text {
 	top: -15px;
 }
 .slider-text > h5 {
 	font-size: 8px;
     line-height: 10px;
 }
 .slider-text > h1 {
 	font-size: 14px;
 	line-height: 18px;
 }
 .slider-text > h4 {
 	font-size: 12px;
 	margin: 0px 0;
 	margin-bottom: 10px;
 }
 .slider-text > h4 > span {
 	font-size: 16px;
 	line-height: 16px;
 }
 a.button {
 	font-size: 8px;
 	line-height: 23px;
 	padding: 1px 10px 0;
 }
 .nivo-controlNav {
 	bottom: -8px;
 }
 .home-3 .slider-text > h5,.home-7 .slider-text > h5{
      display: none;
 }
 .home-3 .slider-text,.home-7 .slider-text{
    top: 0;
 }
 .home-3 .nivo-controlNav,.home-7 .nivo-controlNav{
     bottom: 0;
     padding: 0;
 }
 .home-3 .slider-text > h4, .home-7 .slider-text > h4 {
 	margin-bottom: 5px;
 	margin-top: 5px;
 }
 .home-3 .nivo-controlNav,.home-7 .nivo-controlNav {
 	display: none;
 }
 .all-about {
 	padding: 20px 0;
 }
 .col-3 {
 	width: 100%;
 }
 .single-about {
 	padding: 5px 0;
 }
 .section-title1-border {
 	margin: 0 0 20px;
 }
 .about-content h5,.section-title1 h3,.product-tab > ul > li > a,.product-content > h2,.section-title2 h3,.footer-content > p,.contact > p,.contact > p > label,.footer-info > li > a,.footer-title > h3,.news-lettar-content > p > label {
 	font-size: 12px;
 }
 .single-product {
 	margin-top: 35px;
 }
 .product-tab {
 	top: -15px;
 	right: auto;
 	z-index: 999;
 	left: 0;
 }
 .owl-nav > div {
 	top: -50px;
 	right: 36px;
 }
 .product-tab > ul > li {
 	padding: 0 3px;
 }
 .single-product.style-2.list,.single-product.hot-deal {
 	margin: 0;
 }
 .offer-img-area .col-md-6:first-child .single-offer {
 	margin-bottom: 10px;
 }
 .single-categories {
 	text-align: left;
 	text-transform: capitalize;
 	margin-bottom: 30px;
 }
 .hot-categories .col-md-3:last-child .single-categories{
     margin-bottom: 0;
 }
 .right-side-product.pb-50,.offer-img-area.pb-50 {
 	padding-bottom: 100px;
 }
 .new-arrivals-product.mb-50 {
 	margin-bottom: 100px;
 }
 .right-side-our-blog {
 	padding-bottom: 80px;
 }
 .all-slide-product .col-md-4:not(:first-child) .col-md-12 .section-title2 {
 	margin-top: 30px;
 }
 .single-brand.img-full {
 	padding: 0;
 }
 .single-footer {
 	text-align: left;
 }
 .footer-info > li > a{
     line-height: 20px;
 }
 .footer-title {
 	margin-bottom: 20px;
 	margin-top: 15px;
 }
 .socil-icon > li {
 	margin: 10px 2px 0 0;
 }
 .news-lettar-content {
 	margin-bottom: 20px;
     padding-left: 65px;
 }
 .news-latter-area {
 	padding: 40px 20px;
 }
 .copyright-text > p {
 	margin-bottom: 10px;
 	font-size: 10px;
 	text-align: center;
 }
 #myModal .modal-dialog {
 	width: 300px;
 }
 .product-info {
 	text-align: center;
 }
 .quantity.modal-quantity label {
 	font-size: 12px;
 }
 .quantity input {
 	width: 40px;
 }
 .social-share h3 {
 	font-size: 18px;
 }
 .socil-icon2 > li {
 	margin-right: 0px;
 }
 .header-top-menu > ul > li, .header-top-menu > ul > li > a, .about-content p, .news-lettar-content > p {
 	line-height: 16px;
 }
 /*home 2 css*/
 .category-heading > h2 {
 	height: 40px;
 	line-height: 40px;
 	margin-bottom: 10px;
 }
 .category-menu-list {
 	display: none;
 }
 .category-menu-list > ul {
 	height: 220px;
 	overflow-y: auto;
 }
 .cat-dropdown, .cat-mega-menu,.category-menu-list > ul > li.right-menu > a::after {
 	display: none;
 }
 .home-2 .desktop-television-product {
 	margin-top: 20px;
 }
 .home-3 .header-bottom-area {
 	border-top: 0;
 }
 .home-3 .slider-text > h5{
      display: none;
 }
 .home-3 .slider-text{
    top: 0;
 }
 .home-3 .nivo-controlNav{
     bottom: 0;
     padding: 0;
 }
 .home-3 .slider-text > h4 {
 	margin-bottom: 5px;
 }
 .home-3 .nivo-controlNav {
 	display: none;
 }
 .home-3 .category-heading > h2,.home-7 .category-heading > h2 {
 	height: 40px;
 	line-height: 40px;
 	margin-bottom: 10px;
 	margin-top: 10px;
 }
 .home-3 .header-bottom-area.header-sticky.sticky,
 .home-7 .header-bottom-area.header-sticky.sticky {
 	display: block;
 	position: static;
 	animation: none;
 	text-align: left;
 }
 .home-3 .header-sticky.sticky .col-md-3.col-sm-3, .home-7 .header-sticky.sticky .col-md-3.col-sm-3 {
 	display: block;
 }
 .home-3 .header-sticky.sticky .col-md-9.col-sm-9, .home-7 .header-sticky.sticky .col-md-9.col-sm-9 {
 	display: none;
 }
 .slider-text > h5 {
 	font-size: 10px;
 	line-height: 14px;
 }
 .home-3 .slider-text > h1,.home-7 .slider-text > h1 {
 	font-size: 10px;
 	line-height: 14px;
 }
 .home-3 .slider-text > h1 > span,.home-7 .slider-text > h1 > span {
 	font-size: 12px;
 }
 .home-3 .slider-text > h4,.home-7 .slider-text > h4 {
 	font-size: 8px;
 }
 .home-3 .slider-text > h4 > span,.home-7 .slider-text > h4 > span {
 	font-size: 10px;
 }
 .home-3 .single-product.hot-deal-list .product-img,.home-3 .hot-deal-of-product .product-content,.home-7 .single-product.hot-deal-list .product-img,.home-7 .hot-deal-of-product .product-content,.home-3 .our-blog-img,.home-3 .our-blog-content,.home-4 .our-blog-img,.home-4 .our-blog-content,.home-6 .our-blog-img,.home-6 .our-blog-content,.home-7 .our-blog-img,.home-7 .our-blog-content {
 	float: none;
 	width: 100%;
     text-align: center;
     padding-right: 0;
 }
 .home-3 .product-content > h2.pro-title,.home-4 .product-content > h2.pro-title,.home-6 .product-content > h2.pro-title,.home-7 .product-content > h2.pro-title {
 	text-align: center;
 }
 .home-3 .hot-deal-product-des > p,.home-4 .hot-deal-product-des > p,.home-6 .hot-deal-product-des > p,.home-7 .hot-deal-product-des > p {
 	font-size: 10px;
 	line-height: 14px;
 }
 .home-3 .our-blog-content,.home-4 .our-blog-content,.home-6 .our-blog-content,.home-7 .our-blog-content{
     text-align: left;
     padding-left: 0;
     margin-top: 10px;
 }
 .home-3 .offer-area .col-md-4:not(:last-child) .single-offer,.home-4 .offer-area .col-md-4:not(:last-child) .single-offer,.home-6 .offer-area .col-md-4:not(:last-child) .single-offer,.home-7 .offer-area .col-md-4:not(:last-child) .single-offer {
 	margin-bottom: 10px;
 }
 .slider-wrapper {
 	margin-bottom: 20px;
 }
 .home-4 .slider-text,.home-6 .slider-text {
 	top: 0px;
 }
 .home-4 .slider-text > h4,.home-6 .slider-text > h4 {
 	color: #fff;
     margin-bottom: 10px;
     margin-top: 0;
 }
 .home-4 .slider-button,.home-6 .slider-button {
 	display: block;
 }
 .home-4 .slider-button a.button,.home-6 .slider-button a.button {
 	padding: 0 15px;
 	font-size: 10px;
 	line-height: 35px;
 }
 .home-5 .slider-text > h5 {
 	font-size: 12px;
 	line-height: 12px;
 }
 .home-5 .slider-text > h4 {
 	font-size: 8px;
 	margin-top: 4px;
 }
 .home-6 .slider-text > h5 {
 	font-size: 12px;
 	line-height: 14px;
 }
 .home-3 .count-down-box .count-box .pro-countdown .single-count,
 .home-7 .count-down-box .count-box .pro-countdown .single-count {
 	width: 40px;
 	height: 60px;
 }
 /*about page css*/
 .breadcrumbs > ul > li {
 	font-size: 12px;
 }
 .heading-banner-title > h1 {
 	font-size: 18px;
 }
 .about-us-img, .about-us-img2 {
 	position: static;
 	width: 100%;
 }
 .about-us-content {
 	padding-top: 50px;
 	padding-right: 30px;
 	padding-left: 30px;
 	padding-bottom: 50px;
     float: none;
 	width: 100%;
 }
 .about-us-title > h2 {
 	margin-bottom: 20px;
 	font-size: 18px;
 }
 .counter-up-area .col-3 {
 	width: 100%;
 }
 .all-progressbar {
 	padding-left: 30px;
 	padding-right: 30px;
 	padding-top: 40px;
 	width: 100%;
 	float: none;
 }
 .progress-title > h2 {
 	font-size: 18px;
 }
 .progress-title {
 	margin-bottom: 20px;
 }
 /*services page css*/
 .service-content > p {
 	margin-bottom: 35px;
 	font-size: 12px;
 }
 .service-title > h4 {
 	margin-bottom: 10px;
 }
 .service-info > p {
 	margin-bottom: 0px;
 	font-size: 12px;
 }
 .unlimited-ideas-content {
 	padding-top: 30px;
 	padding-right: 60px;
 	padding-left: 60px;

 }
 .unlimited-ideas-description > p {
 	font-size: 12px;
 }
 .unlimited-ideas-description {
 	margin: 30px 0;
 }
 /*frequently-questions page css*/
 .frequently-title > h4 {
 	font-size: 14px;
 }
 .frequently-title > p {
 	font-size: 12px;
 	line-height: 20px;
 }
 .panel-title {
 	font-size: 14px;
 }
 .panel-body {
 	font-size: 12px;
 }
 /*protfolio page css*/
 .protfolio-menu > ul > li {
 	padding: 0 16px;
 }
 /*contact page css*/
 .first-name, .last-name, .email, .subject, .billing_phone {
 	width: 100%;
 	float: none;
 	margin-bottom: 20px;
 	padding: 0;
 }
 .contact-address-info {
 	margin-top: 20px;
 }
 .contact-form-title > h2 {
 	font-size: 18px;
 	margin-bottom: 20px;
 }
 .contact-description {
 	margin-bottom: 15px;
 }
 .contact-description > p,.woring-hours > p,.contact-address > ul > li {
 	font-size: 12px;
 }
 .contact-address > ul > li {
 	padding: 5px 0;
 	margin-bottom: 5px;
 }
 /*my account page css*/
 .form-fild > p > label,.login-submit label,.lost-password > a {
 	font-size: 12px;
 }
 .form-button, .readmore-button, .price-button, .compare-btn {
 	font-size: 12px;
 }
 /*wishlist page css*/
 .wishlist-table table thead th, .wishlist-table table tbody tr td,.wishlist-table table tbody tr td.product-remove {
 	width: 100%;
 	text-align: center;
 	border-bottom: 1px solid #ebebeb;
 }
 /*shopping cart page css*/
 .shopping-cart-total {
 	margin-top: 20px;
 }
 .shopping-cart-table table tr td,.wishlist-btn.shopping-btn,.update-btn,.shopping-cart-total > h2,.shop-table tr td,.shop-table tr td span,.proceed-to-checkout {
 	font-size: 12px;
 }
 .shop-table,.shopping-cart-table table {
 	border: 0;
 }
 .wishlist-btn.shopping-btn {
 	float: none;
 }
 .input-copun {
 	margin-bottom: 10px;
 }
 /*checkout page css*/
 .coupon-accordion > h3,.form-fild > p > label,.login-form p,.login-submit label span,.lost-password > a,.create-acc label,.ship-fild label,.payment_method_cheque-li label,.checkout-payment li label,.pay-box.payment_method_paypal p,.wishlist-btn.shopping-btn,.form-button {
 	font-size: 12px;
 }
 .your-order-title > h3,.checkout-title > h3  {
 	font-size: 18px;
 }
 .form-fild.first-name, .form-fild.last-name, .form-fild.billing_phone, .form-fild.email {
 	width: 100%;
 	margin: 0 0 20px;
     float: none;
 }
 .form-fild.company-name, .form-fild.country, .form-fild.billing_address_1, .form-fild.billing_address_2, .form-fild.billing_postcode, .form-fild.billing_city{
     margin: 0 0 20px;
 }
 .coupon .wishlist-btn.shopping-btn {
 	padding: 0 15px;
 }
 .payment_method_paypal-li label {
 	margin: 15px 0;
 }
 .payment_method_paypal-li img {
 	margin: -2px 4px 0 .5em;
 }
 .your-order-table.table-responsive table thead {
 	display: block;
 }
 /*blog page css*/
 .post-thumbnail,.postinfo-wrapper {
 	width: 100%;
 	float: none;
 }
 .postinfo-wrapper {
 	padding: 0;
 }
 .postinfo-wrapper .post-header h1.post-title {
 	font-size: 22px;
 }
 .entry-summary > p {
 	margin-bottom: 15px;
 	font-size: 12px;
 }
 .social-title {
 	display: inline-block;
 	font-size: 10px;
     margin-bottom: 10px;
 }
 .blog-social-icon > li > a {
 	margin-right: 5px;
 }
 .blog-social-icon {
 	margin-bottom: 10px;
 }
 .comment {
 	float: none;
 }
 .archive-title {
 	font-size: 14px;
 }
 /*shop page css*/
 .single-product::after{
     display: none;
 }
 .product-content-2 {
 	text-align: center;
 	font-size: 12px;
 }
 .product-discription > p {
 	font-size: 12px;
 	margin-bottom: 10px;
 }
 .action-btn.big {
 	min-width: 150px;
 }
 /*blog post img page css*/
 .blog-post-wrapper .post-separator {
 	margin: 0 15px;
 }
 .entry-content blockquote > p {
 	font-size: 14px;
 	line-height: 20px;
 }
 .relatedthumb {
 	margin-bottom: 10px;
 }
 .comment-author {
 	width: 25%;
 }
 .comment-info {
 	width: 65%;
 }
 .comment-reply {
 	top: 2px;
 	font-size: 8px;
 	height: 18px;
 	line-height: 18px;
 	padding: 0 10px;
 }
 .comment-info p {
 	font-size: 10px;
 	line-height: 16px;
 }
 .contact-form p,.comment-form-comment label,.comment-input label {
     font-size: 12px;
 }
 .comment-form-author, .comment-form-email, .comment-form-url {
 	float: none;
     width: 100%;
 }
 /*single product css*/
 .single-product-content {
 	margin-top: 20px;
 }
 .product-title {
 	font-size: 14px;
 	margin-bottom: 10px;
 }
 .product-rating,.single-product-price {
 	margin-bottom: 10px;
 }
 .product-description > p,.quantity label,.quantity input,.quantity-button,.product-meta,.description-content p,.comment-reply-title,.description p,.comment-notes,.comment-form-rating label,.review-comment-form-author label,.review-comment-form-email label,.product-rating a,.product-comment-content > p > strong {
 	font-size: 12px;
 }
 .single-product-sharing > ul > li {
 	margin-right: 5px;
 }
 .review-comment > h2 {
 	font-size: 16px;
 }
 .product-nav > a {
 	margin-right: 2px;
 }
 .review-comment {
 	width: 100%;
     padding: 10px;
 }
 .review-comment-form-author input, .review-comment-form-email input {
 	width: 100%;
 }
 .product-comment-content p span {
 	font-size: 10px;
 }
 /*404 Error page css*/
 .search-form-wrapper > h1 {
 	font-size: 100px;
 	line-height: 100px;
 }
 .error-message > p {
 	font-size: 16px;
 	width: 100%;
 }
 .form-input,.form-input > input {
 	width: 100%;
 }
 .widget-title, .widget-shop-title, .widget-compare-title, .widget-shop-tag-title {
 	font-size: 16px;
 }
 .sidebar-menu > li, .recent-menu > li, .archive-menu > li, .product-categories > li,.entry-content p {
 	font-size: 12px;
 }
 #scrollUp {
 	bottom: 30px !important;
 }
 }
 /* Large Mobile :480px. */
 @media only screen and (min-width: 480px) and (max-width: 767px) {
 .container {width:450px}
 .mobile-menu .mean-nav > ul {
 	height: 180px;
 	overflow-y: auto;
 }
 .mini-cart-area {
 	text-align: center;
 	margin: 0;
 }
 .about-content h5, .section-title1 h3, .product-tab > ul > li > a, .product-content > h2, .section-title2 h3, .footer-content > p, .contact > p, .contact > p > label, .footer-info > li > a, .footer-title > h3, .news-lettar-content > p > label {
 	font-size: 14px;
 }
 .category-menu-list > ul {
 	height: 180px;
 	overflow-y: auto;
 }
 .slider-text > h5 {
 	font-size: 12px;
 	line-height: 16px;
 }
 .slider-text > h1 {
 	font-size: 18px;
 	line-height: 20px;
 }
 .slider-text > h4 {
 	font-size: 14px;
 	margin: 5px 0;
 }
 .slider-text > h4 > span {
 	font-size: 18px;
 	line-height: 16px;
 }
 .home-3 .slider-text > h1, .home-7 .slider-text > h1 {
 	font-size: 14px;
 	line-height: 16px;
 }
 .home-3 .slider-text > h1 > span, .home-7 .slider-text > h1 > span {
 	font-size: 16px;
 }
 .home-3 .slider-text > h4 {
 	font-size: 14px;
 }
 .home-4 .slider-button a.button, .home-6 .slider-button a.button {
 	padding: 0 25px;
 	font-size: 12px;
 	line-height: 40px;
 	height: 40px;
 	margin-top: 20px;
 }
 .home-5 .slider-text > h5 {
 	font-size: 14px;
 	line-height: 16px;
 }
 .home-5 .slider-text > h5 {
 	font-size: 14px;
 }
 .home-6 .slider-text > h5 {
 	font-size: 18px;
 	line-height: 18px;
 }
 .home-7 .slider-text > h4{
     font-size: 8px;
 }
 .news-latter-area {
 	padding: 40px 30px;
 }
 }


 .show_on_mobile {
 	display: none !important;
 }

 @media (max-width: 767px) {
   .show_on_mobile {
     display: block !important;
   }

   .hide_on_mobile {
     display: none !important;
   }

 	.first_logo {
 		max-width: 175px !important;
 	}

   .container {
     width: 100%;
   }

   /* SLIDER */
   .slider-wrapper {
     margin-bottom: 0;
   }

   /* NAV ICON */
   .nav_icon a {
     margin-top: 20px;
     display: block;
   }

 	.header-top-menu .popover {
 		max-width: 100%;
 		min-width: 100%;
 		left: 0 !important;
 	}

   /* CATEGORY CONTAINER */
   .category_container .all-about {
     background: #172d45;
   }
   .category_container .col-1 {
     width: 33.33333% !important;
   }

   /* CART ICON */
 	.mini-cart-area > ul > li {
 		padding-top: 10px !important;
 	}

 	#gotoCart .cbadge {
 		position: absolute;
 		font-size: 10px;
 		border-radius: 50%;
 		line-height: 20px;
 		height: 20px;
 		width: 20px;
 		background: #EB3E32;
 		right: 0px;
 		color: #FFF;
 		font-weight: bold;
 		font-style: normal;
 	}

 	/*.cd-cart {
 		width: 95% !important;
 	}*/

   .cd-cart-trigger, .cd-cart {
     bottom: 10%;
     right: 5% !important;
   }

 	.cd-cart .price, .cd-cart h3 a {
 		font-size: 18px;
 	}

 	.product-content > h2 {
 		font-size: 20px;
 	}

 	.product-price > .new-price {
 		font-size: 18px !important;
 	}

 	/* CHECKOUT */
 	.table-responsive {
 		border: none;
 	}

 	.powered-by-img {
 		text-align: center !important;
 	}

 	.why-fipola {
 		margin-top: 0 !important;
 	}

 	.why-fipola::after {
 		height: 75px !important;
 	}

 	.why-fipola::before {
 		display: none;
 	}

 	.bg-product-price {
 		padding-bottom: 0 !important;
 	}

 	.btn-add-to-cart {
 		width: 100%;
 		border-radius: 0 !important;
 		margin-top: 10px !important;
 	}

 	#grid-view .single-product {
 		height: 440px !important;
 	}

  .checkout .proceed-to-checkout {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: -10px;
    z-index: 100;
  }

  .checkout .proceed-to-checkout a.open-modal {
    width: 100%;
    display: block;
    float: none !important;
    text-align: center;
    background: #FFF;
    border-top: 1px solid #CCC;
  }

  .checkout .proceed-to-checkout .checkout-button {
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2em;
  }

 }

 .support_bottom span {
 	font-size: 20px;
   margin-top: 10px;
   display: inline-block;
   font-weight: bold;
 }
