/* See http://code.google.com/p/minify/wiki/CommonProblems#@imports_can_appear_in_invalid_locations_in_combined_CSS_files */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}

/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Forward */
.hvr-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-forward:hover, .hvr-forward:focus, .hvr-forward:active {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

/* Backward */
.hvr-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-backward:hover, .hvr-backward:focus, .hvr-backward:active {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #2098D1;
  color: white;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098D1;
  background-color: #2098d1;
  color: white;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
  background: #2098D1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #2098D1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #2098D1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  vertical-align:top;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:#de730b;
  color:#fff !important;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  vertical-align:top;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: white !important;
}
.hvr-shutter-out-horizontal:hover span, .hvr-shutter-out-horizontal:focus span, .hvr-shutter-out-horizontal:active span {
  color: white !important;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* Shutter Out Horizontal2 */
.hvr-shutter-out-horizontal2 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  vertical-align:top;
}
.hvr-shutter-out-horizontal2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:#fff;
  color:#fff !important;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  vertical-align:top;
}
.hvr-shutter-out-horizontal2:hover, .hvr-shutter-out-horizontal2:focus, .hvr-shutter-out-horizontal2:active {
  color: #333 !important;
}
.hvr-shutter-out-horizontal2:hover span, .hvr-shutter-out-horizontal2:focus span, .hvr-shutter-out-horizontal2:active span {
  color: #333 !important;
}
.hvr-shutter-out-horizontal2:hover:before, .hvr-shutter-out-horizontal2:focus:before, .hvr-shutter-out-horizontal2:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* Shutter Out Horizontal3 */

.hvr-shutter-out-horizontal3{ transition:  all 0.25s; }

.hvr-shutter-out-horizontal3:hover{ color: #FFF; background-color :#de730b;  }


/*
.hvr-shutter-out-horizontal3 {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  vertical-align:top;
    border-radius: 23px 23px 23px 23px;
}


.hvr-shutter-out-horizontal3:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgba(222,115,11,0.75);
  color:#fff !important;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  vertical-align:top;
    border-radius: 23px 23px 23px 23px;
}


.hvr-shutter-out-horizontal3:hover, .hvr-shutter-out-horizontal3:focus, .hvr-shutter-out-horizontal3:active {
  color: #333 !important;
}
.hvr-shutter-out-horizontal3:hover span, .hvr-shutter-out-horizontal3:focus span, .hvr-shutter-out-horizontal3:active span {
  color: #333 !important;
}
.hvr-shutter-out-horizontal3:hover:before, .hvr-shutter-out-horizontal3:focus:before, .hvr-shutter-out-horizontal3:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

*/


/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #2098D1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  color: white;
}
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098D1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent;
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098D1, 0 0 1px transparent;
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px transparent;
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  background: none;
}

/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-ripple-in:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}

/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098D1;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098D1;
  height: 4px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px transparent;
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px transparent;
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  opacity: 1;
}

/* SPEECH BUBBLES */
/* Bubble Top */
.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Bubble Right */
.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

/* Bubble Left */
.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Bubble Float Right */
.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/* Bubble Float Bottom */
.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* ICONS */
/* Icon Back */
.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-left: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-back:before {
  content: "\f137";
  position: absolute;
  left: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
}

/* Icon Forward */
.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-forward:before {
  content: "\f138";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
	50%,
	100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
	75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-down {
  0%,
	50%,
	100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
	75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-down:before {
  content: "\f01a";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-down:hover:before, .hvr-icon-down:focus:before, .hvr-icon-down:active:before {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Up */
@-webkit-keyframes hvr-icon-up {
  0%,
	50%,
	100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
	75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-up {
  0%,
	50%,
	100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
	75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
/* Icon Up */
.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-up:before {
  content: "\f01b";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-up:hover:before, .hvr-icon-up:focus:before, .hvr-icon-up:active:before {
  -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Spin */
.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-spin:before {
  content: "\f021";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.hvr-icon-spin:hover:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:active:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* Icon Drop */
@-webkit-keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51%,
	100% {
    opacity: 1;
  }
}
@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51%,
	100% {
    opacity: 1;
  }
}
/* Icon Drop */
.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-drop:before {
  content: "\f041";
  position: absolute;
  right: 1em;
  opacity: 1;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-drop:hover:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:active:before {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-animation-name: hvr-icon-drop;
  animation-name: hvr-icon-drop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */
.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-fade:before {
  content: "\f00c";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color;
  transition-property: color;
}
.hvr-icon-fade:hover:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:active:before {
  color: #0F9E5E;
}

/* Icon Float Away */
@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
/* Icon Float Away */
.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-float-away:before, .hvr-icon-float-away:after {
  content: "\f055";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
}
.hvr-icon-float-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-float-away:hover:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:active:after {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Sink Away */
@-webkit-keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}
@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}
/* Icon Sink Away */
.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-sink-away:before, .hvr-icon-sink-away:after {
  content: "\f056";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-sink-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-sink-away:hover:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:active:after {
  -webkit-animation-name: hvr-icon-sink-away;
  animation-name: hvr-icon-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Grow */
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow:before {
  content: "\f118";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow:hover:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:active:before {
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */
.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-shrink:before {
  content: "\f119";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-shrink:hover:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:active:before {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* Icon Pulse */
@-webkit-keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse:hover:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:active:before {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Pulse Grow */
@-webkit-keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse-grow:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-grow:hover:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:active:before {
  -webkit-animation-name: hvr-icon-pulse-grow;
  animation-name: hvr-icon-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Pulse Shrink */
@-webkit-keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse-shrink:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-shrink:hover:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:active:before {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Push */
@-webkit-keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-push:before {
  content: "\f006";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-push:hover:before, .hvr-icon-push:focus:before, .hvr-icon-push:active:before {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Pop */
@-webkit-keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-pop:before {
  content: "\f005";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pop:hover:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:active:before {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Bounce */
.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bounce:before {
  content: "\f087";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-bounce:hover:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:active:before {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */
.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-rotate:before {
  content: "\f0c6";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-rotate:hover:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:active:before {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

/* Icon Grow Rotate */
.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow-rotate:before {
  content: "\f095";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow-rotate:hover:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:active:before {
  -webkit-transform: scale(1.5) rotate(12deg);
  transform: scale(1.5) rotate(12deg);
}

/* Icon Float */
.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-float:before {
  content: "\f01b";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-float:hover:before, .hvr-icon-float:focus:before, .hvr-icon-float:active:before {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

/* Icon Sink */
.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-sink:before {
  content: "\f01a";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-sink:hover:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:active:before {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

/* Icon Bob */
@-webkit-keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@-webkit-keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bob:before {
  content: "\f077";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-bob:hover:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:active:before {
  -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Hang */
@-webkit-keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-hang:before {
  content: "\f078";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-hang:hover:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:active:before {
  -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal:before {
  content: "\f061";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Wobble Vertical */
@-webkit-keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-vertical:before {
  content: "\f062";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-vertical:hover:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:active:before {
  -webkit-animation-name: hvr-icon-wobble-vertical;
  animation-name: hvr-icon-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Buzz */
@-webkit-keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz:before {
  content: "\f017";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz:hover:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:active:before {
  -webkit-animation-name: hvr-icon-buzz;
  animation-name: hvr-icon-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Buzz Out */
@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz-out:before {
  content: "\f023";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz-out:hover:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:active:before {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* CURLS */
/* Curl Top Left */
.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-left:hover:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Top Right */
.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Right */
.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Left */
.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

/*# sourceMappingURL=hover.css.map */
.bx-wrapper{position:relative;margin-bottom:60px;padding:0;-ms-touch-action:pan-y;touch-action:pan-y;-moz-box-shadow:0 0 5px #ccc;-webkit-box-shadow:0 0 5px #ccc;box-shadow:0 0 5px #ccc;border:5px solid #fff;background:#fff}.bx-wrapper img{max-width:100%;display:block}.bxslider{margin:0;padding:0}ul.bxslider{list-style:none}.bx-viewport{-webkit-transform:translatez(0)}.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager{position:absolute;bottom:-30px;width:100%}.bx-wrapper .bx-loading{min-height:50px;background:url(css/images/bx_loader.gif) center center no-repeat #fff;height:100%;width:100%;position:absolute;top:0;left:0;z-index:2000}.bx-wrapper .bx-pager{text-align:center;font-size:.85em;font-family:Arial;font-weight:700;color:#666;padding-top:20px}.bx-wrapper .bx-pager.bx-default-pager a{background:#666;text-indent:-9999px;display:block;width:10px;height:10px;margin:0 5px;outline:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.bx-wrapper .bx-pager.bx-default-pager a.active,.bx-wrapper .bx-pager.bx-default-pager a:focus,.bx-wrapper .bx-pager.bx-default-pager a:hover{background:#000}.bx-wrapper .bx-controls-auto .bx-controls-auto-item,.bx-wrapper .bx-pager-item{display:inline-block;vertical-align:bottom}.bx-wrapper .bx-pager-item{font-size:0;line-height:0}.bx-wrapper .bx-prev{left:10px;background:url(css/images/controls.png) 0 -32px no-repeat}.bx-wrapper .bx-prev:focus,.bx-wrapper .bx-prev:hover{background-position:0 0}.bx-wrapper .bx-next{right:10px;background:url(css/images/controls.png) -43px -32px no-repeat}.bx-wrapper .bx-next:focus,.bx-wrapper .bx-next:hover{background-position:-43px 0}.bx-wrapper .bx-controls-direction a{position:absolute;top:50%;margin-top:-16px;outline:0;width:32px;height:32px;text-indent:-9999px;z-index:9999}.bx-wrapper .bx-controls-direction a.disabled{display:none}.bx-wrapper .bx-controls-auto{text-align:center}.bx-wrapper .bx-controls-auto .bx-start{display:block;text-indent:-9999px;width:10px;height:11px;outline:0;background:url(css/images/controls.png) -86px -11px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-start.active,.bx-wrapper .bx-controls-auto .bx-start:focus,.bx-wrapper .bx-controls-auto .bx-start:hover{background-position:-86px 0}.bx-wrapper .bx-controls-auto .bx-stop{display:block;text-indent:-9999px;width:9px;height:11px;outline:0;background:url(css/images/controls.png) -86px -44px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-stop.active,.bx-wrapper .bx-controls-auto .bx-stop:focus,.bx-wrapper .bx-controls-auto .bx-stop:hover{background-position:-86px -33px}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager{text-align:left;width:80%}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto{right:0;width:35px}.bx-wrapper .bx-caption{position:absolute;bottom:0;left:0;background:#666;background:rgba(80,80,80,.75);width:100%}.bx-wrapper .bx-caption span{color:#fff;font-family:Arial;display:block;font-size:.85em;padding:10px}/*!
 * 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;-webkit-text-size-adjust:100%;-ms-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:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}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{padding:0;border: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-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{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 td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(fonts/glyphicons-halflings-regular.eot);src:url(fonts/glyphicons-halflings-regular.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:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro: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}:after,:before{-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}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;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}.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;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[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,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,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,.h5,.h6,h4,h5,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{padding:.2em;background-color:#fcf8e3}.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:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[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 ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer: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,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;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{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{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-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{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-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{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-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{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>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{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>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{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;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@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>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border: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:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{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=checkbox]:focus,input[type=radio]: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,.075);box-shadow:inset 0 1px 1px rgba(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,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.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{background-color:transparent;border:0}.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-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.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],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left: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}select[multiple].input-sm,textarea.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 select[multiple].form-control,.form-group-sm textarea.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}select[multiple].input-lg,textarea.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 select[multiple].form-control,.form-group-lg textarea.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}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.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 .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.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;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}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.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{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.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{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.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{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.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{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.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{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.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{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.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{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.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{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.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{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.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{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.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{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.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;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:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{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=button].btn-block,input[type=reset].btn-block,input[type=submit].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-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.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}.dropdown,.dropup{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;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.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:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(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-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-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-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;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=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{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-right:0;padding-left: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}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.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}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn: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:400;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=checkbox],.input-group-addon input[type=radio]{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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-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:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-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:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{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:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.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:focus,.nav-tabs.nav-justified>.active>a:hover{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:focus,.nav-tabs.nav-justified>.active>a:hover{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:focus,.nav-pills>li.active>a:hover{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{margin-bottom:5px;text-align:center}.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:focus,.nav-tabs-justified>.active>a:hover{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:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-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{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.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-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{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-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{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;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{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;padding:9px 10px;margin-top:8px;margin-right:15px;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 .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{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{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@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 .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{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;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-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-right:15px;margin-left: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:focus,.navbar-default .navbar-brand:hover{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:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{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:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{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:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{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:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{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:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@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:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{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:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{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{padding:0 5px;color:#ccc;content:"/\00a0"}.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;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.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-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-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-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.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:focus,.pager li>a:hover{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:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{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]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{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{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left: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 a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{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:700}.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{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.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{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(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,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-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,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.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-body,.media-left,.media-right{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{padding-left:0;margin-bottom:20px}.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-left-radius:4px;border-top-right-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:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .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:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{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:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{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:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{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:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{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,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.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-left-radius:3px;border-top-right-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-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody: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:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.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 td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border: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>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{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 embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height: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,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(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:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.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;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.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-bottom:0;margin-left:5px}.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,.5);box-shadow:0 5px 15px rgba(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-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.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{right:5px;bottom:0;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-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;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{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";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,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,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;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.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%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(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-next,.carousel-control .icon-prev{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{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left: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-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-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}td.visible-xs,th.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}td.visible-sm,th.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}td.visible-md,th.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}td.visible-lg,th.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}td.visible-print,th.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}}
/*# sourceMappingURL=bootstrap.min.css.map */@font-face {
  font-family: 'OpenSans-Light';
  src: url('fonts/OpenSans-Light.eot');
  src: url('fonts/OpenSans-Light.woff2') format('woff2'),
       url('fonts/OpenSans-Light.woff') format('woff'),
       url('fonts/OpenSans-Light.ttf') format('truetype'),
       url('fonts/OpenSans-Light.svg#OpenSans-Light') format('svg'),
       url('fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSansCondensed-Bold';
  src: url('fonts/OpenSansCondensed-Bold.eot');
  src: url('fonts/OpenSansCondensed-Bold.woff2') format('woff2'),
       url('fonts/OpenSansCondensed-Bold.woff') format('woff'),
       url('fonts/OpenSansCondensed-Bold.ttf') format('truetype'),
       url('fonts/OpenSansCondensed-Bold.svg#OpenSansCondensed-Bold') format('svg'),
       url('fonts/OpenSansCondensed-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSansCondensed-Light';
  src: url('fonts/OpenSansCondensed-Light.eot');
  src: url('fonts/OpenSansCondensed-Light.woff2') format('woff2'),
       url('fonts/OpenSansCondensed-Light.woff') format('woff'),
       url('fonts/OpenSansCondensed-Light.ttf') format('truetype'),
       url('fonts/OpenSansCondensed-Light.svg#OpenSansCondensed-Light') format('svg'),
       url('fonts/OpenSansCondensed-Light.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}


@media screen and (max-width: 768px){
    .footer-info .copy-right-txt{ font-size: 12px; }
    .footer-content{ padding-bottom: 75px; }
    
}


.post-body h5{ min-height: 52px !important ; } 



.industry-solutions-img .icon-img{display:inline !important;}
.voice-list li {display: block;padding: 12px 0px 16px 39px;font-size: 15px;text-align: left;}
.voice-broadcast-bor .col-inner{border: 1px solid #ccce;padding: 41px 0px 33px;border-radius:3px;} 
.testimonialsserv {text-align:right;}
.testimonialsserv h2{margin: 0 !important;}
.testimonialsserv h3{margin: 0 !important;}
.testimonialsserv p{margin: 0 !important;color:#e95a24;}
.verified{color:white;font-size:12px;}
.wrapper-brand-slider .bx-wrapper{box-shadow: none;border: none;}
/*

	Theme Name: Unitheme

	Theme URI: http://www.unitheme.ninzio.com

	Description: Unitheme Multipurpose Responsive Retina-Ready Wordpress Premium Theme

	Author: Ninzio Team

	Author URI: http://www.ninzio.com

	Version: 3.4

	License: GNU General Public License version 3.0

	License URI: http://www.gnu.org/licenses/gpl-3.0.html

	Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, fluid-layout, editor-style, featured-images, post-formats, translation-ready

	Text Domain: unitheme

*/

.equal_width_container .container{ max-width: 100%; width: 67.5% !important ; }

.servetal_voice_feature_text{min-height: 60px; }

@media screen and (max-width: 768px){
.equal_width_container .container{ max-width: 100%; width: 100% !important; }
    
    
}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) {
    
    .equal_width_container .container{ max-width: 100%; width: 100% !important; }
    
    
}





.CallBackModal{cursor:pointer;}
.support-btn-img {
        bottom: 0;
        position: relative;
        right: 0;
        z-index: 3501;
    }
	.support-btn-img:hover .call-btn{display:block;}
	.call-btn{position:absolute;display:none;bottom: 51px;right: 1px; width: 140px;  margin: 0 !important; padding: 8px 7px 20px 8px; list-style: none;}
	.call-btn li{line-height: 40px;}
	.call-btn li a{text-align:right;padding-right:42px;}
	.call-btn li a span{background: #fff;border: 1px #eee solid; padding: 3px 6px;}
	.call-btn>li:nth-child(1) a{color:#666;display:block;background:url(/images/incoming-call.png) right 3px center no-repeat !important;}
	.call-btn>li:nth-child(2) a{color:#666;display:block;background:url(/images/message-icon.png) right 3px center no-repeat !important;}
	.call-btn li a:hover, .call-btn li a:focus{color:#FB7400;}
	.call-btn li a:hover span{border: 1px #FB7400 solid;}
	#CallModal .modal-content{border-radius:3px;}
	#CallModal .modal-content .modal-header{background:#28556f;padding: 10px 15px;}
	#CallModal .modal-content .modal-header .modal-title{color:#fff;}
	#CallModal .modal-content .modal-header .close{color: #fff;opacity: inherit;background-color: #28556f !important;}
	#CallModal .modal-content .click-to-call .number{position:relative;width:100%;}
	#CallModal .modal-content .click-to-call .number input{width:100%;display:block;height:36px; border:1px #ddd solid;padding-left:52px;margin-bottom:15px;}
	#CallModal .modal-content .click-to-call .number input:hover, #CallModal .modal-content .click-to-call .number input:focus{outline:none !important;}
	#CallModal .modal-content .click-to-call .number span{height:36px;line-height:36px;padding:0 12px; border-right:1px #ddd solid;position:absolute; z-index:99;}
	#CallModal .modal-content .click-to-call button{background: #fb7400;color: #fff;text-align: center; width: 100%; border-radius: 3px; height: 34px; line-height: 5px;margin: 5px 0 6px; border: none;}
	#CallModal .modal-content .click-to-call label{font-weight: normal;}
	#CallModal .modal-content .click-to-call button:hover, #CallModal .modal-content .click-to-call button:focus{outline:none;}

    .support-container {
        text-align: center;
        bottom: 0;
        position: fixed;
        right: 20px;
        z-index: 1000;
    }

    #click-to-call label.error{
        color: #e66060 !important;
        margin-top: -10px;
    }
    label.error {
        font-size: 12px;
		color:red !important;
    }
    #comm100-chat-window div{right:0 !important;}
   #CallModal {
background-color: transparent;
height: 100%;
position: fixed;
width: 100%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media (max-width: 767px){
#CallModal .modal-sm{max-width: 300px; margin-left: auto;margin-right: auto;}
}

@import url("css/header-im.css");

.footer{/*border-top: 10px solid #FB7400;*/}]

/*  TABLE OF CONTENTS

/*=============*/

	

/*

	NORMALIZE

	ICOMOON

	LIGHTBOX

	MIX

	FORMS

	WPML LANGUAGE SELECT

	HEADER

	SLIDER

	SLIDER PREVIEW

	LAYOUT

	WIDGETS

		General

		Tag cloud

		Search

		Categories, Pages, Archive, Meta

		Custom menu

		Calendar

		Rss, Recent posts, Recent comments

		Recent portfolio

		Twitter

		Flickr

		Facebook

		WPML

		Mailchimp

		Front-end login

	GRID

	COLUMNS

	ANIMATION

	PRICING TABLE

	CLIENTS

	CONTENTBOX

	PERSONS

	TESTIMONIALS

	CAROUSELS

	GALLERY

	SLICK CAROUSELS

	DROPCAP

	HIGHLIGHT

	ICON LIST

	ICONS

	BUTTON

	SOCIAL LINKS

	ALERT MESSAGE

	PROGRESS

	CIRCLE PROGRESS

	ICON-PROGRESS-BAR

	TABS

	TABLE

	ACCORDION

	COUNTER

	TIMER

	RECENT TWEETS

	TAGLINE

	VIDEO, AUDIO EMBED

	MAILCHIMP

	MEDIA SLIDER

	SEPARATOR

	SECTION

	SLIDER SECTION

	OVERLAY

	WP CAPTION

	RECENT POSTS

	BLOG

	PORTFOLIO

	COMMENTS

		Comment form

		Comment list

	WOOCOMMERCE

	RESPONSIVE

		Min mob portrait

		Max mob portrait

		Min mob landscape

		Min tablet portrait

		Only tablet portrait

		Everything but desktop

		Min tablet landscape

		Desktop

*/

/*	NORMALIZE

/*=============*/

	article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"201C" "201D" "2018" "2019";}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:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}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;}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;padding:0;}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}

/*	ICOMOON

/*=============*/

@font-face{font-family:icomoon;src:url(fonts/icomoon.eot);src:url(fonts/icomoon.eot?#iefix) format('embedded-opentype'),url(fonts/icomoon.woff) format('woff'),url(fonts/icomoon.ttf) format('truetype'),url(fonts/icomoon.svg) format('svg');font-weight:400;font-style:normal}[class*=" icon-"],[class^=icon-]{font-family:icomoon;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-home:before{content:"\e600"}.icon-home2:before{content:"\e601"}.icon-home3:before{content:"\e602"}.icon-office:before{content:"\e603"}.icon-newspaper:before{content:"\e604"}.icon-pencil:before{content:"\e605"}.icon-pencil2:before{content:"\e606"}.icon-quill:before{content:"\e607"}.icon-pen:before{content:"\e608"}.icon-blog:before{content:"\e609"}.icon-droplet:before{content:"\e60a"}.icon-paint-format:before{content:"\e60b"}.icon-image:before{content:"\e60c"}.icon-image2:before{content:"\e60d"}.icon-images:before{content:"\e60e"}.icon-camera:before{content:"\e60f"}.icon-music:before{content:"\e610"}.icon-headphones:before{content:"\e611"}.icon-play:before{content:"\e612"}.icon-film:before{content:"\e613"}.icon-camera2:before{content:"\e614"}.icon-dice:before{content:"\e615"}.icon-pacman:before{content:"\e616"}.icon-spades:before{content:"\e617"}.icon-clubs:before{content:"\e618"}.icon-diamonds:before{content:"\e619"}.icon-pawn:before{content:"\e61a"}.icon-bulldeskn:before{content:"\e61b"}.icon-connection:before{content:"\e61c"}.icon-podcast:before{content:"\e61d"}.icon-feed:before{content:"\e61e"}.icon-book:before{content:"\e61f"}.icon-books:before{content:"\e620"}.icon-library:before{content:"\e621"}.icon-file:before{content:"\e622"}.icon-profile:before{content:"\e623"}.icon-file2:before{content:"\e624"}.icon-file3:before{content:"\e625"}.icon-file4:before{content:"\e626"}.icon-copy:before{content:"\e627"}.icon-copy2:before{content:"\e628"}.icon-copy3:before{content:"\e629"}.icon-paste:before{content:"\e62a"}.icon-paste2:before{content:"\e62b"}.icon-paste3:before{content:"\e62c"}.icon-stack:before{content:"\e62d"}.icon-folder:before{content:"\e62e"}.icon-folder-open:before{content:"\e62f"}.icon-tag:before{content:"\e630"}.icon-tags:before{content:"\e631"}.icon-barcode:before{content:"\e632"}.icon-qrcode:before{content:"\e633"}.icon-ticket:before{content:"\e634"}.icon-cart:before{content:"\e635"}.icon-cart2:before{content:"\e636"}.icon-cart3:before{content:"\e637"}.icon-coin:before{content:"\e638"}.icon-credit:before{content:"\e639"}.icon-calculate:before{content:"\e63a"}.icon-support:before{content:"\e63b"}.icon-phone:before{content:"\e63c"}.icon-phone-hang-up:before{content:"\e63d"}.icon-address-book:before{content:"\e63e"}.icon-notebook:before{content:"\e63f"}.icon-envelope:before{content:"\e640"}.icon-pushpin:before{content:"\e641"}.icon-location:before{content:"\e640"}.icon-location2:before{content:"\e643"}.icon-compass:before{content:"\e644"}.icon-map:before{content:"\e645"}.icon-map2:before{content:"\e646"}.icon-history:before{content:"\e647"}.icon-clock:before{content:"\e648"}.icon-clock2:before{content:"\e649"}.icon-alarm:before{content:"\e64a"}.icon-alarm2:before{content:"\e64b"}.icon-bell:before{content:"\e64c"}.icon-stopwatch:before{content:"\e64d"}.icon-calendar:before{content:"\e64e"}.icon-calendar2:before{content:"\e64f"}.icon-print:before{content:"\e650"}.icon-keyboard:before{content:"\e651"}.icon-screen:before{content:"\e652"}.icon-laptop:before{content:"\e653"}.icon-mob:before{content:"\e654"}.icon-mob2:before{content:"\e655"}.icon-tablet:before{content:"\e656"}.icon-tv:before{content:"\e657"}.icon-cabinet:before{content:"\e658"}.icon-drawer:before{content:"\e659"}.icon-drawer2:before{content:"\e65a"}.icon-drawer3:before{content:"\e65b"}.icon-box-add:before{content:"\e65c"}.icon-box-remove:before{content:"\e65d"}.icon-download:before{content:"\e65e"}.icon-upload:before{content:"\e65f"}.icon-disk:before{content:"\e660"}.icon-storage:before{content:"\e661"}.icon-undo:before{content:"\e662"}.icon-redo:before{content:"\e663"}.icon-flip:before{content:"\e664"}.icon-flip2:before{content:"\e665"}.icon-undo2:before{content:"\e666"}.icon-redo2:before{content:"\e667"}.icon-forward:before{content:"\e668"}.icon-reply:before{content:"\e669"}.icon-bubble:before{content:"\e66a"}.icon-bubbles:before{content:"\e66b"}.icon-bubbles2:before{content:"\e66c"}.icon-bubble2:before{content:"\e66d"}.icon-bubbles3:before{content:"\e66e"}.icon-bubbles4:before{content:"\e66f"}.icon-user:before{content:"\e670"}.icon-users:before{content:"\e671"}.icon-user2:before{content:"\e672"}.icon-users2:before{content:"\e673"}.icon-user3:before{content:"\e674"}.icon-user4:before{content:"\e675"}.icon-quotes-left:before{content:"\e676"}.icon-busy:before{content:"\e677"}.icon-spinner:before{content:"\e678"}.icon-spinner2:before{content:"\e679"}.icon-spinner3:before{content:"\e67a"}.icon-spinner4:before{content:"\e67b"}.icon-spinner5:before{content:"\e67c"}.icon-spinner6:before{content:"\e67d"}.icon-binoculars:before{content:"\e67e"}.icon-search:before{content:"\e67f"}.icon-zoomin:before{content:"\e680"}.icon-zoomout:before{content:"\e681"}.icon-expand:before{content:"\e682"}.icon-contract:before{content:"\e683"}.icon-expand2:before{content:"\e684"}.icon-contract2:before{content:"\e685"}.icon-key:before{content:"\e686"}.icon-key2:before{content:"\e687"}.icon-lock:before{content:"\e688"}.icon-lock2:before{content:"\e689"}.icon-unlocked:before{content:"\e68a"}.icon-wrench:before{content:"\e68b"}.icon-settings:before{content:"\e68c"}.icon-equalizer:before{content:"\e68d"}.icon-cog:before{content:"\e68e"}.icon-cogs:before{content:"\e68f"}.icon-cog2:before{content:"\e690"}.icon-hammer:before{content:"\e691"}.icon-wand:before{content:"\e692"}.icon-aid:before{content:"\e693"}.icon-bug:before{content:"\e694"}.icon-pie:before{content:"\e695"}.icon-stats:before{content:"\e696"}.icon-bars:before{content:"\e697"}.icon-bars2:before{content:"\e698"}.icon-gift:before{content:"\e699"}.icon-trophy:before{content:"\e69a"}.icon-glass:before{content:"\e69b"}.icon-mug:before{content:"\e69c"}.icon-food:before{content:"\e69d"}.icon-leaf:before{content:"\e69e"}.icon-rocket:before{content:"\e69f"}.icon-meter:before{content:"\e6a0"}.icon-meter2:before{content:"\e6a1"}.icon-dashboard:before{content:"\e6a2"}.icon-hammer2:before{content:"\e6a3"}.icon-fire:before{content:"\e6a4"}.icon-lab:before{content:"\e6a5"}.icon-magnet:before{content:"\e6a6"}.icon-remove:before{content:"\e6a7"}.icon-remove2:before{content:"\e6a8"}.icon-briefcase:before{content:"\e6a9"}.icon-airplane:before{content:"\e6aa"}.icon-truck:before{content:"\e6ab"}.icon-road:before{content:"\e6ac"}.icon-accessibility:before{content:"\e6ad"}.icon-target:before{content:"\e6ae"}.icon-shield:before{content:"\e6af"}.icon-lightning:before{content:"\e6b0"}.icon-switch:before{content:"\e6b1"}.icon-powercord:before{content:"\e6b2"}.icon-signup:before{content:"\e6b3"}.icon-list:before{content:"\e6b4"}.icon-list2:before{content:"\e6b5"}.icon-numbered-list:before{content:"\e6b6"}.icon-menu:before{content:"\e6b7"}.icon-menu2:before{content:"\e6b8"}.icon-tree:before{content:"\e6b9"}.icon-cloud:before{content:"\e6ba"}.icon-cloud-download:before{content:"\e6bb"}.icon-cloud-upload:before{content:"\e6bc"}.icon-download2:before{content:"\e6bd"}.icon-upload2:before{content:"\e6be"}.icon-download3:before{content:"\e6bf"}.icon-upload3:before{content:"\e6c0"}.icon-globe:before{content:"\e6c1"}.icon-earth:before{content:"\e6c2"}.icon-link:before{content:"\e6c3"}.icon-flag:before{content:"\e6c4"}.icon-attachment:before{content:"\e6c5"}.icon-eye:before{content:"\e6c6"}.icon-eye-blocked:before{content:"\e6c7"}.icon-eye2:before{content:"\e6c8"}.icon-bookmark:before{content:"\e6c9"}.icon-bookmarks:before{content:"\e6ca"}.icon-brightness-medium:before{content:"\e6cb"}.icon-brightness-contrast:before{content:"\e6cc"}.icon-contrast:before{content:"\e6cd"}.icon-star:before{content:"\e6ce"}.icon-star2:before{content:"\e6cf"}.icon-star3:before{content:"\e6d0"}.icon-heart:before{content:"\e6d1"}.icon-heart2:before{content:"\e6d2"}.icon-heart-broken:before{content:"\e6d3"}.icon-thumbs-up:before{content:"\e6d4"}.icon-thumbs-up2:before{content:"\e6d5"}.icon-happy:before{content:"\e6d6"}.icon-happy2:before{content:"\e6d7"}.icon-smiley:before{content:"\e6d8"}.icon-smiley2:before{content:"\e6d9"}.icon-tongue:before{content:"\e6da"}.icon-tongue2:before{content:"\e6db"}.icon-sad:before{content:"\e6dc"}.icon-sad2:before{content:"\e6dd"}.icon-wink:before{content:"\e6de"}.icon-wink2:before{content:"\e6df"}.icon-grin:before{content:"\e6e0"}.icon-grin2:before{content:"\e6e1"}.icon-cool:before{content:"\e6e2"}.icon-cool2:before{content:"\e6e3"}.icon-angry:before{content:"\e6e4"}.icon-angry2:before{content:"\e6e5"}.icon-evil:before{content:"\e6e6"}.icon-evil2:before{content:"\e6e7"}.icon-shocked:before{content:"\e6e8"}.icon-shocked2:before{content:"\e6e9"}.icon-confused:before{content:"\e6ea"}.icon-confused2:before{content:"\e6eb"}.icon-neutral:before{content:"\e6ec"}.icon-neutral2:before{content:"\e6ed"}.icon-wondering:before{content:"\e6ee"}.icon-wondering2:before{content:"\e6ef"}.icon-point-up:before{content:"\e6f0"}.icon-point-right:before{content:"\e6f1"}.icon-point-down:before{content:"\e6f2"}.icon-point-left:before{content:"\e6f3"}.icon-warning:before{content:"\e6f4"}.icon-notification:before{content:"\e6f5"}.icon-question:before{content:"\e6f6"}.icon-info:before{content:"\e6f7"}.icon-info2:before{content:"\e6f8"}.icon-blocked:before{content:"\e6f9"}.icon-cancel-circle:before{content:"\e6fa"}.icon-checkmark-circle:before{content:"\e6fb"}.icon-spam:before{content:"\e6fc"}.icon-close:before{content:"\e6fd"}.icon-checkmark:before{content:"\e6fe"}.icon-checkmark2:before{content:"\e6ff"}.icon-spell-check:before{content:"\e700"}.icon-minus:before{content:"\e701"}.icon-plus:before{content:"\e702"}.icon-enter:before{content:"\e703"}.icon-exit:before{content:"\e704"}.icon-play2:before{content:"\e705"}.icon-pause:before{content:"\e706"}.icon-stop:before{content:"\e707"}.icon-backward:before{content:"\e708"}.icon-forward2:before{content:"\e709"}.icon-play3:before{content:"\e70a"}.icon-pause2:before{content:"\e70b"}.icon-stop2:before{content:"\e70c"}.icon-backward2:before{content:"\e70d"}.icon-forward3:before{content:"\e70e"}.icon-first:before{content:"\e70f"}.icon-last:before{content:"\e710"}.icon-previous:before{content:"\e711"}.icon-next:before{content:"\e712"}.icon-eject:before{content:"\e713"}.icon-volume-high:before{content:"\e714"}.icon-volume-medium:before{content:"\e715"}.icon-volume-low:before{content:"\e716"}.icon-volume-mute:before{content:"\e717"}.icon-volume-mute2:before{content:"\e718"}.icon-volume-increase:before{content:"\e719"}.icon-volume-decrease:before{content:"\e71a"}.icon-loop:before{content:"\e71b"}.icon-loop2:before{content:"\e71c"}.icon-loop3:before{content:"\e71d"}.icon-shuffle:before{content:"\e71e"}.icon-arrow-up-left:before{content:"\e71f"}.icon-arrow-up:before{content:"\e720"}.icon-arrow-up-right:before{content:"\e721"}.icon-arrow-right:before{content:"\e722"}.icon-arrow-down-right:before{content:"\e723"}.icon-arrow-down:before{content:"\e724"}.icon-arrow-down-left:before{content:"\e725"}.icon-arrow-left:before{content:"\e726"}.icon-arrow-up-left2:before{content:"\e727"}.icon-arrow-up2:before{content:"\e728"}.icon-arrow-up-right2:before{content:"\e729"}.icon-arrow-right2:before{content:"\e72a"}.icon-arrow-down-right2:before{content:"\e72b"}.icon-arrow-down2:before{content:"\e72c"}.icon-arrow-down-left2:before{content:"\e72d"}.icon-arrow-left2:before{content:"\e72e"}.icon-arrow-up-left3:before{content:"\e72f"}.icon-arrow-up3:before{content:"\e730"}.icon-arrow-up-right3:before{content:"\e731"}.icon-arrow-right3:before{content:"\e732"}.icon-arrow-down-right3:before{content:"\e733"}.icon-arrow-down3:before{content:"\e734"}.icon-arrow-down-left3:before{content:"\e735"}.icon-arrow-left3:before{content:"\e736"}.icon-tab:before{content:"\e737"}.icon-checkbox-checked:before{content:"\e738"}.icon-checkbox-unchecked:before{content:"\e739"}.icon-checkbox-partial:before{content:"\e73a"}.icon-radio-checked:before{content:"\e73b"}.icon-radio-unchecked:before{content:"\e73c"}.icon-crop:before{content:"\e73d"}.icon-scissors:before{content:"\e73e"}.icon-filter:before{content:"\e73f"}.icon-filter2:before{content:"\e740"}.icon-font:before{content:"\e741"}.icon-text-height:before{content:"\e740"}.icon-text-width:before{content:"\e743"}.icon-bold:before{content:"\e744"}.icon-underline:before{content:"\e745"}.icon-italic:before{content:"\e746"}.icon-strikethrough:before{content:"\e747"}.icon-omega:before{content:"\e748"}.icon-sigma:before{content:"\e749"}.icon-table:before{content:"\e74a"}.icon-table2:before{content:"\e74b"}.icon-insert-template:before{content:"\e74c"}.icon-pilcrow:before{content:"\e74d"}.icon-lefttoright:before{content:"\e74e"}.icon-righttoleft:before{content:"\e74f"}.icon-paragraph-left:before{content:"\e750"}.icon-paragraph-center:before{content:"\e751"}.icon-paragraph-right:before{content:"\e752"}.icon-paragraph-justify:before{content:"\e753"}.icon-paragraph-left2:before{content:"\e754"}.icon-paragraph-center2:before{content:"\e755"}.icon-paragraph-right2:before{content:"\e756"}.icon-paragraph-justify2:before{content:"\e757"}.icon-indent-increase:before{content:"\e758"}.icon-indent-decrease:before{content:"\e759"}.icon-newtab:before{content:"\e75a"}.icon-embed:before{content:"\e75b"}.icon-code:before{content:"\e75c"}.icon-console:before{content:"\e75d"}.icon-share:before{content:"\e75e"}.icon-mail:before{content:"\e75f"}.icon-mail2:before{content:"\e760"}.icon-mail3:before{content:"\e761"}.icon-mail4:before{content:"\e762"}.icon-google:before{content:"\e763"}.icon-googleplus:before{content:"\e764"}.icon-googleplus2:before{content:"\e765"}.icon-googleplus3:before{content:"\e766"}.icon-googleplus4:before{content:"\e767"}.icon-google-drive:before{content:"\e768"}.icon-facebook:before{content:"\e769"}.icon-facebook2:before{content:"\e76a"}.icon-facebook3:before{content:"\e76b"}.icon-instagram:before{content:"\e76c"}.icon-twitter:before{content:"\e76d"}.icon-twitter2:before{content:"\e76e"}.icon-twitter3:before{content:"\e76f"}.icon-feed2:before{content:"\e770"}.icon-feed3:before{content:"\e771"}.icon-feed4:before{content:"\e772"}.icon-youtube:before{content:"\e773"}.icon-youtube2:before{content:"\e774"}.icon-vimeo:before{content:"\e775"}.icon-vimeo2:before{content:"\e776"}.icon-vimeo3:before{content:"\e777"}.icon-lanyrd:before{content:"\e778"}.icon-flickr:before{content:"\e779"}.icon-flickr2:before{content:"\e77a"}.icon-flickr3:before{content:"\e77b"}.icon-flickr4:before{content:"\e77c"}.icon-picassa:before{content:"\e77d"}.icon-picassa2:before{content:"\e77e"}.icon-dribbble:before{content:"\e77f"}.icon-dribbble2:before{content:"\e780"}.icon-dribbble3:before{content:"\e781"}.icon-forrst:before{content:"\e782"}.icon-forrst2:before{content:"\e783"}.icon-deviantart:before{content:"\e784"}.icon-deviantart2:before{content:"\e785"}.icon-steam:before{content:"\e786"}.icon-steam2:before{content:"\e787"}.icon-github:before{content:"\e788"}.icon-github2:before{content:"\e789"}.icon-github3:before{content:"\e78a"}.icon-github4:before{content:"\e78b"}.icon-github5:before{content:"\e78c"}.icon-wordpress:before{content:"\e78d"}.icon-wordpress2:before{content:"\e78e"}.icon-joomla:before{content:"\e78f"}.icon-blogger:before{content:"\e790"}.icon-blogger2:before{content:"\e791"}.icon-tumblr:before{content:"\e792"}.icon-tumblr2:before{content:"\e793"}.icon-yahoo:before{content:"\e794"}.icon-tux:before{content:"\e795"}.icon-apple:before{content:"\e796"}.icon-finder:before{content:"\e797"}.icon-android:before{content:"\e798"}.icon-windows:before{content:"\e799"}.icon-windows8:before{content:"\e79a"}.icon-soundcloud:before{content:"\e79b"}.icon-soundcloud2:before{content:"\e79c"}.icon-skype:before{content:"\e79d"}.icon-reddit:before{content:"\e79e"}.icon-linkedin:before{content:"\e79f"}.icon-lastfm:before{content:"\e7a0"}.icon-lastfm2:before{content:"\e7a1"}.icon-delicious:before{content:"\e7a2"}.icon-stumbleupon:before{content:"\e7a3"}.icon-stumbleupon2:before{content:"\e7a4"}.icon-stackoverflow:before{content:"\e7a5"}.icon-pinterest:before{content:"\e7a6"}.icon-pinterest2:before{content:"\e7a7"}.icon-xing:before{content:"\e7a8"}.icon-xing2:before{content:"\e7a9"}.icon-flattr:before{content:"\e7aa"}.icon-foursquare:before{content:"\e7ab"}.icon-foursquare2:before{content:"\e7ac"}.icon-paypal:before{content:"\e7ad"}.icon-paypal2:before{content:"\e7ae"}.icon-paypal3:before{content:"\e7af"}.icon-yelp:before{content:"\e7b0"}.icon-libreoffice:before{content:"\e7b1"}.icon-file-pdf:before{content:"\e7b2"}.icon-file-openoffice:before{content:"\e7b3"}.icon-file-word:before{content:"\e7b4"}.icon-file-excel:before{content:"\e7b5"}.icon-file-zip:before{content:"\e7b6"}.icon-file-powerpoint:before{content:"\e7b7"}.icon-file-xml:before{content:"\e7b8"}.icon-file-css:before{content:"\e7b9"}.icon-html5:before{content:"\e7ba"}.icon-html52:before{content:"\e7bb"}.icon-css3:before{content:"\e7bc"}.icon-chrome:before{content:"\e7bd"}.icon-firefox:before{content:"\e7be"}.icon-IE:before{content:"\e7bf"}.icon-opera:before{content:"\e7c0"}.icon-safari:before{content:"\e7c1"}.icon-IcoMoon:before{content:"\e7c2"}.icon-store:before{content:"\e7c3"}.icon-out:before{content:"\e7c4"}.icon-in:before{content:"\e7c5"}.icon-in-alt:before{content:"\e7c6"}.icon-home4:before{content:"\e7c7"}.icon-lightbulb:before{content:"\e7c8"}.icon-ancdesk:before{content:"\e7c9"}.icon-feather:before{content:"\e7ca"}.icon-expand3:before{content:"\e7cb"}.icon-maximize:before{content:"\e7cc"}.icon-search2:before{content:"\e7cd"}.icon-zoomin2:before{content:"\e7ce"}.icon-zoomout2:before{content:"\e7cf"}.icon-add:before{content:"\e7d0"}.icon-subtract:before{content:"\e7d1"}.icon-exclamation:before{content:"\e7d2"}.icon-question2:before{content:"\e7d3"}.icon-close2:before{content:"\e7d4"}.icon-cmd:before{content:"\e7d5"}.icon-forbid:before{content:"\e7d6"}.icon-book2:before{content:"\e7d7"}.icon-spinner7:before{content:"\e7d8"}.icon-play4:before{content:"\e7d9"}.icon-stop3:before{content:"\e7da"}.icon-pause3:before{content:"\e7db"}.icon-forward4:before{content:"\e7dc"}.icon-rewind:before{content:"\e7dd"}.icon-sound:before{content:"\e7de"}.icon-sound-alt:before{content:"\e7df"}.icon-soundoff:before{content:"\e7e0"}.icon-task:before{content:"\e7e1"}.icon-inbox:before{content:"\e7e2"}.icon-inbox-alt:before{content:"\e7e3"}.icon-envelope2:before{content:"\e7e4"}.icon-compose:before{content:"\e7e5"}.icon-newspaper2:before{content:"\e7e6"}.icon-newspaper-alt:before{content:"\e7e7"}.icon-clipboard:before{content:"\e7e8"}.icon-calendar3:before{content:"\e7e9"}.icon-hyperlink:before{content:"\e7ea"}.icon-trash:before{content:"\e7eb"}.icon-trash-alt:before{content:"\e7ec"}.icon-grid:before{content:"\e7ed"}.icon-grid-alt:before{content:"\e7ee"}.icon-menu3:before{content:"\e7ef"}.icon-list3:before{content:"\e7f0"}.icon-gallery:before{content:"\e7f1"}.icon-calculator:before{content:"\e7f2"}.icon-windows2:before{content:"\e7f3"}.icon-browser:before{content:"\e7f4"}.icon-alarm3:before{content:"\e7f5"}.icon-clock3:before{content:"\e7f6"}.icon-attachment2:before{content:"\e7f7"}.icon-settings2:before{content:"\e7f8"}.icon-portfolio:before{content:"\e7f9"}.icon-user5:before{content:"\e7fa"}.icon-users3:before{content:"\e7fb"}.icon-heart3:before{content:"\e7fc"}.icon-chat:before{content:"\e7fd"}.icon-comments:before{content:"\e7fe"}.icon-screen2:before{content:"\e7ff"}.icon-iphone:before{content:"\e800"}.icon-ipad:before{content:"\e801"}.icon-forkandspoon:before{content:"\e802"}.icon-forkandknife:before{content:"\e803"}.icon-instagram2:before{content:"\e804"}.icon-facebook4:before{content:"\e805"}.icon-delicious2:before{content:"\e806"}.icon-googleplus5:before{content:"\e807"}.icon-dribbble4:before{content:"\e808"}.icon-pin:before{content:"\e809"}.icon-pin-alt:before{content:"\e80a"}.icon-camera3:before{content:"\e80b"}.icon-brightness:before{content:"\e80c"}.icon-brightness-half:before{content:"\e80d"}.icon-moon:before{content:"\e80e"}.icon-cloud2:before{content:"\e80f"}.icon-circle-full:before{content:"\e810"}.icon-circle-half:before{content:"\e811"}.icon-globe2:before{content:"\e812"}.icon-heart4:before{content:"\e813"}.icon-cloud3:before{content:"\e814"}.icon-star4:before{content:"\e815"}.icon-tv2:before{content:"\e816"}.icon-sound2:before{content:"\e817"}.icon-video:before{content:"\e818"}.icon-trash2:before{content:"\e819"}.icon-user6:before{content:"\e81a"}.icon-key3:before{content:"\e81b"}.icon-search3:before{content:"\e81c"}.icon-settings3:before{content:"\e81d"}.icon-camera4:before{content:"\e81e"}.icon-tag2:before{content:"\e81f"}.icon-lock3:before{content:"\e820"}.icon-bulb:before{content:"\e821"}.icon-pen2:before{content:"\e822"}.icon-diamond:before{content:"\e823"}.icon-display:before{content:"\e824"}.icon-location3:before{content:"\e825"}.icon-eye3:before{content:"\e826"}.icon-bubble3:before{content:"\e827"}.icon-stack2:before{content:"\e828"}.icon-cup:before{content:"\e829"}.icon-phone2:before{content:"\e82a"}.icon-news:before{content:"\e82b"}.icon-mail5:before{content:"\e82c"}.icon-like:before{content:"\e82d"}.icon-photo:before{content:"\e82e"}.icon-note:before{content:"\e82f"}.icon-clock4:before{content:"\e830"}.icon-paperplane:before{content:"\e831"}.icon-params:before{content:"\e832"}.icon-banknote:before{content:"\e833"}.icon-data:before{content:"\e834"}.icon-music2:before{content:"\e835"}.icon-megaphone:before{content:"\e836"}.icon-study:before{content:"\e837"}.icon-lab2:before{content:"\e838"}.icon-food2:before{content:"\e839"}.icon-t-shirt:before{content:"\e83a"}.icon-fire2:before{content:"\e83b"}.icon-clip:before{content:"\e83c"}.icon-shop:before{content:"\e83d"}.icon-calendar4:before{content:"\e83e"}.icon-wallet:before{content:"\e83f"}.icon-vynil:before{content:"\e840"}.icon-truck2:before{content:"\e841"}.icon-world:before{content:"\e840"}.icon-phone3:before{content:"\e843"}.icon-mob3:before{content:"\e844"}.icon-mouse:before{content:"\e845"}.icon-directions:before{content:"\e846"}.icon-mail6:before{content:"\e847"}.icon-paperplane2:before{content:"\e848"}.icon-pencil3:before{content:"\e849"}.icon-feather2:before{content:"\e84a"}.icon-paperclip:before{content:"\e84b"}.icon-drawer4:before{content:"\e84c"}.icon-reply2:before{content:"\e84d"}.icon-reply-all:before{content:"\e84e"}.icon-forward5:before{content:"\e84f"}.icon-user7:before{content:"\e850"}.icon-users4:before{content:"\e851"}.icon-user-add:before{content:"\e852"}.icon-vcard:before{content:"\e853"}.icon-export:before{content:"\e854"}.icon-location4:before{content:"\e855"}.icon-map3:before{content:"\e856"}.icon-compass2:before{content:"\e857"}.icon-location5:before{content:"\e858"}.icon-target2:before{content:"\e859"}.icon-share2:before{content:"\e85a"}.icon-sharable:before{content:"\e85b"}.icon-heart5:before{content:"\e85c"}.icon-heart6:before{content:"\e85d"}.icon-star5:before{content:"\e85e"}.icon-star6:before{content:"\e85f"}.icon-thumbsup:before{content:"\e860"}.icon-thumbsdown:before{content:"\e861"}.icon-chat2:before{content:"\e862"}.icon-comment:before{content:"\e863"}.icon-quote:before{content:"\e864"}.icon-house:before{content:"\e865"}.icon-popup:before{content:"\e866"}.icon-search4:before{content:"\e867"}.icon-flashlight:before{content:"\e868"}.icon-printer:before{content:"\e869"}.icon-bell2:before{content:"\e86a"}.icon-link2:before{content:"\e86b"}.icon-flag2:before{content:"\e86c"}.icon-cog3:before{content:"\e86d"}.icon-tools:before{content:"\e86e"}.icon-trophy2:before{content:"\e86f"}.icon-tag3:before{content:"\e870"}.icon-camera5:before{content:"\e871"}.icon-megaphone2:before{content:"\e872"}.icon-moon2:before{content:"\e873"}.icon-palette:before{content:"\e874"}.icon-leaf2:before{content:"\e875"}.icon-music3:before{content:"\e876"}.icon-music4:before{content:"\e877"}.icon-new:before{content:"\e878"}.icon-graduation:before{content:"\e879"}.icon-book3:before{content:"\e87a"}.icon-newspaper3:before{content:"\e87b"}.icon-bag:before{content:"\e87c"}.icon-airplane2:before{content:"\e87d"}.icon-lifebuoy:before{content:"\e87e"}.icon-eye4:before{content:"\e87f"}.icon-clock5:before{content:"\e880"}.icon-microphone:before{content:"\e881"}.icon-calendar5:before{content:"\e882"}.icon-bolt:before{content:"\e883"}.icon-thunder:before{content:"\e884"}.icon-droplet2:before{content:"\e885"}.icon-cd:before{content:"\e886"}.icon-briefcase2:before{content:"\e887"}.icon-air:before{content:"\e888"}.icon-hourglass:before{content:"\e889"}.icon-gauge:before{content:"\e88a"}.icon-language:before{content:"\e88b"}.icon-network:before{content:"\e88c"}.icon-key4:before{content:"\e88d"}.icon-battery:before{content:"\e88e"}.icon-bucket:before{content:"\e88f"}.icon-magnet2:before{content:"\e890"}.icon-drive:before{content:"\e891"}.icon-cup2:before{content:"\e892"}.icon-rocket2:before{content:"\e893"}.icon-brush:before{content:"\e894"}.icon-suitcase:before{content:"\e895"}.icon-cone:before{content:"\e896"}.icon-earth2:before{content:"\e897"}.icon-keyboard2:before{content:"\e898"}.icon-browser2:before{content:"\e899"}.icon-publish:before{content:"\e89a"}.icon-progress-3:before{content:"\e89b"}.icon-progress-2:before{content:"\e89c"}.icon-brogress-1:before{content:"\e89d"}.icon-progress-0:before{content:"\e89e"}.icon-sun:before{content:"\e89f"}.icon-sun2:before{content:"\e8a0"}.icon-adjust:before{content:"\e8a1"}.icon-code2:before{content:"\e8a2"}.icon-screen3:before{content:"\e8a3"}.icon-infinity:before{content:"\e8a4"}.icon-light-bulb:before{content:"\e8a5"}.icon-creditcard:before{content:"\e8a6"}.icon-database:before{content:"\e8a7"}.icon-voicemail:before{content:"\e8a8"}.icon-clipboard2:before{content:"\e8a9"}.icon-cart4:before{content:"\e8aa"}.icon-box:before{content:"\e8ab"}.icon-ticket2:before{content:"\e8ac"}.icon-rss:before{content:"\e8ad"}.icon-signal:before{content:"\e8ae"}.icon-thermometer:before{content:"\e8af"}.icon-droplets:before{content:"\e8b0"}.icon-uniE8B1:before{content:"\e8b1"}.icon-statistics:before{content:"\e8b2"}.icon-pie2:before{content:"\e8b3"}.icon-bars3:before{content:"\e8b4"}.icon-graph:before{content:"\e8b5"}.icon-lock4:before{content:"\e8b6"}.icon-lock-open:before{content:"\e8b7"}.icon-logout:before{content:"\e8b8"}.icon-login:before{content:"\e8b9"}.icon-checkmark3:before{content:"\e8ba"}.icon-line-scale:before{content:"\e8bb"}.icon-minus2:before{content:"\e8bc"}.icon-plus2:before{content:"\e8bd"}.icon-line-scale2:before{content:"\e8be"}.icon-minus3:before{content:"\e8bf"}.icon-plus3:before{content:"\e8c0"}.icon-line-scale3:before{content:"\e8c1"}.icon-minus4:before{content:"\e8c2"}.icon-plus4:before{content:"\e8c3"}.icon-erase:before{content:"\e8c4"}.icon-blocked2:before{content:"\e8c5"}.icon-info3:before{content:"\e8c6"}.icon-info4:before{content:"\e8c7"}.icon-question3:before{content:"\e8c8"}.icon-help:before{content:"\e8c9"}.icon-warning2:before{content:"\e8ca"}.icon-cycle:before{content:"\e8cb"}.icon-cw:before{content:"\e8cc"}.icon-ccw:before{content:"\e8cd"}.icon-shuffle2:before{content:"\e8ce"}.icon-arrow:before{content:"\e8cf"}.icon-arrow2:before{content:"\e8d0"}.icon-retweet:before{content:"\e8d1"}.icon-loop4:before{content:"\e8d2"}.icon-history2:before{content:"\e8d3"}.icon-back:before{content:"\e8d4"}.icon-switch2:before{content:"\e8d5"}.icon-list4:before{content:"\e8d6"}.icon-add-to-list:before{content:"\e8d7"}.icon-layout:before{content:"\e8d8"}.icon-list5:before{content:"\e8d9"}.icon-text:before{content:"\e8da"}.icon-text2:before{content:"\e8db"}.icon-document:before{content:"\e8dc"}.icon-docs:before{content:"\e8dd"}.icon-landscape:before{content:"\e8de"}.icon-pictures:before{content:"\e8df"}.icon-video2:before{content:"\e8e0"}.icon-music5:before{content:"\e8e1"}.icon-folder2:before{content:"\e8e2"}.icon-archive:before{content:"\e8e3"}.icon-trash3:before{content:"\e8e4"}.icon-upload4:before{content:"\e8e5"}.icon-download4:before{content:"\e8e6"}.icon-disk2:before{content:"\e8e7"}.icon-install:before{content:"\e8e8"}.icon-cloud4:before{content:"\e8e9"}.icon-upload5:before{content:"\e8ea"}.icon-bookmark2:before{content:"\e8eb"}.icon-bookmarks2:before{content:"\e8ec"}.icon-book4:before{content:"\e8ed"}.icon-play5:before{content:"\e8ee"}.icon-pause4:before{content:"\e8ef"}.icon-record:before{content:"\e8f0"}.icon-stop4:before{content:"\e8f1"}.icon-next2:before{content:"\e8f2"}.icon-previous2:before{content:"\e8f3"}.icon-first2:before{content:"\e8f4"}.icon-last2:before{content:"\e8f5"}.icon-resize-enlarge:before{content:"\e8f6"}.icon-resize-shrink:before{content:"\e8f7"}.icon-volume:before{content:"\e8f8"}.icon-sound3:before{content:"\e8f9"}.icon-mute:before{content:"\e8fa"}.icon-flow-cascade:before{content:"\e8fb"}.icon-flow-branch:before{content:"\e8fc"}.icon-flow-tree:before{content:"\e8fd"}.icon-flow-line:before{content:"\e8fe"}.icon-flow-parallel:before{content:"\e8ff"}.icon-arrow-left4:before{content:"\e900"}.icon-arrow-down4:before{content:"\e901"}.icon-arrow-up-upload:before{content:"\e902"}.icon-arrow-right4:before{content:"\e903"}.icon-arrow-left5:before{content:"\e904"}.icon-arrow-down5:before{content:"\e905"}.icon-arrow-up4:before{content:"\e906"}.icon-arrow-right5:before{content:"\e907"}.icon-arrow-left6:before{content:"\e908"}.icon-arrow-down6:before{content:"\e909"}.icon-arrow-up5:before{content:"\e90a"}.icon-arrow-right6:before{content:"\e90b"}.icon-arrow-left7:before{content:"\e90c"}.icon-arrow-down7:before{content:"\e90d"}.icon-arrow-up6:before{content:"\e90e"}.icon-arrow-right7:before{content:"\e90f"}.icon-arrow-left8:before{content:"\e910"}.icon-arrow-down8:before{content:"\e911"}.icon-arrow-up7:before{content:"\e912"}.icon-arrow-right8:before{content:"\e913"}.icon-arrow-left9:before{content:"\e914"}.icon-arrow-down9:before{content:"\e915"}.icon-arrow-up8:before{content:"\e916"}.icon-arrow-right9:before{content:"\e917"}.icon-arrow-left10:before{content:"\e918"}.icon-arrow-down10:before{content:"\e919"}.icon-arrow-up9:before{content:"\e91a"}.icon-uniE91B:before{content:"\e91b"}.icon-arrow-left11:before{content:"\e91c"}.icon-arrow-down11:before{content:"\e91d"}.icon-arrow-up10:before{content:"\e91e"}.icon-arrow-right10:before{content:"\e91f"}.icon-menu4:before{content:"\e920"}.icon-ellipsis:before{content:"\e921"}.icon-dots:before{content:"\e922"}.icon-dot:before{content:"\e923"}.icon-cc:before{content:"\e924"}.icon-cc-by:before{content:"\e925"}.icon-cc-nc:before{content:"\e926"}.icon-cc-nc-eu:before{content:"\e927"}.icon-cc-nc-jp:before{content:"\e928"}.icon-cc-sa:before{content:"\e929"}.icon-cc-nd:before{content:"\e92a"}.icon-cc-pd:before{content:"\e92b"}.icon-cc-zero:before{content:"\e92c"}.icon-cc-share:before{content:"\e92d"}.icon-cc-share2:before{content:"\e92e"}.icon-danielbruce:before{content:"\e92f"}.icon-danielbruce2:before{content:"\e930"}.icon-github6:before{content:"\e931"}.icon-github7:before{content:"\e932"}.icon-flickr5:before{content:"\e933"}.icon-flickr6:before{content:"\e934"}.icon-vimeo4:before{content:"\e935"}.icon-vimeo5:before{content:"\e936"}.icon-twitter4:before{content:"\e937"}.icon-twitter5:before{content:"\e938"}.icon-facebook5:before{content:"\e939"}.icon-facebook6:before{content:"\e93a"}.icon-facebook7:before{content:"\e93b"}.icon-googleplus6:before{content:"\e93c"}.icon-googleplus7:before{content:"\e93d"}.icon-pinterest3:before{content:"\e93e"}.icon-pinterest4:before{content:"\e93f"}.icon-tumblr3:before{content:"\e940"}.icon-tumblr4:before{content:"\e941"}.icon-linkedin2:before{content:"\e940"}.icon-linkedin3:before{content:"\e943"}.icon-dribbble5:before{content:"\e944"}.icon-dribbble6:before{content:"\e945"}.icon-stumbleupon3:before{content:"\e946"}.icon-stumbleupon4:before{content:"\e947"}.icon-lastfm3:before{content:"\e948"}.icon-lastfm4:before{content:"\e949"}.icon-rdio:before{content:"\e94a"}.icon-rdio2:before{content:"\e94b"}.icon-spotify:before{content:"\e94c"}.icon-spotify2:before{content:"\e95b"}.icon-qq:before{content:"\e95c"}.icon-instagram3:before{content:"\e95d"}.icon-dropbox:before{content:"\e95e"}.icon-evernote:before{content:"\e94d"}.icon-flattr2:before{content:"\e94e"}.icon-skype2:before{content:"\e94f"}.icon-skype3:before{content:"\e950"}.icon-renren:before{content:"\e951"}.icon-sina-weibo:before{content:"\e952"}.icon-paypal4:before{content:"\e953"}.icon-picasa:before{content:"\e954"}.icon-soundcloud3:before{content:"\e955"}.icon-mixi:before{content:"\e956"}.icon-behance:before{content:"\e957"}.icon-circles:before{content:"\e958"}.icon-vk:before{content:"\e959"}.icon-smashing:before{content:"\e95a"}

@font-face{font-family:IcoMoon-Free;src:url(fonts/IcoMoon-Free.ttf) format('truetype');font-weight:400;font-style:normal}.icon{font-family:IcoMoon-Free!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;-o-font-feature-settings:"liga";font-feature-settings:"liga";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-home:before{content:"\e900"}.icon-home2:before{content:"\e901"}.icon-home3:before{content:"\e902"}.icon-office:before{content:"\e903"}.icon-newspaper:before{content:"\e904"}.icon-pencil:before{content:"\e905"}.icon-pencil2:before{content:"\e906"}.icon-quill:before{content:"\e907"}.icon-pen:before{content:"\e908"}.icon-blog:before{content:"\e909"}.icon-eyedropper:before{content:"\e90a"}.icon-droplet:before{content:"\e90b"}.icon-paint-format:before{content:"\e90c"}.icon-image:before{content:"\e90d"}.icon-images:before{content:"\e90e"}.icon-camera:before{content:"\e90f"}.icon-headphones:before{content:"\e910"}.icon-music:before{content:"\e911"}.icon-play:before{content:"\e912"}.icon-film:before{content:"\e913"}.icon-video-camera:before{content:"\e914"}.icon-dice:before{content:"\e915"}.icon-pacman:before{content:"\e916"}.icon-spades:before{content:"\e917"}.icon-clubs:before{content:"\e918"}.icon-diamonds:before{content:"\e919"}.icon-bullhorn:before{content:"\e91a"}.icon-connection:before{content:"\e91b"}.icon-podcast:before{content:"\e91c"}.icon-feed:before{content:"\e91d"}.icon-mic:before{content:"\e91e"}.icon-book:before{content:"\e91f"}.icon-books:before{content:"\e920"}.icon-library:before{content:"\e921"}.icon-file-text:before{content:"\e922"}.icon-profile:before{content:"\e923"}.icon-file-empty:before{content:"\e924"}.icon-files-empty:before{content:"\e925"}.icon-file-text2:before{content:"\e926"}.icon-file-picture:before{content:"\e927"}.icon-file-music:before{content:"\e928"}.icon-file-play:before{content:"\e929"}.icon-file-video:before{content:"\e92a"}.icon-file-zip:before{content:"\e92b"}.icon-copy:before{content:"\e92c"}.icon-paste:before{content:"\e92d"}.icon-stack:before{content:"\e92e"}.icon-folder:before{content:"\e92f"}.icon-folder-open:before{content:"\e930"}.icon-folder-plus:before{content:"\e931"}.icon-folder-minus:before{content:"\e932"}.icon-folder-download:before{content:"\e933"}.icon-folder-upload:before{content:"\e934"}.icon-price-tag:before{content:"\e935"}.icon-price-tags:before{content:"\e936"}.icon-barcode:before{content:"\e937"}.icon-qrcode:before{content:"\e938"}.icon-ticket:before{content:"\e939"}.icon-cart:before{content:"\e93a"}.icon-coin-dollar:before{content:"\e93b"}.icon-coin-euro:before{content:"\e93c"}.icon-coin-pound:before{content:"\e93d"}.icon-coin-yen:before{content:"\e93e"}.icon-credit-card:before{content:"\e93f"}.icon-calculator:before{content:"\e940"}.icon-lifebuoy:before{content:"\e941"}.icon-phone:before{content:"\e942"}.icon-phone-hang-up:before{content:"\e943"}.icon-address-book:before{content:"\e944"}.icon-envelop:before{content:"\e945"}.icon-pushpin:before{content:"\e946"}.icon-location:before{content:"\e947"}.icon-location2:before{content:"\e948"}.icon-compass:before{content:"\e949"}.icon-compass2:before{content:"\e94a"}.icon-map:before{content:"\e94b"}.icon-map2:before{content:"\e94c"}.icon-history:before{content:"\e94d"}.icon-clock:before{content:"\e94e"}.icon-clock2:before{content:"\e94f"}.icon-alarm:before{content:"\e950"}.icon-bell:before{content:"\e951"}.icon-stopwatch:before{content:"\e952"}.icon-calendar:before{content:"\e953"}.icon-printer:before{content:"\e954"}.icon-keyboard:before{content:"\e955"}.icon-display:before{content:"\e956"}.icon-laptop:before{content:"\e957"}.icon-mobile:before{content:"\e958"}.icon-mobile2:before{content:"\e959"}.icon-tablet:before{content:"\e95a"}.icon-tv:before{content:"\e95b"}.icon-drawer:before{content:"\e95c"}.icon-drawer2:before{content:"\e95d"}.icon-box-add:before{content:"\e95e"}.icon-box-remove:before{content:"\e95f"}.icon-download:before{content:"\e960"}.icon-upload:before{content:"\e961"}.icon-floppy-disk:before{content:"\e962"}.icon-drive:before{content:"\e963"}.icon-database:before{content:"\e964"}.icon-undo:before{content:"\e965"}.icon-redo:before{content:"\e966"}.icon-undo2:before{content:"\e967"}.icon-redo2:before{content:"\e968"}.icon-forward:before{content:"\e969"}.icon-reply:before{content:"\e96a"}.icon-bubble:before{content:"\e96b"}.icon-bubbles:before{content:"\e96c"}.icon-bubbles2:before{content:"\e96d"}.icon-bubble2:before{content:"\e96e"}.icon-bubbles3:before{content:"\e96f"}.icon-bubbles4:before{content:"\e970"}.icon-user:before{content:"\e971"}.icon-users:before{content:"\e972"}.icon-user-plus:before{content:"\e973"}.icon-user-minus:before{content:"\e974"}.icon-user-check:before{content:"\e975"}.icon-user-tie:before{content:"\e976"}.icon-quotes-left:before{content:"\e977"}.icon-quotes-right:before{content:"\e978"}.icon-hour-glass:before{content:"\e979"}.icon-spinner:before{content:"\e97a"}.icon-spinner2:before{content:"\e97b"}.icon-spinner3:before{content:"\e97c"}.icon-spinner4:before{content:"\e97d"}.icon-spinner5:before{content:"\e97e"}.icon-spinner6:before{content:"\e97f"}.icon-spinner7:before{content:"\e980"}.icon-spinner8:before{content:"\e981"}.icon-spinner9:before{content:"\e982"}.icon-spinner10:before{content:"\e983"}.icon-spinner11:before{content:"\e984"}.icon-binoculars:before{content:"\e985"}.icon-search:before{content:"\e986"}.icon-zoom-in:before{content:"\e987"}.icon-zoom-out:before{content:"\e988"}.icon-enlarge:before{content:"\e989"}.icon-shrink:before{content:"\e98a"}.icon-enlarge2:before{content:"\e98b"}.icon-shrink2:before{content:"\e98c"}.icon-key:before{content:"\e98d"}.icon-key2:before{content:"\e98e"}.icon-lock:before{content:"\e98f"}.icon-unlocked:before{content:"\e990"}.icon-wrench:before{content:"\e991"}.icon-equalizer:before{content:"\e992"}.icon-equalizer2:before{content:"\e993"}.icon-cog:before{content:"\e994"}.icon-cogs:before{content:"\e995"}.icon-hammer:before{content:"\e996"}.icon-magic-wand:before{content:"\e997"}.icon-aid-kit:before{content:"\e998"}.icon-bug:before{content:"\e999"}.icon-pie-chart:before{content:"\e99a"}.icon-stats-dots:before{content:"\e99b"}.icon-stats-bars:before{content:"\e99c"}.icon-stats-bars2:before{content:"\e99d"}.icon-trophy:before{content:"\e99e"}.icon-gift:before{content:"\e99f"}.icon-glass:before{content:"\e9a0"}.icon-glass2:before{content:"\e9a1"}.icon-mug:before{content:"\e9a2"}.icon-spoon-knife:before{content:"\e9a3"}.icon-leaf:before{content:"\e9a4"}.icon-rocket:before{content:"\e9a5"}.icon-meter:before{content:"\e9a6"}.icon-meter2:before{content:"\e9a7"}.icon-hammer2:before{content:"\e9a8"}.icon-fire:before{content:"\e9a9"}.icon-lab:before{content:"\e9aa"}.icon-magnet:before{content:"\e9ab"}.icon-bin:before{content:"\e9ac"}.icon-bin2:before{content:"\e9ad"}.icon-briefcase:before{content:"\e9ae"}.icon-airplane:before{content:"\e9af"}.icon-truck:before{content:"\e9b0"}.icon-road:before{content:"\e9b1"}.icon-accessibility:before{content:"\e9b2"}.icon-target:before{content:"\e9b3"}.icon-shield:before{content:"\e9b4"}.icon-power:before{content:"\e9b5"}.icon-switch:before{content:"\e9b6"}.icon-power-cord:before{content:"\e9b7"}.icon-clipboard:before{content:"\e9b8"}.icon-list-numbered:before{content:"\e9b9"}.icon-list:before{content:"\e9ba"}.icon-list2:before{content:"\e9bb"}.icon-tree:before{content:"\e9bc"}.icon-menu:before{content:"\e9bd"}.icon-menu2:before{content:"\e9be"}.icon-menu3:before{content:"\e9bf"}.icon-menu4:before{content:"\e9c0"}.icon-cloud:before{content:"\e9c1"}.icon-cloud-download:before{content:"\e9c2"}.icon-cloud-upload:before{content:"\e9c3"}.icon-cloud-check:before{content:"\e9c4"}.icon-download2:before{content:"\e9c5"}.icon-upload2:before{content:"\e9c6"}.icon-download3:before{content:"\e9c7"}.icon-upload3:before{content:"\e9c8"}.icon-sphere:before{content:"\e9c9"}.icon-earth:before{content:"\e9ca"}.icon-link:before{content:"\e9cb"}.icon-flag:before{content:"\e9cc"}.icon-attachment:before{content:"\e9cd"}.icon-eye:before{content:"\e9ce"}.icon-eye-plus:before{content:"\e9cf"}.icon-eye-minus:before{content:"\e9d0"}.icon-eye-blocked:before{content:"\e9d1"}.icon-bookmark:before{content:"\e9d2"}.icon-bookmarks:before{content:"\e9d3"}.icon-sun:before{content:"\e9d4"}.icon-contrast:before{content:"\e9d5"}.icon-brightness-contrast:before{content:"\e9d6"}.icon-star-empty:before{content:"\e9d7"}.icon-star-half:before{content:"\e9d8"}.icon-star-full:before{content:"\e9d9"}.icon-heart:before{content:"\e9da"}.icon-heart-broken:before{content:"\e9db"}.icon-man:before{content:"\e9dc"}.icon-woman:before{content:"\e9dd"}.icon-man-woman:before{content:"\e9de"}.icon-happy:before{content:"\e9df"}.icon-happy2:before{content:"\e9e0"}.icon-smile:before{content:"\e9e1"}.icon-smile2:before{content:"\e9e2"}.icon-tongue:before{content:"\e9e3"}.icon-tongue2:before{content:"\e9e4"}.icon-sad:before{content:"\e9e5"}.icon-sad2:before{content:"\e9e6"}.icon-wink:before{content:"\e9e7"}.icon-wink2:before{content:"\e9e8"}.icon-grin:before{content:"\e9e9"}.icon-grin2:before{content:"\e9ea"}.icon-cool:before{content:"\e9eb"}.icon-cool2:before{content:"\e9ec"}.icon-angry:before{content:"\e9ed"}.icon-angry2:before{content:"\e9ee"}.icon-evil:before{content:"\e9ef"}.icon-evil2:before{content:"\e9f0"}.icon-shocked:before{content:"\e9f1"}.icon-shocked2:before{content:"\e9f2"}.icon-baffled:before{content:"\e9f3"}.icon-baffled2:before{content:"\e9f4"}.icon-confused:before{content:"\e9f5"}.icon-confused2:before{content:"\e9f6"}.icon-neutral:before{content:"\e9f7"}.icon-neutral2:before{content:"\e9f8"}.icon-hipster:before{content:"\e9f9"}.icon-hipster2:before{content:"\e9fa"}.icon-wondering:before{content:"\e9fb"}.icon-wondering2:before{content:"\e9fc"}.icon-sleepy:before{content:"\e9fd"}.icon-sleepy2:before{content:"\e9fe"}.icon-frustrated:before{content:"\e9ff"}.icon-frustrated2:before{content:"\ea00"}.icon-crying:before{content:"\ea01"}.icon-crying2:before{content:"\ea02"}.icon-point-up:before{content:"\ea03"}.icon-point-right:before{content:"\ea04"}.icon-point-down:before{content:"\ea05"}.icon-point-left:before{content:"\ea06"}.icon-warning:before{content:"\ea07"}.icon-notification:before{content:"\ea08"}.icon-question:before{content:"\ea09"}.icon-plus:before{content:"\ea0a"}.icon-minus:before{content:"\ea0b"}.icon-info:before{content:"\ea0c"}.icon-cancel-circle:before{content:"\ea0d"}.icon-blocked:before{content:"\ea0e"}.icon-cross:before{content:"\ea0f"}.icon-checkmark:before{content:"\ea10"}.icon-checkmark2:before{content:"\ea11"}.icon-spell-check:before{content:"\ea12"}.icon-enter:before{content:"\ea13"}.icon-exit:before{content:"\ea14"}.icon-play2:before{content:"\ea15"}.icon-pause:before{content:"\ea16"}.icon-stop:before{content:"\ea17"}.icon-previous:before{content:"\ea18"}.icon-next:before{content:"\ea19"}.icon-backward:before{content:"\ea1a"}.icon-forward2:before{content:"\ea1b"}.icon-play3:before{content:"\ea1c"}.icon-pause2:before{content:"\ea1d"}.icon-stop2:before{content:"\ea1e"}.icon-backward2:before{content:"\ea1f"}.icon-forward3:before{content:"\ea20"}.icon-first:before{content:"\ea21"}.icon-last:before{content:"\ea22"}.icon-previous2:before{content:"\ea23"}.icon-next2:before{content:"\ea24"}.icon-eject:before{content:"\ea25"}.icon-volume-high:before{content:"\ea26"}.icon-volume-medium:before{content:"\ea27"}.icon-volume-low:before{content:"\ea28"}.icon-volume-mute:before{content:"\ea29"}.icon-volume-mute2:before{content:"\ea2a"}.icon-volume-increase:before{content:"\ea2b"}.icon-volume-decrease:before{content:"\ea2c"}.icon-loop:before{content:"\ea2d"}.icon-loop2:before{content:"\ea2e"}.icon-infinite:before{content:"\ea2f"}.icon-shuffle:before{content:"\ea30"}.icon-arrow-up-left:before{content:"\ea31"}.icon-arrow-up:before{content:"\ea32"}.icon-arrow-up-right:before{content:"\ea33"}.icon-arrow-right:before{content:"\ea34"}.icon-arrow-down-right:before{content:"\ea35"}.icon-arrow-down:before{content:"\ea36"}.icon-arrow-down-left:before{content:"\ea37"}.icon-arrow-left:before{content:"\ea38"}.icon-arrow-up-left2:before{content:"\ea39"}.icon-arrow-up2:before{content:"\ea3a"}.icon-arrow-up-right2:before{content:"\ea3b"}.icon-arrow-right2:before{content:"\ea3c"}.icon-arrow-down-right2:before{content:"\ea3d"}.icon-arrow-down2:before{content:"\ea3e"}.icon-arrow-down-left2:before{content:"\ea3f"}.icon-arrow-left2:before{content:"\ea40"}.icon-circle-up:before{content:"\ea41"}.icon-circle-right:before{content:"\ea42"}.icon-circle-down:before{content:"\ea43"}.icon-circle-left:before{content:"\ea44"}.icon-tab:before{content:"\ea45"}.icon-move-up:before{content:"\ea46"}.icon-move-down:before{content:"\ea47"}.icon-sort-alpha-asc:before{content:"\ea48"}.icon-sort-alpha-desc:before{content:"\ea49"}.icon-sort-numeric-asc:before{content:"\ea4a"}.icon-sort-numberic-desc:before{content:"\ea4b"}.icon-sort-amount-asc:before{content:"\ea4c"}.icon-sort-amount-desc:before{content:"\ea4d"}.icon-command:before{content:"\ea4e"}.icon-shift:before{content:"\ea4f"}.icon-ctrl:before{content:"\ea50"}.icon-opt:before{content:"\ea51"}.icon-checkbox-checked:before{content:"\ea52"}.icon-checkbox-unchecked:before{content:"\ea53"}.icon-radio-checked:before{content:"\ea54"}.icon-radio-checked2:before{content:"\ea55"}.icon-radio-unchecked:before{content:"\ea56"}.icon-crop:before{content:"\ea57"}.icon-make-group:before{content:"\ea58"}.icon-ungroup:before{content:"\ea59"}.icon-scissors:before{content:"\ea5a"}.icon-filter:before{content:"\ea5b"}.icon-font:before{content:"\ea5c"}.icon-ligature:before{content:"\ea5d"}.icon-ligature2:before{content:"\ea5e"}.icon-text-height:before{content:"\ea5f"}.icon-text-width:before{content:"\ea60"}.icon-font-size:before{content:"\ea61"}.icon-bold:before{content:"\ea62"}.icon-underline:before{content:"\ea63"}.icon-italic:before{content:"\ea64"}.icon-strikethrough:before{content:"\ea65"}.icon-omega:before{content:"\ea66"}.icon-sigma:before{content:"\ea67"}.icon-page-break:before{content:"\ea68"}.icon-superscript:before{content:"\ea69"}.icon-subscript:before{content:"\ea6a"}.icon-superscript2:before{content:"\ea6b"}.icon-subscript2:before{content:"\ea6c"}.icon-text-color:before{content:"\ea6d"}.icon-pagebreak:before{content:"\ea6e"}.icon-clear-formatting:before{content:"\ea6f"}.icon-table:before{content:"\ea70"}.icon-table2:before{content:"\ea71"}.icon-insert-template:before{content:"\ea72"}.icon-pilcrow:before{content:"\ea73"}.icon-ltr:before{content:"\ea74"}.icon-rtl:before{content:"\ea75"}.icon-section:before{content:"\ea76"}.icon-paragraph-left:before{content:"\ea77"}.icon-paragraph-center:before{content:"\ea78"}.icon-paragraph-right:before{content:"\ea79"}.icon-paragraph-justify:before{content:"\ea7a"}.icon-indent-increase:before{content:"\ea7b"}.icon-indent-decrease:before{content:"\ea7c"}.icon-share:before{content:"\ea7d"}.icon-new-tab:before{content:"\ea7e"}.icon-embed:before{content:"\ea7f"}.icon-embed2:before{content:"\ea80"}.icon-terminal:before{content:"\ea81"}.icon-share2:before{content:"\ea82"}.icon-mail:before{content:"\ea83"}.icon-mail2:before{content:"\ea84"}.icon-mail3:before{content:"\ea85"}.icon-mail4:before{content:"\ea86"}.icon-amazon:before{content:"\ea87"}.icon-google:before{content:"\ea88"}.icon-google2:before{content:"\ea89"}.icon-google3:before{content:"\ea8a"}.icon-google-plus:before{content:"\ea8b"}.icon-google-plus2:before{content:"\ea8c"}.icon-google-plus3:before{content:"\ea8d"}.icon-hangouts:before{content:"\ea8e"}.icon-google-drive:before{content:"\ea8f"}.icon-facebook:before{content:"\ea90"}.icon-facebook2:before{content:"\ea91"}.icon-instagram:before{content:"\ea92"}.icon-whatsapp:before{content:"\ea93"}.icon-spotify:before{content:"\ea94"}.icon-telegram:before{content:"\ea95"}.icon-twitter:before{content:"\ea96"}.icon-vine:before{content:"\ea97"}.icon-vk:before{content:"\ea98"}.icon-renren:before{content:"\ea99"}.icon-sina-weibo:before{content:"\ea9a"}.icon-rss:before{content:"\ea9b"}.icon-rss2:before{content:"\ea9c"}.icon-youtube:before{content:"\ea9d"}.icon-youtube2:before{content:"\ea9e"}.icon-twitch:before{content:"\ea9f"}.icon-vimeo:before{content:"\eaa0"}.icon-vimeo2:before{content:"\eaa1"}.icon-lanyrd:before{content:"\eaa2"}.icon-flickr:before{content:"\eaa3"}.icon-flickr2:before{content:"\eaa4"}.icon-flickr3:before{content:"\eaa5"}.icon-flickr4:before{content:"\eaa6"}.icon-dribbble:before{content:"\eaa7"}.icon-behance:before{content:"\eaa8"}.icon-behance2:before{content:"\eaa9"}.icon-deviantart:before{content:"\eaaa"}.icon-500px:before{content:"\eaab"}.icon-steam:before{content:"\eaac"}.icon-steam2:before{content:"\eaad"}.icon-dropbox:before{content:"\eaae"}.icon-onedrive:before{content:"\eaaf"}.icon-github:before{content:"\eab0"}.icon-npm:before{content:"\eab1"}.icon-basecamp:before{content:"\eab2"}.icon-trello:before{content:"\eab3"}.icon-wordpress:before{content:"\eab4"}.icon-joomla:before{content:"\eab5"}.icon-ello:before{content:"\eab6"}.icon-blogger:before{content:"\eab7"}.icon-blogger2:before{content:"\eab8"}.icon-tumblr:before{content:"\eab9"}.icon-tumblr2:before{content:"\eaba"}.icon-yahoo:before{content:"\eabb"}.icon-yahoo2:before{content:"\eabc"}.icon-tux:before{content:"\eabd"}.icon-appleinc:before{content:"\eabe"}.icon-finder:before{content:"\eabf"}.icon-android:before{content:"\eac0"}.icon-windows:before{content:"\eac1"}.icon-windows8:before{content:"\eac2"}.icon-soundcloud:before{content:"\eac3"}.icon-soundcloud2:before{content:"\eac4"}.icon-skype:before{content:"\eac5"}.icon-reddit:before{content:"\eac6"}.icon-hackernews:before{content:"\eac7"}.icon-wikipedia:before{content:"\eac8"}.icon-linkedin:before{content:"\eac9"}.icon-linkedin2:before{content:"\eaca"}.icon-lastfm:before{content:"\eacb"}.icon-lastfm2:before{content:"\eacc"}.icon-delicious:before{content:"\eacd"}.icon-stumbleupon:before{content:"\eace"}.icon-stumbleupon2:before{content:"\eacf"}.icon-stackoverflow:before{content:"\ead0"}.icon-pinterest:before{content:"\ead1"}.icon-pinterest2:before{content:"\ead2"}.icon-xing:before{content:"\ead3"}.icon-xing2:before{content:"\ead4"}.icon-flattr:before{content:"\ead5"}.icon-foursquare:before{content:"\ead6"}.icon-yelp:before{content:"\ead7"}.icon-paypal:before{content:"\ead8"}.icon-chrome:before{content:"\ead9"}.icon-firefox:before{content:"\eada"}.icon-IE:before{content:"\eadb"}.icon-edge:before{content:"\eadc"}.icon-safari:before{content:"\eadd"}.icon-opera:before{content:"\eade"}.icon-file-pdf:before{content:"\eadf"}.icon-file-openoffice:before{content:"\eae0"}.icon-file-word:before{content:"\eae1"}.icon-file-excel:before{content:"\eae2"}.icon-libreoffice:before{content:"\eae3"}.icon-html-five:before{content:"\eae4"}.icon-html-five2:before{content:"\eae5"}.icon-css3:before{content:"\eae6"}.icon-git:before{content:"\eae7"}.icon-codepen:before{content:"\eae8"}.icon-svg:before{content:"\eae9"}.icon-IcoMoon:before{content:"\eaea"}.icon-uni21:before{content:"\21"}.icon-uni22:before{content:"\22"}.icon-uni23:before{content:"\23"}.icon-uni24:before{content:"\24"}.icon-uni25:before{content:"\25"}.icon-uni26:before{content:"\26"}.icon-uni27:before{content:"\27"}.icon-uni28:before{content:"\28"}.icon-uni29:before{content:"\29"}.icon-uni2A:before{content:"\2a"}.icon-uni2B:before{content:"\2b"}.icon-uni2C:before{content:"\2c"}.icon-uni2D:before{content:"\2d"}.icon-uni2E:before{content:"\2e"}.icon-uni2F:before{content:"\2f"}.icon-uni30:before{content:"\30"}.icon-uni31:before{content:"\31"}.icon-uni32:before{content:"\32"}.icon-uni33:before{content:"\33"}.icon-uni34:before{content:"\34"}.icon-uni35:before{content:"\35"}.icon-uni36:before{content:"\36"}.icon-uni37:before{content:"\37"}.icon-uni38:before{content:"\38"}.icon-uni39:before{content:"\39"}.icon-uni3A:before{content:"\3a"}.icon-uni3B:before{content:"\3b"}.icon-uni3C:before{content:"\3c"}.icon-uni3D:before{content:"\3d"}.icon-uni3E:before{content:"\3e"}.icon-uni3F:before{content:"\3f"}.icon-uni40:before{content:"\40"}.icon-uni41:before{content:"\41"}.icon-uni42:before{content:"\42"}.icon-uni43:before{content:"\43"}.icon-uni44:before{content:"\44"}.icon-uni45:before{content:"\45"}.icon-uni46:before{content:"\46"}.icon-uni47:before{content:"\47"}.icon-uni48:before{content:"\48"}.icon-uni49:before{content:"\49"}.icon-uni4A:before{content:"\4a"}.icon-uni4B:before{content:"\4b"}.icon-uni4C:before{content:"\4c"}.icon-uni4D:before{content:"\4d"}.icon-uni4E:before{content:"\4e"}.icon-uni4F:before{content:"\4f"}.icon-uni50:before{content:"\50"}.icon-uni51:before{content:"\51"}.icon-uni52:before{content:"\52"}.icon-uni53:before{content:"\53"}.icon-uni54:before{content:"\54"}.icon-uni55:before{content:"\55"}.icon-uni56:before{content:"\56"}.icon-uni57:before{content:"\57"}.icon-uni58:before{content:"\58"}.icon-uni59:before{content:"\59"}.icon-uni5A:before{content:"\5a"}.icon-uni5B:before{content:"\5b"}.icon-uni5C:before{content:"\5c"}.icon-uni5D:before{content:"\5d"}.icon-uni5E:before{content:"\5e"}.icon-uni5F:before{content:"\5f"}.icon-uni60:before{content:"\60"}.icon-uni61:before{content:"\61"}.icon-uni62:before{content:"\62"}.icon-uni63:before{content:"\63"}.icon-uni64:before{content:"\64"}.icon-uni65:before{content:"\65"}.icon-uni66:before{content:"\66"}.icon-uni67:before{content:"\67"}.icon-uni68:before{content:"\68"}.icon-uni69:before{content:"\69"}.icon-uni6A:before{content:"\6a"}.icon-uni6B:before{content:"\6b"}.icon-uni6C:before{content:"\6c"}.icon-uni6D:before{content:"\6d"}.icon-uni6E:before{content:"\6e"}.icon-uni6F:before{content:"\6f"}.icon-uni70:before{content:"\70"}.icon-uni71:before{content:"\71"}.icon-uni72:before{content:"\72"}.icon-uni73:before{content:"\73"}.icon-uni74:before{content:"\74"}.icon-uni75:before{content:"\75"}.icon-uni76:before{content:"\76"}.icon-uni77:before{content:"\77"}.icon-uni78:before{content:"\78"}.icon-uni79:before{content:"\79"}.icon-uni7A:before{content:"\7a"}.icon-uni7B:before{content:"\7b"}.icon-uni7C:before{content:"\7c"}.icon-uni7D:before{content:"\7d"}.icon-uni7E:before{content:"\7e"}.icon-uniA9:before{content:"\a9"}

	

/*	LIGHTBOX

/*=============*/

	.nivo-lightbox-overlay{position:fixed;top:0;left:0;z-index:99998;width:100%;height:100%;overflow:hidden;visibility:hidden;opacity:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.nivo-lightbox-overlay.nivo-lightbox-open{visibility:visible;opacity:1}.nivo-lightbox-wrap{position:absolute;top:10%;bottom:10%;left:10%;right:10%}.nivo-lightbox-content{width:100%;height:100%}.nivo-lightbox-title-wrap{position:absolute;bottom:0;left:0;width:100%;z-index:99999;text-align:center}.nivo-lightbox-nav{display:none}.nivo-lightbox-prev{position:absolute;top:50%;left:0}.nivo-lightbox-next{position:absolute;top:50%;right:0}.nivo-lightbox-close{position:absolute;top:4%;right:4%}.nivo-lightbox-image{text-align:center}.nivo-lightbox-image img{max-width:100%;max-height:100%;width:auto;height:auto;vertical-align:middle}.nivo-lightbox-content iframe{width:100%;height:100%}.nivo-lightbox-ajax,.nivo-lightbox-inline{max-height:100%;overflow:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.nivo-lightbox-error{display:table;text-align:center;width:100%;height:100%;color:#fff;text-shadow:0 1px 1px #000}.nivo-lightbox-error p{display:table-cell;vertical-align:middle}.nivo-lightbox-notouch .nivo-lightbox-effect-fade,.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,.nivo-lightbox-notouch .nivo-lightbox-effect-fall,.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp{-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap{-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-o-transition:all .3s;transition:all .3s;-webkit-transform:scale(0.7);-moz-transform:scale(0.7);-ms-transform:scale(0.7);transform:scale(0.7)}.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap,.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap{-webkit-transition:all .3s cubic-bezier(0.25,.5,.5,.9);-moz-transition:all .3s cubic-bezier(0.25,.5,.5,.9);-ms-transition:all .3s cubic-bezier(0.25,.5,.5,.9);-o-transition:all .3s cubic-bezier(0.25,.5,.5,.9);transition:all .3s cubic-bezier(0.25,.5,.5,.9)}.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap{-webkit-transform:translateX(-10%);-moz-transform:translateX(-10%);-ms-transform:translateX(-10%);transform:translateX(-10%)}.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap{-webkit-transform:translateX(10%);-moz-transform:translateX(10%);-ms-transform:translateX(10%);transform:translateX(10%)}.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap{-webkit-transform:translateY(-10%);-moz-transform:translateY(-10%);-ms-transform:translateY(-10%);transform:translateY(-10%)}.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap{-webkit-transform:translateY(10%);-moz-transform:translateY(10%);-ms-transform:translateY(10%);transform:translateY(10%)}.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap,.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall{-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.nivo-lightbox-effect-fall .nivo-lightbox-wrap{-webkit-transition:all .3s ease-out;-moz-transition:all .3s ease-out;-ms-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;-webkit-transform:translateZ(300px);-moz-transform:translateZ(300px);-ms-transform:translateZ(300px);transform:translateZ(300px)}.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0)}.nivo-lightbox-theme-default.nivo-lightbox-overlay{background:#666;background:rgba(0,0,0,.6)}.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading{background:url(images/loading.gif) no-repeat 50% 50%}.nivo-lightbox-theme-default .nivo-lightbox-nav{top:10%;width:8%;height:80%;text-indent:-9999px;background-repeat:no-repeat;background-position:50% 50%;opacity:.5}.nivo-lightbox-theme-default .nivo-lightbox-nav:hover{opacity:1}.nivo-lightbox-theme-default .nivo-lightbox-prev{background-image:url(images/prev.png);border-radius:0 3px 3px 0}.nivo-lightbox-theme-default .nivo-lightbox-next{background-image:url(images/next.png);border-radius:3px 0 0 3px}.nivo-lightbox-theme-default .nivo-lightbox-close{display:block;background:url(images/close.png) no-repeat;width:16px;height:16px;text-indent:-9999px;opacity:.5}.nivo-lightbox-theme-default .nivo-lightbox-close:hover{opacity:1}.nivo-lightbox-theme-default .nivo-lightbox-title-wrap{bottom:-7%}.nivo-lightbox-theme-default .nivo-lightbox-title{font:14px/20px 'Helvetica Neue',Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;background:#000;color:#fff;padding:7px 15px;border-radius:30px}.nivo-lightbox-theme-default .nivo-lightbox-image img{background:#fff;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.4);-moz-box-shadow:0 1px 1px rgba(0,0,0,.4);box-shadow:0 1px 1px rgba(0,0,0,.4)}.nivo-lightbox-theme-default .nivo-lightbox-ajax,.nivo-lightbox-theme-default .nivo-lightbox-inline{background:#fff;padding:40px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.4);-moz-box-shadow:0 1px 1px rgba(0,0,0,.4);box-shadow:0 1px 1px rgba(0,0,0,.4)}@media (-webkit-min-device-pixel-ratio:1.3),(-o-min-device-pixel-ratio:2.6/2),(min--moz-device-pixel-ratio:1.3),(min-device-pixel-ratio:1.3),(min-resolution:1.3dppx){.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading{background-image:url(images/loading@2x.gif);background-size:32px 32px}.nivo-lightbox-theme-default .nivo-lightbox-prev{background-image:url(images/prev@2x.png);background-size:48px 48px}.nivo-lightbox-theme-default .nivo-lightbox-next{background-image:url(images/next@2x.png);background-size:48px 48px}.nivo-lightbox-theme-default .nivo-lightbox-close{background-image:url(images/close@2x.png);background-size:16px 16px}}

/*  CUSTOM FONT-FAMILY

/*============*/

	

	.ls .lang_sel_sel:before,

	.widget_icl_lang_sel_widget .lang_sel_sel:before,

	.ninzio-nav-single a:before,

	.widget_recent_comments ul li:before,

	.widget_twitter ul li:before,

	.nz-testimonials:before,

	.nz-testimonials:after,

	.nz-tweets:before,

	.nz-tagline .tagline-title:after,

	.nz-media-slider .flex-direction-nav a:before,

	.post-gallery .flex-direction-nav a:before,

	.ninzio-overlay:before,

	.nz-clients .owl-controls .owl-buttons div,

	.woocommerce .ninzio-card-wrapper > .button,

	.woocommerce .product .added_to_cart,

	.woocommerce-tabs .comment-form-rating .stars a:after,

	.woocommerce .woocommerce-product-rating .star-rating:before,

	.woocommerce-page .woocommerce-product-rating .star-rating:before,

	.woocommerce .comment-text .star-rating:before,

	.widget_recent_reviews .star-rating:before,

	.widget_top_rated_products .star-rating:before,

	.woocommerce .woocommerce-product-rating .star-rating span:before,

	.woocommerce-page .woocommerce-product-rating .star-rating span:before,

	.woocommerce .comment-text .star-rating span:before,

	.widget_recent_reviews .star-rating span:before,

	.widget_top_rated_products .star-rating span:before,

	.widget_product_search form:after,

	.mi	{

		font-family: icomoon;

		speak: none;

		font-style: normal;

		font-weight: 400;

		font-variant: normal;

		text-transform: none;

		line-height:1em;

		font-size: inherit;

		-webkit-font-smoothing: antialiased;

		-moz-osx-font-smoothing: grayscale;

	}

/*	MIX

/*=============*/

	.hidden{display:none!important;visibility:hidden!important}

	.visible{display:block!important;visibility:visible!important;}

	.nz-clearfix:after{content:"";display:table;clear:both}

	/*Box sizing*/		

	*, *:after, *:before {

		-webkit-box-sizing: border-box;

		-moz-box-sizing: border-box;

		box-sizing: border-box;

		word-wrap: break-word;

	}

	html{

		position: static;

		height: 100% !important;

		overflow-y: scroll;

		overflow-x:hidden;

		font-family:Arial, Helvetica, sans-serif;

		-webkit-font-smoothing: antialiased;

    	-moz-osx-font-smoothing: grayscale;

	}

	body{

		margin: 0;

		min-height: 100%;

	}

	/*Media*/

	figure {margin: 0}

	svg:not(:root) {overflow: hidden;}

	iframe,

	object,

	embed {

		border: none; 

		vertical-align: bottom;

	}

	img,

	img[class*="wp-image"] {

		max-width: 100%; 

		height: auto !important; 

		border: 0;

		-ms-interpolation-mode: bicubic;

		vertical-align: bottom;

		margin:0;

	}

	table {

		border-collapse: collapse; 

		border-spacing: 0;

	}

	th {text-align: left}

	blockquote, q {quotes: none;}

	q:before, q:after {content: ''; content: none;}

	blockquote > p:last-child {margin-bottom: 0;}

	ul, ol {list-style-position: inside;}

	a {text-decoration: none;}

	a:hover, 

	a:active {outline: none;}

	abbr[title], 

	dfn[title] 

	{cursor: help;}

	ins, mark {text-decoration: none;}

	del {text-decoration: line-through;}

	strong, b { font-weight: bold;}

	var, address {font-style: normal;}

	sub, 

	sup {

		line-height: 0; 

		position: relative; 

		vertical-align: baseline;

	}

	sup {top: -8px;}

	sub {bottom: -4px;}

	p, q, pre, address, 

	hr, code, samp, dl, ol, ul, li ul, li ol,

	form, table, fieldset,menu,

	kbd, samp {

		margin: 0 0 15px 0; 

		padding: 0;

	}

	ul ul, ol ol {

		margin-left:20px;

	}

	tr, th, td {padding: 10px;}

	dl dd {margin-left: 25px;}

	dl {

		padding:20px 20px 15px 20px;

		border-radius: 3px;

		border:1px solid #e0e0e0;

		background-color: #ffffff;

	}

	dl dt {

		float: left;

	    clear: left;

	    width: 100px;

	    text-align: right;

	    font-weight: 700;

	}

	dl dt:after {

		content: ":";

	}

	dl dd {

		margin: 0 0 0 110px;

		padding: 0 0 5px 0;

	}

	h1, h2, h3, h4, h5, h6 {

		margin: 0 0 15px 0;

		font-weight: normal;

	}

	#top {

		position: fixed;

		bottom:170px;

		right:24px;

		background-color: rgba(0,0,0,.3);

		background-repeat: no-repeat;

		background-position: center center;

		width: 65px;

		line-height: 65px;

		text-align: center;

		height: 65px;

		cursor: pointer;

		opacity: 0;

		z-index:49;

		border-radius: 50%;

		color: #ffffff;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	#top:before {

		display: block;

		height: inherit;

		line-height: inherit;

		width: inherit;

		position: absolute;

		top: 0;

		left: 0;

	}

	#top.animate {

		opacity: 1;

	}

	.mejs-time-current {

		background-color: rgba(255,255,255,0.3) !important;

	}

	.mejs-controls button {

		background-color:transparent !important;

		box-shadow:none !important;

		color:inherit !important;

		-webkit-transform: translateY(0) !important;

		-ms-transform: translateY(0) !important;

		transform: translateY(0) !important;

	}

	.post-video > div.wp-video {

		width: 100% !important;

	}

	.post-video,

	.post-audio {

		overflow: hidden;

		margin-bottom:40px;

		width: 100%;

	}

	.vc_custom_heading {margin-bottom: 0px !important;}

	.queryloader__overlay__percentage {

		font-size: 72px !important;

	}

	/*Remove extra br tag from uploaded image*/

	img[class*="wp-image-"] + br,

	img + br,

	img + p:empty  

	{display: none;}

	p:empty {display:none !important;}

	blockquote {

		border-left-width:5px;

		border-left-style:solid;

		padding:15px 30px;

		margin: 0 0 25px 0;

		font-family: Georgia, "Times New Roman", Times, serif;

		font-style: italic;

		background-color: #f9f9f9;

	}

	.alignleft, 

	img.alignleft {

		margin-right: 1.5em;

		display: inline;

		float: left;

	}

	.alignright, 

	img.alignright {

		margin-left: 1.5em;

		display: inline;

		float: right;

	}

	.aligncenter, 

	img.aligncenter {

		margin-right: auto;

		margin-left: auto;

		display: block;

		clear: both;

	}

	.text-center {text-align: center;}

	.text-left   {text-align: left;}

	.text-right  {text-align: right;}

	h1 > a,

	h2 > a,

	h3 > a,

	h4 > a,

	h5 > a,

	h6 > a 

	{color: inherit !important;}

	.post-video {

		overflow: hidden;

	}

	.mejs-poster img {

		display: block !important;

	}

	.wp-playlist .mejs-poster img {

		display:none !important;

	}

	.mejs-overlay-button {

		background-repeat: no-repeat !important;

	}

	.mejs-controls .mejs-time-rail .mejs-time-current {

		background:#444 !important;

	}

	.wp-playlist {

		padding: 10px !important;

		background-color: #ffffff !important;

		border-radius: 3px;

     	box-shadow: 0  0px 5px rgba(0,0,0,.1);

     	border:none !important;

	}

	.wp-playlist-item {

		padding: 10px 20px 7px 20px !important;

		border-bottom: 1px solid #eeeeee !important;

	}

	.wp-playlist-tracks .wp-playlist-item:last-child {

		border-bottom: none !important;

		padding-bottom: 0 !important;

	}

	.wp-playlist-item-length {

		right:20px !important;

		top:10px !important;

	}

	.wp-playlist-light .wp-playlist-playing {

		background-color: transparent !important;

	}

	.post-video > div.wp-video {

		width: 100% !important;

	}

	.post-video .mejs-mediaelement {

		position: relative !important;

		height: auto !important;

	}

	.post-video > div,

	.post-video .wp-video-shortcode {

		height: auto !important;

	}

	.map img {

		max-width: none;

	}

/*	FORMS

/*=============*/

	fieldset {border: none;}

	textarea,

	select[size],

	select[multiple] {

	  height: auto;

	}

	textarea {

	  min-height: 100px;

	  overflow: auto;

	  resize: vertical;

	  width: 100%;

	}

	optgroup {

	  font-style: normal;

	  font-weight: normal;

	}

	textarea,

	select,

	input[type="date"],

	input[type="datetime"],

	input[type="datetime-local"],

	input[type="email"],

	input[type="month"],

	input[type="number"],

	input[type="password"],

	input[type="search"],

	input[type="tel"],

	input[type="text"],

	input[type="time"],

	input[type="url"],

	input[type="week"] {

		display: block;

		outline: 0;

		margin: 0 0 25px 0;

		text-align: left;

		vertical-align: top;

		height:60px;

		max-width: 100%;

		width: 100%;

		padding:10px 20px;

		font-size: 16px;

		border-radius: 3px;

		border-width: 1px;

		border-style: solid;

		border-color: #bbbbbb;

		background-color:#ffffff;

		position: relative;

		font-weight: 300;

		-webkit-backface-visibility: hidden;

		-webkit-transition: all 300ms;

		transition: all 300ms;

	}

	label {

		display: block;

		margin-bottom: 8px;

		font-size: 16px;

		line-height: 26px;

	}

	input[type="radio"],

	input[type="checkbox"] {

		margin: 5px 0;

		display: inline-block;

	}

	.widget-area textarea,

	.widget-area select,

	.widget-area input[type="date"],

	.widget-area input[type="datetime"],

	.widget-area input[type="datetime-local"],

	.widget-area input[type="email"],

	.widget-area input[type="month"],

	.widget-area input[type="number"],

	.widget-area input[type="password"],

	.widget-area input[type="search"],

	.widget-area input[type="tel"],

	.widget-area input[type="text"],

	.widget-area input[type="time"],

	.widget-area input[type="url"],

	.widget-area input[type="week"] {

		height:50px;

		background-color:transparent;

	}

	.blog-widget-area textarea,

	.blog-widget-area select,

	.blog-widget-area input[type="date"],

	.blog-widget-area input[type="datetime"],

	.blog-widget-area input[type="datetime-local"],

	.blog-widget-area input[type="email"],

	.blog-widget-area input[type="month"],

	.blog-widget-area input[type="number"],

	.blog-widget-area input[type="password"],

	.blog-widget-area input[type="search"],

	.blog-widget-area input[type="tel"],

	.blog-widget-area input[type="text"],

	.blog-widget-area input[type="time"],

	.blog-widget-area input[type="url"],

	.blog-widget-area input[type="week"],

	.page-widget-area textarea,

	.page-widget-area select,

	.page-widget-area input[type="date"],

	.page-widget-area input[type="datetime"],

	.page-widget-area input[type="datetime-local"],

	.page-widget-area input[type="email"],

	.page-widget-area input[type="month"],

	.page-widget-area input[type="number"],

	.page-widget-area input[type="password"],

	.page-widget-area input[type="search"],

	.page-widget-area input[type="tel"],

	.page-widget-area input[type="text"],

	.page-widget-area input[type="time"],

	.page-widget-area input[type="url"],

	.page-widget-area input[type="week"],

	.shop-widget-area textarea,

	.shop-widget-area select,

	.shop-widget-area input[type="date"],

	.shop-widget-area input[type="datetime"],

	.shop-widget-area input[type="datetime-local"],

	.shop-widget-area input[type="email"],

	.shop-widget-area input[type="month"],

	.shop-widget-area input[type="number"],

	.shop-widget-area input[type="password"],

	.shop-widget-area input[type="search"],

	.shop-widget-area input[type="tel"],

	.shop-widget-area input[type="text"],

	.shop-widget-area input[type="time"],

	.shop-widget-area input[type="url"],

	.shop-widget-area input[type="week"],

	.portfolio-widget-area textarea,

	.portfolio-widget-area select,

	.portfolio-widget-area input[type="date"],

	.portfolio-widget-area input[type="datetime"],

	.portfolio-widget-area input[type="datetime-local"],

	.portfolio-widget-area input[type="email"],

	.portfolio-widget-area input[type="month"],

	.portfolio-widget-area input[type="number"],

	.portfolio-widget-area input[type="password"],

	.portfolio-widget-area input[type="search"],

	.portfolio-widget-area input[type="tel"],

	.portfolio-widget-area input[type="text"],

	.portfolio-widget-area input[type="time"],

	.portfolio-widget-area input[type="url"],

	.portfolio-widget-area input[type="week"] {

		background-color:#ffffff;

	}

	

/*	WPML LANGUAGE SELECT

/*=============*/

	.widget_icl_lang_sel_widget ul {

		list-style:none;

		width: 100%;

		margin-bottom: 0;

	}

	.ls > div,

	.widget_icl_lang_sel_widget > div {height: inherit !important;}

	

	.ls li a,

	.ls li a:visited,

	.widget_icl_lang_sel_widget li a,

	.widget_icl_lang_sel_widget li a:visited {

		display:block !important;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

		position: relative !important;

		height: 40px;

		line-height: 40px !important;

		padding:0 10px !important;

		border: none !important;

	}

	.widget_icl_lang_sel_widget li a,

	.widget_icl_lang_sel_widget li a:visited {

		height: 50px;

		line-height: 50px !important;

	}

	.widget_icl_lang_sel_widget li a,

	.widget_icl_lang_sel_widget li a:visited {

		padding:0px !important;

	}

	.widget_icl_lang_sel_widget #lang_sel_click a {

		background: none !important;

	}

	.ls .lang_sel_sel:before,

	.widget_icl_lang_sel_widget .lang_sel_sel:before {

		content: "\e911";

		display: block;

		position: absolute;

		top: 50%;

		font-size: 16px;

		line-height: 16px;

		height: 16px;

		width: 16px;

		margin-top: -8px;

		right: 4%;

	}

	.widget_icl_lang_sel_widget .lang_sel_sel:before {

		font-size: 12px;

		line-height: 12px;

		height: 12px;

		width: 12px;

		margin-top: -6px;

	}

	#lang_sel > ul > li:hover > .lang_sel_sel:before,

	#lang_sel_click.animate .lang_sel_sel:before {

		-webkit-transform:rotate(180deg);

		-ms-transform:rotate(180deg);

		transform:rotate(180deg);

	}

	.ls img,

	.widget_icl_lang_sel_widget img,

	#lang_sel_click .iclflag {

		vertical-align: middle;

		position: relative;

		top: -1px !important;

	}

	#lang_sel_click .lang_sel_sel {position: relative;}

	#lang_sel_click li {float: none !important;width:100% !important;}

	#lang_sel_click .lang_sel_sel {background:none !important;}

	#lang_sel ul li {position: relative;}

	.ls #lang_sel ul ul,

	.ls #lang_sel_click ul ul {

		position: absolute;

		top:0px;

		right: 0;

		display: none;

		left: auto;

		border-top:none;

		height: auto;

		visibility: visible;

		z-index: 99;

		padding-top: 40px !important;

	}

	.widget_icl_lang_sel_widget #lang_sel ul ul,

	.widget_icl_lang_sel_widget #lang_sel_click ul ul {

		position: relative;

		top:0px;

		right: 0;

		display: none;

		left: auto;

		border-top:none;

		height: auto;

		visibility: visible;

		z-index: 99;

		padding-top: 0px !important;

	}

	.no-js #lang_sel ul li:hover ul {display: block;}

	.ls .lang_sel_sel,

	.widget_icl_lang_sel_widget .lang_sel_sel {

		padding-right: 20px !important;

		position: relative;

	}

	.ls > div > ul > li .lang_sel_sel:only-child {padding-right: 10px !important;}

	.ls .lang_sel_sel:before {

		font-size: 12px;

		line-height: 12px;

		height: 12px;

		width: 12px;

		margin-top: -6px;

		right: 5px;

	}

	.ls > div > ul > li .lang_sel_sel:only-child:before,

	.widget_icl_lang_sel_widget > div > ul > li .lang_sel_sel:only-child:before {display: none;}

	#lang_sel_click li:before {display: none !important;}

	.ls .lang_sel_list_horizontal li,

	.ls .lang_sel_list_vertical li

	{float: left !important;}

	.ls .lang_sel_list_vertical .lang_sel_sel:before,

	.ls .lang_sel_list_horizontal .lang_sel_sel:before

	{display: none;}

	.ls .lang_sel_list_vertical .lang_sel_sel,

	.ls .lang_sel_list_horizontal .lang_sel_sel

	{padding-right: 10px !important;}

/*	HEADER

/*=============*/

	.desk {display: none;}

	

	.header {

		position: relative;

		width: 100%;

		z-index:99;

		box-shadow: 0 1px 3px rgba(0,0,0,0.11);

	}

	.header .logo {

		position: relative;

		overflow: hidden;

		padding: 0 25px 0 0;

		float: left;

		height:inherit;

		line-height:inherit;

		display:block;

	}

	.header .logo a {

		display: block;

		height: 100%;

		width: 100%;

		text-decoration: none;

		text-align: center;

		line-height:inherit;

	}

	.header .logo a img {

		margin-bottom: 0;

		margin-top: -2px;

		border:none; 	

		vertical-align: middle;

		width:auto;

	}

	.mob-height-60 .logo-toggle,

	.desk-height-60 .header-content 

	{line-height: 60px;}

	.mob-height-70 .logo-toggle,

	.desk-height-70 .header-content 

	{line-height: 70px;}

	.mob-height-80 .logo-toggle,

	.desk-height-80 .header-content 

	{line-height: 80px;}

	.mob-height-90 .logo-toggle,

	.desk-height-90 .header-content 

	{line-height: 90px;}

	.mob-height-100 .logo-toggle,

	.desk-height-100 .header-content 

	{line-height: 100px;}

	.mob-height-110 .logo-toggle,

	.desk-height-110 .header-content 

	{line-height: 110px;}

	.mob-height-120 .logo-toggle,

	.desk-height-120 .header-content 

	{line-height: 120px;}

	.mob-header ul,

	.desk ul {

		list-style: none;

		margin: 0;

		padding: 0;

	}

	.header-menu li[class*=" icon-"]:before, 

	.header-menu li[class^=icon-]:before

	{display: none;}

	.mi {

		display:none;

		padding-right:10px;

	}

	.header-menu li[class*=" icon-"] > a .mi, 

	.header-menu li[class^=icon-] > a .mi

	{display: inline-block;}

	.logo-toggle {position: relative;}

	.logo-toggle > .container {height: inherit;}

	.mob-header .header-content {display: none;}

	.menu-toggle,

	.sidebar-toggle {

		width: 20px;

		height: 13px;

		position: relative;

		overflow: visible;

		float:right;

		cursor: pointer;

		top: 50%;

		margin-top: -6.5px;

	}

	.sidebar-toggle {margin-left: 20px;}

	.mob-sidebar-false .sidebar-toggle,

	.desk-sidebar-false .sidebar-toggle

	{display: none;}

	.menu-toggle span,

	.sidebar-toggle span {

		position: absolute;

		overflow: hidden;

		display: block;

		z-index: 1;

		width: 20px;

		height: 3px;

		left: 0px;

		-webkit-backface-visibility: hidden;

		-webkit-transition: transform 0.4s cubic-bezier(0.680, -0.550, 0.265, 1.550);

		transition: transform 0.4s cubic-bezier(0.680, -0.550, 0.265, 1.550);

	}

	.menu-toggle span:nth-child(1),

	.sidebar-toggle span:nth-child(1) {

		top: 0px;

		-webkit-transform-origin: 0px 1.5px;

		-ms-transform-origin: 0px 1.5px;

		transform-origin: 0px 1.5px;

	}

	.menu-toggle span:nth-child(2),

	.sidebar-toggle span:nth-child(2) {

		top: 5px;

		z-index: 1;

		-webkit-transition: opacity 0.4s cubic-bezier(0.680, -0.550, 0.265, 1.550);

		transition: opacity 0.4s cubic-bezier(0.680, -0.550, 0.265, 1.550);

	}

	.menu-toggle span:nth-child(3),

	.sidebar-toggle span:nth-child(3) {

		top: 10px;

		z-index: 3;

		-webkit-transform-origin: 0px 1.5px;

		-ms-transform-origin: 0px 1.5px;

		transform-origin: 0px 1.5px;

	}

	.menu-toggle.animate span:nth-child(1),

	.sidebar-toggle.animate span:nth-child(1) {

		-webkit-transform: translateY(-2px) rotate(45deg);

		-ms-transform: translateY(-2px) rotate(45deg);

		transform: translateY(-2px) rotate(45deg);

	}

	.menu-toggle.animate span:nth-child(2),

	.sidebar-toggle.animate span:nth-child(2) {opacity: 0;}

	.menu-toggle.animate span:nth-child(3),

	.sidebar-toggle.animate span:nth-child(3) {

		-webkit-transform: translateY(2px) rotate(-45deg);

		-ms-transform: translateY(2px) rotate(-45deg);

		transform: translateY(2px) rotate(-45deg);

	}

	.mob-menu li {position: relative;}

	.mob-menu li a,

	.desk-menu .sub-menu li > a {

		display:block !important;

        -webkit-transition-timing-function: ease-out;

		-webkit-transition: background-color 300ms,color 300ms,padding-left 300ms;

        transition-timing-function: ease-out;

		transition: background-color 300ms,color 300ms,padding-left 300ms;

		position: relative !important;

		padding:20px 30px 20px 30px;

	}

	.mob-menu li a:hover {padding-left:40px;}

	.header-menu:only-child > ul > li:last-child > a:only-child,

	.header-menu:only-child > ul > li:last-child > ul > li:last-child > a:only-child,

	.header-menu:only-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a:only-child 

	{border-bottom:none;}

	.mob-int-true .mob-menu ul li > a:only-child .di,

	.desk-menu ul > li > a:only-child .di

	{display: none !important;}

	.mob-int-true .mob-menu ul ul {display: none;}

	.mob-int-false .mob-menu ul li > a > .di {display: none;}

	.mob-int-true .mob-menu ul li > a > .di,

	.desk-menu ul > li > a > .di {

		display: block;

		position: absolute;

		top: 50%;

		font-size: 16px;

		line-height: 16px;

		height: 16px;

		width: 16px;

		margin-top: -8px;

		right: 4%;

		text-align: center;

		cursor: pointer;

	}

	.mob-int-true .mob-menu ul li > a > .di {

		height: 30px;

		width: 30px;

		line-height: 30px;

		margin-top: -15px;

		right: 15px;

		border-radius: 3px;

	}

	.mob-int-true .mob-menu ul li > a.animate .di,

	.desk-menu ul > li:hover > a > .di {

		-webkit-transform:rotate(180deg);

		-ms-transform:rotate(180deg);

		transform:rotate(180deg);

	}

	.mob-search-true .search {

		padding:40px 20px;

	}

	.mob-search-true form {

		position: relative;

		margin-bottom: 0;

		border:none;

	}

	.mob-search-true form fieldset {

		max-width: 100%;

		margin-bottom: 0;

		border:none;

	}

	.mob-search-true input[type="text"] {

		padding: 10px 50px 10px 10px;

		height: 50px;

		margin-bottom: 0;

		font-size: inherit;

		background-color: transparent;

	}

	.mob-search-true input[type="submit"] {

		text-indent: -2000%;

		white-space: nowrap;

		overflow: hidden;

		width:40px !important;

		height: 50px !important;

		border:none;

		outline: none;

		position: absolute;

		top: 0;

		right: 0;

		padding: 0;

		margin: 0;

		background-color: transparent !important;

		box-shadow:none !important;

		z-index: 5;

		-webkit-transform: translateY(0px) !important;

		-ms-transform: translateY(0px) !important;

		transform: translateY(0px) !important;

	}

	.mob-search-true input[type="submit"]:hover {

		background-color: transparent !important;

	}

	.mob-search-true .icon-close {display: none;}

	.mob-search-true .icon-search2 {

		display: block;

		position: absolute;

		width:40px;

		height: 50px;

		top: 0;

		right: 0;

		padding: 0;

		margin: 0;

		text-align: center;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.mob-search-true .icon-search2:before {

		display: block;

		height: inherit;

		width: inherit;

		line-height: 50px;

	}

	.mob-header .ls .lang_sel_list_horizontal li, 

	.mob-header .ls .lang_sel_list_vertical li {

	    float: none !important;

	}

	.mob-header .ls a {

		display: block;

		padding: 20px 30px 20px 30px !important;

		height:auto !important;

    	line-height: 24px !important;

    	-webkit-transition-timing-function: ease-out;

	    -webkit-transition: background-color 300ms,color 300ms,padding-left 300ms;

	    transition-timing-function: ease-out;

	    transition: background-color 300ms,color 300ms,padding-left 300ms;

	}

	.mob-header .ls a:hover

	{padding-left: 40px !important;}

	.mob-header .ls a:before {

		height: 30px;

	    width: 30px;

	    line-height: 30px;

	    margin-top: -15px;

	    right: 15px;

	    border-radius: 3px;

	    display: block;

	    position: absolute;

	    top: 50%;

	    font-size: 16px;

	    margin-top: -15px;

	    text-align: center;

	    cursor: pointer;

	}

	.mob-header .ls a:hover:before {

		-webkit-transform: rotate(0deg) !important;

	    -ms-transform: rotate(0deg) !important;

	    transform: rotate(0deg) !important;

	}

	.mob-header .ls #lang_sel ul ul, .mob-header .ls #lang_sel_click ul ul {

	    position: relative !important;

	    top: 0px;

	    padding-top: 0px !important;

	}

/*	SLIDER

/*=============*/

	

	#ninzio-slider {

		position:relative;

		width: 100%;

		margin:0 auto;

		overflow: hidden;

		background-repeat: no-repeat;

		background-position: center center;

		display: none;

		z-index: 51;

	}

	#ninzio-slider[data-mobile="true"] {

		display: block;

	}

	#ninzio-slider > .ninzio-slides {

		width: 100%;

		height: 100%;

		margin: 0;

		padding: 0;

		list-style: none;

	}

	#ninzio-slider > .ninzio-slides > li {

		width: 100%;

		height: 100%;

		position: absolute;

		padding: 0;

		margin: 0;

		z-index: 1;

		font-size: inherit;

		-webkit-background-size: cover !important;

		-moz-background-size: cover !important;

		background-size: cover !important;

		background-position: center center;

		background-repeat: no-repeat;

		overflow: hidden;

		opacity: 0;

	}

	#ninzio-slider .parallax-container,

	.rich-header .parallax-container {

		top: 0;

		left: 0;

		min-height: 100%;

		width:100%;

		height:100%;

		z-index: -1000;

		overflow: hidden;

		max-width: none;

		position: absolute;

		-webkit-background-size: cover !important;

		-moz-background-size: cover !important;

		background-size: cover !important;

		background-position: center center;

		background-repeat: no-repeat;

		-webkit-backface-visibility: hidden;

		backface-visibility: hidden;

		-webkit-transform:translateY(0px);

		-moz-transform:translateY(0px);

		transform:translateY(0px);

	}

	.rich-header .parallax-container {

		height: 150%;

	}

	#ninzio-slider[data-fixed="true"] .ninzio-slider {

		background-attachment: fixed;

	}

	#ninzio-slider > .ninzio-slides > li.active {

		opacity: 1;

		z-index:2;

	}

	#ninzio-slider > .ninzio-slides > li.first-active:first-child {

		visibility: visible;

		opacity: 1;

		-webkit-transition: opacity 0.3s ease-out;

		transition: opacity 0.3s ease-out;

	}

	#ninzio-slider > .ninzio-slides > .ninzio-slider > video {

		position: absolute;

		top: -1px; 

		right: 0px; 

		min-width: 100%; 

		width: 100%; 

		height: auto; 

		z-index: -1000; 

		overflow: hidden;

		display: none;

	}

	#ninzio-slider > .ninzio-slides > li .slider-canvas {

		margin: 0 auto; 

		position: relative;

		height: 100%;

	}

	#ninzio-slider .ninzio-layer {

		position: absolute;

		opacity: 0;

		white-space: nowrap;

		-webkit-transition-timing-function:cubic-bezier(0.165, 0.840, 0.440, 1.000);

		-webkit-transition-property:top, left;

		transition-timing-function:cubic-bezier(0.165, 0.840, 0.440, 1.000);

		transition-property:top, left;

	}

	#ninzio-slider .ninzio-layer .nz-colorbox,

	#ninzio-slider .ninzio-layer .wp-caption {

		white-space: normal;

	}

	#ninzio-slider .active .ninzio-layer {

		opacity: 1;

	}

	#ninzio-slider .controls {

		display: block;

		width:50px;

		height:60px;

		position: absolute;

		top: 50%;

		margin-top: -30px;

		left:-50px;

		cursor: pointer;

		z-index: 98;

		text-align: center;

		line-height: 60px;

		background-color: rgba(0,0,0,0.9);

		border-radius: 0px 3px 3px 0px;	

		color: #ffffff;

		font-size:24px;

		opacity: 0;

		-webkit-backface-visibility: hidden;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	#ninzio-slider .controls.next {

		left: auto;

		right:-50px;

		border-radius: 3px 0px 0px 3px;	

	}

	#ninzio-slider:hover .controls.next {right:0px;}

	#ninzio-slider:hover .controls.prev {left:0px;}

	#ninzio-slider:hover .controls {opacity: 0.7;}

	#ninzio-slider:hover .controls:hover {opacity: 1;}

	.ninzio-slider-bullets {

		position: absolute;

		z-index: 98;

		left: 0;

		bottom:30px;

		width: 100%;

		height: 10px;

		text-align: center;

	}

	.ninzio-slider-bullets span {

		display: inline-block;

		width: 12px;

		height: 12px;

		background-color:#ffffff;

		opacity: 0.5;

		border:2px solid transparent;

		border-radius: 50%;

		cursor: pointer;

		margin: 0 10px 0px 0;

		-moz-background-clip: content;

		-webkit-background-clip: content;

		background-clip: content-box;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.ninzio-slider-bullets span.current-bullet {

		background-color: transparent;

		border-color: #ffffff;

		opacity: 1;

	}

	.ninzio-slider-bullets span:last-child {

		margin-right: 0;

	}

	#ninzio-slider[data-transition="fade"] > .ninzio-slides > .ninzio-slider {

		visibility: hidden;

		opacity: 0;

		-webkit-transition: opacity ease-out 0.3s, visibility ease-out 0.3s;

		-moz-transition: opacity ease-out 0.3s, visibility ease-out 0.3s;

		-o-transition: opacity ease-out 0.3s, visibility ease-out 0.3s;

		-ms-transition: opacity ease-out 0.3s, visibility ease-out 0.3s;

		transition: opacity ease-out 0.3s, visibility ease-out 0.3s;

	}

	#ninzio-slider[data-transition="fade"] > .ninzio-slides > .active {

		visibility: visible;

		opacity: 1;

	}

	#ninzio-slider[data-transition="press-away"] .navOutNext {

		-webkit-animation: slideOutScaleRight 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: slideOutScaleRight 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	#ninzio-slider[data-transition="press-away"] .navInNext {

		opacity: 1;

		-webkit-animation: slideInFromLeft 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: slideInFromLeft 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	#ninzio-slider[data-transition="press-away"] .navOutPrev {

		-webkit-animation: slideOutScaleLeft 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: slideOutScaleLeft 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	#ninzio-slider[data-transition="press-away"] .navInPrev {

		opacity: 1;

		-webkit-animation: slideInFromRight 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: slideInFromRight 1s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	@-webkit-keyframes slideOutScaleRight {

		from {opacity: 1;-webkit-transform: translateX(0);}

		to {-webkit-transform: translateX(100%);opacity: 1;}

	}

	@keyframes slideOutScaleRight {

		from {opacity: 1;transform: translateX(0);}

		to {transform: translateX(100%);opacity: 1;}

	}

	@-webkit-keyframes slideInFromLeft {

		from {-webkit-transform: translateX(-100%);opacity: 1;}

		to {-webkit-transform: translateX(0);opacity: 1;}

	}

	@keyframes slideInFromLeft {

		from {transform: translateX(-100%);opacity: 1;}

		to {transform: translateX(0);opacity: 1;}

	}

	@-webkit-keyframes slideOutScaleLeft {

		from {-webkit-transform: translateX(0);opacity: 1;}

		to {-webkit-transform: translateX(-100%);opacity: 1;}

	}

	@keyframes slideOutScaleLeft {

		from {transform: translateX(0);opacity: 1;}

		to {transform: translateX(-100%);opacity: 1;}

	}

	@-webkit-keyframes slideInFromRight {

		from {-webkit-transform: translateX(100%);}

		to {-webkit-transform: translateX(0);}

	}

	@keyframes slideInFromRight {

		from {transform: translateX(100%);}

		to {transform: translateX(0);}

	}

	#ninzio-slider[data-transition="side-swing"] .navOutNext {

		-webkit-animation: slideOutScaleRight 1s forwards;

		animation: slideOutScaleRight 1s forwards;

		-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);

		-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

		animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

	}

	#ninzio-slider[data-transition="side-swing"] .navInNext {

		opacity: 1;

		-webkit-animation: slideInFromLeft 1s forwards;

		animation: slideInFromLeft 1s forwards;

		-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);

		-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

		animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

	}

	#ninzio-slider[data-transition="side-swing"] .navOutPrev {

		-webkit-animation: slideOutScaleLeft 1s forwards;

		animation: slideOutScaleLeft 1s forwards;

		-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);

		-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

		animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

	}

	#ninzio-slider[data-transition="side-swing"] .navInPrev {

		opacity: 1;

		-webkit-animation: slideInFromRight 1s forwards;

		animation: slideInFromRight 1s forwards;

		-webkit-animation-timing-function: cubic-bezier(1, 0, 0, 1);

		-webkit-animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

		animation-timing-function: cubic-bezier(1, -0.2, 0, 1);

	}

	#ninzio-slider[data-transition="soft-scale"] .navOutNext {

		-webkit-animation: scaleUp 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: scaleUp 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	#ninzio-slider[data-transition="soft-scale"] .navInNext {

		-webkit-animation: scaleDownUp 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: scaleDownUp 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	#ninzio-slider[data-transition="soft-scale"] .navOutPrev {

		-webkit-animation: scaleDown 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: scaleDown 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	#ninzio-slider[data-transition="soft-scale"] .navInPrev {

		-webkit-animation: scaleUpDown 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

		animation: scaleUpDown 0.5s forwards cubic-bezier(0.7, 0, 0.3, 1);

	}

	@-webkit-keyframes scaleUp {

		from {opacity: 1;-webkit-transform: scale(1);}

		to {-webkit-transform: scale(1.3);opacity: 0;}

	}

	@keyframes scaleUp {

		from {opacity: 1;-webkit-transform: scale(1);

		}

		to {-webkit-transform: scale(1.3);opacity: 0;}

	}

	@-webkit-keyframes scaleDownUp {

		from {	opacity: 0;-webkit-transform: scale(0.7);}

		to {opacity: 1;-webkit-transform: scale(1);}

	}

	@keyframes scaleDownUp {

		from {opacity: 0;transform: scale(0.7);}

		to {opacity: 1;transform: scale(1);}

	}

	@-webkit-keyframes scaleDown {

		from {opacity: 1;transform: scale(1);}

		to {opacity: 0;-webkit-transform: scale(0.7);}

	}

	@keyframes scaleDown {

		from {opacity: 1;transform: scale(1);}

		to {opacity: 0;transform: scale(0.7);}

	}

	@-webkit-keyframes scaleUpDown {

		from {-webkit-transform: scale(1.3);opacity: 0;}

		to {opacity: 1;-webkit-transform: scale(1);}

	}

	@keyframes scaleUpDown {

		from {transform: scale(1.3);opacity: 0;}

		to {opacity: 1;transform: scale(1);}

	}

	.slider-loader {

		position: absolute;

		top: 50%;

		left: 50%;

		font-size:10px;

		margin: -25px 0 0 -25px;

		border-top: 5px solid rgba(255, 255, 255, 0.1);

		border-right: 5px solid rgba(255, 255, 255, 0.1);

		border-bottom: 5px solid rgba(255, 255, 255, 0.1);

		border-left: 5px solid rgba(255, 255, 255, 0.3);

		-webkit-animation: load8 1s infinite linear;

		animation: load8 1s infinite linear;

	}

	.slider-loader,

	.slider-loader:after {

		border-radius:50px;

		width:50px;

		height:50px;

	}

	@-webkit-keyframes load8 {

		0% {

			-webkit-transform: rotate(0deg);

			transform: rotate(0deg);

		}

		100% {

			-webkit-transform: rotate(360deg);

			transform: rotate(360deg);

		}

	}

	@keyframes load8 {

		0% {

			-webkit-transform: rotate(0deg);

			transform: rotate(0deg);

		}

		100% {

			-webkit-transform: rotate(360deg);

			transform: rotate(360deg);

		}

	}

	

	#ninzio-slider .ninzio-layer > .layer-wrap > * {

		margin-bottom: 0;

	}

	#ninzio-slider .ninzio-layer .wp-caption {

		white-space: normal;

	}

	#ninzio-slider .ninzio-layer {

		-webkit-transform-origin: 0px 0px;

		-ms-transform-origin: 0px 0px;

		transform-origin: 0px 0px;

	}

	#ninzio-slider .ninzio-layer img {

		max-width: none !important;

	}

	#slider-arrow {

		position: absolute;

		margin: 0;

		bottom:50px;

		left:50%;

		margin-left: -30px;

		z-index: 10;

		text-align: center;

		width:60px;

		height:60px;

		display: none;

		cursor: pointer;

		opacity: 0;

		-webkit-transition: all 400ms;

		transition: all 400ms;

	}

	#slider-arrow.vis {opacity: 1;}

	#slider-arrow i {

		display: block;

		font-size:24px;

		width:60px;

		height:60px;

		line-height:56px;

		border-radius: 50%;

		border:2px solid #ffffff;

		color: #ffffff;

	}

	#slider-arrow.animate i {

		-webkit-animation: iconAnimate 1.4s infinite;

		animation: iconAnimate 1.4s infinite;

	}

	@-webkit-keyframes iconAnimate {

	  0%,100% { -webkit-transform: translateY(5px); }

	  50% { -webkit-transform: translateY(-5px); }

	}

	@keyframes iconAnimate {

	  0%,100% { transform: translateY(5px); }

	  50% { transform: translateY(-5px); }

	}

/*	SLIDER PREVIEW

/*=============*/

	

	.single-ninzio-slider {

		background-color: #fdfdfd !important;

	}

	.single-ninzio-slider .page-content-container {

		background-color: transparent !	important;

		padding: 0 !important;

	}

	.single-ninzio-slider #wrap {

		box-shadow: none;

		background-color: #fdfdfd !important;

		min-height:auto !important;

		margin: 0 auto !important;

		padding-top: 30px;

	}

	.single-ninzio-slider .header,

	.single-ninzio-slider .footer {

		display: none !important;

	}

	.single-ninzio-slider .ninzio-slider-logo {

		display: block;

		text-align: center;

		padding: 20px 0;

	}

	.single-ninzio-slider .ninzio-slider-logo a {

		display: inline-block;

	}

	.single-ninzio-slider #ninzio-slider-preview-panel {

		padding: 20px 0 10px 0;

		font-family: Arial, Helvetica, sans-serif !important;

		font-size: 13px !important;

		line-height: 22px !important;

	}

	.single-ninzio-slider #ninzio-slider-preview-panel > div {

		float: left;

	}

	#ninzio-slider-preview-panel #ninzio-slider-coords {

		display: block;

		width: 200px;

		padding: 10px;

		border:1px solid #e0e0e0;

		background-color: #fff !important;

		border-radius: 3px;

		margin-bottom: 7px;

		margin-right: 25px;

	}

	#ninzio-slider-preview-panel #ninzio-slider-coords .posx,

	#ninzio-slider-preview-panel #ninzio-slider-coords .posy {

		font-weight: bold;

	}

	#ninzio-slider-preview-panel #ninzio-slider-controls a {

		margin-bottom: 0;

	}

	.single-ninzio-slider #ninzio-slider,

	.single-ninzio-slider #ninzio-slider-preview-panel {

		display: none;

	}

	.single-ninzio-slider .device-message {

		display: block;

	}

	.error-message {

		font-family: Arial, Helvetica, sans-serif !important;

		font-size: 13px !important;

		line-height: 22px !important;

		margin: 2em auto 2em;

		max-width: 100%;

		padding: 1em 2em;

		text-align: center;

	}

/*	LAYOUT

/*=============*/

	.blank-true .header,

	.blank-true .footer {

		display: none !important;

	}

	.js .lazy {

		opacity: 0;

		-webkit-transition: opacity 0.3s;

		transition: opacity 0.3s;

	}

	.js .lazy.in {

		opacity:1;

	}

	#gen-wrap {

		-webkit-transition:left 0.3s;

		transition:left 0.3s;

		position: relative;

		left: 0;

	}

	.js #gen-wrap.animate {

		left: -300px;

	}

	#gen-wrap, #wrap {height: 100%;}

	

	#wrap,#wrap.full {

		width: 100%;

		min-height: 100%;

		margin: 0 auto;

		position: relative;

		background-color: #fff;

	}

	#wrap.nz-boxed {

		box-shadow: 0px -5px 5px rgba(0,0,0,.3);

	}

	#nz-content:not(.padding-false) {padding: 70px 0 0 0;}

	.main-content,.sidebar {margin-bottom: 25px;width: 100%;}

	.page-full-width {

		width: 100% !important;

		max-width: 100% !important;

	}

	.rich-header {

		z-index: 1;

		overflow: hidden;

	}

	.rich-header,

	.rich-header .container

	{position: relative;}

	.rich-header .container {height: inherit;z-index: 1;}

	.rich-header .page-title-content {

		width: 100%;

		position: absolute;

		left: 0;

		top: 58%;

		-webkit-transform: translateY(-50%);

		-ms-transform: translateY(-50%);

		transform: translateY(-50%);

	}

	.page-title-content .single-post-title {

		font-size: 36px;

		line-height: 46px;

		text-align: center;

		text-transform: uppercase;

		color: #ffffff;

		padding: 0 50px;

	}

	.rich-header .ninzio-nav-single {

		width: 100%;

		position: absolute;

		left: 0;

		top: 50%;

		-webkit-transform: translateY(-50%);

		-ms-transform: translateY(-50%);

		transform: translateY(-50%);

	}

	.ninzio-nav-single .nav-previous,

	.ninzio-nav-single .nav-next  {

		width:50px;

		height:50px;

		color: #ffffff;

		font-size: 24px;

		line-height: 50px;

		text-align: center;

		position: relative;

	}

	.ninzio-nav-single .nav-previous a,

	.ninzio-nav-single .nav-next a  {

		display: block;

		height: inherit;

		width: inherit;

		text-decoration: none;

		position: absolute;

		top: 0;

		left: 0;

		color: inherit;

		border-radius:3px;

		-webkit-transition: background-color 0.3s ease-out;

		transition: background-color 0.3s ease-out;

	}

	.ninzio-nav-single .nav-previous a:hover,

	.ninzio-nav-single .nav-next a:hover  {

		background-color: rgba(0,0,0,0.5);

	}

	.ninzio-nav-single a:before {

		font-size: inherit;

		line-height: inherit;

		height: inherit;

		width: inherit;

		text-align: center;

		color: inherit;

		position: absolute;

		top: 0;

		left: 0;

	}

	.ninzio-nav-single .nav-previous a:before {

		content: "\e910";

	}

	.ninzio-nav-single .nav-next a:before {

		content: "\e913";

	}

	.ninzio-nav-single .nav-previous  {float: left;}

	.ninzio-nav-single .nav-next  {float: right;}

	.main-widget-area {

		position:fixed;

		top: 0;

		right:-300px;

		width: 300px;

		height: 100%;

		overflow:hidden;

		padding: 30px;

		z-index: 51;

		-webkit-transition: right 0.3s;

		transition: right 0.3s;

	}

	.main-widget-area.animate {

		right:0px;

	}

	.ps-container .ps-scrollbar-y-rail {

	    position: absolute;

	    right: 3px;

	    width: 8px;

	    border-radius: 4px;

	    opacity: 0;

	    -webkit-transition: background-color .2s linear, opacity .2s linear;

	    transition: background-color .2s linear, opacity .2s linear;

	}

	.ps-container:hover .ps-scrollbar-y-rail,

	.ps-container.hover .ps-scrollbar-y-rail {

	    opacity: 0.6;

	}

	.ps-container .ps-scrollbar-y-rail:hover,

	.ps-container .ps-scrollbar-y-rail.hover,

	.ps-container .ps-scrollbar-y-rail.in-scrolling {

	    opacity: 0.9;

	}

	.ps-container .ps-scrollbar-y {

	    position: absolute;

	    right: 0;

	    width: 8px;

	    border-radius: 4px;

	    -webkit-transition: background-color.2s linear;

	    transition: background-color .2s linear;

	}

	.ps-container.ie .ps-scrollbar-x,

	.ps-container.ie .ps-scrollbar-y {

	    visibility: hidden;

	}

	.ps-container.ie:hover .ps-scrollbar-x,

	.ps-container.ie:hover .ps-scrollbar-y,

	.ps-container.ie.hover .ps-scrollbar-x,

	.ps-container.ie.hover .ps-scrollbar-y {

	    visibility: visible;

	}

	.footer {

		position: relative; 

	}

	.footer-content {

		width: 100%;

		min-height: 50px;

		line-height: 50px;

		overflow: hidden;

	}

	.footer-info {

		line-height: 20px;

		padding: 15px 0;

		text-align: center;

		text-transform: uppercase;

	}

	.footer-info * {

		color: inherit;

	}

	.footer .social-links {

		margin-left:10px;

		overflow: hidden;

	}

	.footer .social-links a {

		display:inline-block;

		width:50px;

		height: 50px;

		line-height: 50px;

		font-size: 16px;

		margin: 0;

		border-radius: 0;

		background-color: transparent;

		position: relative;

		-webkit-transition: color 300ms ease-out;

		transition: color 300ms ease-out;

	}

	.footer .social-links a:before,

	.footer .social-links a:after,

	.header .social-links a:before,

	.header .social-links a:after {

		display: block;

		width: inherit;

		height: inherit;

		position: absolute;

		left: 0;

		top: 0;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.footer .social-links a:after,

	.header .social-links a:after {

		top: -100%;

	}

	.footer .social-links a:hover:before,

	.footer .social-links a:hover:after,

	.header .social-links a:hover:before,

	.header .social-links a:hover:after {

		-webkit-transform: translateY(100%);

		-ms-transform: translateY(100%);

		transform: translateY(100%);

	}

	.footer .social-links a.icon-rss:after         {content: "\e8ad";}

	.footer .social-links a.icon-facebook5:after   {content: "\e939";}

	.footer .social-links a.icon-twitter4:after    {content: "\e937";}

	.footer .social-links a.icon-googleplus6:after {content: "\e93c";}

	.footer .social-links a.icon-youtube2:after    {content: "\e935";}

	.footer .social-links a.icon-vimeo:after       {content: "\e775";}

	.footer .social-links a.icon-linkedin:after    {content: "\e79f";}

	.footer .social-links a.icon-flickr2:after     {content: "\e77a";}

	.footer .social-links a.icon-instagram:after   {content: "\e76c";}

	.footer .social-links a.icon-apple:after       {content: "\e796";}

	.footer .social-links a.icon-dribbble:after    {content: "\e77f";}

	.footer .social-links a.icon-android:after     {content: "\e798";}

	.footer .social-links a.icon-behance:after     {content: "\e957";}

	.footer .social-links a.icon-envelope:after    {content: "\e640";}

	.footer .social-links a.icon-pinterest:after   {content: "\e7a6";}

	.header .social-links a.icon-rss:after         {content: "\e8ad";}

	.header .social-links a.icon-facebook5:after   {content: "\e939";}

	.header .social-links a.icon-twitter4:after    {content: "\e937";}

	.header .social-links a.icon-googleplus6:after {content: "\e93c";}

	.header .social-links a.icon-youtube2:after    {content: "\e935";}

	.header .social-links a.icon-vimeo:after       {content: "\e775";}

	.header .social-links a.icon-linkedin:after    {content: "\e79f";}

	.header .social-links a.icon-flickr2:after     {content: "\e77a";}

	.header .social-links a.icon-instagram:after   {content: "\e76c";}

	.header .social-links a.icon-apple:after       {content: "\e796";}

	.header .social-links a.icon-dribbble:after    {content: "\e77f";}

	.header .social-links a.icon-android:after     {content: "\e798";}

	.header .social-links a.icon-behance:after     {content: "\e957";}

	.header .social-links a.icon-envelope:after    {content: "\e640";}

	.header .social-links a.icon-pinterest:after   {content: "\e7a6";}

	.footer .social-links {

		height: 50px;

		text-align: center;

	}

	.footer-widget-area-wrap .widget {padding-top: 40px;}

	.footer-widget-area-wrap .widget .widget_title {margin-bottom: 15px;}

	.footer-widget-area-wrap .widget a {

		-webkit-transition: all 0.3s ease-out;

		transition: all 0.3s ease-out;

	}

	.footer-widget-area-wrap .widget .widget_title {border-bottom: none;padding-bottom: 0;}

	.footer-widget-area-wrap .widget_calendar tbody td a {opacity: 0.4;}

	.footer-widget-area-wrap .widget_calendar tbody td a:hover {opacity: 1;}

	.footer-menu {padding: 5px 0;}

	.footer-menu ul {list-style: none;	margin: 0;}

	.footer-menu ul li {margin: 0;padding:0;display:block;}

	.footer-menu ul li a {

		display:block;

		text-decoration: none;

		text-align: center;

		text-transform: uppercase;

		-webkit-transition: color 0.3s ease-out;

		transition: color 0.3s ease-out;

	}

	.one-page-bullets {

		position: fixed;

		right:33px;

		top:50%;

		z-index:50;

		opacity: 1;

		-webkit-transform: translateY(-50%);

		-ms-transform: translateY(-50%);

		transform: translateY(-50%);

		width: 24px;

		border-radius: 24px;

		padding:16px 6px;

		background-color: rgba(0,0,0,0.5);

	}

	.one-page-bullets {

		position: fixed;

		right:33px;

		top:50%;

		z-index:50;

		opacity: 1;

		-webkit-transform: translateY(-50%);

		-ms-transform: translateY(-50%);

		transform: translateY(-50%);

		width: 24px;

		border-radius: 24px;

		padding:16px 6px;

		background-color: rgba(0,0,0,0.5);

	}

	.one-page-bullets ul {

		list-style:none;

		margin-bottom: 0;

	}

	.one-page-bullets a {

		display: none;

	}

	.one-page-bullets ul li:first-child a[href*="#"] {

		margin-top:0px;

	}

	.one-page-bullets a[href*="#"] {

		display: block;

		width:12px;

		height:12px;

		background-color:#ffffff;

		opacity: 0.5;

		border-radius: 12px;

		border:2px solid transparent;

		-moz-background-clip: content;

		-webkit-background-clip: content;

		background-clip: content-box;

		-webkit-transition: all 0.3s ease-out;

		transition: all 0.3s ease-out;

		text-indent: 100%;

		white-space: nowrap;

		text-indent: -9000em;

		margin-top:16px;

		position: relative;

	}

	.one-page-bullets .one-page-active a[href*="#"],

	.one-page-bullets a[href*="#"]:hover {

		opacity: 1;

		background-color: transparent !important;

		border-color: #ffffff;

	}

	.one-page-bullets a[href*="#"]:after {

		display: block;

		position: absolute;

		content: attr(title);

		padding: 5px 10px 5px 10px;

		background-color:#101010;

		color: #ffffff;

		border-radius: 3px;

		position: absolute;

		top:50%;

		left:-230%;

		line-height:24px;

		display:block;

		visibility: hidden;

		width: auto;

		height: auto;

		text-indent: 0;

		opacity: 0;

		-webkit-transform:translateX(-100%) translateY(-50%);

		-ms-transform:translateX(-100%) translateY(-50%);

		transform:translateX(-100%) translateY(-50%);

		-webkit-transition: opacity 0.2s ease-out, visibility 0.2s ease-out;

		transition: opacity 0.2s ease-out, visibility 0.2s ease-out;

	}

	.one-page-bullets a[href*="#"]:hover:after,

	.one-page-bullets a[href*="#"]:hover:before {

		visibility: visible;

		opacity: 1;

	}

	.one-page-bullets a[href*="#"]:before {

		display: block;

		position: absolute;

		content: "";

		top:50%;

		left:-230%;

		-webkit-transform:translateX(0px) translateY(-50%);

		-ms-transform:translateX(0px) translateY(-50%);

		transform:translateX(0px) translateY(-50%);

		width: 0px;

		height: 0px;

		border-style: solid;

		border-width: 4px 0 4px 5px;

		border-color: transparent transparent transparent #101010;

		visibility: hidden;

		opacity: 0;

		-webkit-transition: opacity 0.2s ease-out, visibility 0.2s ease-out;

		transition: opacity 0.2s ease-out, visibility 0.2s ease-out;

	}

	.error404-wrap {

		text-align: center;

		padding-top: 70px;

		padding-bottom: 50px;

	}

	.error404-status {

		font-size: 80px;

		line-height: 80px;

		height: 80px;

		font-weight: bold;

	}

	.error404-title {

		padding: 20px 0 20px 0;

		color: #999999;

	}

	.error404-wrap .search-form {

		max-width: 400px;

		margin: 0 auto;

	}

	.search-results #wrap,

	.search-no-results #wrap {background-color: #fafafa;}

	.search-r {

		padding-top: 70px;

		padding-bottom: 50px;

	}

	.search-r .post-body {

		border:1px solid #e0e0e0;

		border-radius: 3px;

		padding: 20px;

		background-color: #ffffff;

		box-shadow: 0 2px #f5f5f5;

	}

	.search-r > .content > article {

		margin-bottom: 25px;

	}

	.search-r > .content > article .read-more {

		color: #999999;

		display: block;

		-webkit-transition: all 200ms ease-out;

		transition: all 200ms ease-out;

		padding-top: 15px;

	}

	.search-r > .content > article .read-more:hover {

		color: #333333;

	}

	.search-r > .content > article .read-more span {

		display: inline-block;

		-webkit-transform: translateY(2px);

		-ms-transform: translateY(2px);

		transform: translateY(2px);

	}

	.search-results-title {

		padding: 30px 0px;

		font-size: 20px;

		background-color: #f1f1f1;

		border-bottom: 1px solid #e0e0e0;

	}

	.search-r .post-title {

		margin-bottom:5px;

	}

	.search-r .post-meta {

		padding-bottom:15px;

	}

	.search-r .post-meta > * {

		float:left;

		margin-right:20px;

	}

	.search-r .post-meta > .post-author,

	.search-r .post-meta > .post-category,

	.search-r .post-meta > .post-comments {

		min-height: 30px;

		line-height: 30px;

		position: relative;

	}

	.search-r .post-meta > .post-author a,

	.search-r .post-meta > .post-category a,

	.search-r .post-meta > .post-comments a {

		color: inherit;

		-webkit-transition: color 0.3s;

		transition: color 0.3s;

	}

	.search-r .post-meta > .post-author span,

	.search-r .post-meta > .post-category span,

	.search-r .post-meta > .post-comments span {

		display: inline-block;

		margin-right:5px;

	}

	.search-r .search-button {

		margin-top: 20px;

		margin-bottom: 0;

	}

	.search-r .post-body {

		position: relative;

	}

	.search-r .post-indication {

		position: absolute;

		top: 20px;

		right: 20px;

		width: 40px;

		height:40px;

		line-height: 40px;

		text-align: center;

		font-size: 18px;

		border-radius: 3px;

		color: #ffffff;

	}

	.ninzio-navigation,

	.woocommerce-pagination {

		width: 100%;

	}

	.ninzio-navigation ul,

	.woocommerce-pagination ul {

		margin: 0;

		padding: 25px 0 0px 0;

		text-align: center;

		width: 100%;

	}

	.ninzio-navigation li,

	.woocommerce-pagination li {

		display: inline-block;

		margin: 0 0px 5px 0;

	}

	.ninzio-navigation li:last-child,

	.woocommerce-pagination li:last-child {

		margin-right:0px; 

	}

	.ninzio-navigation li a,

	.ninzio-navigation li span.current,

	.woocommerce-pagination li a,

	.woocommerce-pagination li span.current {

		display: inline-block;

		text-decoration:none;

		max-width: 100%;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

		padding:13px 20px 12px 20px;

		cursor: pointer;

		border-radius: 3px;

		background-color: #ffffff;

		color: #777777;

		text-transform: uppercase;

	}

	.ninzio-navigation li a:hover,

	.ninzio-navigation li span.current,

	.woocommerce-pagination li a:hover,

	.woocommerce-pagination li span.current {

		color: #ffffff !important;

	}

	.search-r .search-form input[type="text"] {

		background-color: #ffffff;

	}

	.main-content,

	.sidebar {

		margin-bottom: 25px;

		width: 100%;

	}

/*	WIDGETS

/*=============*/

	

	/*	General

	/*-------------------*/

		.main-widget-area a:not(.button):not(.ui-slider-handle),

		.footer-widget-area a:not(.button):not(.ui-slider-handle) {

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

		.widget {margin-bottom: 30px;}

		.footer-widget-area .widget{

			margin-top:50px;

			margin-bottom:70px;

		}

		.widget_title {

			margin-bottom: 20px;

			padding-bottom:10px;

			border-bottom-width: 1px;

			border-bottom-style: solid;

			border-bottom-color: #e0e0e0;

			text-transform: uppercase;

			font-weight:700;

		}

		.widget-area textarea,

		.widget-area select,

		.widget-area input[type="date"],

		.widget-area input[type="datetime"],

		.widget-area input[type="datetime-local"],

		.widget-area input[type="email"],

		.widget-area input[type="month"],

		.widget-area input[type="number"],

		.widget-area input[type="password"],

		.widget-area input[type="search"],

		.widget-area input[type="tel"],

		.widget-area input[type="text"],

		.widget-area input[type="time"],

		.widget-area input[type="url"],

		.widget-area input[type="week"] {

			font-size: inherit;

		}

		.footer-widget-area textarea:focus,

		.footer-widget-area select:focus,

		.footer-widget-area input[type="date"]:focus,

		.footer-widget-area input[type="datetime"]:focus,

		.footer-widget-area input[type="datetime-local"]:focus,

		.footer-widget-area input[type="email"]:focus,

		.footer-widget-area input[type="month"]:focus,

		.footer-widget-area input[type="number"]:focus,

		.footer-widget-area input[type="password"]:focus,

		.footer-widget-area input[type="search"]:focus,

		.footer-widget-area input[type="tel"]:focus,

		.footer-widget-area input[type="text"]:focus,

		.footer-widget-area input[type="time"]:focus,

		.footer-widget-area input[type="url"]:focus,

		.footer-widget-area input[type="week"]:focus,

		.main-widget-area textarea:focus,

		.main-widget-area select:focus,

		.main-widget-area input[type="date"]:focus,

		.main-widget-area input[type="datetime"]:focus,

		.main-widget-area input[type="datetime-local"]:focus,

		.main-widget-area input[type="email"]:focus,

		.main-widget-area input[type="month"]:focus,

		.main-widget-area input[type="number"]:focus,

		.main-widget-area input[type="password"]:focus,

		.main-widget-area input[type="search"]:focus,

		.main-widget-area input[type="tel"]:focus,

		.main-widget-area input[type="text"]:focus,

		.main-widget-area input[type="time"]:focus,

		.main-widget-area input[type="url"]:focus,

		.main-widget-area input[type="week"]:focus {

			background-color:transparent;

		}

		.widget_calendar td,

		.widget_calendar td#prev,

		.widget_calendar td#next,

		.widget_calendar caption,

		.widget_nz_recent_entries .post-date,

		.widget_tag_cloud .tagcloud a,

		.widget_twitter ul li:before

		{border-color: #e0e0e0;}

		.widget_rss ul li,

		.widget_nz_recent_entries ul li,

		.widget_recent_entries ul li,

		.widget_recent_comments ul li,

		.widget_twitter ul li,

		.widget_nav_menu ul li a

		{border-bottom-color: #e0e0e0;}

	/*	Tag cloud

	/*-------------------*/

		.widget_tag_cloud .tagcloud a {

			text-decoration: none;

			display: inline-block;

			padding:7px 14px;

			margin: 0 1px 4px 0;

			border-radius: 3px;

			border-width: 1px;

			border-color:#e0e0e0;

			color: #c0c0c0 !important;

			border-style: solid;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

			-webkit-backface-visibility: hidden;

		}

	/*	Search

	/*-------------------*/

		.widget_search form {

			position: relative;

			margin-bottom: 0;

			border:none;

		}

		.widget_search form fieldset {

			max-width: 100%;

			margin-bottom: 0;

			border:none;

		}

		.widget_search input[type="text"] {

			padding: 10px 50px 10px 10px;

			height: 50px;

			font-size: inherit;

		}

		.widget_search input[type="submit"] {

			text-indent: -2000%;

			white-space: nowrap;

			overflow: hidden;

			width:40px;

			height: 50px;

			border:none;

			outline: none;

			position: absolute;

			top: 0;

			right: 0;

			padding: 0;

			margin: 0;

			background-color: transparent !important;

			box-shadow:none !important;

			z-index: 5;

			-webkit-transform: translateY(0px) !important;

			-ms-transform: translateY(0px) !important;

			transform: translateY(0px) !important;

		}

		.widget_search input[type="submit"]:hover {

			background-color: transparent !important;

		}

		.widget_search .icon-close {display: none;}

		.widget_search .icon-search2 {

			display: block;

			position: absolute;

			width:40px;

			height: 50px;

			top: 0;

			right: 0;

			padding: 0;

			margin: 0;

			text-align: center;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

		.widget_search .icon-search2:before {

			display: block;

			height: inherit;

			width: inherit;

			line-height: 50px;

		}

	/*	Categories, Pages, Archive, Meta

	/*-------------------*/

		.widget_categories ul,

		.widget_pages ul,

		.widget_archive ul,

		.widget_meta ul {

			list-style: none;

			margin: 0;

			padding: 0;

		}

		.widget_categories ul li a,

		.widget_pages ul li a,

		.widget_archive ul li a {

			position: relative;

			padding-left: 15px;

			display: inline-block;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

		.widget_categories ul li ul,

		.widget_pages ul li ul {

			margin-left: 20px;

		}

		.widget_categories ul li a:before,

		.widget_pages ul li a:before,

		.widget_archive ul li a:before {

			display: block;

			content: "";

			position: absolute;

			left: 0;

			top: 50%;

			width: 5px;

			height: 5px;

			margin-top: -2.5px;

		}

		.widget_categories select,

		.widget_archive select {

			width: 100%;

			padding-right: 5px;

		}

	/*	Custom menu

	/*-------------------*/

		.widget_nav_menu ul {

			list-style: none;

			margin: 0;

			padding: 0;

			position: relative;

		}

		.widget_nav_menu ul ul {

			display: none;

		}

		.widget_nav_menu li[class*=" icon-"]:before, 

		.widget_nav_menu li[class^=icon-]:before

		{display: none;}

		.widget_nav_menu ul li a {

			display:block !important;

			position: relative !important;

			padding:3px 10px;

			font-weight: 300;

			font-size: 14px;

			text-transform: none;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

			

			border-bottom-color: #e0e0e0;

		}

		.widget_nav_menu ul.sub-menu li a {

			font-size: 13px;

			font-weight: 400;

		}

		.widget_nav_menu ul.menu > li:first-child > a {

			/*border-top-width: 1px;

			border-top-style: solid;*/

			border-top-color: #e0e0e0;

		}

		.widget_nav_menu ul li > a > span.toggle {

			display: block;

			position: absolute;

			top: 50%;

			text-align: center;

			font-size: 12px;

			line-height: 20px;

			height: 20px;

			width: 20px;

			margin-top: -10px;

			right: 4%;

			cursor: pointer;

		}

		.widget_nav_menu ul li > a:only-child > span.toggle {

			display: none !important;

		}

		.widget_nav_menu ul li > a.animate span.toggle {

			-webkit-transform:rotate(180deg);

			-ms-transform:rotate(180deg);

			transform:rotate(180deg);

		}

	/*	Calendar

	/*-------------------*/

		.widget_calendar {width: 100%;}

		.widget_calendar table {

			margin: 0;

			padding: 0;

			width: 100%;

			border: none !important;

			position: relative;

			border-spacing:0;

			border-collapse:collapse;

			vertical-align: middle;

		}

		.widget_calendar caption {

			margin: 0 auto;

			border-width:1px;

			border-style: solid;

			width: 100% !important;

		}

		.widget_calendar th {

			font-weight: normal;

			text-align: center;

			padding: 0;

		}

		.widget_calendar th:first-child {

			border-left-style:solid;

			border-left-width: 1px;

			border-left-color:#e0e0e0;

		}

		.widget_calendar th:last-child {

			border-right-style:solid;

			border-right-width: 1px;

			border-right-color:#e0e0e0;

		}

		.widget_calendar td {

			border-width:1px;

			border-style: solid;

			text-align: center;

			text-decoration: none;

			padding: 0;

		}

		.widget_calendar td a {

			display: block;

			text-decoration: none;

			width: 100%;

			height: 100%;

		}

		.widget_calendar tfoot td.pad {

			background-color: transparent;

			border: none;

			line-height: 0;

			height: 0;

			width: 0;

		}	

		.widget_calendar td#prev,

		.widget_calendar td#next {

			position: absolute;

			top: 0;

			left:0px;

			z-index: 5;

			padding-top: 0;

			padding-bottom: 0;

			padding:0;

			border-width:1px;

			border-style: solid;

		}

		.widget_calendar td#prev{

			border-left:none;

			left:1px;

		}

		.widget_calendar td#next {

			left:auto;

			right:1px;

			border-right:none;

		}

		.widget_calendar td#prev a,

		.widget_calendar td#next a {

			border: none;

			outline: none;

			width:100%;

			height:inherit;

			margin: 0 auto;

			display: block;

		}

		.widget_calendar td#prev span,

		.widget_calendar td#next span {

			display: block;

			height: 100%;

			width: 100%;

			text-align:center;

		}

		.main-widget-area .widget_calendar caption,

		.main-widget-area .widget_calendar th,

		.main-widget-area .widget_calendar td,

		.main-widget-area .widget_calendar td#prev,

		.main-widget-area .widget_calendar td#next,

		.main-widget-area .widget_calendar td#prev span,

		.main-widget-area .widget_calendar td#next span {

			height: 35px;

			width: 35px;

			line-height:35px;

		}

		.main-widget-area .widget_calendar td#today,

		.footer-widget-area .widget_calendar td#today {

			color: #ffffff;

		}

	/*	Rss, Recent posts, Recent comments

	/*-------------------*/

		.widget_rss .widget_title a {

			display: inline;

			display: inline-block;

			text-decoration: none;

		}

		.widget_rss .widget_title a img {

			margin:0;

			vertical-align: middle;

		}

		.widget_rss .widget_title a.rsswidget:first-child {

			width: 14px;

			height: 14px;

		}

		.widget_rss ul,

		.widget_nz_recent_entries ul,

		.widget_recent_comments ul,

		.widget_recent_entries ul {

			list-style: none;

			margin: 0;

			padding: 0;

		}

		.widget_rss ul li,

		.widget_nz_recent_entries ul li,

		.widget_recent_comments ul li,

		.widget_recent_entries ul li {

			padding-bottom:15px;

			margin-bottom:15px;

			border-bottom-width: 1px;

			border-bottom-style: solid;

			position: relative;

		}

		.widget_rss a,

		.widget_nz_recent_entries a,

		.widget_recent_comments a,

		.widget_recent_entries a {

			-webkit-transition: all 0.3s ease-out;

			transition: all 0.3s ease-out;

		}

		.widget_nz_recent_entries ul li {min-height:67px;}

		.widget_nz_recent_entries ul li a,

		.widget_recent_entries ul li a

		{display: block;}

		.widget_nz_recent_entries .post-category {

			display: inline-block;

			font-style: italic;

		}

		.widget_nz_recent_entries .post-title {margin-bottom:3px;}

		.widget_rss a:hover,

		.widget_nz_recent_entries a:hover,

		.widget_recent_comments a:hover,

		.widget_recent_entries a:hover

		{opacity: 1;}

		.widget_nz_recent_entries .post-date {

			width:48px;

			height: 52px;

			position: absolute;

			top: 0;

			left: 0;

			border-radius: 3px;

			border-width: 1px;

			border-style: solid;

			text-align: center;

		}

		.widget_nz_recent_entries .post-date span {display: block;}

		.widget_nz_recent_entries .post-date > span:first-child{

			font-size: 20px;

			line-height:35px;

			height:30px;	

		}

		.widget_nz_recent_entries .post-date > span:last-child {

			font-size: 11px;

			line-height:15px;

			height:20px;

			text-transform: uppercase;

		}

		.widget_nz_recent_entries .post-body {padding-left: 60px;}

		.widget_rss ul li:last-child,

		.widget_nz_recent_entries ul li:last-child,

		.widget_recent_entries ul li:last-child,

		.widget_recent_comments ul li:last-child {

			padding-bottom: 0;

			margin-bottom: 0;

			border-bottom:none;

		}

		.widget_rss ul li:last-child,

		.widget_nz_recent_entries ul li:last-child,

		.widget_recent_entries ul li:last-child

		{margin-bottom: 0;}

		.widget_nz_recent_entries ul li > *,

		.widget_recent_entries ul li > * 

		{display: block;}

		.widget_nz_recent_entries ul li .post-date

		{text-transform: uppercase;}

		.widget_recent_comments ul li {

			padding-left:35px;

		}

		.widget_recent_comments ul li:before {

			display: block;

			content: "\e7fd";

			font-size:18px;

			width:30px;

			height:30px;

			position: absolute;

			top:5px;

			left: 0;

			text-align: center;

		}

	/*	Recent portfolio

	/*-------------------*/

		.widget_recent_portfolio .post {

			width:32%;

			height:auto;

			margin-right: 2%;

			margin-bottom: 2%;

			float: left;

			position:relative;

		}

		.widget_recent_portfolio .post:nth-child(3n+3) {margin-right: 0;}

	/*	Twitter

	/*-------------------*/

		.widget_twitter ul {

			list-style: none;

			margin: 0;

			padding: 0;

		}

		.widget_twitter ul li {

			margin: 0 0 10px 0;

			padding:0 0 10px 60px;

			border-bottom-width: 1px;

			border-bottom-style: solid;

			position: relative;

			min-height:67px;

		}

		.widget_twitter ul li:before {

			display: block;

			content: "\e76d";

			line-height:50px;

			font-size:18px;

			width:48px;

			height: 52px;

			position: absolute;

			top:4px;

			left: 0;

			border-radius: 3px;

			border-width: 1px;

			border-style: solid;

			text-align: center;

		}

		.widget_twitter ul li:last-child {

			margin-bottom: 0;

			border-bottom: none;

			padding-bottom: 0;

		}

		.widget_twitter ul li a {

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

		.widget_twitter ul li p {margin-bottom: 0;}

		.widget_twitter ul li a.tweet-author {font-weight: bold;}

		.widget_twitter ul li a.tweet-time {

			font-style: italic;

			margin-top:3px;

			display: block;

		}

	/*	Flickr

	/*-------------------*/

		.flickr_badge_image {

			float: left;

			position: relative;

		}

		.flickr_badge_image img,

		.widget_recent_portfolio img {

			margin-bottom: 0;

			border-radius: 3px;

		}

		.flickr_badge_image a,

		.widget_recent_portfolio a {

			display: block;

			width: 100%;

			height: 100%;

		}

		.photos_from_flickr .flickr_badge_image {

			width:23.5%;

			height:23.5%;

			line-height:100%;

			margin-right: 2%;

			margin-bottom: 2%;

		}

		.photos_from_flickr #flickr_badge_image4,

		.photos_from_flickr #flickr_badge_image8 {

			margin-right: 0;

		}

		.main-widget-area .photos_from_flickr .flickr_badge_image {

			width:56px !important;

			height:56px !important;

			line-height:56px !important;

			margin-right:5px !important;

			margin-bottom:5px !important;

		}

		.main-widget-area .photos_from_flickr #flickr_badge_image3,

		.main-widget-area .photos_from_flickr #flickr_badge_image6,

		.main-widget-area .photos_from_flickr #flickr_badge_image9 {

			margin-right:5px !important;

		}

		.main-widget-area .photos_from_flickr #flickr_badge_image4,

		.main-widget-area .photos_from_flickr #flickr_badge_image8 {

			margin-right: 0 !important;

		}

	/*	Facebook

	/*-------------------*/

		

		.widget_facebook .fb-like-box,

		.widget_facebook .fb-like-box span,

		.widget_facebook .fb-like-box span iframe {

			width: 100% !important;

			max-width: 100%  !important;

			border-bottom-color: #e0e0e0;

		}

	/*  WPML

	/*-------------------*/

		.widget_icl_lang_sel_widget > div > ul > li:first-child {

			padding:0px 0px 0px 10px;

			border-radius: 3px;

			border-width: 1px;

			border-style: solid;

			border-color: #e0e0e0;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

		.widget_icl_lang_sel_widget .lang_sel_list_vertical li,

		.widget_icl_lang_sel_widget .lang_sel_list_horizontal li {

			border:none !important;

			padding: 0 !important;

		}

	/*  Mailchimp

	/*-------------------*/

		.widget_mailchimp .mailchimp-description {

			padding-top: 15px;

		}

		.widget_mailchimp form {

			margin-bottom: 0;

			position: relative;

		}

		.widget_mailchimp input {

			margin-bottom: 0;

		}

		.widget_mailchimp #mc-embedded-subscribe {

			position: absolute;

			top: 0;

			right: 0;

			height: 50px;

			width:40px;

			text-indent: -9000em;

			background-color: transparent;

			border:none;

			outline: none;

			box-shadow:none;

			padding: 0;

			margin: 0;

		}

		.widget_mailchimp #mce-EMAIL {

			padding-right: 50px;

			padding-left: 40px;

			height: 50px;

			background-color: transparent;

			font-size: inherit;

		}

		.widget_mailchimp span {

			position: absolute;

			top: 0;left: 0;

			display: block;

			height: 50px;

			width:40px;

			line-height: 50px;

			text-align: center;

		}

		.widget_mailchimp #mc-embedded-subscribe,

		.widget_mailchimp .icon-envelope {

			z-index: 10;

		}

		.widget_mailchimp .icon-plus {

			right: 0;

			left: auto;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

	/*  Front-end login

	/*-------------------*/

		.widget_reglog #registration-form,

		.widget_reglog #password-form {

			display: none;

		}

/*	GRID

/*=============*/

	

	.container,

	.solo-true .nz-related-products {

		width: 92%;

		max-width: 92%;

		margin: 0 auto 0 auto;

	}

	.solo-true .nz-related-products {

		margin: 0 auto 30px auto;

	}

	.nz-row:before,

	.nz-row:after {

	  content: " ";

	  display: table;

	}

	.nz-row:after {

	  clear: both;

	}

	.nz-row .col12,

	.nz-row .col11,

	.nz-row .col10,

	.nz-row .col9,

	.nz-row .col8,

	.nz-row .col7,

	.nz-row .col6,

	.nz-row .col5,

	.nz-row .col4,

	.nz-row .col3,

	.nz-row .col2,

	.nz-row .col1 {

		display:block;

		position: relative;

		margin-bottom: 25px;

	}

	.nz-row .col[data-margin="false"] {margin-bottom: 0;}

	.nz-row .col[data-align="left"]   {text-align: left;}

	.nz-row .col[data-align="right"]  {text-align: right;}

	.nz-row .col[data-align="center"] {text-align: center;}

/*	COLUMNS

/*=============*/

	.js .nz-row > .col.col-animate-true {

		-webkit-backface-visibility: hidden;

		-webkit-transition: all 0.6s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

		transition: all 0.6s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

	}

	.js .nz-row > .col.col-animate-true[data-effect="fade-left"],

	.js .nz-row > .col.col-animate-true[data-effect="fade-right"] {

		-webkit-transition: all 0.8s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

		transition: all 0.8s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

	}

	.js .nz-row > .col.col-animate-true[data-effect="fade"] {opacity: 0;}

	.js .nz-row > .active.col.col-animate-true[data-effect="fade"] {opacity: 1;}

	

	.js .nz-row > .col.col-animate-true[data-effect="fade-bottom"] {

		opacity: 0;

		-webkit-transform: translateY(50px);

		-ms-transform: translateY(50px);

		transform: translateY(50px);

	}

	.js .nz-row > .col.col-animate-true[data-effect="fade-top"] {

		opacity: 0;

		-webkit-transform: translateY(-50px);

		-ms-transform: translateY(-50px);

		transform: translateY(-50px);

	}

	.js .nz-row > .active.col.col-animate-true[data-effect="fade-top"],

	.js .nz-row > .active.col.col-animate-true[data-effect="fade-bottom"] {

		opacity: 1;

		-webkit-transform: translateY(0px);

		-ms-transform: translateY(0px);

		transform: translateY(0px);

	}

	.js .nz-row > .col.col-animate-true[data-effect="fade-left"] {

		opacity: 0;

		-webkit-transform: translateX(-100%);

		-ms-transform: translateX(-100%);

		transform: translateX(-100%);

	}

	.js .nz-row > .col.col-animate-true[data-effect="fade-right"] {

		opacity: 0;

		-webkit-transform: translateX(100%);

		-ms-transform: translateX(100%);

		transform: translateX(100%);

	}

	.js .nz-row > .active.col.col-animate-true[data-effect="fade-left"],

	.js .nz-row > .active.col.col-animate-true[data-effect="fade-right"] {

		opacity: 1;

		-webkit-transform: translateX(0px);

		-ms-transform: translateX(0px);

		transform: translateX(0px);

	}

	.js .nz-row > .col.col-animate-true[data-effect="scale"] {

		opacity: 0;

		-webkit-transform: scale(0.2);

		-ms-transform: scale(0.2);

		transform: scale(0.2);

	}

	.js .nz-row > .active.col.col-animate-true[data-effect="scale"] {

		opacity: 1;

		-webkit-transform: scale(1);

		-ms-transform: scale(1);

		transform: scale(1);

	}

/*	ANIMATION

/*=============*/

	.js .nz-gallery.scale .gallery-item,

	.js .nz-content-box.scale > .nz-box,

	.js .nz-clients.scale .client,

	.js .nz-pricing-table.scale .column,

	.js .nz-persons.scale .person,

	.js .owl-carousel.scale .item {

		-webkit-transition: all 0.6s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

		transition: all 0.6s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

		opacity: 0;

		-webkit-transform: scale(0.2);

		-ms-transform: scale(0.2);

		transform: scale(0.2);

	}

	.js .nz-gallery.scale .gallery-item.active,

	.js .nz-content-box.scale > .nz-box.active,

	.js .nz-clients.scale .client.active,

	.js .nz-pricing-table.scale .column.active,

	.js .nz-persons.scale .person.active,

	.js .owl-carousel.scale .item.active {

		opacity: 1;

		-webkit-transform: scale(1);

		-ms-transform: scale(1);

		transform: scale(1);

	}

	.js .nz-gallery.fade .gallery-item,

	.js .nz-content-box.fade .nz-box,

	.js .nz-clients.fade .client,

	.js .nz-pricing-table.fade .column,

	.js .nz-persons.fade .person,

	.js .owl-carousel.fade .item {

		-webkit-transition: all 0.6s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

		transition: all 0.6s cubic-bezier(0.165, 0.840, 0.440, 1.000) 0.2s;

		opacity: 0 !important;

		-webkit-backface-visibility: hidden;

	}

	.js .nz-gallery.fade .gallery-item.active,

	.js .nz-content-box.fade .nz-box.active,

	.js .nz-clients.fade .client,

	.js .nz-pricing-table.fade .column,

	.js .nz-persons.fade .person,

	.js .owl-carousel.fade .item {

		opacity: 1 !important;

	}

/*	PRICING TABLE

/*=============*/

	.nz-pricing-table:after {

		content: "";

		display: table;

		clear: both;

	}

	.nz-pricing-table > .column {	

		width: 100%;

		margin-bottom: 25px;

		text-align: center;

	}

	.nz-pricing-table > .column > .title {	

		padding:20px;

		font-size: 24px;

		line-height: 32px;

		color:inherit;

		border-radius: 3px 3px 0px 0px;

		border-width: 1px;

		border-style: solid;

		border-color: #e0e0e0;

		background-color: #ffffff;

	}

	.nz-pricing-table > .column.highlight-true > .title {	

		color: #ffffff;

	}

	.nz-pricing-table > .column > .pricing {

		padding: 20px;

		border-left:1px solid #e0e0e0;

		border-right:1px solid #e0e0e0;

		background-color: #ffffff;

	}

	.nz-pricing-table .c-row {

		border-left:1px solid #e0e0e0;

		border-right:1px solid #e0e0e0;

		padding:15px 10px;

		background-color: #ffffff;

	}

	.nz-pricing-table > .column > .pricing > * {

		display: block;

	}

	.nz-pricing-table .price {

		font-size: 42px;

		line-height: 42px;

	}

	.nz-pricing-table .c-foot {

		padding: 30px 20px 20px 20px;

		border:1px solid #e0e0e0;

		border-top: none !important;

		border-radius: 0 0 3px 3px;

		background-color: #ffffff;

	}

	.nz-pricing-table .button {

		margin: 0;

	}

	.nz-pricing-table .button-ghost:hover {

		color: #ffffff !important;

	}

	.nz-pricing-table > .column > .c-body > .c-row:nth-child(odd) {

		background-color: #fbfbfb;

		border-top:1px solid #e0e0e0;

		border-bottom:1px solid #e0e0e0;

	}

/*	CLIENTS

/*=============*/

	.nz-clients {

		padding: 0 40px;

	}

	.nz-clients .client a {

		display: block;

		text-decoration: none;

	}

	

	.nz-clients .client {

		height: 130px;

		line-height:130px;

		text-align: center;

		overflow: hidden;

		margin: 0 10px;

	}

	.nz-clients .client-inner {

		border-radius: 3px;

		box-shadow:inset 0 0 0 1px #f2f2f2;

		-webkit-transition: all 0.4s;

		transition: all 0.4s;

	}

	.nz-clients[data-columns="6"] {

		height: 100px;

		line-height:100px;

	}

	.nz-clients .client-inner:hover {

		opacity: 0.5;

		box-shadow:inset 0 0 0 1px #aaaaaa;

	}

	.nz-clients .client img {

		margin-bottom: 0;

		vertical-align: middle;

		max-height: 80%;

		max-width: 80%;

	}

	.nz-clients .owl-controls {margin-top:0 !important;}

	.nz-clients .owl-controls .owl-buttons div {

		padding: 0;

		text-align: center;

		margin:0 !important;

		position: absolute;

		top:50%;

		left:0px;

		width: 40px;

		height: 40px;

		background-color: transparent;

		color: #cccccc;

		font-size:22px;

		line-height: 40px;

		font-weight:300;

		text-transform:none;

		opacity: 1 !important;

		-webkit-transition: all 0.3s ease-out;

		transition: all 0.3s ease-out;

		-webkit-transform: translateY(-50%);

		-ms-transform: translateY(-50%);

		transform: translateY(-50%);

	}

	.nz-clients .owl-controls .owl-buttons div:hover {

		color: #aaaaaa;

	}

	.nz-clients .owl-controls .owl-buttons .owl-next {

		left: auto;

		right:0px;

	}

	.nz-clients .owl-controls .owl-prev:before {

		content: "\e910";

		display: inline;

	}

	.nz-clients .owl-controls .owl-next:before {

		content: "\e913";

		display: inline;

	}

/*	CONTENTBOX

/*=============*/

	.nz-content-box > .nz-box {	

		width: 100%;

		margin-bottom: 25px;

		position: relative;

	}

	.nz-content-box.v2 > .nz-box {	

		margin-bottom:35px;

	}

	.nz-content-box > .nz-box > a {	

		color: inherit;

	}

	.nz-content-box .box-icon {

		-webkit-backface-visibility: hidden;

		-webkit-transition: all 150ms ease-out;

		transition: all 150ms ease-out;

	}

	.nz-content-box.v1 .box-icon {

		text-align: center;

		font-size: 72px;

		margin: 0 auto 25px auto;

		position: relative;

	}

	.nz-content-box.v1 .box-icon-wrap {

		position: relative;

		margin: 0 auto;

		-webkit-backface-visibility: hidden;

	}

	.nz-content-box.v1 .back-active .box-icon-wrap,

	.nz-content-box.v1 .border-active .box-icon-wrap {

		margin: 0 auto 25px auto;

		height: 130px;

		width: 130px;

		border-radius: 130px;

	}

	.nz-content-box .box-icon-wrap:before {

		content: "";

		display: block;

		width: inherit;

		height: inherit;

		position: absolute;

		left: 0;

		top: 0;

		border-radius: inherit;

		opacity: 0;

	}

	.nz-content-box .box-icon-wrap:after {

		content: "";

		display: block;

		width:144px;

		height:144px;

		position: absolute;

		left:-7px;

		top:-7px;

		border-radius: inherit;

		opacity: 0;

	}

	.nz-content-box .border-active .box-icon-wrap:after,

	.nz-content-box .back-active .box-icon-wrap:before {

		opacity: 1;

	}

	/*EFFECT 1

	-------------------*/

		.nz-content-box .back-active:not(.border-active) .box-icon-wrap:after {

			-webkit-transform:scale(0.8);

			-ms-transform:scale(0.8);

			transform:scale(0.8);

			opacity: 0;

		}

		.nz-content-box .back-active:not(.border-active):hover .box-icon-wrap:after {

			-webkit-animation: boxFill 400ms ease-out;

			animation: boxFill 400ms ease-out;

		}

		.nz-content-box .back-active:not(.border-active) .box-icon-wrap:before {

			-webkit-transition: all 150ms ease-out;

			transition: all 150ms ease-out;

		}

		.nz-content-box .back-active:not(.border-active):hover .box-icon-wrap:before {

			-webkit-transform:scale(.95);

			-ms-transform:scale(.95);

			transform:scale(.95);

		}

		

		@-webkit-keyframes boxFill {

			50% {opacity:1;-webkit-transform:scale(1);}

			100% {opacity:0;-webkit-transform:scale(1.05);}

		}

		@-keyframes boxFill {

			50% {opacity:1;transform:scale(1);}

			100% {opacity:0;transform:scale(1.05);}

		}

	/*EFFECT 2

	-------------------*/

		.nz-content-box .back-active.border-active .box-icon-wrap:before {

			-webkit-transition: all 150ms ease-out;

			transition: all 150ms ease-out;

		}

		.nz-content-box .back-active.border-active:hover .box-icon-wrap:before {

			-webkit-transform:scale(.95);

			-ms-transform:scale(.95);

			transform:scale(.95);

		}

		.nz-content-box .back-active.border-active .box-icon-wrap:after {

			-webkit-transition: all 280ms ease-out;

			transition: all 280ms ease-out;

		}

		.nz-content-box .back-active.border-active:hover .box-icon-wrap:after {

			-webkit-transform:scale(1.05);

			-ms-transform:scale(1.05);

			transform:scale(1.05);

			opacity: 0;

		}

	/*EFFECT 3

	-------------------*/

		.nz-content-box .border-active:not(.back-active) .box-icon-wrap:before {

			-webkit-transition: all 200ms ease-out;

			transition: all 200ms ease-out;

			-webkit-transform: scale(1.3);

			-ms-transform: scale(1.3);

			transform: scale(1.3);

			opacity: 0;

			width:144px;

			height:144px;

			left:-7px;

			top:-7px;

		}

		.nz-content-box .border-active:not(.back-active):hover .box-icon-wrap:before {

			-webkit-transform:scale(1);

			-ms-transform:scale(1);

			transform:scale(1);

			opacity: 1;

		}

		.nz-content-box .border-active:not(.back-active):hover .box-icon {

			color:#ffffff !important;

		}

	.nz-content-box.v1 .back-active .box-icon,

	.nz-content-box.v1 .border-active .box-icon {

		font-size: 42px;

		line-height: 130px;

		margin: 0 auto 0 auto;

	}

	.nz-content-box.v2 .box-icon {

		font-size: 58px;

		text-align: center;

		position: relative;

	}

	.nz-content-box.v2 .box-icon-wrap {

		position: absolute;

		top: 5px;

	}

	.nz-content-box.v2 .back-active .box-icon-wrap,

	.nz-content-box.v2 .border-active .box-icon-wrap {

		margin: 0;

		height: 70px;

		width: 70px;

		border-radius: 70px;

	}

	.nz-content-box.v2 .box-icon-wrap:after,

	.nz-content-box.v2 .border-active:not(.back-active) .box-icon-wrap:before {

		width:80px;

		height:80px;

		left:-5px;

		top:-5px;

	}

	.nz-content-box.v2 .back-active .box-icon,

	.nz-content-box.v2 .border-active .box-icon {

		font-size: 24px;

		line-height: 70px;

	}

	.nz-content-box.v2 .box-data {

		padding-left: 100px;

	}

/*	PERSONS

/*=============*/

	

	.nz-persons .person {

		width: 100%;

		margin-bottom:30px;

		padding-left: 15px;

		padding-right: 15px;

		position: relative;

		overflow: hidden;

	}

	.nz-persons .person-inner {

		box-shadow: inset 0 0 0 1px #e0e0e0;

		padding-bottom: 20px;

		background-color: #ffffff;

	}

	.nz-persons .person {text-align: center;}

	.nz-persons .person .img {

		margin:0 auto 15px auto;

		position: relative;

	}

	.nz-persons .person img {

		margin:0 auto;

	}

	.nz-persons .person .img:after {

		width: 100%;

		height: 100%;

		background-color: rgba(0,0,0,0.5);

		position: absolute;

		top: 0;

		left: 0;

		opacity: 0;

		-webkit-transition: all 400ms ease-out;

		transition: all 400ms ease-out;

		display: block;

		content: "";

	}

	.nz-persons .person:hover .img:after {

		opacity: 1;

	}

	.nz-persons .person .name {

		font-size: 20px;

		line-height: 30px;

		position: relative;

	}

	.nz-persons .person .name:after {

		margin: 7px auto 7px auto;

		content: "";

		display: block;

		width:50px;

		height:1px;

	}

	.nz-persons .person .title {

		font-size: 16px;

		font-weight: 300;

		line-height: 26px;

	}

	.nz-persons .social-links {

		position: absolute;

		bottom:-40px;

		left: 0;

		width: 100%;

		height: 40px;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

		opacity: 0;

	}

	.nz-persons .person .person-body {

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.nz-persons .social-links a {

		width: 40px;

		height: 40px;

		margin: 0 5px 5px 0;

		background-color:#e0e0e0;

		color: #ffffff !important;

		border-radius: 40px;

		font-size: 18px;

		line-height: 40px;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.nz-persons .social-links a:hover {

		background-color:#cccccc;

	}

/*	TESTIMONIALS

/*=============*/

	

	.nz-testimonials {

		position: relative;

	}

	.nz-testimonials .flex-control-nav {

		list-style: none;

		margin: 0 0 40px 0 !important;

		text-align: center;

	}

	.nz-testimonials .flex-control-nav li {

		display: inline-block;

		width: 10px;

		height: 10px;

		border-radius: 10px;

		position: relative;

		margin-right: 15px;

		cursor: pointer;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.nz-testimonials .flex-control-nav li:last-child {

		margin-right:0px;

	}

	.nz-testimonials .flex-control-nav li a {

		width:inherit;

		height:inherit;

		border-radius:inherit;

		display: block;

		background-color: transparent;

		text-decoration: none;

		position: relative;

		color: inherit;

	}

	.nz-testimonials .flex-control-nav img {

		display: none;

	}

	.nz-testimonials .flex-control-nav li a:before {

		display: block;

		position: absolute;

		width: 12px;

		height: 12px;

		border-radius: 12px;

		top: -1px;

		left: -1px;

		content: "";

		box-shadow: inset 0 0 0 2px;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.nz-testimonials {

		padding:0 30px 0 30px;

	}

	.nz-testimonials .testimonial {

		font-size: 22px;

		line-height: 32px;

		font-weight: 300;

		text-align: center;

	}

	.nz-testimonials .text {

		margin-bottom: 30px;

		padding-left: 20px;

		padding-right: 20px;

	}

	.nz-testimonials:before,

	.nz-testimonials:after {

		content: "\e676";

		display: block;

		position: absolute;

		top:67px;

		left:0px;

		font-size: 20px;

		line-height: 20px;

	}

	.nz-testimonials:after {

		right:0px;

		left: auto;

		-webkit-transform: rotate(180deg);

		-ms-transform: rotate(180deg);

		transform: rotate(180deg);

	}

	.nz-testimonials .name:before {

		display: block;

		width: 50px;

		height: 1px;

		content: "";

		margin: 0 auto 25px auto;

	}

	.nz-testimonials .name,

	.nz-testimonials .title {

		font-size:18px;

		line-height:28px;

		font-weight: 300;

		display: block;

		position: relative;

	}

	.nz-testimonials .name {

		font-weight: 600;

	}

/*	CAROUSELS

/*=============*/

	.owl-carousel .owl-wrapper:after {

		content: ".";

		display: block;

		clear: both;

		visibility: hidden;

		line-height: 0;

		height: 0;

	}

	.owl-carousel{

		display: none;

		position: relative;

		-ms-touch-action: pan-y;

		opacity: 0;

	}

	.owl-carousel .owl-wrapper{

		display: none;

		position: relative;

		-webkit-transform: translateX(0) translateY(0);

		-ms-transform: translateX(0) translateY(0);

		transform: translateX(0) translateY(0);

	}

	.owl-carousel .owl-wrapper-outer{

		overflow: hidden;

		position: relative;

		width: 100%;

	}

	.owl-carousel .owl-wrapper-outer.autoHeight{

		-webkit-transition: height 500ms ease-out;

		transition: height 500ms ease-out;

	}

		

	.owl-carousel .owl-item{

		float: left;

	}

	.owl-controls .owl-page,

	.owl-controls .owl-buttons div{

		cursor: pointer;

	}

	.owl-pagination {

		text-align: center;

	}

	.owl-controls {

		-webkit-user-select: none;

		-khtml-user-select: none;

		-moz-user-select: none;

		-ms-user-select: none;

		user-select: none;

		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

	}

	.nz-carousel .owl-controls {

		display: block;

		text-align: center;

		margin-top: 30px;

	}

	.owl-controls .owl-page {

		display:inline-block;

		width:12px;

		height:12px;

		background-color:#777777;

		opacity: 0.5;

		border-radius: 12px;

		margin-right:10px;

		border:2px solid transparent;

		-moz-background-clip: content;

		-webkit-background-clip: content;

		background-clip: content-box;

		-webkit-transition: all 0.3s ease-out;

		transition: all 0.3s ease-out;

		text-indent: 100%;

		white-space: nowrap;

		overflow: hidden;

	}

	.owl-controls .owl-page:last-child {

		margin-right:0px;

	}

	.owl-controls .owl-page.active {

		opacity: 1;

		background-color: transparent !important;

		border-color: #444444;

	}

	/* mouse grab icon */

	.grabbing { 

	    cursor:url(images/grabbing.png) 8 8, move;

	}

	.owl-carousel .item {	

		padding-right: 15px;

		padding-left: 15px;

		text-align: center;

	}

/*	GALLERY

/*=============*/

	.nz-gallery img {

		margin: 0 auto;

		display: block;

	}

	.nz-gallery .gallery-item {

		display: block;

		margin: 0 auto 30px auto;

		padding-right:10px;

		padding-left:10px;

		position: relative;

	}

	.nz-gallery.grid .gallery-item {

		float: left;

	}

	.nz-gallery .gallery-item .ninzio-overlay {

		border-radius: 0;

		background-color: rgba(0,0,0,0.5) !important;

	}

	.nz-gallery .gallery-item .ninzio-overlay:before {

		font-size: 22px;

		line-height:50px;

		height: 50px;

		width: 50px;

		border-radius: 50px;

		margin-top: -25px;

		margin-left:-25px; 

		left:50%;

		color: #ffffff;

	}

	.nz-gallery a {

		text-decoration: none;

		display: block;

		position: relative;

	}

	.nz-gallery[data-columns="1"].grid .gallery-item {width: 100%;}

	.nz-gallery[data-columns="2"].grid .gallery-item {width: 50%;}

	.nz-gallery[data-columns="3"].grid .gallery-item {width: 33.33333333333333%;}				

	.nz-gallery[data-columns="4"].grid .gallery-item {width: 50%;}

	.nz-gallery[data-columns="5"].grid .gallery-item {width: 33.33333333333333%;}

	.nz-gallery[data-columns="6"].grid .gallery-item {width: 33.33333333333333%;}

	.nz-gallery[data-columns="7"].grid .gallery-item {width: 33.33333333333333%;}

	.nz-gallery[data-columns="8"].grid .gallery-item {width: 50%;}

	.nz-gallery[data-columns="9"].grid .gallery-item {width: 33.33333333333333%;}

	.nz-gallery .wp-caption-text {

		display: none;

	}

	.nz-gallery .wp-caption:hover img,

	.nz-gallery .wp-caption .ninzio-overlay:before {

		-webkit-transform: translateX(0) translateY(0);

		-ms-transform: translateX(0) translateY(0);

		transform: translateX(0) translateY(0);

	}

	.gallery-caption {

		width: 100%

	}

/*	SLICK CAROUSELS

/*=============*/

	

	.nz-slick-carousel { 

		position: relative; 

		display: block;  

		-webkit-touch-callout: none;

		-webkit-user-select: none;

		-khtml-user-select: none;

		-moz-user-select: none;

		-ms-user-select: none;

		user-select: none;

		-ms-touch-action: pan-y;

		touch-action: pan-y;

		-webkit-tap-highlight-color: transparent;

	}

	.slick-list {

		position: relative; 

		overflow: hidden; 

		display: block; 

		margin: 0; 

		padding: 0;

	}

	.slick-list:focus { outline: none; }

	.slick-loading .slick-list { background: white url(images/loading.gif) center center no-repeat; }

	.nz-slick-carousel 

	.slick-list, 

	.slick-track, 

	.nz-slick-item img { 

		-webkit-transform: translateX(0) translateY(0);

		-ms-transform: translateX(0) translateY(0);

		transform: translateX(0) translateY(0);

	}

	.slick-track { position: relative; left: 0; top: 0; display: block; zoom: 1; }

	.slick-track:before, .slick-track:after { content: ""; display: table; }

	.slick-track:after { clear: both; }

	.slick-loading .slick-track { visibility: hidden; }

	.nz-slick-item { 

		float: left; 

		height: 100%; 

		min-height: 1px; 

		display: none;

		-webkit-transform: translateX(0) translateY(0) scale(0.9); 

		-ms-transform: translateX(0) translateY(0) scale(0.9); 

		transform: translateX(0) translateY(0) scale(0.9);

		-webkit-transition: all 0.3s ease-out;

		transition: all 0.3s ease-out;

	}

	.nz-slick-item.slick-center { 

		-webkit-transform: translateX(0) translateY(0) scale(1); 

		-ms-transform: translateX(0) translateY(0) scale(1); 

		transform: translateX(0) translateY(0) scale(1);

	}

	.nz-slick-item img,

	.nz-recent-posts .post img,

	.nz-recent-portfolio .post img

	{ display: block; pointer-events: none;}

	.nz-slick-item.slick-loading img

	{ display: none; }

	.nz-slick-item.dragging

	{ pointer-events: none; }

	.slick-initialized .nz-slick-item{ display: block !important; }

	.slick-loading .nz-slick-item{ visibility: hidden; }

	/* Arrows */

	.slick-prev, 

	.slick-next { 

		position: absolute; 

		display:none !important; 

		height: 72px; 

		width: 72px;

		cursor: pointer; 

		background: transparent;

		color: #777777;

		opacity:0.5;

		top: 50%; 

		margin-top: -10px; 

		padding: 0; 

		border: none; 

		outline: none;

		font-size: 72px;

		line-height: 72px;

		-webkit-transition: all 0.2s ease-out;

		transition: all 0.2s ease-out;

		-webkit-transform:translateY(-50%);

		-ms-transform:translateY(-50%);

		transform:translateY(-50%);

	}

	.slick-prev:hover, 

	.slick-prev:focus, 

	.slick-next:hover, 

	.slick-next:focus { 

		outline: none; 

		opacity: 1;

	}

	.slick-prev.slick-disabled, 

	.slick-next.slick-disabled 

	{ opacity: 0.25; }

	.slick-prev:before, 

	.slick-next:before 

	{position: relative;}

	.slick-prev:before {left: -2px;}

	.slick-next:before {right: -2px;}

/*  DROPCAP

/*=============*/

	

	.nz-dropcap,

	.nz-dropcap.empty {

		display: block;

		float: left;

		font-size:44px;

		line-height: 28px;

		margin: 8px 8px 0 0;

	}

	.nz-dropcap.full {

		background-color: #222;

		color: #fff;

		border-radius: 3px;

		padding: 14px 10px 15px 10px;

	}

/*  HIGHLIGHT

/*=============*/

	

	.nz-highlight {

		display: inline-block;

		padding: 0px 8px;

		color: #fff;

		border-radius: 3px;

	}

	.nz-highlight > :last-child {

		margin-bottom: 0 !important;

	}

/*	ICON LIST

/*=============*/

	

	.nz-i-list {list-style:none;}

	.nz-i-list li {

		margin-bottom: 10px;

		display: table;

	}

	.nz-i-list.large li {

		margin-bottom: 15px;

	}

	.nz-i-list li:last-child {margin-bottom: 0px;}

	.nz-i-list > li > div {

		display: table-cell;

		padding: 0;

		margin: 0;

		vertical-align: top;

	}

	.nz-i-list span.icon {

		display: block;

		margin-right: 10px;

		margin-bottom: 0;

		margin-left: 0;

		text-align: center;

		border-radius: 3px;

		font-size: 14px;

		line-height: 14px !important;

	}

	.nz-i-list.none span.icon {margin-top: 4px;}

	.nz-i-list.square span.icon,

	.nz-i-list.circle span.icon

	{margin-top: 2px;}

	/*types*/

	.nz-i-list.circle span.icon,

	.nz-i-list.square span.icon {

		font-size: 10px;

		width: 20px;

		height: 20px;

		line-height: 20px !important;

	}

	

	.nz-i-list.circle span.icon {border-radius: 50%;}

/*  ICONS

/*=============*/

	

	.nz-icon {

		margin:5px;

		font-size:16px;

		line-height: 16px;

		text-align: center;

		display: inline-block;

	}

	/*Sizes*/

	.nz-icon.small {font-size:14px; line-height: 14px;}

	.nz-icon.medium {font-size:32px; line-height: 32px;}

	.nz-icon.large {font-size:64px;  line-height: 64px;}

	/*Sizes with types*/

	.nz-icon.circle.small,

	.nz-icon.square.small {

		width: 40px;

		height: 40px;

		line-height: 36px;

		border-width: 2px;

	}

	.nz-icon.circle.medium,

	.nz-icon.square.medium {

		width: 65px;

		height: 65px;

		line-height: 59px;

		border-width: 3px;

	}

	.nz-icon.circle.large,

	.nz-icon.square.large {

		width: 110px;

		height: 110px;

		line-height: 103px;

		border-width: 3px;

	}

	/*Types*/

	.nz-icon.circle {border-radius: 50%;}

	.nz-icon.square {border-radius: 3px;}

	.nz-icon.circle,

	.nz-icon.square {

		border-style:solid;

		border-color: transparent;

	}

	.nz-icon.animate-true {

		-webkit-animation: iconAnimate 1.4s infinite;

		animation: iconAnimate 1.4s infinite;

	}

	@-webkit-keyframes iconAnimate {

	  0%,100% { -webkit-transform: translateY(5px); }

	  50% { -webkit-transform: translateY(-5px); }

	}

	@keyframes iconAnimate {

	  0%,100% { transform: translateY(5px); }

	  50% { transform: translateY(-5px); }

	}

/*	BUTTON

/*=============*/

	.button,

	button,

	input[type="reset"],

	input[type="submit"],

	input[type="button"],

	.single_add_to_cart_button {

		outline: none;

		border: none;

		color: #ffffff;

		font-weight:700;

		text-transform: uppercase;

		position: relative;

		display: inline-block;

		margin: 0 0px 5px 0;

		position: relative;

		overflow: hidden;

		-webkit-backface-visibility: hidden;

		z-index:1;

	}

	.button {margin-right: 0;}

	.button + .button {

		margin-left: 15px;

	}

	.btn-ghost button,

	.btn-ghost input[type="reset"],

	.btn-ghost input[type="submit"],

	.btn-ghost input[type="button"],

	.button-ghost,

	.btn-ghost .project-link,

	.btn-ghost .wc-forward,

	.btn-ghost .search-button,

	.btn-ghost .single_add_to_cart_button {

		background-color: transparent;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.btn-normal button,

	.btn-normal input[type="reset"],

	.btn-normal input[type="submit"],

	.btn-normal input[type="button"],

	.button-normal,

	.btn-normal .project-link,

	.btn-normal .wc-forward,

	.btn-normal .search-button,

	.btn-normal .single_add_to_cart_button {

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	button.small,

	.button.small,

	input[type="reset"].small,

	input[type="submit"].small,

	input[type="button"].small {

		padding:14px 30px; 

		font-size:13px;

		line-height: 22px;

	}

	.btn-3d button.small,

	.button-3d.button.small,

	.btn-3d input[type="reset"].small,

	.btn-3d input[type="submit"].small,

	.btn-3d input[type="button"].small {

		padding:12px 30px;

	}

	button,

	.button.medium,

	input[type="reset"],

	input[type="submit"],

	input[type="button"],

	.single_add_to_cart_button {

		padding:18px 40px;

		font-size:14px;

		line-height: 24px;

	}

	.btn-3d button.medium,

	.button-3d.button.medium,

	.btn-3d input[type="reset"].medium,

	.btn-3d input[type="submit"].medium,

	.btn-3d input[type="button"].medium,

	.btn-3d .single_add_to_cart_button {

		padding:16px 40px;

	}

	

	button.large,

	.button.large,

	input[type="reset"].large,

	input[type="submit"].large,

	input[type="button"].large {

		padding:22px 50px;

		font-size:18px;

		line-height: 28px;

	}

	.btn-3d button.large,

	.button-3d.button.large,

	.btn-3d input[type="reset"].large,

	.btn-3d input[type="submit"].large,

	.btn-3d input[type="button"].large {

		padding:20px 50px;

	}

	.btn-3d button,

	.button-3d.button,

	.btn-3d input[type="reset"],

	.btn-3d input[type="submit"],

	.btn-3d input[type="button"],

	.btn-3d .project-link,

	.btn-3d .search-button,

	.btn-3d .wc-forward,

	.btn-3d .single_add_to_cart_button {

		-webkit-transform:translateY(-4px);

		-ms-transform:translateY(-4px);

		transform:translateY(-4px);

	}

	.button.square {border-radius: 0;}

	.button.rounded {border-radius:3px;}

	.button.round {border-radius:250px;}

	.btn-square button,

	.btn-square input[type="reset"],

	.btn-square input[type="submit"],

	.btn-square input[type="button"],

	.btn-square .project-link,

	.btn-square .search-button,

	.btn-square .wc-forward,

	.btn-square .single_add_to_cart_button {

		border-radius: 0;

	}

	.btn-rounded button,

	.btn-rounded input[type="reset"],

	.btn-rounded input[type="submit"],

	.btn-rounded input[type="button"],

	.btn-rounded .project-link,

	.btn-rounded .search-button,

	.btn-rounded .wc-forward,

	.btn-rounded .single_add_to_cart_button {

		border-radius: 3px;

	}

	.btn-round button,

	.btn-round input[type="reset"],

	.btn-round input[type="submit"],

	.btn-round input[type="button"],

	.btn-round .project-link,

	.btn-round .search-button,

	.btn-round .wc-forward,

	.btn-round .single_add_to_cart_button {

		border-radius:250px;

	}

	.button .btn-icon {

		display: inline-block;

		margin-left:10px;

		position: relative;

		top: 1px;

	}

	.button.icon-true.animate-false .txt {

		margin-left:5px;

	}

	.blue.button-normal{background-color: #5472d2;}

	.blue.button-ghost {box-shadow:inset 0 0 0 2px #5472d2;color:#5472d2;}

	.blue.button-3d {background-color:#5472d2;box-shadow: 0 4px #405ebe;}

	.animate-false.blue.button-3d:hover {box-shadow: 0 2px #405ebe;}

	.turquoise.button-normal{background-color: #00c1cf;}

	.turquoise.button-ghost {box-shadow:inset 0 0 0 2px #00c1cf;color:#00c1cf;}

	.turquoise.button-3d {background-color:#00c1cf;box-shadow: 0 4px #00adc5;}

	.animate-false.turquoise.button-3d:hover {box-shadow: 0 2px #00adc5;}

	.pink.button-normal{background-color: #fe6c61;}

	.pink.button-ghost {box-shadow:inset 0 0 0 2px #fe6c61;color:#fe6c61;}

	.pink.button-3d {background-color:#fe6c61;box-shadow: 0 4px #ea584d;}

	.animate-false.pink.button-3d:hover {box-shadow: 0 2px #ea584d;}

	.violet.button-normal{background-color: #8d6dc4;}

	.violet.button-ghost {box-shadow:inset 0 0 0 2px #8d6dc4;color:#8d6dc4;}

	.violet.button-3d {background-color:#8d6dc4;box-shadow: 0 4px #7959b0;}

	.animate-false.violet.button-3d:hover {box-shadow: 0 2px #7959b0;}

	.peacoc.button-normal{background-color: #4cadc9;}

	.peacoc.button-ghost {box-shadow:inset 0 0 0 2px #4cadc9;color:#4cadc9;}

	.peacoc.button-3d {background-color:#4cadc9;box-shadow: 0 4px #3899b5;}

	.animate-false.peacoc.button-3d:hover {box-shadow: 0 2px #3899b5;}

	.chino.button-normal{background-color: #cec2ab;}

	.chino.button-ghost {box-shadow:inset 0 0 0 2px #cec2ab;color:#cec2ab;}

	.chino.button-3d {background-color:#cec2ab;box-shadow: 0 4px #bdae97;}

	.animate-false.chino.button-3d:hover {box-shadow: 0 2px #bdae97;}

	.mulled_wine.button-normal{background-color: #50485b;}

	.mulled_wine.button-ghost {box-shadow:inset 0 0 0 2px #50485b;color:#50485b;}

	.mulled_wine.button-3d {background-color:#50485b;box-shadow: 0 4px #3c3447;}

	.animate-false.mulled_wine.button-3d:hover {box-shadow: 0 2px #3c3447;}

	.vista_blue.button-normal{background-color: #75d69c;}

	.vista_blue.button-ghost {box-shadow:inset 0 0 0 2px #75d69c;color:#75d69c;}

	.vista_blue.button-3d {background-color:#75d69c;box-shadow: 0 4px #61c288;}

	.animate-false.vista_blue.button-3d:hover {box-shadow: 0 2px #61c288;}

	.black.button-normal{background-color: #2a2a2a;}

	.black.button-ghost {box-shadow:inset 0 0 0 2px #2a2a2a;color:#2a2a2a;}

	.black.button-3d {background-color:#2a2a2a;box-shadow: 0 4px #161616;}

	.animate-false.black.button-3d:hover {box-shadow: 0 2px #161616;}

	.grey.button-normal{background-color: #ebebeb;}

	.grey.button-ghost {box-shadow:inset 0 0 0 2px #ebebeb;color:#ebebeb;}

	.grey.button-3d {background-color:#ebebeb;box-shadow: 0 4px #d7d7d7;}

	.animate-false.grey.button-3d:hover {box-shadow: 0 2px #d7d7d7;}

	.orange.button-normal{background-color: #f7be68;}

	.orange.button-ghost {box-shadow:inset 0 0 0 2px #f7be68;color:#f7be68;}

	.orange.button-3d {background-color:#f7be68;box-shadow: 0 4px #e3aa54;}

	.animate-false.orange.button-3d:hover {box-shadow: 0 2px #e3aa54;}

	.sky.button-normal{background-color: #5aa1e3;}

	.sky.button-ghost {box-shadow:inset 0 0 0 2px #5aa1e3;color:#5aa1e3;}

	.sky.button-3d {background-color:#5aa1e3;box-shadow: 0 4px #468dcf;}

	.animate-false.sky.button-3d:hover {box-shadow: 0 2px #468dcf;}

	.green.button-normal{background-color: #6dab3c;}

	.green.button-ghost {box-shadow:inset 0 0 0 2px #6dab3c;color:#6dab3c;}

	.green.button-3d {background-color:#6dab3c;box-shadow: 0 4px #599728;}

	.animate-false.green.button-3d:hover {box-shadow: 0 2px #599728;}

	.juicy_pink.button-normal{background-color: #f4524d;}

	.juicy_pink.button-ghost {box-shadow:inset 0 0 0 2px #f4524d;color:#f4524d;}

	.juicy_pink.button-3d {background-color:#f4524d;box-shadow: 0 4px #e03e39;}

	.animate-false.juicy_pink.button-3d:hover {box-shadow: 0 2px #e03e39;}

	.sandy_brown.button-normal{background-color: #f79468;}

	.sandy_brown.button-ghost {box-shadow:inset 0 0 0 2px #f79468;color:#f79468;}

	.sandy_brown.button-3d {background-color:#f79468;box-shadow: 0 4px #e38054;}

	.animate-false.sandy_brown.button-3d:hover {box-shadow: 0 2px #e38054;}

	.purple.button-normal{background-color: #b97ebb;}

	.purple.button-ghost {box-shadow:inset 0 0 0 2px #b97ebb;color:#b97ebb;}

	.purple.button-3d {background-color:#b97ebb;box-shadow: 0 4px #a56aa7;}

	.animate-false.purple.button-3d:hover {box-shadow: 0 2px #a56aa7;}

	.white.button-normal{background-color: #ffffff;}

	.white.button-ghost {box-shadow:inset 0 0 0 2px #ffffff;color:#ffffff;}

	.white.button-3d {background-color:#ffffff;box-shadow: 0 4px #ebebeb;}

	.animate-false.white.button-3d:hover {box-shadow: 0 2px #ebebeb;}

	.btn-normal button:hover,

	.btn-normal input[type="reset"]:hover,

	.btn-normal input[type="submit"]:hover,

	.btn-normal input[type="button"]:hover,

	.animate-false.button-normal.hover-opacity:hover,

	.btn-normal .project-link:hover,

	.btn-normal .search-button:hover,

	.btn-normal .wc-forward:hover

	{opacity: 0.7;}

	.btn-3d button:hover,

	.btn-3d input[type="reset"]:hover,

	.btn-3d input[type="submit"]:hover,

	.btn-3d input[type="button"]:not(.minus):not(.plus):hover,

	.animate-false.button-3d:hover,

	.btn-3d .project-link:hover,

	.btn-3d .search-button:hover,

	.btn-3d .wc-forward:hover

	 {top: 2px;}

	.animate-false.blue.button-normal.hover-fill:hover{background-color: #405ebe;}

	.animate-false.turquoise.button-normal.hover-fill:hover{background-color: #00adc5;}

	.animate-false.pink.button-normal.hover-fill:hover{background-color:#ea584d;}

	.animate-false.violet.button-normal.hover-fill:hover{background-color:#7959b0;}

	.animate-false.peacoc.button-normal.hover-fill:hover{background-color:#3899b5;}

	.animate-false.chino.button-normal.hover-fill:hover{background-color:#bdae97;}

	.animate-false.mulled_wine.button-normal.hover-fill:hover{background-color:#3c3447;}

	.animate-false.vista_blue.button-normal.hover-fill:hover{background-color:#61c288;}

	.animate-false.black.button-normal.hover-fill:hover{background-color:#161616;}

	.animate-false.grey.button-normal.hover-fill:hover{background-color:#d7d7d7;}

	.animate-false.orange.button-normal.hover-fill:hover{background-color:#e3aa54;}

	.animate-false.sky.button-normal.hover-fill:hover{background-color:#468dcf;}

	.animate-false.green.button-normal.hover-fill:hover{background-color:#599728;}

	.animate-false.juicy_pink.button-normal.hover-fill:hover{background-color:#e03e39;}

	.animate-false.sandy_brown.button-normal.hover-fill:hover{background-color:#e38054;}

	.animate-false.purple.button-normal.hover-fill:hover{background-color:#a56aa7;}

	.animate-false.white.button-normal.hover-fill:hover{background-color:#ebebeb;}

	.blue.button-ghost.hover-fill:hover,

	.blue.button-ghost.hover-drop:after,

	.blue.button-ghost.hover-side:after,

	.blue.button-ghost.hover-scene:after,

	.blue.button-ghost.hover-screen:after

	{background-color: #5472d2;}

	.turquoise.button-ghost.hover-fill:hover,

	.turquoise.button-ghost.hover-drop:after,

	.turquoise.button-ghost.hover-side:after,

	.turquoise.button-ghost.hover-scene:after,

	.turquoise.button-ghost.hover-screen:after

	{background-color: #00c1cf;}

	.pink.button-ghost.hover-fill:hover,

	.pink.button-ghost.hover-drop:after,

	.pink.button-ghost.hover-side:after,

	.pink.button-ghost.hover-scene:after,

	.pink.button-ghost.hover-screen:after 

	{background-color:#fe6c61;}

	.violet.button-ghost.hover-fill:hover,

	.violet.button-ghost.hover-drop:after,

	.violet.button-ghost.hover-side:after,

	.violet.button-ghost.hover-scene:after,

	.violet.button-ghost.hover-screen:after 

	{background-color:#8d6dc4;}

	.peacoc.button-ghost.hover-fill:hover,

	.peacoc.button-ghost.hover-drop:after,

	.peacoc.button-ghost.hover-side:after,

	.peacoc.button-ghost.hover-scene:after,

	.peacoc.button-ghost.hover-screen:after  

	{background-color:#4cadc9;}

	.chino.button-ghost.hover-fill:hover,

	.chino.button-ghost.hover-drop:after,

	.chino.button-ghost.hover-side:after,

	.chino.button-ghost.hover-scene:after,

	.chino.button-ghost.hover-screen:after  

	{background-color:#cec2ab;}

	.mulled_wine.button-ghost.hover-fill:hover,

	.mulled_wine.button-ghost.hover-drop:after,

	.mulled_wine.button-ghost.hover-side:after,

	.mulled_wine.button-ghost.hover-scene:after,

	.mulled_wine.button-ghost.hover-screen:after

	{background-color:#50485b;}

	.vista_blue.button-ghost.hover-fill:hover,

	.vista_blue.button-ghost.hover-drop:after,

	.vista_blue.button-ghost.hover-side:after,

	.vista_blue.button-ghost.hover-scene:after,

	.vista_blue.button-ghost.hover-screen:after

	{background-color:#75d69c;}

	.black.button-ghost.hover-fill:hover,

	.black.button-ghost.hover-drop:after,

	.black.button-ghost.hover-side:after,

	.black.button-ghost.hover-scene:after,

	.black.button-ghost.hover-screen:after

	{background-color:#2a2a2a;}

	.grey.button-ghost.hover-fill:hover,

	.grey.button-ghost.hover-drop:after,

	.grey.button-ghost.hover-side:after,

	.grey.button-ghost.hover-scene:after,

	.grey.button-ghost.hover-screen:after

	{background-color:#ebebeb;}

	.orange.button-ghost.hover-fill:hover,

	.orange.button-ghost.hover-drop:after,

	.orange.button-ghost.hover-side:after,

	.orange.button-ghost.hover-scene:after,

	.orange.button-ghost.hover-screen:after

	{background-color:#f7be68;}

	.sky.button-ghost.hover-fill:hover,

	.sky.button-ghost.hover-drop:after,

	.sky.button-ghost.hover-side:after,

	.sky.button-ghost.hover-scene:after,

	.sky.button-ghost.hover-screen:after

	{background-color:#5aa1e3;}

	.green.button-ghost.hover-fill:hover,

	.green.button-ghost.hover-drop:after,

	.green.button-ghost.hover-side:after,

	.green.button-ghost.hover-scene:after,

	.green.button-ghost.hover-screen:after

	{background-color:#6dab3c;}

	.juicy_pink.button-ghost.hover-fill:hover,

	.juicy_pink.button-ghost.hover-drop:after,

	.juicy_pink.button-ghost.hover-side:after,

	.juicy_pink.button-ghost.hover-scene:after,

	.juicy_pink.button-ghost.hover-screen:after

	{background-color:#f4524d;}

	.sandy_brown.button-ghost.hover-fill:hover,

	.sandy_brown.button-ghost.hover-drop:after,

	.sandy_brown.button-ghost.hover-side:after,

	.sandy_brown.button-ghost.hover-scene:after,

	.sandy_brown.button-ghost.hover-screen:after

	{background-color:#f79468;}

	.purple.button-ghost.hover-fill:hover,

	.purple.button-ghost.hover-drop:after,

	.purple.button-ghost.hover-side:after,

	.purple.button-ghost.hover-scene:after,

	.purple.button-ghost.hover-screen:after

	{background-color:#b97ebb;}

	.white.button-ghost.hover-fill:hover,

	.white.button-ghost.hover-drop:after,

	.white.button-ghost.hover-side:after,

	.white.button-ghost.hover-scene:after,

	.white.button-ghost.hover-screen:after

	{background-color:#ffffff;}

	.button-ghost.hover-drop,

	.button-ghost.hover-side,

	.button-ghost.hover-scene,

	.button-ghost.hover-screen,

	.button-ghost.animate-true

	{background-color: transparent !important;}

	.animate-false.button-ghost.hover-drop:after,

	.animate-false.button-ghost.hover-side:after,

	.animate-false.button-ghost.hover-scene:after,

	.animate-false.button-ghost.hover-screen:after {

		width: 100%;

		height: 0;

		top: 0;

		left: 0;

		content: '';

		position: absolute;

		z-index: -1;

		display: block;

		-webkit-transition: all 200ms ease-out;

		transition: all 200ms ease-out;

	}

	.animate-false.button-ghost.hover-side:after {width:0%;height:100%;}

	.animate-false.button-ghost.hover-scene:after {

		width: 0;

		height: 100%;

		top: 50%;

		left: 50%;

		opacity: 0;

		-webkit-transform: translateX(-50%) translateY(-50%);

		-ms-transform: translateX(-50%) translateY(-50%);

		transform: translateX(-50%) translateY(-50%);

	}

	.animate-false.button-ghost.hover-diagonal:after {

		width:100%;

		height:0;

		top: 50%;

		left: 50%;

		opacity: 0;

		-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);

		-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);

		transform: translateX(-50%) translateY(-50%) rotate(45deg);

	}

	.animate-false.button-ghost.hover-screen:after {

		width: 100%;

		height: 0;

		top: 50%;

		left: 50%;

		opacity: 0;

		-webkit-transform: translateX(-50%) translateY(-50%);

		-ms-transform: translateX(-50%) translateY(-50%);

		transform: translateX(-50%) translateY(-50%);

	}

	.animate-false.button-ghost.hover-drop:hover:after {height:100%;}

	.animate-false.button-ghost.hover-side:hover:after {width: 100%;}

	.animate-false.button-ghost.hover-screen:hover:after {height: 100%;opacity: 1;}

	.animate-false.button-ghost.hover-scene:hover:after {width: 100%;opacity: 1;}

	.btn-ghost button:hover,

	.btn-ghost input[type="reset"]:hover,

	.btn-ghost input[type="submit"]:hover,

	.btn-ghost input[type="button"]:hover,

	.animate-false.button-ghost.hover-fill:hover,

	.animate-false.button-ghost.hover-drop:hover,

	.animate-false.button-ghost.hover-side:hover,

	.animate-false.button-ghost.hover-scene:hover,

	.animate-false.button-ghost.hover-screen:hover,

	.btn-ghost .project-link:hover,

	.btn-ghost .search-button:hover,

	.btn-ghost .wc-forward:hover

	{color: #ffffff;}

	.animate-false.white.button-ghost.hover-fill:hover,

	.animate-false.white.button-ghost.hover-drop:hover,

	.animate-false.white.button-ghost.hover-side:hover,

	.animate-false.white.button-ghost.hover-scene:hover,

	.animate-false.white.button-ghost.hover-screen:hover

	{color: #333333;}

	.button.animate-true .btn-icon {opacity: 0;margin-left: 0;}

	.button.animate-true .txt {display: inline-block;}

	.button.animate-true.anim-type-ghost span {

		-webkit-transition: all 150ms ease-out;

		transition: all 150ms ease-out;

	}

	.button.animate-true.anim-type-reverse span {

		-webkit-transition: all 150ms ease-out;

		transition: all 150ms ease-out;

	}

	.button.animate-true.anim-type-ghost .txt {

		-webkit-transform:translateX(7%);

		-ms-transform:translateX(7%);

		transform:translateX(7%);

	}

	.animate-true.anim-type-ghost:hover .txt {

		-webkit-transform:translateX(-5%);

		-ms-transform:translateX(-5%);

		transform:translateX(-5%);

	}

	.animate-true.anim-type-ghost:hover .btn-icon {

		-webkit-transform:translateX(50%);

		-ms-transform:translateX(50%);

		transform:translateX(50%);

		opacity: 1;

	}

	.button.animate-true.anim-type-reverse .btn-icon {

		opacity: 1;

		position: absolute;

		height: 100%;

		width: 100%;

		text-align: center;

		top:-100%;

		left: 0;

		font-size: 180%;

	}

	.button.animate-true.anim-type-reverse .btn-icon:before {

		position: absolute;

		left:50%;

		top:50%;

		-webkit-transform:translateY(-50%) translateX(-50%);

		-ms-transform:translateY(-50%) translateX(-50%);

		transform:translateY(-50%) translateX(-50%);

	}

	.button.animate-true.anim-type-reverse .txt {

		display:block;

	}

	.button.animate-true.anim-type-reverse:hover .btn-icon {

		top: 0;

	}

	.button.animate-true.anim-type-reverse:hover .txt {

		-webkit-transform:translateY(200%);

		-ms-transform:translateY(200%);

		transform:translateY(200%);

	}

/*	SOCIAL LINKS

/*=============*/

	

	.social-links.right {text-align: right;}

	.social-links.left {text-align: left;}

	.social-links.center {text-align: center;}

	

	.social-links a {

		width:50px;

		height:50px;

		margin: 0 3px 3px 0;

		border-radius: 3px;

		display:inline-block;

		text-decoration: none;

		background-color: #bbb;

		text-align: center;

		color: #fff !important;

		font-size: 18px;

		line-height: 50px;

		position: relative;

		-webkit-transition: color 200ms ease-out;

		transition: color 200ms ease-out;

	}

	.social-links a:hover {

		text-decoration: none;

	}

	.social-links span {

		padding: 5px 10px 5px 10px;

		background-color:#101010;

		color: #ffffff;

		border-radius: 3px;

		position: absolute;

		top:-75%;

		left: 50%;

		line-height:24px;

		display:block;

		-webkit-transform:translateX(-50%) translateY(-30%);

		-ms-transform:translateX(-50%) translateY(-30%);

		transform:translateX(-50%) translateY(-30%);

		visibility: hidden;

		width: auto;

		height: auto;

		text-indent: 0;

		opacity: 0;

		-webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0.2s ease-out;

		transition: transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0.2s ease-out;

	}

	.social-links a:hover span {

		z-index: 100;

		visibility: visible;

		opacity: 1;

		-webkit-transform: translateX(-50%) translateY(-10%);

		-ms-transform: translateX(-50%) translateY(-10%);

		transform: translateX(-50%) translateY(-10%);

		-webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s ease-out;

		transition: transform 0.2s ease-out, opacity 0.2s ease-out;

	}

	.social-links a span:after {

		display: block;

		position: absolute;

		content: "";

		bottom: -4px;

		left: 50%;

		-webkit-transform:translateX(-50%) translateY(0%);

		-ms-transform:translateX(-50%) translateY(0%);

		transform:translateX(-50%) translateY(0%);

		width: 0;

		height: 0;

		border-style: solid;

		border-width: 5px 4px 0 4px;

		border-color:#101010 transparent transparent transparent;

	}

/*	ALERT MESSAGE

/*=============*/

	

	.alert {

		padding:20px 40px 20px 20px;

		position: relative;

		border-width:1px;

		border-style: solid;

		border-radius: 3px;

		margin-bottom: 25px;

	}

	.alert.note {

		border-color:#e0e0e0;

		background: #ffffff;

	}

	.alert.success {

		border-color:#cbdaa5;

		background: #e4f5ba;

		color: #768c40;

	}

	.alert.warning {

		border-color:#e4c789;

		background: #fdedbf;

		color: #b48a4e;

	}

	.alert.error {

		border-color:#e1a197;

		background: #fcd4cb;

		color: #8e4438;

	}

	.alert.information {

		border-color:#a6c4d8;

		background: #e3eff7;

		color: #225f87;

	}

	.alert .close-alert {

		position: absolute;

		top: 20px;

		right: 20px;

		cursor: pointer;

	}	

/*	PROGRESS

/*=============*/

	

	.nz-progress {

		width: 100%;

		max-width: 100%;

	}

	.nz-progress .bar {

		background-color: #eeeeee;

		width: 100%;

		height: 30px;

		line-height: 30px;

		border-radius: 30px;

		margin-bottom: 25px;

	}

	.nz-progress .nz-line { 

		height: inherit;

		color: #ffffff;

		text-align:right;

		padding-right: 15px;

		font-size:14px;

		border-radius: inherit;

		font-weight: bold;

		font-size: inherit;

		position: relative;

		visibility: hidden;

	}

	.nz-progress .nz-line:before { 

		display: block;

		height: 100%;

		position: absolute;

		text-align: right;

		top: 0;

		line-height: inherit;

		font-size: inherit;

		color: inherit;

		left: 15px;

		text-transform: uppercase;

		content: attr(data-title);

		-webkit-backface-visibility: hidden;

		-webkit-transition: opacity 500ms ease-out;

		transition: opacity 500ms ease-out;

		-webkit-transition-delay: 500ms;

		transition-delay: 500ms;

		opacity:0;

	}

	.nz-progress .visible.nz-line:before { 

		opacity:1;

	}

	.nz-progress .nz-line:after { 

		display:inline-block;

		height: 100%;

		position:relative;

		line-height: inherit;

		font-size: inherit;

		color: inherit;

		content:"%";

	}

/*	CIRCLE PROGRESS

/*=============*/

	.nz-circle-progress {

		min-height: 236px;

	}

	

	.nz-circle-progress,

	.nz-circle-progress.center {

		text-align: center;

	}

	.nz-circle-progress.left {

		text-align: left;

	}

	.nz-circle-progress.right {

		text-align: right;

	}

	.js .nz-circle {

		opacity: 0;

	}

	.nz-circle {

		height: auto;

		display: block;

		display: inline-block;

		width: 240px;

		margin:0 0px 25px 0px;

		padding: 0 15px;

		position: relative;

	}

	.nz-circle .circle {

	    position: relative;

	    text-align: center;

	    width: inherit;

	    font-weight: bold;

	    margin: 0 auto;

	    font-size: 3em;

	    display: table;

	}

	.nz-circle .circle canvas {

	    position: absolute;

	    top: 0;

	    left:50%;

	    -webkit-transform:translateX(-50%);

	    -ms-transform:translateX(-50%);

		transform:translateX(-50%);

	}

	.circle-counter-percentage {

		font-weight: bold;

	}

	.nz-circle .title {

		font-weight: 600;

		display: table-cell;

		text-align: center;

		vertical-align: middle;

		margin-top: 0px;

		padding: 0 35px;

		font-size: 28px;

		line-height: 38px;

	}

/*  ICON-PROGRESS-BAR

/*=============*/

	

	.nz-icon-progress {width: 100%; margin-bottom: 10px; text-align: center;}

	.nz-icon-progress,

	.nz-icon-progress.center {

		text-align: center;

	}

	.nz-icon-progress.left {

		text-align: left;

	}

	.nz-icon-progress.right {

		text-align: right;

	}

	.nz-icon-progress span.icon  {

		margin: 0 10px 10px 0;

		color: #eeeeee;

		font-size:64px;

		line-height: 64px;

	}

	.nz-icon-progress span.icon:last-child {margin-right: 0;}

/*	TABS

/*=============*/

	.tabset .tab {

		display: block;

		text-align: center;

		padding:20px 40px;

		background-color: #fbfbfb;

		border: 1px solid #e0e0e0;

		cursor: pointer;

		border-radius: 3px;

		position: relative;

		font-size: 16px;

		margin-bottom: 8px;

	}

	.tabset .tab:last-child {margin-bottom:0px;}

	.tabset .tab.active

	{background-color:#ffffff;}

	.tabs-container {

		width: 100%;

		height: auto;

		padding-top: 20px;

	}

	.tabs-container .tab-content:not(:first-child) {

		display: none;

	}

/*	TABLE

/*=============*/

	

	.nz-table {

		border-collapse: collapse;

		border:1px solid #e0e0e0;

		border-spacing:0;

		width: 100%;

		max-width: 100% !important;

	}

	.nz-table th,

	.nz-table tbody tr:nth-child(2n+2) {

		background-color: #fbfbfb;

	}

	.nz-table tbody td {

		border-left: 1px solid #e0e0e0;

	}

	.nz-table tbody tr:nth-child(2n+2) {

		border-top: 1px solid #e0e0e0;

		border-bottom: 1px solid #e0e0e0;

	}

	.nz-table thead {

		border-bottom-width:1px;

		border-bottom-style: solid;

	}

/*	ACCORDION

/*=============*/

	.nz-accordion .toggle-title  {

		cursor: pointer;

		display: table;

		width: 100%;

		margin-top:-1px;

		position: relative;

		background-color: #fbfbfb;

		border: 1px solid #e0e0e0;

		border-radius:3px;

		font-size: 16px;

	}

	.nz-accordion .toggle-title.active  {

		background-color: #ffffff;

	}

	.toggle-title .toggle-title-header {

		margin-bottom: 0;

		font-weight: normal;

		display: table-cell;

		vertical-align: middle;

		padding: 20px 20px 20px 30px;

		width: 95%;

	}

	.toggle-title .arrow {

		display: table-cell;

		vertical-align: middle;

		font-weight: bold;

		font-size: 18px;

		text-align: center;

		width:5%;

		min-width: 50px;

		border-left:1px solid #e0e0e0;

	}

	.nz-accordion .toggle-content {

		padding:20px;

	}

/*	COUNTER

/*=============*/

	.nz-counter .nz-count {

		width: 100%;

		display: block;

		text-align: center;

		position: relative;

		margin-bottom: 50px;

	}

	.nz-counter span {

		display: block;

		margin: 0 auto;

	}

	.nz-counter .count-icon {

		margin: 0 auto 25px auto;

		height: 130px;

		width: 130px;

		border-radius: 130px;

		font-size: 42px;

		line-height: 130px;

	}

	.nz-counter .count-value {

		font-size:76px;

		line-height:76px;

		font-weight: 700;

	}

	.nz-counter .count-title {

		font-size: 18px;

		line-height: 28px;

		font-weight: 300;

	}

/*	TIMER

/*=============*/

	.nz-timer .timer-item {

		width: 100%;

		height: 200px;

		display: block;

		text-align: center;

		position: relative;

		margin-bottom: 25px;

	}

	.nz-timer .timer-item:before {

		width: 200px;

		height: 200px;

		border-radius: 200px;

		content: "";

		display: block;

		position: absolute;

		top: 0;

		left: 50%;

		-webkit-transform:translateX(-50%);

		-ms-transform:translateX(-50%);

		transform:translateX(-50%);

	}

	.timer-item-wrap {

		width: 200px;

		height: 200px;

		border-radius: 200px;

		line-height: 200px;

		margin: 0 auto;

		-webkit-transform:translateY(25%);

		-ms-transform:translateY(25%);

		transform:translateY(25%);

	}

	.nz-timer span {

		display: block;

		margin: 0 auto;

		font-size:76px;

		line-height:76px;

		font-weight: 700;

	}

	.nz-timer .label {

		font-size: 18px;

		line-height: 28px;

		font-weight: 300;

	}

/*	RECENT TWEETS

/*=============*/

	

	.nz-tweets {

		position: relative;

		padding-top:70px;

	}

	.nz-tweets:before {

		display: block;

		content: "\e76d";

		line-height:45px;

		font-size:45px;

		width:100%;

		height:45px;

		position: absolute;

		top: 0;

		left: 0;

		text-align: center;

		opacity: 0.5;

	}

	.nz-tweets ul {

		list-style:none;

		text-align: center;

	}

	.nz-tweets a,

	.nz-tweets p {

		color: inherit;

		font-size:22px;

		line-height: 32px;

		font-weight:300;

		margin: 0;

	}

	.nz-tweets a {

		color: inherit !important;

	}

	.nz-tweets .owl-controls {

		display: block;

		text-align: center;

		margin-top: 30px;

	}

/*	TAGLINE

/*=============*/

	

	.nz-tagline {

		display: block;

		text-decoration: none;

		padding: 60px 0;

		font-size: 24px;

		line-height: 34px;

		font-weight: 300;

		text-align: center;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.nz-tagline .tagline-title {

		-webkit-transition: all 200ms ease-out;

		transition: all 200ms ease-out;

	}

	.nz-tagline .tagline-title:after {

		display: inline-block;

		content: "\e72a";

		font-size: 16px;

		margin-left: 10px;

		-webkit-transition: all 200ms ease-out;

		transition: all 200ms ease-out;

	}

	.nz-tagline:hover .tagline-title {

		-webkit-transform:translateX(-15px);

		-ms-transform:translateX(-15px);

		transform:translateX(-15px);

	}

	.nz-tagline:hover .tagline-title:after {

		-webkit-transform:translateX(25px);

		-ms-transform:translateX(25px);

		transform:translateX(25px);

	}

/*  VIDEO, AUDIO EMBED

/*=============*/

	

	/*Flexible embeds*/

	.flex-mod {

	    position: relative;

	    padding-bottom: 56.25%;

	    padding-top: 30px;

	    height: 0;

	    overflow: hidden;

	}

	.flex-mod iframe,   

	.flex-mod object,  

	.flex-mod embed {

	    position: absolute;

	    top: 0;

	    left: 0;

	    width: 100%;

	    height: 100%;

	}

	.soundcloud iframe {

		max-width: 100%;

	}

	.wp-video-shortcode,

	.wp-audio-shortcode {

		max-width: 100% !important;

		height: auto;

	}

/*  MAILCHIMP

/*=============*/

	.nz-mailchimp-wrap[data-align="left"] .nz-mailchimp {float: left;}

	.nz-mailchimp-wrap[data-align="right"] .nz-mailchimp {float: right;}

	.nz-mailchimp-wrap[data-align="center"] .nz-mailchimp {margin-left:auto;margin-right:auto;}

	.nz-mailchimp form {

		margin: 0;

		position: relative;

	}

	.nz-mailchimp input[type="email"] {

		height: 60px;

		position: relative;

		padding-left: 60px;

		padding-right: 165px;

		margin: 0;

		background-color: transparent !important;

	}

	

	.nz-mailchimp input[type="submit"] {

		opacity: 1 !important;

		padding:18px 40px !important;

		font-size:14px !important;

		line-height: 24px !important;

		border-radius:0 3px 3px 0 !important;

		box-shadow:none !important;

		color: #ffffff !important;

		margin: 0 !important;

		position: absolute;

		top: 0 !important;

		right: -1px;

		-webkit-transform:translateY(0px) !important;

		-ms-transform:translateY(0px) !important;

		transform:translateY(0px) !important;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

	}

	.nz-mailchimp .icon-plus {display: none;}

	.nz-mailchimp .icon-envelope {

		position: absolute;

		top: 0;left: 0;

		display: block;

		height: 60px;

		width:60px;

		line-height: 60px;

		text-align: center;

		z-index: 10;

	}

/*  MEDIA SLIDER

/*=============*/

	

	.nz-media-slider {

		margin: 0;

		padding: 0;

		position: relative;

		overflow: hidden;

	}

	.nz-media-slider .slides {

		list-style:none;

		margin: 0;

		padding: 0;

	}

	.nz-media-slider .slides > li {

		display: none; 

		-webkit-backface-visibility: hidden;

		margin: 0;

		padding: 0;

	}

	.nz-media-slider .slides > li > * {margin: 0;}

	.nz-media-slider .slides img {display: block;}

	.flex-pauseplay span {text-transform: capitalize;}

	.slides:after {

		content: "."; 

		display: block; 

		clear: both; 

		visibility: hidden; 

		line-height: 0; 

		height: 0;

	} 

	html[xmlns] .nz-media-slider .slides {display: block;} 

	* html .nz-media-slider .slides {height: 1%;}

	.no-js .slides > li:first-child {display: block;}

	.flex-viewport {

		max-height: 2000px; 

		-webkit-transition: all 200ms ease-out;

		transition: all 200ms ease-out;

	}

	.nz-media-slider .loading .flex-viewport {max-height: 300px;}

	.nz-media-slider .flex-direction-nav {

		list-style: none;

		margin: 0;

	}

	/* Control Nav */

	.nz-media-slider .flex-control-nav {

		width: 100%; 

		text-align: center;

		list-style: none;

		z-index: 50;

		margin: 0;

		opacity: 1;

		padding:15px 0;

	}

	.nz-media-slider .flex-control-nav li {

		margin: 0 4px;

		display: inline-block; 

	}

	.nz-media-slider .flex-control-paging li a {

		display:inline-block;

		width:12px;

		height:12px;

		background-color:#777777;

		opacity: 0.5;

		border-radius: 12px;

		margin-right:10px;

		border:2px solid transparent;

		-moz-background-clip: content;

		-webkit-background-clip: content;

		background-clip: content-box;

		-webkit-transition: all 0.3s;

		transition: all 0.3s;

		text-indent: 100%;

		white-space: nowrap;

		overflow: hidden;

		cursor: pointer;

	}

	.nz-media-slider .flex-control-paging li a.flex-active {

		opacity: 1;

		background-color: transparent !important;

		border-color: #444444;

	}

	.nz-media-slider .flex-direction-nav a,

	.post-gallery .flex-direction-nav a {

		position:absolute;

		top: 50%;

		left:-40px;

		margin-top: -20px;

		width: 40px;

		height: 40px;

		line-height: 40px;

		text-align: center;

		-webkit-transition: all 0.3s;

		transition: all 0.3s;

		background-color: rgba(0,0,0,0.5);

		border-radius: 0 3px 3px 0;

		opacity: 0;

		display: block;

		z-index: 5;

	}

	.post-gallery .flex-direction-nav a {

		margin-top:0px;

		left:auto;

		right:25px !important;

		top: 10px !important;

		opacity: 1;

		border-radius:3px;

		width: 30px;

		height: 30px;

		line-height: 30px;

	}

	.post-gallery .flex-direction-nav a:before {

		line-height: 30px !important;

	}

	.single-post .post-gallery .flex-direction-nav a {

		right:10px !important;

	}

	.post-gallery .flex-direction-nav a.flex-prev {

		right: 60px !important;

	}

	.single-post .post-gallery .flex-direction-nav a.flex-prev {

		right: 45px !important;

	}

	.nz-media-slider[data-bullets="true"] .flex-direction-nav a {

		margin-top:-52px;

	}

	.nz-media-slider .flex-direction-nav a.flex-next {

		left:auto;

		right:-40px;

		border-radius: 3px 0 0 3px;

	}

	.nz-media-slider:hover .flex-direction-nav a.flex-next{right:0px;opacity: 1;}

	.nz-media-slider:hover .flex-direction-nav a.flex-prev{left:0px;opacity: 1;}

	.nz-media-slider .flex-direction-nav a:before,

	.post-gallery .flex-direction-nav a:before {

		display: block;

		top: 0;

		left: 0;

		height: inherit;

		width: inherit;

		font-size: 16px;

		line-height: 40px;

		content: "\e910";

		color: #ffffff;

	}

	.nz-media-slider .flex-direction-nav a.flex-next:before,

	.post-gallery .flex-direction-nav a.flex-next:before {

		content: "\e913";

	}

/*	SEPARATOR

/*=============*/

	.nz-separator {height: 1px;border-bottom-width: 1px;}

	.nz-separator.solid  {border-bottom-style:solid;}

	.nz-separator.dotted {border-bottom-style:dotted;}

	.nz-separator.dashed {border-bottom-style:dashed}

	.sep-wrap.center .nz-separator {margin: 0 auto;}

	.sep-wrap.left .nz-separator {float: left;}

	.sep-wrap.right .nz-separator {float: right;}

/*	SECTION

/*=============*/

	.nz-section {

		background-position: center center;

		background-repeat: no-repeat;

		margin-bottom: 0;

		margin: 0 auto;

		position: relative;

		width: 100%;

		height:auto;

		z-index: 1;

		overflow:hidden; 

	}

	.nz-section.animate-true {

		background-position:0 0;

		background-repeat:repeat !important;

		-webkit-background-size: auto !important; 

		-moz-background-size: auto !important; 

		background-size: auto !important;

	}

	.nz-section-back-video {

		position: absolute;

		top:-3px; 

		right: 0px; 

		min-width: 100%; 

		width: 100%; 

		height: auto; 

		z-index: -1000; 

		overflow: hidden;

		display: none;

	}

	.nz-video-overlay {

		position: absolute;

		top:0px; 

		right: 0px; 

		background-position:left top;

		background-repeat:repeat;

		width: 100%;

		height: 100%;

		display: none;

	}

	.nz-video-poster {

		-webkit-background-size: cover !important; 

		-moz-background-size: cover !important; 

		background-size: cover !important;

		position: absolute;

		background-position:center top;

		background-repeat:no-repeat;

		width: 100%;

		height: 100%;

		top:0px; 

		right: 0px;

		position: absolute;

	}

	.nz-section .parallax-container {

		top: 0;

		left: 0;

		min-height: 100%;

		width:100%;

		height:150%;

		z-index: -1000;

		overflow: hidden;

		max-width: none;

		position: absolute;

		-webkit-background-size: cover !important;

		-moz-background-size: cover !important;

		background-size: cover !important;

		background-position: center center;

		background-repeat: no-repeat;

		-webkit-backface-visibility: hidden;

		backface-visibility: hidden;

		-webkit-transform:translateY(0px);

		-moz-transform:translateY(0px);

		transform:translateY(0px);

	}

/*	SLIDER SECTION

/*=============*/

	

	.nz-ss .ss-item {

		background-position: center center;

		background-repeat: no-repeat;

		margin-bottom: 0;

		margin: 0 auto;

		position: relative;

		width: 100%;

		height: 100%;

		z-index: 1;

	}

	.nz-ss .owl-pagination {

		position: absolute;

		bottom:20px;

		left: 50%;

		-webkit-transform:translateX(-50%);

		-ms-transform:translateX(-50%);

		transform:translateX(-50%);

	}

	.nz-ss .owl-prev,

	.nz-ss .owl-next {

		font-size: 52px;

		color: #ffffff;

		position: absolute;

		top:50%;

		left:10px;

		opacity: 0.5;

		-webkit-transform:translateY(-50%);

		-ms-transform:translateY(-50%);

		transform:translateY(-50%);

		-webkit-transition: all 0.2s ease-out;

		transition: all 0.2s ease-out;

	}

	.nz-ss .owl-prev:hover,

	.nz-ss .owl-next:hover {

		opacity:1;

	}

	.nz-ss .owl-controls .owl-page {

		background-color:#ffffff;

	}

	.nz-ss .owl-controls .owl-page.active {

		border-color: #ffffff;

	}

	.nz-ss .owl-next {

		left:auto;

		right:10px;

	}

/*	OVERLAY

/*=============*/

	

	.ninzio-overlay {

		position: absolute;

		top: 0;

		left: 0;

		z-index: 3;

		border-radius: 3px;

		text-align: center;

		width: 100%;

		height: 100%;

		opacity: 0;

		color: #fff !important;

		overflow: hidden;

		-webkit-transition: opacity 0.45s;

		transition: opacity 0.45s;

		-webkit-backface-visibility: hidden;

	}

	.ninzio-overlay:hover {opacity: 1;}

	

	.ninzio-overlay:before {

		display: block;

		content: "\e8c3";

		font-size:18px;

		line-height: 18px;

		height: 18px;

		width:100%;

		position: absolute;

		top:50%;

		left:0;

		margin-top: -9px;

		text-align: center;

		color: #ffffff;

		-webkit-transition:none;

		transition:none;

	}

/*  WP CAPTION

===============*/

	

	.wp-caption {

		position: relative;

		overflow: hidden;

	}

	.wp-caption img {

		-webkit-transition: -webkit-transform 0.45s;

		transition: transform 0.45s;

		-webkit-transform-style: preserve-3d;

		transform-style: preserve-3d;

		-webkit-transform: translateX(0) translateY(0); 

		-ms-transform: translateX(0) translateY(0); 

		transform: translateX(0) translateY(0);

	}

	.wp-caption .wp-caption-text {

		position: absolute;

		left: 0;

		bottom: 0;

		width: 100%;

		padding:15px 20px;

		z-index: 5;

		color: #ffffff !important;

		text-align: center;

		-webkit-transform: translateY(100%);

		-ms-transform: translateY(100%);

		transform: translateY(100%);

		-webkit-backface-visibility: hidden;

		-webkit-transition: -webkit-transform 0.4s;

		transition: transform 0.4s;

	}

	.wp-caption:hover .wp-caption-text {

		-webkit-transform: translateY(0);

		-ms-transform: translateY(0);

		transform: translateY(0);

	}

	.wp-caption:hover img {

		-webkit-transform: translateY(-16px);

		-ms-transform: translateY(-16px);

		transform: translateY(-16px);

	}

	.wp-caption .ninzio-overlay:before {

		-webkit-transform: translateY(-16px);

		-ms-transform: translateY(-16px);

		transform: translateY(-16px);

	}

/*	RECENT POSTS

/*=============*/

	

	.nz-recent-posts .post,

	.loop .blog-post .post {

		overflow: hidden;

		max-width: 100%;

	}

	.nz-recent-posts .post {

		padding-right: 15px;

		padding-left: 15px;

	}

	.nz-recent-posts .nz-more,

	.blog-post .nz-more,

	.nz-portfolio-posts .nz-more {

		display: block;

	}

	.nz-recent-posts .post .post-wrap,

	.loop .blog-post .post .post-wrap {

		box-shadow: inset 0 0 0 1px #e0e0e0;

		background-color: #ffffff;

		overflow: hidden;

	}

	.nz-recent-posts .nz-thumbnail,

	.nz-recent-portfolio .post,

	.blog-post .nz-thumbnail,

	.nz-portfolio-posts .nz-thumbnail {

		position: relative;

	}

	.nz-thumbnail img {

		display: block;

		margin: 0;

	}

	.nz-recent-posts .nz-thumbnail .post-date,

	.blog-post .post .post-date,

	.post-gallery .post-date,

	.post-sticky {

		width:48px;

		height: 52px;

		position: absolute;

		top:10px;

		left:10px;

		border-radius: 3px;

		text-align: center;

		color: #ffffff;

	}

	.post-sticky {

		font-size: 22px;

		line-height: 52px;

		left: 63px;

	}

	.post-sticky span {

		line-height: inherit;

		height: 100%;

		width: 100%;

		margin-top: -2px;

	}

	.single .blog-post .post-date,

	.single .post-sticky {

		width:60px;

		height:70px;

	}

	.single .post-sticky {

		line-height:70px;

		left: 75px;

	}

	.post-gallery .post-date,

	.post-gallery .post-sticky {

		top:10px !important;

		left:25px !important;

		z-index: 5;

	}

	.post-gallery .post-sticky {

		left:78px !important;

	}

	.single-post .post-gallery .post-date,

	.single-post .post-gallery .post-sticky {

		top:10px !important;

		left:10px !important;

	}

	.single-post .post-gallery .post-sticky {

		left:75px !important;

	}

	.nz-recent-posts .nz-thumbnail .post-date span,

	.blog-post .nz-thumbnail .post-date span,

	.post-gallery .post-date span,

	.post-sticky span

	{display: block;}

	.nz-recent-posts .nz-thumbnail .post-date > span:first-child,

	.blog-post .nz-thumbnail .post-date > span:first-child,

	.post-gallery .post-date > span:first-child {

		font-size: 20px;

		line-height:35px;

		height:30px;	

	}

	.single .blog-post .post-date > span:first-child{

		font-size:22px;

		line-height:50px;

		height:40px;	

	}

	.nz-recent-posts .nz-thumbnail .post-date > span:last-child,

	.blog-post .nz-thumbnail .post-date > span:last-child,

	.post-gallery .post-date > span:last-child {

		font-size: 11px;

		line-height:15px;

		height:20px;

		text-transform: uppercase;

	}

	.single .blog-post .post-date > span:last-child {

		font-size:13px;

		line-height:15px;

		height:30px;

	}

	.nz-recent-posts .ninzio-overlay,

	.nz-recent-portfolio .ninzio-overlay,

	.blog-post .post .ninzio-overlay,

	.portfolio .ninzio-overlay {

		border-radius: 0;

	}

	.nz-recent-posts .ninzio-overlay:before,

	.nz-recent-portfolio .ninzio-overlay:before,

	.blog-post .post .ninzio-overlay:before,

	.nz-portfolio-posts .portfolio .ninzio-overlay:before  {

		font-size: 22px;

		line-height:50px;

		height: 50px;

		width: 50px;

		border-radius: 50px;

		margin-top: -25px;

		margin-left:-25px; 

		left:50%;

		color: #ffffff;

	}

	.nz-recent-posts .ninzio-overlay,

	.nz-recent-portfolio .ninzio-overlay,

	.blog-post .post .ninzio-overlay,

	.nz-portfolio-posts .portfolio .ninzio-overlay {

		background-color: rgba(0,0,0,0.2) !important;

	}

	.nz-recent-posts .post-body,

	.loop .blog-post .post .post-body {

		padding:20px 25px;

	}

	.nz-recent-posts .post-body a,

	.loop .blog-post .post .post-body a {

		color:#999999;

		display: block;

		-webkit-transition: all 200ms ease-out;

		transition: all 200ms ease-out;

	}

	.nz-recent-posts .post-body span,

	.loop .blog-post .post .post-body span {

		display: inline-block;

		-webkit-transform:translateY(2px);

		-ms-transform:translateY(2px);

		transform:translateY(2px);

	}

	.nz-recent-posts .post-body a:hover,

	.loop .blog-post .post .post-body a:hover {

		color:#333333;

	}

	.post-excerpt {

		padding:0 0 10px 0;

	}

	.js .nz-recent-posts.masonry[data-animate="true"] .post,

	.js .loop .animation-true .blog-post .post {

		opacity: 0 !important;

		-webkit-backface-visibility: hidden;

	}

	.js .nz-recent-posts.masonry[data-animate="true"] .post.active,

	.js .loop .animation-true .blog-post .post.active {

		opacity: 1 !important;

	}

	.nz-recent-posts .owl-pagination {

		padding:20px 0 0 0;

	}

	.js .nz-recent-posts[data-animate="true"].carousel .post {

		-webkit-backface-visibility: hidden;

		-webkit-transition: all 0.4s cubic-bezier(0.165, 0.840, 0.440, 1.000);

		transition: all 0.4s cubic-bezier(0.165, 0.840, 0.440, 1.000);

		opacity: 0;

		-webkit-transform: scale(0.2);

		-ms-transform: scale(0.2);

		transform: scale(0.2);

	}

	.js .nz-recent-posts[data-animate="true"].carousel .post.active {

		opacity: 1;

		-webkit-transform: scale(1);

		-ms-transform: scale(1);

		transform: scale(1);

	}

/*	BLOG

/*=============*/

	.blog-layout-wrap,

	.port-layout-wrap,

	.shop-layout-wrap {

		background-color: #f9f9f9;

		padding: 70px 0 70px 0;

	}

	.post {position: relative;}

	.post-gallery ul {

		list-style:none;

		margin-bottom: 0;

	}

	.archive-titles {

		padding-bottom: 20px;

		margin-bottom:40px;

		border-bottom: 1px solid #e0e0e0;

	}

	.archive-titles h1 {margin-bottom: 0;}

	.archive-title-heading {

		color: #ffffff;

		font-size: 64px;

		line-height: 74px;

		text-transform: uppercase;

		text-align: center;

	}

	.single-post .blog-post .nz-more {margin-bottom: 40px;}

	.single-post .post-meta {

		margin-bottom: 20px;

		padding-bottom: 15px;

		border-bottom: 1px solid #e0e0e0;

	}

	.single-post .post-meta > * {

		float:left;

		margin-right:20px;

	}

	.single-post .post-meta > .post-author,

	.single-post .post-meta > .post-category,

	.single-post .post-meta > .post-comments {

		min-height: 30px;

		line-height: 30px;

		position: relative;

	}

	.single-post .post-meta > .post-author a,

	.single-post .post-meta > .post-category a,

	.single-post .post-meta > .post-comments a {

		color: inherit;

		-webkit-transition: color 0.3s;

		transition: color 0.3s;

	}

	.single-post .post-meta > .post-author span,

	.single-post .post-meta > .post-category span,

	.single-post .post-meta > .post-comments span {

		display: inline-block;

		margin-right:5px;

	}

	.post-tags {

		padding:30px 0 0 0;

	}

	.post-tags a {

		text-decoration: none;

		display: inline-block;

		padding:7px 14px;

		margin-bottom:5px;

		border-radius: 3px;

		border:1px solid #e0e0e0;

		color: #c0c0c0 !important;

		-webkit-transition: all 300ms ease-out;

		transition: all 300ms ease-out;

		-webkit-backface-visibility: hidden;

	}

	.post-tags a + a {

		margin-left: 5px;

	}

	.post-content > :last-child {

		margin-bottom: 0;

	}

	.single-post .blog-post .post-body,

	.single-post .post-social-share,

	.single-post .post-author-info {

		padding-bottom: 30px;

		margin-bottom: 30px;

		border-bottom:1px solid #e0e0e0;

	}

	.post-social-share span {width: 400%;}

	.post-social-share .post-twitter-share span {width: 300%;}

	.post-social-share a {

		-webkit-transition: all 300ms;

		transition: all 300ms;

		width: 40px;

		height: 40px;

		font-size: 16px;

		line-height: 40px;

	}

	.post-social-share a span {

		-webkit-transform: translateX(-50%) translateY(-60%);

		-ms-transform: translateX(-50%) translateY(-60%);

		transform: translateX(-50%) translateY(-60%);

	}

	.post-social-share a:hover span {

		-webkit-transform: translateX(-50%) translateY(-30%);

		-ms-transform: translateX(-50%) translateY(-30%);

		transform: translateX(-50%) translateY(-30%);

	}

	.post-social-share a.post-twitter-share:hover {

		background-color: #29b2e4;

		color: #ffffff !important;

	}

	.post-social-share a.post-facebook-share:hover {

		background-color: #3b5998;

		color: #ffffff !important;

	}

	.post-social-share a.post-linkedin-share:hover {

		background-color: #1783bc;

		color: #ffffff !important;

	}

	.post-social-share a.post-google-share:hover {

		background-color: #de4b39;

		color: #ffffff !important;

	}

	.post-social-share a.post-pinterest-share:hover {

		background-color: #bd3339;

		color: #ffffff !important;

	}

	.post-author-info  > * {

		display: table-cell;

		vertical-align: top;

	}

	.post-author-info .author-info-box {

		padding-left:20px;

	}

	.post-author-info .author-gavatar {

		padding-top:7px;

		width: 60px;

		height: 60px;

	}

	.post-author-info .author-gavatar img,

	.post-author-info .author-description p {

		margin-bottom: 0;

	}

	.post.format-chat .post-content ul {

		list-style: none;

		margin: 0;

		padding: 0;

	}

	.post.format-chat .post-content ul li span.name {

		display: inline;

	}

	.post.format-chat .post-content ul li span.name:after {

		content: ": ";

		display: inline;

	}

	.post.format-chat .post-content ul li p {

		margin-bottom: 0;

		display: inline;

	}

	.status-author,

	.quote-author {

		padding: 15px 0 0 0;

		font-size: 16px;

		line-height: 26px;

	}

/* MARGIN

/*=============*/

	

	.nz-recent-portfolio.grid *[data-grid="ninzio_01"],

	.nz-recent-portfolio.masonry *[data-grid="ninzio_01"],

	.loop .small .nz-portfolio-posts .portfolio,

	.loop .medium .nz-portfolio-posts .portfolio,

	.loop .large .nz-portfolio-posts .portfolio,

	.loop .image-grid-small .nz-portfolio-posts .portfolio,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio,

	.loop .image-grid-large .nz-portfolio-posts .portfolio,

	.loop .full .nz-portfolio-posts .portfolio,

	.nz-recent-posts.masonry *[data-grid="ninzio_01"],

	.loop .blog-post .post,

	.woocommerce .products .product {

		margin-bottom:30px;

	}

	.nz-recent-portfolio.grid.nogap-true *[data-grid="ninzio_01"],

	.nz-recent-portfolio.masonry.nogap-true *[data-grid="ninzio_01"] {

		margin-bottom:0px;

	}

/*  RECENT PORTFOLIO

/*=============*/

	.nz-recent-portfolio,

	.loop .nz-portfolio-posts {

		position: relative;

		overflow: hidden;

	}

	.loop .nz-portfolio-posts {

		position:relative;

	}

	.nz-recent-portfolio .post,

	.loop .nz-portfolio-posts .portfolio {

		overflow: hidden;

		max-width: 100%;

	}

	.nz-recent-portfolio.grid.nogap-false .post,

	.nz-recent-portfolio.masonry.nogap-false .post,

	.loop .small .nz-portfolio-posts .portfolio,

	.loop .medium .nz-portfolio-posts .portfolio,

	.loop .large .nz-portfolio-posts .portfolio,

	.loop .full .nz-portfolio-posts .portfolio,

	.loop .image-grid-small .nz-portfolio-posts .portfolio,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio,

	.loop .image-grid-large .nz-portfolio-posts .portfolio {

		padding-left: 15px;

		padding-right: 15px;

	}

	.nz-recent-portfolio .post img,

	.nz-portfolio-posts .portfolio img {

		margin: 0 auto;

	}

	.nz-recent-portfolio .nz-thumbnail,

	.loop .image-grid-small .nz-portfolio-posts .portfolio .nz-thumbnail,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio .nz-thumbnail,

	.loop .image-grid-large .nz-portfolio-posts .portfolio .nz-thumbnail,

	.loop .no-gap-grid-3 .nz-portfolio-posts .portfolio .nz-thumbnail,

	.loop .no-gap-grid-4 .nz-portfolio-posts .portfolio .nz-thumbnail,

	.loop .masonry-3 .nz-portfolio-posts .portfolio .nz-thumbnail,

	.loop .masonry-4 .nz-portfolio-posts .portfolio .nz-thumbnail {

		-webkit-transition: -webkit-transform 0.45s;

		transition: transform 0.45s;

		-webkit-transform-style: preserve-3d;

		transform-style: preserve-3d;

		-webkit-transform: translateX(0) translateY(0);

		-ms-transform: translateX(0) translateY(0);

		transform: translateX(0) translateY(0);

	}

	

	.nz-recent-portfolio .project-details,

	.loop .image-grid-small .nz-portfolio-posts .portfolio .project-details,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio .project-details,

	.loop .image-grid-large .nz-portfolio-posts .portfolio .project-details,

	.loop .no-gap-grid-3 .nz-portfolio-posts .portfolio .project-details,

	.loop .no-gap-grid-4 .nz-portfolio-posts .portfolio .project-details,

	.loop .masonry-3 .nz-portfolio-posts .portfolio .project-details,

	.loop .masonry-4 .nz-portfolio-posts .portfolio .project-details {

		position: absolute;

		left: 0;

		bottom: 0;

		width: 100%;

		padding:30px 20px;

		z-index: 5;

		color: #ffffff !important;

		text-align: center;

		-webkit-transform: translateY(100%);

		-ms-transform: translateY(100%);

		transform: translateY(100%);

		-webkit-backface-visibility: hidden;

		-webkit-transition: -webkit-transform 0.4s;

		transition: transform 0.4s;

	}

	.nz-recent-portfolio .post:hover .ninzio-overlay,

	.nz-portfolio-posts .portfolio .nz-thumbnail:hover .ninzio-overlay

	{opacity: 1;}

	.nz-recent-portfolio .post:hover .project-details,

	.loop .image-grid-small .nz-portfolio-posts .portfolio:hover .project-details,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio:hover .project-details,

	.loop .image-grid-large .nz-portfolio-posts .portfolio:hover .project-details,

	.loop .no-gap-grid-3 .nz-portfolio-posts .portfolio:hover .project-details,

	.loop .no-gap-grid-4 .nz-portfolio-posts .portfolio:hover .project-details,

	.loop .masonry-3 .nz-portfolio-posts .portfolio:hover .project-details,

	.loop .masonry-4 .nz-portfolio-posts .portfolio:hover .project-details {

		-webkit-transform: translateY(0);

		-ms-transform: translateY(0);

		transform: translateY(0);

	}

	.nz-recent-portfolio .post:hover .nz-thumbnail,

	.loop .image-grid-small .nz-portfolio-posts .portfolio:hover .nz-thumbnail,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio:hover .nz-thumbnail,

	.loop .image-grid-large .nz-portfolio-posts .portfolio:hover .nz-thumbnail,

	.loop .no-gap-grid-3 .nz-portfolio-posts .portfolio:hover .nz-thumbnail,

	.loop .no-gap-grid-4 .nz-portfolio-posts .portfolio:hover .nz-thumbnail,

	.loop .masonry-3 .nz-portfolio-posts .portfolio:hover .nz-thumbnail,

	.loop .masonry-4 .nz-portfolio-posts .portfolio:hover .nz-thumbnail {

		-webkit-transform: translateY(-16px);

		-ms-transform: translateY(-16px);

		transform: translateY(-16px);

	}

	.nz-recent-portfolio .project-details a,

	.nz-recent-portfolio .project-details h4 {

		color: inherit;

		margin-bottom: 0;

	}

	.loop .image-grid-small .nz-portfolio-posts .portfolio .project-details h4,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio .project-details h4,

	.loop .image-grid-large .nz-portfolio-posts .portfolio .project-details h4,

	.loop .no-gap-grid-3 .nz-portfolio-posts .portfolio .project-details h4,

	.loop .no-gap-grid-4 .nz-portfolio-posts .portfolio .project-details h4,

	.loop .masonry-3 .nz-portfolio-posts .portfolio .project-details h4,

	.loop .masonry-4 .nz-portfolio-posts .portfolio .project-details h4 {

		margin-bottom: 0;

		color: #ffffff;

	}

	.nz-recent-portfolio .ninzio-overlay:before,

	.loop .image-grid-small .nz-portfolio-posts .portfolio .ninzio-overlay:before,

	.loop .image-grid-medium .nz-portfolio-posts .portfolio .ninzio-overlay:before,

	.loop .image-grid-large .nz-portfolio-posts .portfolio .ninzio-overlay:before,

	.loop .no-gap-grid-3 .nz-portfolio-posts .portfolio .ninzio-overlay:before,

	.loop .no-gap-grid-4 .nz-portfolio-posts .portfolio .ninzio-overlay:before,

	.loop .masonry-3 .nz-portfolio-posts .portfolio .ninzio-overlay:before,

	.loop .masonry-4 .nz-portfolio-posts .portfolio .ninzio-overlay:before {

		-webkit-transform: translateY(-16px);

		-ms-transform: translateY(-16px);

		transform: translateY(-16px);

	}

	.nz-recent-portfolio.grid .project-details {

		padding:20px 10px;

	}

	.nz-recent-portfolio .post-body,

	.loop .nz-portfolio-posts .post-body {

		overflow: hidden;

		position: relative;

	}

	.nz-portfolio-filter {

		text-align: center;

		padding-bottom:30px;

		padding-right: 15px;

		padding-left: 15px;

	}

	.nz-portfolio-filter .button {

		cursor: pointer;

		margin-bottom:15px;

	}

	.nz-portfolio-filter .button + .button {

		margin-left:15px;

	}

	.js .nz-recent-portfolio[data-animate="true"].carousel .post {

		-webkit-backface-visibility: hidden;

		-webkit-transition: all 0.4s cubic-bezier(0.165, 0.840, 0.440, 1.000);

		transition: all 0.4s cubic-bezier(0.165, 0.840, 0.440, 1.000);

		opacity: 0;

		-webkit-transform: scale(0.2);

		-ms-transform: scale(0.2);

		transform: scale(0.2);

	}

	.js .nz-recent-portfolio[data-animate="true"].carousel .post.active {

		opacity: 1;

		-webkit-transform: scale(1);

		-ms-transform: scale(1);

		transform: scale(1);

	}

	.js .nz-recent-portfolio.grid[data-animate="true"] .post,

	.js .nz-recent-portfolio.masonry[data-animate="true"] .post,

	.js .loop .animation-true .portfolio{

		opacity: 0 !important;

		-webkit-backface-visibility: hidden;

	}

	.js .nz-recent-portfolio.grid[data-animate="true"] .post.active,

	.js .nz-recent-portfolio.masonry[data-animate="true"] .post.active,

	.js .loop .animation-true .portfolio.active{

		opacity: 1 !important;

	}

	.nz-recent-portfolio .button:hover,

	.nz-recent-portfolio .button.active {

		color: #ffffff !important;

	}

/*  PORTFOLIO

/*=============*/

	

	.portfolio-archive-filter {

		padding-top:55px;

		background-color: #f9f9f9;

		border-bottom: 1px solid #e0e0e0;

	}

	.loop .small .nz-portfolio-posts .portfolio .post-body,

	.loop .medium .nz-portfolio-posts .portfolio .post-body,

	.loop .large .nz-portfolio-posts .portfolio .post-body,

	.loop .full .nz-portfolio-posts .portfolio .post-body {

		box-shadow: inset 0 0 0 1px #e0e0e0;

		background-color: #ffffff !important;

	}

	.loop .small .nz-portfolio-posts .portfolio .project-details,

	.loop .medium .nz-portfolio-posts .portfolio .project-details,

	.loop .large .nz-portfolio-posts .portfolio .project-details,

	.loop .full .nz-portfolio-posts .portfolio .project-details {

		padding: 20px 25px;

		text-align: center;

		background-color: transparent !important;

	}

	.loop .nz-portfolio-posts .portfolio .port-cat a,

	.loop .nz-portfolio-posts .portfolio .port-cat {

		color: #999999;

		-webkit-transition: color 0.3s ease-out;

		transition: color 0.3s ease-out;

	}

	.loop .nz-portfolio-posts .portfolio .port-cat {position: relative;}

	.loop .nz-portfolio-posts .portfolio .port-cat:before {

		margin: 7px auto 7px auto;

		content: "";

		display: block;

		width: 50px;

		height: 1px;

		background-color: #cccccc; 

	}

	.portfolio-archive-filter .button {

		box-shadow: inset 0 0 0 2px #90979f !important;

		color: #90979f !important;

	}

	.portfolio-archive-filter .button:hover,

	.portfolio-archive-filter .button.active {

		color: #ffffff !important;

	}

	.archive .port-layout-wrap.no-gap-grid-3,

	.archive .port-layout-wrap.no-gap-grid-4,

	.archive .port-layout-wrap.masonry-3,

	.archive .port-layout-wrap.masonry-4 {

		padding: 0;

	}

	.archive .port-layout-wrap.no-gap-grid-3 .width-false,

	.archive .port-layout-wrap.no-gap-grid-4 .width-false,

	.archive .port-layout-wrap.masonry-3 .width-false,

	.archive .port-layout-wrap.masonry-4 .width-false {

		padding: 70px 0 70px 0;

	}

	.port-layout-wrap.no-gap-grid-3 .loop.width-true .container,

	.port-layout-wrap.no-gap-grid-4 .loop.width-true .container,

	.port-layout-wrap.masonry-3 .loop.width-true .container,

	.port-layout-wrap.masonry-4 .loop.width-true .container {

		width: 100%;

		max-width: 100%;

	}

	.port-layout-wrap.no-gap-grid-3 .ninzio-navigation ul,

	.port-layout-wrap.no-gap-grid-4 .ninzio-navigation ul,

	.port-layout-wrap.masonry-3 .ninzio-navigation ul,

	.port-layout-wrap.masonry-4 .ninzio-navigation ul {

		padding: 50px 0 45px 0;

	}

	.single-details .post-social-share,

	.single-details .project-content,

	.single-details .project-title {

		margin-bottom: 25px;

	}

	.single-details .project-content p:last-child {

		margin-bottom: 0;

	}

	.single-details .nz-i-list.square span.icon {

		color: #ffffff;

	}

	.single-details .nz-i-list a {

		color: inherit;

		-webkit-transition: color 0.3s ease-out;

		transition: color 0.3s ease-out;

	}

	.single-details .project-link {

		margin-top:25px;

	}

	.single .nz-portfolio-posts .post-gallery {

		position: relative;

	}

	.single .nz-portfolio-posts .post-gallery .flex-direction-nav a {

		right: 10px !important;

	}

	.single .nz-portfolio-posts .post-gallery .flex-direction-nav a.flex-prev {

		right: 45px !important;

	}

	.single .port-layout-wrap.solo-true {

		padding: 0px;

		background-color: #ffffff;

	}

	.single .port-layout-wrap.solo-true > .container {

		max-width: 100%;

		width: 100%;

	}

	.nz-related-products .nz-portfolio-posts {

		margin-left: -15px;

		margin-right: -15px;

	}

	.nz-reletated-projects-sep {

		border-bottom:1px solid #e0e0e0;

		width: 100%;

		padding-bottom: 15px;

		margin: 40px 0 40px 0;

	}

	.single-details .nz-i-list li:first-child {

		border-top: 1px solid #e0e0e0;

		padding-top:10px;

	}

	.single-details .nz-i-list li {

		border-bottom: 1px solid #e0e0e0;

		width: 100%;

		margin-bottom:10px;

		padding-bottom:10px;

	}

	.single-details .nz-i-list > li > div:first-child {

		width: 20px;

	}

/*	COMMENTS

/*=============*/

	

	/*	Comment form

	/*-------------*/

		.post-comments-area {

			position: relative;

			padding-top:10px;

		}

		.post-comments-area .comments-title {

			margin-bottom:20px;

		}

		.post-comments-area #respond {

			margin:10px 0 20px 0;

		}

		.post-comments-area .comment-navigation {

			margin-bottom: 20px;	

		}

		.post-comments-area #respond #reply-title {

			border-bottom-width: 1px;

			border-bottom-style: solid;

			border-bottom-color: #e0e0e0;

			margin-bottom: 20px;

			padding-bottom:20px;

		}

		.post-comments-area #respond #reply-title small {

			display: block;

			font-weight: normal;

			font-size: 11px;

		}

		.post-comments-area #respond form,

		.post-comments-area #respond .form-submit ,

		.post-comments-area #respond .form-submit input[type="submit"] {

			margin-bottom: 0;

		}

		.post-comments-area .comment-form-author,

		.post-comments-area .comment-form-email,

		.post-comments-area .comment-form-url {

			display:block;

			width:100%;

			margin-bottom: 0;

		}

		.post-comments-area .comment-form-author input,

		.post-comments-area .comment-form-email input,

		.post-comments-area .comment-form-url input {

			width: 100%;

		}

	/*	Comment list

	/*-------------*/

		.comment-list ul.children {

			margin: 0;

			list-style:none;

		}

		.comment-list .comment {

			padding:20px;

			margin: 0 0 20px 0;

			width: 100%;

			border-bottom-width: 1px;

			border-bottom-style: solid;

			border-bottom-color: #e0e0e0;

			background-color: #ffffff;

			border-radius: 3px;

			box-shadow: 0 2px #f5f5f5;

		}

		.comment-list .comment.bypostauthor {

			padding:20px;

			margin: 0 0 20px 0;

			width: 100%;

			background-color: #ffffff;

		}

		.comment-list .comment #respond {

			margin-bottom: 0;

		}

		.comment-list .comment .comment-body {

			display: table;

		}

		.comment-list .comment-gavatar,

		.comment-list .comment-content {

			display: table-cell;

			vertical-align: top;

		}

		.comment-list .comment .comment-gavatar {

			padding-right: 10px;

			min-width: 60px;

		}

		.comment-list .comment .comment-text p:last-child {

			margin-bottom: 0;

		}

		.comment-meta .comment-author {

			margin-bottom: 3px;

		}

		.comment-meta .comment-author cite {

			font-style: normal;

			font-weight: bold;

		}

		.comment-meta .comment-date-time,

		.comment-meta .replay {

			display: inline-block;

			margin-bottom: 3px;

		}

		.comment-meta .comment-date-time:after {

			display: inline-block;

			content: " / ";

			padding: 0 3px;

		}

		.comment-content .edit-link a {margin:10px 0px 0 0;}

		.comment-meta .comment-date-time a {color: #999 !important}

		.post-comments-area a,

		.post-author-info-title a {

			-webkit-transition: all 300ms;

			transition: all 300ms;

		}

/*  WOO

/*=============*/

	

	/*	General

	/*=============*/

		.woocommerce-page #wrap {

			background-color: #f9f9f9;

		}

		.page-content .woocommerce {

			padding-bottom: 50px;

		}

		.woocommerce .checkout-button

		{padding: 14px 34px;font-size: 14px;line-height: 24px;}

		.woocommerce-cart .desk .cart-dropdown,

		.woocommerce-checkout .desk .cart-dropdown

		{display:none !important;}

	/*	Loop

	/*=============*/

		.woocommerce .demo_store {

			position: fixed;

			margin:0;

			text-align: center;

			left: 0;

			top: 0;

			width: 100%;

			padding:10px 20px;

			border-color:#a6c4d8;

			background: #e3eff7;

			color: #225f87;

			z-index: 99;

		}

		.shop-layout,

		.woocommerce .main-content {

			position: relative;

		}

		.woocommerce .rh-true .page-title {

			display: none;

		}

		.woocommerce .products {

			position: relative;

			list-style: none;

			overflow: visible !important;

			margin: 35px auto 0 auto;

		}

		.woocommerce .rh-true .products {

			margin: 50px auto 0 auto;

		}

		.woocommerce .product {

			position: relative;

			max-width: 100%;

		}

		.woocommerce .products .product {

			text-align: center;

		}

		.woocommerce .products .product-body {

			box-shadow: inset 0 0 0 1px #e0e0e0;

			background-color: #ffffff;

		}

		.woocommerce .product .onsale {

			z-index: 10;

			width: 50px;

			height: 50px;

			border-radius: 50px;

			padding: 10px;

			text-align: center;

			line-height:30px;

			color: #ffffff;

			display: block;

			position: absolute;

			top: -10px;

			right: 10px;

		}

		.woocommerce .product .nz-thumbnail {

			position: relative;

		}

		.woocommerce .product .ninzio-overlay {

			border-radius: 0;

		}

		.woocommerce .product .ninzio-overlay:before  {

			font-size: 22px;

			line-height:50px;

			height: 50px;

			width: 50px;

			border-radius: 50px;

			margin-top: -25px;

			margin-left:-25px; 

			left:50%;

			color: #ffffff;

		}

		.woocommerce .product:hover > .product-body > .nz-thumbnail > .ninzio-overlay {

			opacity: 1;

		}

		.woocommerce .product .ninzio-overlay {

			background-color: rgba(0,0,0,0.2) !important;

		}

		.woocommerce .product .product-det {

			padding:20px 25px;

		}

		.woocommerce .products .product h3 {

			margin-bottom: 0;

		}

		.woocommerce .loop .product .price {

			display: block;

		}

		.woocommerce .products .product .price:before {

			margin: 7px auto 7px auto;

			content: "";

			display: block;

			width: 50px;

			height: 1px;

			background-color: #cccccc; 

		}

		.js .loop .animation-true .product {

			opacity: 0 !important;

			-webkit-backface-visibility: hidden;

		}

		.js .loop .animation-true .product.active {

			opacity: 1 !important;

		}

		.woocommerce .product .nz-thumbnail {overflow: hidden;}

		.woocommerce .product .ninzio-card-wrapper {

			width: 50px;

			height: 60px;

			margin: 0;

			background-color: rgba(0,0,0,0.3);

			display: block;

			position: absolute;

			bottom:-60px;

			left: 0px;

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

			-webkit-backface-visibility: hidden;

			z-index: 60;

		}

		.woocommerce .product .ninzio-card-wrapper:hover {

			background-color: rgba(0,0,0,0.7);

		}

		.woocommerce .product .product-body:hover .ninzio-card-wrapper {

			bottom:0px;

		}

		.woocommerce .ninzio-card-wrapper > .button,

		.woocommerce .product .added_to_cart {

			text-indent: -9000em;

			border-radius: 0;

			width: inherit;

			height: inherit;

			position: absolute;

			top: 0;

			left: 0;

			display: block;

			padding:0;

			background-color: transparent !important;

			box-shadow: none !important;

			-webkit-transform: translateY(0) !important;

			-ms-transform: translateY(0) !important;

			transform: translateY(0) !important;

			margin: 0;

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

			-webkit-backface-visibility: hidden;

			color: #ffffff;

			text-align: center;

			line-height: 60px;

			font-size: 16px;

			z-index: 5;

		}

		.woocommerce .product .added_to_cart {

			z-index: 15;

		}

		.woocommerce .product .add_to_cart_button:before,

		.woocommerce .product .added_to_cart:before,

		.woocommerce .product .product_type_external {

			content: "\e636";

			display: block;

			position: absolute;

			top: 0;

			left: 0;

			width: 100%;

			height: 100%;

			text-indent:0em;

		}

		.woocommerce .product .add_to_cart_button.no-icon:before {

			content: "";

		}

		.woocommerce .product .added_to_cart:before {

			content: "\e6fe" !important;

		}

		.shop-loader {

			position: absolute;

			top: 50%;

			left: 50%;

			font-size:10px;

			margin: -15px 0 0 -15px;

			border-top: 5px solid rgba(255, 255, 255, 0.1);

			border-right: 5px solid rgba(255, 255, 255, 0.1);

			border-bottom: 5px solid rgba(255, 255, 255, 0.1);

			border-left: 5px solid rgba(255, 255, 255, 0.3);

			-webkit-animation: load8 1s infinite linear;

			animation: load8 1s infinite linear;

			display: none;

		}

		.shop-loader,

		.shop-loader:after {

			border-radius:30px;

			width:30px;

			height:30px;

		}

		.woocommerce .product .amount {

			font-size: 120%;

			font-weight: 600;

		}

		.woocommerce .product del .amount {

			font-size:inherit;

			font-weight:normal;

			color: inherit !important;

		}

		.woocommerce .products .product-category a {

			display: block;

			color: transparent;

			overflow: hidden;

		}

		.woocommerce .products .product-category h3 {

			margin: 0;

			padding-bottom:10px;

		}

		.woocommerce .products .product-category mark {

			background-color: transparent;

		}

		.woocommerce .products .product-category .cat-det h3 {

			padding-bottom: 0;

		}

		.woocommerce-error {

			list-style: none;

			margin: 0;

			padding: 0;

		}

		.woocommerce-message,

		.woocommerce-info,

		.woocommerce-error li,

		p.woocommerce-error,

		.woocommerce-checkout .woocommerce > p:first-child,

		.woocommerce .cart-empty {

			padding:20px 20px 20px 20px;

			position: relative;

			border-width:2px;

			border-style: solid;

			border-radius: 3px;

			border-color:#a6c4d8;

			background: #e3eff7;

			color: #225f87;

			margin-bottom: 25px;

			text-align: center;

		}

		.woocommerce-error li,

		p.woocommerce-error {

			border-color:#e1a197;

			background: #fcd4cb;

			color: #8e4438;

		}

		.woocommerce-error a {

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

			color: #8e4438;

			display: inline;

			text-transform: none;

		}

		.woocommerce-error a:hover {

			border-bottom: 2px solid #8e4438; 

		}

		.woocommerce-message .button.wc-forward,

		.showcoupon {

			display: inline;

			text-transform: none;

			color: #225f87 !important;

			background-color: transparent !important;

			box-shadow: none !important;

			-webkit-transform: translateY(0) !important;

			-ms-transform: translateY(0) !important;

			transform: translateY(0) !important;

			top: 0 !important;

			border-radius: 0 !important;

			margin-right:5px;

			-webkit-transition: all 300ms ease-out;

			transition: all 300ms ease-out;

		}

		.woocommerce-message .button:hover,

		.showcoupon:hover {

			border-bottom: 2px solid #225f87; 

		}

		.woocommerce-info a,

		.woocommerce-error li a {

			color: inherit !important;

			font-weight: 600;

		}

		.woocommerce label {

			display: block;

			margin-bottom: 5px;

		}

		.woocommerce input[type="radio"] + label {

			display:inline-block;

		}

		.woocommerce .products .product .star-rating {display: none !important;}

		.woocommerce-ordering,

		.woocommerce-ordering select

		{margin-bottom:0px;}

	/*	Single product

	/*=============*/

		.single-product-image,

		.single-product-summary {

			margin-bottom:30px;

		}

		.woocommerce.single .summary .product_title {

			margin-bottom: 15px;

		}

		.single-product-image,

		.woocommerce.single .products .product {

			position: relative;

		}

		.single-product-image .thumbnails {

			margin-top: 10px;

			margin-left: -5px;

			margin-right: -5px;

		}

		.single-product-image .thumbnails:after {

			content: "";

			display: table;

			clear: both;

		}

		.single-product-image .thumbnails > a {

			display: block;

			text-decoration: none;

			float: left;

			width:33.33333333333333%;

			padding-left: 5px;

			padding-right: 5px;

			margin-bottom: 10px;

			text-align: center;

		}

		.single-product-image .thumbnails > a:nth-child(3n+3) {

			margin-right: 0;

		}

		.single-product-image .thumbnails > a:last-child {

			margin-right: 0;

		}

		.woocommerce .single-product-summary [itemprop='description'] {

			margin-bottom: 40px;

		}

		.woocommerce .single-product-summary [itemprop='description'] > :last-child,

		.woocommerce .single-product-summary [itemprop='description'] > :only-child {

			margin-bottom: 0;

		}

		.woocommerce .single-product-summary form.cart {

			margin-bottom: 40px;

		}

		.woocommerce .quantity {

			display:block;

		}

		.woocommerce .quantity input {

			margin-bottom:10px;

			height: 58px;

			float: left;

		}

		.btn-3d .woocommerce .quantity input {

			height: 62px;

			top: -4px;

		}

		.woocommerce .quantity input[type="button"].minus,

		.woocommerce .quantity input[type="button"].plus {

			margin-right: 0;

			border-radius: 3px 0 0 3px;

			padding: 0px 5px 0px 5px;

			background-color: #f9f9f9;

			border:1px solid #e0e0e0;

			font-size:16px;

			color: #333333;

			box-shadow: none;

			width: 25% !important;

			-webkit-transform: translateX(1px);

			-ms-transform: translateX(1px);

			transform: translateX(1px);

			font-weight: 400 !important;

		}

		.woocommerce .quantity input[type="button"].minus:hover,

		.woocommerce .quantity input[type="button"].plus:hover {

			background-color: #f7f7f7;

			opacity: 1;

		}

		.woocommerce .quantity input[type="button"].plus {

			border-radius:0px 3px 3px 0px;

			-webkit-transform: translateX(-1px);

			-ms-transform: translateX(-1px);

			transform: translateX(-1px);

		}

		.woocommerce .quantity input[type="number"] {

			border-radius: 0;

			font-size: 16px;

			text-align: center;

			font-weight:600;

			padding-left: 25px;

			border:1px solid #e0e0e0;

			background-color: #ffffff;

			box-shadow: none;

		}

		.woocommerce .single-product-summary button {

			margin-bottom: 0;

		}

		.woocommerce .single-product-summary .product_meta {

			margin-bottom: 40px;

			border-top: 1px solid #e0e0e0;

			border-bottom: 1px solid #e0e0e0;

			padding: 20px 0;

		}

		.woocommerce .single-product-summary .product_meta > * {

			display:block;

			width: 100%;

			padding-bottom: 5px;

			padding-left: 20px;

			position: relative;

		}

		.woocommerce .single-product-summary .product_meta > *:before {

			display: block;

			content: "";

			position: absolute;

			left: 0;

			top: 50%;

			width: 5px;

			height: 5px;

			margin-top: -2.5px;

		}

		.woocommerce .single-product-summary .product_meta > :last-child {

			padding-bottom:0px;

		}

		.woocommerce .single-product-summary .product_meta a {

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

		}

		.woocommerce-tabs .tabs {

			display: block;

			list-style: none;

			margin-bottom: 0;

		}

		.woocommerce-tabs .tabs:after {

			content: "";

			display: table;

			clear: both;

		}

		.woocommerce-tabs .tabs > li {

			display: block;

			text-align: center;

			padding:20px 35px;

			background-color: #fbfbfb;

			border: 1px solid #e0e0e0;

			cursor: pointer;

			border-radius: 3px;

			position: relative;

			font-size: 16px;

			margin-bottom: 8px;

		}

		.woocommerce-tabs .tabs > li:last-child {

			margin-right: 0;

			margin-bottom:0px;

		}

		.woocommerce-tabs .tabs > li.active {

			background-color: #ffffff;

		}

		.woocommerce-tabs .tabs > li > a {

			color: inherit !important;

			display: block;

		}

		

		.woocommerce-tabs .panel {

			position: relative;

			width: 100%;

			height: auto;

			padding-top: 20px;

		}

		.woocommerce-tabs .shop_attributes {

			width: 100%;

			margin-bottom: 0;

			border-collapse: collapse;

		}

		.woocommerce-tabs .shop_attributes th,

		.woocommerce-tabs .shop_attributes td {

			border:1px solid #e0e0e0;

		}

		.woocommerce-tabs .panel > h2,

		.woocommerce-tabs .panel > #reviews > #comments > h2 {

			margin-bottom: 15px;

		}

		.woocommerce-tabs .shop_attributes td > p {

			margin-bottom: 0;

		}

		.woocommerce-tabs #comments {

			position: relative;

		}

		.woocommerce-tabs #comments #respond {

			margin:35px 0 20px 0;

		}

		.woocommerce-tabs #comments .comment-navigation {

			margin-bottom: 20px;	

		}

		.woocommerce-tabs #respond form,

		.woocommerce-tabs #respond .form-submit,

		.woocommerce-tabs #respond .form-submit input[type="submit"] {

			margin-bottom: 0;

		}

		.woocommerce-tabs .comment-form-author,

		.woocommerce-tabs .comment-form-email {

			display:block;

			width:100%;

			max-width: 100%;

		}

		.woocommerce-tabs .comment-form-author input,

		.woocommerce-tabs .comment-form-email input,

		.woocommerce-tabs label {

			width: 100%;

			max-width: 100%;

		}

		.woocommerce-tabs .comment-form-rating {

			margin: 10px 0;

		}

		.woocommerce-tabs .comment-form-rating > label {

			margin-bottom:10px;

			display: block;

		}

		.woocommerce-tabs .comment-form-rating .stars:after {

			content: "";

			display: table;

			clear: both;

		}

		.woocommerce-tabs .comment-form-rating .stars a {

			display:block;

			line-height:16px;

			font-size: 16px;

			text-align: center;

			text-indent: -9000px;

			position: relative;

			margin-bottom: 5px;

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

			-webkit-box-sizing: content-box;

			-moz-box-sizing: content-box;

			box-sizing: content-box;

		}

		.woocommerce-tabs .comment-form-rating .stars a:after {

			font-weight: 400;

			text-transform: none;

			font-size: inherit;

			line-height: inherit;

			position: absolute;

			top: 0;

			left: 0;

			text-indent: 0px;

		}

		.woocommerce-tabs .comment-form-rating .stars a.active {

			color: #333333;

		}

		.woocommerce-tabs .comment-form-rating .stars a.star-1 {width: 15px;}

		.woocommerce-tabs .comment-form-rating .stars a.star-2 {width: 30px;}

		.woocommerce-tabs .comment-form-rating .stars a.star-3 {width: 45px;}

		.woocommerce-tabs .comment-form-rating .stars a.star-4 {width: 60px;}

		.woocommerce-tabs .comment-form-rating .stars a.star-5 {width: 75px;}

		.woocommerce-tabs .comment-form-rating .stars a.star-1:after {content: "\e85e";}

		.woocommerce-tabs .comment-form-rating .stars a.star-2:after {content: "\e85e\e85e";}

		.woocommerce-tabs .comment-form-rating .stars a.star-3:after {content: "\e85e\e85e\e85e";}

		.woocommerce-tabs .comment-form-rating .stars a.star-4:after {content: "\e85e\e85e\e85e\e85e";}

		.woocommerce-tabs .comment-form-rating .stars a.star-5:after {content: "\e85e\e85e\e85e\e85e\e85e";}

		.woocommerce-tabs .commentlist {

			margin: 0;

			list-style:none;

		}

		.woocommerce-tabs .commentlist .comment {

			padding:20px;

			margin: 0 0 20px 0;

			width: 100%;

			border-bottom-width: 1px;

			border-bottom-style: solid;

			border-bottom-color: #e0e0e0;

			background-color: #ffffff;

			box-shadow: 0 2px #f5f5f5;

			border-radius: 3px;

			position: relative;

		}

		.woocommerce-tabs .commentlist .comment #respond {

			margin-bottom: 0;

		}

		.woocommerce-tabs .commentlist .comment .comment_container {

			display: table;

		}

		.woocommerce-tabs .commentlist .avatar,

		.woocommerce-tabs .commentlist .comment-text {

			display: table-cell;

			vertical-align: top;

			width: 100%;

		}

		.woocommerce-tabs .commentlist .avatar {

			padding-right: 10px;

			width: 60px !important;

			height: 60px !important;

			max-width: 60px;

			padding-right: 0;

		}

		.woocommerce-tabs .commentlist .comment-text {

			padding-left: 20px;

		}

		.woocommerce-tabs .commentlist .comment-text .meta {

			margin-bottom: 0;

			padding-bottom:13px;

		}

		.woocommerce-tabs .commentlist .comment-text .description {

			margin-bottom: 0;

		}

		/*rating*/

		.woocommerce.single .woocommerce-product-rating {

			margin-bottom: 15px;

		}

		.woocommerce .woocommerce-product-rating .star-rating,

		.woocommerce-page .woocommerce-product-rating .star-rating,

		.woocommerce .comment-text .star-rating,

		.widget_recent_reviews .star-rating,

		.widget_top_rated_products .star-rating {

			overflow: hidden;

			position: relative;

			height:15px;

			line-height:15px;

			font-size:15px;

			width: 75px;

		}

		.woocommerce .comment-text .star-rating {

			float: right;

		}

		.woocommerce .woocommerce-product-rating .star-rating span,

		.woocommerce-page .woocommerce-product-rating .star-rating span,

		.woocommerce .comment-text .star-rating span,

		.widget_recent_reviews .star-rating span,

		.widget_top_rated_products .star-rating span {

		  overflow: hidden;

		  float: left;

		  top: 0;

		  left: 0;

		  position: absolute;

		  padding-top:15px;

		  display: block;

		}

		.woocommerce .woocommerce-product-rating .star-rating:before,

		.woocommerce-page .woocommerce-product-rating .star-rating:before,

		.woocommerce .comment-text .star-rating:before,

		.widget_recent_reviews .star-rating:before,

		.widget_top_rated_products .star-rating:before {

			content: "\e85e\e85e\e85e\e85e\e85e";

			color: #e0dadf;

			float: left;

			top: 0;

			left: 0;

			position: absolute;

			text-transform: none;

			font-size: inherit;

			line-height: inherit;

		}

		.woocommerce .woocommerce-product-rating .star-rating span:before,

		.woocommerce-page .woocommerce-product-rating .star-rating span:before,

		.woocommerce .comment-text .star-rating span:before,

		.widget_recent_reviews .star-rating span:before,

		.widget_top_rated_products .star-rating span:before {

			content: "\e85e\e85e\e85e\e85e\e85e";

			top: 0;

			position: absolute;

			left: 0;

			font-weight: 400;

			text-transform: none;

			font-size: inherit;

			line-height: inherit;

		}

		.woocommerce .woocommerce-product-rating .hreview-aggregate .star-rating,

		.woocommerce-page .woocommerce-product-rating .hreview-aggregate .star-rating {

		  margin: 10px 0 0 0;

		}

		/*related products*/

		.woocommerce.single .ninzio-thumbnail {margin-bottom: 0;}

		.woocommerce.single .related.products {

			margin-top: 50px;

		}

		.woocommerce.single .related.products > h2 {

			margin-bottom: 20px;

		}

		.posted_in a,

		.tagged_as a {

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

		}

	/*	Cart

	/*=============*/

		.woocommerce .shop_table.cart {

			width: 100%;

			max-width: 100%;

			border-collapse: collapse;

		}

		.woocommerce .shop_table.cart td:not(.actions),

		.woocommerce .shop_table.cart th {

			border: 1px solid #e0e0e0;

			border-left: none !important;

			border-right: none !important;

		}

		.woocommerce .shop_table.cart td.actions {

			padding-left: 0;

			padding-right: 0;

			border-left: none;

			border-right: none;

			border-bottom: none;

		}

		.woocommerce .shop_table.cart .product-remove a {

			display: block;

			color: #ffffff;

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

			width: 20px;

			height: 20px;

			line-height: 20px;

			margin:0;

			padding:0;

			border-radius: 3px;

			background-color: #333333;

			font-size: 16px;

			text-align: center;

		}

		.woocommerce .shop_table.cart .product-remove a:hover {

			opacity: 0.7;

		}

		.woocommerce .shop_table.cart .coupon label {

			display: none;

		}

		.woocommerce .shop_table.cart .coupon input {

			min-height: 50px;

			margin-right:15px;

			margin-bottom:7px;

		}

		.woocommerce .cart-collaterals {

			padding: 50px 0 25px 0;

		}

		.woocommerce .cart-collaterals:after {

			content: "";

			display: table;

			clear: both;

		}

		.woocommerce .cart-collaterals .cart_totals,

		.woocommerce .cart-collaterals .shipping_calculator {

			width: 100%;

			margin-bottom: 25px;

		}

		.woocommerce .cart-collaterals .cart_totals > h2,

		.woocommerce .cart-collaterals .shipping_calculator > h2 {

			margin-bottom: 25px;

		}

		.woocommerce .cart-collaterals .cart_totals > table,

		.woocommerce #order_review .shop_table {

			width: 100%;

			border-collapse: collapse;

		}

		.woocommerce .cart-collaterals .cart_totals > table td,

		.woocommerce .cart-collaterals .cart_totals > table th,

		.woocommerce #order_review .shop_table td,

		.woocommerce #order_review .shop_table th {

			border:1px solid #e0e0e0;

		}

		.woocommerce .cart-collaterals .shipping_calculator select,

		.woocommerce .cart-collaterals .shipping_calculator input[type="text"] {

			width: 100%;

		}

		.product-name a {

			-webkit-transition: all 0.3s;

			transition: all 0.3s;

		}

		.woocommerce .shop_table.cart .quantity input[type="number"] {

			padding:10px;

		}

	/*	Checkout

	/*=============*/

		.woocommerce-checkout .page-content-container {

			padding-bottom: 40px;

		}

		.woocommerce .col2-set:after {

			content: "";

			display: table;

			clear: both;

		}

		.woocommerce .col2-set .col-1,

		.woocommerce .col2-set .col-2 {

			width: 100%;

			margin-bottom: 25px;

		}

		.woocommerce-billing-fields h3 {

			margin-bottom: 25px;

		}

		.woocommerce-billing-fields label,

		.woocommerce-shipping-fields label {

			display: block;

			margin-bottom:5px;

		}

		.woocommerce-billing-fields input,

		.woocommerce-billing-fields select,

		.woocommerce-shipping-fields input,

		.woocommerce-shipping-fields select {

			width: 100%;

		}

		.woocommerce-billing-fields input[type="checkbox"],

		.woocommerce-shipping-fields input[type="checkbox"] {

			width:auto;

		}

		.woocommerce #order_review_heading {

			margin: 50px 0 25px 0;

		}

		.woocommerce .payment_methods {

			list-style: none;

			margin-top: 50px;

		}

		.woocommerce-shipping-fields #ship-to-different-address label,

		.woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {

			display: inline-block;

		}

		.woocommerce-shipping-fields #ship-to-different-address {

			margin-bottom: 20px;

		}

		.woocommerce .order_details {

			list-style: none;

			margin-bottom: 50px;

		}

		.woocommerce .order_details li {

			padding: 7px 0;

			border: 1px solid #e0e0e0;

			border-bottom: 0;

			padding: 10px;

		}

		.woocommerce .order_details > li:last-child {

			border-bottom: 1px solid #e0e0e0;

		}

		.woocommerce .order_details h3 {

			margin-top:25px;

			margin-bottom:15px;

		}

		.woocommerce .shop_table {

			border-collapse: collapse;

			width: 100%;

		}

		.woocommerce .shop_table th,

		.woocommerce .shop_table td {

			border: 1px solid #e0e0e0;

		}

		.woocommerce .customer_details {

			width: 100%;

			margin-bottom: 50px;

		}

		.woocommerce .customer_details dt,

		.woocommerce .customer_details dd {

			border: 1px solid #e0e0e0;

			margin: 0;

			padding: 10px;

			vertical-align: middle;

			border-bottom: none;

		}

		.woocommerce .customer_details :last-child {

			border-bottom: 1px solid #e0e0e0;

		}

		.col2-set address {

			padding: 20px;

			border: 1px solid #e0e0e0;

		}

		.payment_method_paypal img {

			display: none;

		}

	/*	Account

	/*=============*/

		.woocommerce-account .form-row input,

		.woocommerce-account .form-row select {

			width: 100%;

		}

		.woocommerce-account .form-row input[type="submit"],

		.woocommerce-account .form-row input[type="checkbox"],

		.woocommerce-account .form-row input[type="radio"] {

			width: auto;

		}

	/*	Widgets

	/*=============*/

		/*	Shopping cart, Products, Recently viewed, Reviews

		/*-----------------------*/

			.btn-ghost .wc-forward:hover,

			.btn-3d .wc-forward,

			.btn-normal .wc-forward

			{color: #ffffff !important;}

			.widget_shopping_cart .cart_list,

			.widget_products .product_list_widget,

			.widget_recently_viewed_products .product_list_widget,

			.widget_recent_reviews .product_list_widget,

			.widget_top_rated_products .product_list_widget {

				list-style: none;

				margin: 0;

			}

			.widget_shopping_cart .cart_list > li,

			.widget_products .product_list_widget > li,

			.widget_recently_viewed_products .product_list_widget > li,

			.widget_recent_reviews .product_list_widget > li,

			.widget_top_rated_products .product_list_widget > li {

				padding: 10px 0;

				border-bottom-width: 1px;

				border-bottom-style: solid;

				border-bottom-color: #e0e0e0;

				position: relative;

			}

			.widget_shopping_cart dl {

			    padding: 0px;

			    border-radius: 0px;

			    border: none;

			    background-color: none;

			}

			.widget_shopping_cart .cart_list > li a.remove {

				position: absolute;

				right: 0;

				top: 0;

			}

			.widget_shopping_cart .cart_list > li:after,

			.widget_products .product_list_widget > li:after,

			.widget_recently_viewed_products .product_list_widget > li:after,

			.widget_recent_reviews .product_list_widget > li:after,

			.widget_top_rated_products .product_list_widget > li:after {

			    content: "";

		  		display: table;

				clear: both;

			}

			.widget_shopping_cart .cart_list > li > a,

			.widget_products .product_list_widget > li > a,

			.widget_recently_viewed_products .product_list_widget > li > a,

			.widget_recent_reviews .product_list_widget > li > a,

			.widget_top_rated_products .product_list_widget > li > a {

				display: block;

				-webkit-transition: all 0.3s;

				transition: all 0.3s;

			}

			.widget_shopping_cart .cart_list > li > a img,

			.widget_products .product_list_widget > li > a img,

			.widget_recently_viewed_products .product_list_widget > li a img,

			.widget_recent_reviews .product_list_widget > li a img,

			.widget_top_rated_products .product_list_widget > li a img {

				display: block;

				float: left;

				margin: 0 10px 0px 0;

				max-width:70px;

				height: auto;

			}

			.widget_shopping_cart .total {

				margin-bottom: 25px;

				margin-top: 5px;

			}

			.widget_shopping_cart p.buttons {

				margin-bottom: 0;

			}

			.widget_recent_reviews .star-rating,

			.widget_top_rated_products .star-rating {

				margin-top:5px;

				margin-bottom: 5px;

			}

			.widget_shopping_cart .buttons .button {

				padding:10px 22px 10px 22px;

				font-size:12px;

				line-height:18px;

				margin-right:1px;

			}

			.widget_shopping_cart .buttons .button:last-child {

				margin-right: 0;

			}

		/*	Price filter

		/*----------------------*/

			.widget_price_filter .price_slider{margin-bottom:25px;}

			.widget_price_filter .price_slider_amount {text-align: right;}

			.widget_price_filter .clear {clear: both;}

			.widget_price_filter .price_slider_amount .button {

				padding:10px 22px 10px 22px;

				font-size:12px;

				line-height:18px;

			}

			.widget_price_filter .price_slider_amount .price_label {

				padding:10px 22px 10px 22px;

				font-size:12px;

				line-height:18px;

				border-radius: 3px;

				background-color: #ffffff;

				border: 1px solid #c0c0c0;

				text-align: center;

			}

			.main-widget-area .widget_price_filter .price_slider_amount .price_label,

			.footer-widget-area .widget_price_filter .price_slider_amount .price_label {

				background-color:transparent;

			}

			.btn-3d .widget_price_filter .price_slider_amount .price_label {

				-webkit-transform: translateY(-4px);

				-ms-transform: translateY(-4px);

				transform: translateY(-4px);

			}

			.widget_price_filter .ui-slider {

			    position: relative;

			    text-align: left;

			}

			.widget_price_filter .ui-slider .ui-slider-handle {

			    position: absolute;

			    z-index: 2;

			    width:20px;

			    height:20px;

			    border-radius:20px;

			    cursor: pointer;

			    outline: none;

			    top: -5px;

			    background-color: #f1f1f1;

				border: 1px solid;

				border-color: #e0e0e0;

				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

			}

			.widget_price_filter .ui-slider .ui-slider-handle:last-child {

			    margin-left: -16px;

			}

			.footer-widget-area-wrap .widget_price_filter .ui-slider .ui-slider-handle {

				-webkit-transition:none;

				-moz-transition:none;

				-o-transition:none;

				-ms-transition:none;

				transition:none;

				opacity: 1 !important;

			}

			.widget_price_filter .ui-slider .ui-slider-range {

			    position: absolute;

			    z-index: 1;

			    display: block;

			    border: 0;

			    border-radius: 10px;

				box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);

			}

			.widget_price_filter .price_slider_wrapper .ui-widget-content {

			    border-radius: 10px;

			    background: #e0e0e0;

				box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);

			}

			.widget_price_filter .ui-slider-horizontal {

			    height:10px;

			}

			.widget_price_filter .ui-slider-horizontal .ui-slider-range {

			    top: 0;

			    height: 100%;

			}

			.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {

			    left: -1px;

			}

			.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {

			    right: -1px;

			}

		/*	Product categories, layered nav

		/*----------------------*/

			.widget_product_categories ul,

			.widget_layered_nav ul,

			.widget_layered_nav_filters ul {

				list-style: none;

				margin: 0;

				padding: 0;

			}

			.widget_product_categories ul li a,

			.widget_layered_nav ul li a,

			.widget_layered_nav_filters ul li a {

				position: relative;

				padding-left: 15px;

				display: inline-block;

				-webkit-transition: all 300ms ease-out;

				transition: all 300ms ease-out;

			}

			.widget_product_categories ul li ul,

			.widget_layered_nav ul li ul,

			.widget_layered_nav_filters ul li ul {

				margin-left: 20px;

			}

			.widget_product_categories ul li a:before,

			.widget_layered_nav ul li a:before,

			.widget_layered_nav_filters ul li a:before {

				display: block;

				content: "";

				position: absolute;

				left: 0;

				top: 50%;

				width: 5px;

				height: 5px;

				margin-top: -2.5px;

			}

			.widget_product_categories select,

			.widget_layered_nav select,

			.widget_layered_nav_filters select {

				width: 100%;

				padding-right: 5px;

			}

		/*	Products search

		/*----------------------*/

			.widget_product_search form {

				position: relative;

				margin-bottom: 0;

			}

			.widget_product_search form label {

				display: none;

			}

			.widget_product_search input[type="text"] {

				width: 100%;

				max-width: 100% !important;

				padding: 10px 50px 10px 10px;

				height: 50px;

				font-size: inherit;

			}

			.widget_product_search input[type="submit"] {

				text-indent: -2000%;

				white-space: nowrap;

				overflow: hidden;

				width:40px;

				height: 50px;

				border:none;

				outline: none;

				position: absolute;

				top: 0;

				right: 0;

				padding: 0;

				margin: 0;

				background-color: transparent !important;

				box-shadow:none !important;

				z-index: 5;

				-webkit-transform: translateY(0px);

				-ms-transform: translateY(0px);

				transform: translateY(0px);

			}

			.widget_product_search input[type="submit"]:hover {

				background-color: transparent !important;

			}

			.widget_product_search form:after {

				text-align: center;

				line-height: 50px;

				font-size: 13px;

				font-weight: 400;

				text-transform: none;

				content: "\e7cd";

				display: block;

				position: absolute;

				top: 0;

				right: 0;

				width: 40px;

				height: 100%;

				text-indent: 0em;

				-webkit-transition: all 300ms ease-out;

				transition: all 300ms ease-out;

			}

		/*	Products tags

		/*----------------------*/

			.widget_product_tag_cloud .tagcloud a {

				text-decoration: none;

				display: inline-block;

				padding:7px 14px;

				margin: 0 1px 4px 0;

				border-radius: 3px;

				border-width: 1px;

				border-style: solid;

				border-color:#e0e0e0;

				color: #c0c0c0 !important;

				-webkit-transition: all 300ms ease-out;

				transition: all 300ms ease-out;

				-webkit-backface-visibility: hidden;

			}

		/*	Shortcodes

		/*----------------------*/

			.product.woocommerce > del,

			.product.woocommerce > ins,

			.product.woocommerce > small {

				margin-right: 5px;

				display: inline-block;

			}

/*	RESPONSIVE

/*=============*/

	/*	MIN MOB PORTRAIT

	/*-------------*/

		@media only screen and (min-width: 320px)  {

			.container,

			.solo-true .nz-related-products {

				max-width:290px;

				width:290px;

			}

			.widget_calendar caption,

			.widget_calendar th,

			.widget_calendar td,

			.widget_calendar td#prev,

			.widget_calendar td#next,

			.widget_calendar td#prev span,

			.widget_calendar td#next span {

				height: 41px;

				width: 41px;

				line-height:41px;

			}

			.nz-table th,

			.nz-table td {

				padding:5px;

			}

		}

	/*	MAX MOB PORTRAIT

	/*-------------*/

		

		@media only screen and (max-width: 320px)  {

			button,

			input[type="reset"],

			input[type="submit"],

			input[type="button"],

			.button,

			textarea,

			select,

			input[type="date"],

			input[type="datetime"],

			input[type="datetime-local"],

			input[type="email"],

			input[type="month"],

			input[type="number"],

			input[type="password"],

			input[type="search"],

			input[type="tel"],

			input[type="text"],

			input[type="time"],

			input[type="url"],

			input[type="week"]

			{width: 100% !important;margin-left: 0 !important;}

			button,

			input[type="reset"],

			input[type="submit"],

			input[type="button"],

			.button 

			{text-align: center;}

			.main-widget-area {

				width: 250px;

				right:-250px;

			}

			.js #gen-wrap.animate {

				left: -250px;

			}

			.main-widget-area .widget_calendar caption,

			.main-widget-area .widget_calendar th,

			.main-widget-area .widget_calendar td,

			.main-widget-area .widget_calendar td#prev,

			.main-widget-area .widget_calendar td#next,

			.main-widget-area .widget_calendar td#prev span,

			.main-widget-area .widget_calendar td#next span {

				height: 27px;

				width: 27px;

				line-height:27px;

			}

			.main-widget-area .flickr_badge_image {

				width:61px !important;

				height:61px !important;

				margin-right:3px !important;

				margin-bottom:3px !important;

			}

			.main-widget-area #flickr_badge_image3,

			.main-widget-area #flickr_badge_image6,

			.main-widget-area #flickr_badge_image9 {

				margin-right: 0 !important;

			}

			.nz-mailchimp input[type="submit"] {

				border-radius:3px !important;

				margin-top:10px !important;

				position: relative !important;

				top: 0;

				right:0px;

			}

			.nz-mailchimp input[type="email"] {

				padding-right:60px;

			}

			.nz-testimonials .testimonial {

				font-size: 18px;

				line-height: 28px;

			}

			

			.nz-testimonials .name,

			.nz-testimonials .title {

				font-size:16px;

				line-height:26px;

			}

			.nz-testimonials .text:before,

			.nz-testimonials .text:after {

				font-size: 20px;

				line-height: 20px;

			}

			.woocommerce .shop_table.cart td,

			.woocommerce .shop_table.cart th {

				padding:5px;

			}

			.woocommerce .shop_table.cart td.actions {

				padding-top: 7px;

			}

			.woocommerce .shop_table.cart .product-thumbnail {

				display: none;

			}

			.woocommerce .shop_table.cart .quantity input[type="number"],

			.woocommerce .shop_table.cart .quantity input[type="button"] {

				width: 70% !important;

				display: block;

				float: none;

				margin: 0;

			}

			.woocommerce .shop_table.cart .quantity input[type="button"] {

				height: 30px;

			}

			.woocommerce .shop_table.cart .quantity input[type="button"].minus {

				border-radius: 3px 3px 0 0 !important;

				-webkit-transform: translateY(1px) !important;

				-ms-transform: translateY(1px) !important;

				transform: translateY(1px) !important;

			}

			.woocommerce .shop_table.cart .quantity input[type="button"].plus {

				border-radius: 0 0 3px 3px !important;

				-webkit-transform: translateY(-1px) !important;

				-ms-transform: translateY(-1px) !important;

				transform: translateY(-1px) !important;

			}

		}

	/*	MIN MOB LANDSCAPE

	/*-------------*/

		@media only screen and (min-width:480px) {

			.container,

			.solo-true .nz-related-products {

				max-width:440px;

				width:440px;

			}

			.widget_calendar caption,

			.widget_calendar th,

			.widget_calendar td,

			.widget_calendar td#prev,

			.widget_calendar td#next,

			.widget_calendar td#prev span,

			.widget_calendar td#next span {

				height: 62px;

				width: 62px;

				line-height:62px;

			}

			.photos_from_flickr .flickr_badge_image {

				width:69px;

				height:69px;

				margin-right:5px;

				margin-bottom:5px;

			}

			.photos_from_flickr #flickr_badge_image4,

			.photos_from_flickr #flickr_badge_image8 {

				margin-right:5px;

			}

			.photos_from_flickr #flickr_badge_image6 {

				margin-right: 0;

			}

			/*GALLERY*/

			.nz-gallery[data-columns="1"].grid .gallery-item {width: 100%;}

			.nz-gallery[data-columns="2"].grid .gallery-item {width: 50%;}

			.nz-gallery[data-columns="3"].grid .gallery-item {width: 33.33333333333333%;}				

			.nz-gallery[data-columns="4"].grid .gallery-item {width: 25%;}

			.nz-gallery[data-columns="5"].grid .gallery-item {width: 20%;}

			.nz-gallery[data-columns="6"].grid .gallery-item {width: 33.33333333333333%;}

			.nz-gallery[data-columns="7"].grid .gallery-item {width: 33.33333333333333%;}

			.nz-gallery[data-columns="8"].grid .gallery-item {width: 25%;}

			.nz-gallery[data-columns="9"].grid .gallery-item {width: 33.33333333333333%;}

			.nz-gallery[data-columns="2"] .wp-caption-text {

				display:block;

			}

			.nz-gallery[data-columns="2"] .wp-caption:hover img,

			.nz-gallery[data-columns="2"] .wp-caption .ninzio-overlay:before {

				-webkit-transform: translateY(-16px);

				-ms-transform: translateY(-16px);

				transform: translateY(-16px);

			}

			.nz-recent-portfolio.grid .project-details {

				padding:30px 20px;

			}

			.error404-status {

				font-size: 200px;

				line-height: 200px;

				height: 200px;

			}

			.woocommerce .quantity {

				display:inline-block;

				width: 50%;

				vertical-align: top;

			}

			.single-product-image .thumbnails > a {

				width:16.66666666666667%;

			}

			.woocommerce-tabs .comment-form-rating .stars a {

				float: left;

				border-right: 1px solid #e0e0e0;

				margin-right: 10px;

				padding-right: 10px;

			}

			td.actions input[type="submit"] + input[type="submit"] {

				margin-left:4px;

			}

			.woocommerce .shop_table.cart .quantity {

				display:block;

				width:100%;

			}

		}

	/*	MIN TABLET PORTRAIT

	/*-------------*/

		

		@media only screen and (min-width: 768px)  {

			.container,

			.solo-true .nz-related-products {

				max-width:720px;

				width:720px;

			}

			.nz-row {

				margin-left: -15px;

				margin-right: -15px;

			}

			.nz-row .col12,

			.nz-row .col11,

			.nz-row .col10,

			.nz-row .col9,

			.nz-row .col8,

			.nz-row .col7,

			.nz-row .col6,

			.nz-row .col5,

			.nz-row .col4,

			.nz-row .col3,

			.nz-row .col2,

			.nz-row .col1 {

				float: left;

				padding-left: 15px;

				padding-right:15px;

			}

			.nz-row .col1 {width: 8.333333333333332%;}

			.nz-row .col2 {width: 16.666666666666664%;}

			.nz-row .col3 {width: 25%;}

			.nz-row .col4 {width: 33.33333333333333%;}

			.nz-row .col5 {width: 41.66666666666667%;}

			.nz-row .col6 {width: 50%;}

			.nz-row .col7 {width: 58.333333333333336%;}

			.nz-row .col8 {width: 66.66666666666666%;}

			.nz-row .col9 {width: 75%;}

			.nz-row .col10{width: 83.33333333333334%;}

			.nz-row .col11{width: 91.66666666666666%;}

			.nz-row .col12{width: 100%;}

			.page-title-content .single-post-title {

				font-size: 52px;

				line-height: 62px;

			}

			.widget_recent_portfolio .post {

				width:15%;

			}

			.widget_recent_portfolio .post:nth-child(3n+3) {margin-right:2%;}

			.widget_recent_portfolio .post:nth-child(6n+6) {margin-right: 0;}

			.footer-widget-area .widget_recent_portfolio .post,

			.main-widget-area .widget_recent_portfolio .post {

				width:32%;

			}

			.footer-widget-area .widget_recent_portfolio .post:nth-child(3n+3),

			.main-widget-area .widget_recent_portfolio .post:nth-child(3n+3) {margin-right:0%;}

			.widget_calendar caption,

			.widget_calendar th,

			.widget_calendar td,

			.widget_calendar td#prev,

			.widget_calendar td#next,

			.widget_calendar td#prev span,

			.widget_calendar td#next span {

				height: 102px;

				width: 102px;

				line-height:102px;

			}

			.photos_from_flickr .flickr_badge_image {

				width:67px;

				height:67px;

				margin-right:5px;

				margin-bottom:5px;

			}

			.photos_from_flickr #flickr_badge_image6 {

				margin-right:5px;

			}

			.footer-widget-area .widget 

			{float:left;}

			.footer-widget-area .widget {

				width:50%;

				padding-left: 15px;

				padding-right: 15px;

			}

			.footer-widget-area .widget_calendar caption,

			.footer-widget-area .widget_calendar th,

			.footer-widget-area .widget_calendar td,

			.footer-widget-area .widget_calendar td#prev,

			.footer-widget-area .widget_calendar td#next,

			.footer-widget-area .widget_calendar td#prev span,

			.footer-widget-area .widget_calendar td#next span {

				height: 47px;

				width: 47px;

				line-height:47px;

			}

			.footer-widget-area .photos_from_flickr .flickr_badge_image {

				width:65px;

				height:65px;

				margin-right:5px;

				margin-bottom:5px;

			}

			.footer-widget-area .photos_from_flickr #flickr_badge_image6 {

				margin-right:5px;

			}

			.footer-widget-area .photos_from_flickr #flickr_badge_image5,

			.footer-widget-area .photos_from_flickr #flickr_badge_image10 {

				margin-right: 0;

			}

			#ninzio-slider {display:block;}

			.nz-section-back-video,

			.nz-video-overlay {

				display: block;

			}

			.nz-section-back-video {

				width: 180%;

			}

			.nz-video-poster {display: none;}

			.single-ninzio-slider #wrap {width: 1170px !important;}

			.single-ninzio-slider #wrap.nz-boxed #ninzio-slider .ninzio-layer,

			.single-ninzio-slider #ninzio-slider .ninzio-layer {

				-webkit-transform: scale(1,1) !important;

				-ms-transform: scale(1,1) !important;

				transform: scale(1,1) !important;

			}

			.single-ninzio-slider .container {max-width: 1170px !important;}

			.single-ninzio-slider #ninzio-slider,

			.single-ninzio-slider #ninzio-slider-preview-panel {display: block;}

			.single-ninzio-slider #ninzio-slider {cursor: crosshair;}

			.single-ninzio-slider .device-message {display: none;}

			.single-ninzio-slider .grid {

				position: absolute;

				top: 0;

				left: 0;

				z-index: 10;

				width: 100%;

				height: 100%;

				background:rgba(0,0,0,0.4);

			}

			.single-ninzio-slider .grid .grid-line {

				display: block;

				position: absolute;

			}

			.grid_1_v,.grid_2_v,.grid_3_v,.grid_4_v,.grid_5_v,.grid_6_v,.grid_7_v,.grid_8_v,.grid_9_v {

				width: 1px;

				height: 100%;

				background-color: rgba(255,255,255,0.5);

				top: 0;

			}

			.grid_1_v {left: 0;}

			.grid_2_v {left: 12.5%;}

			.grid_3_v {left: 25%;}

			.grid_4_v {left: 37.5%;}

			.grid_5_v {left: 50%;}

			.grid_6_v {left: 62.5%;}

			.grid_7_v {left: 75%;}

			.grid_8_v {left: 87.5%;}

			.grid_9_v {left: 100%;}

			.grid_1_h,

			.grid_2_h,

			.grid_3_h,

			.grid_4_h,

			.grid_5_h,

			.grid_6_h,

			.grid_7_h,

			.grid_8_h,

			.grid_9_h {

				height: 1px;

				width: 100%;

				background-color: rgba(255,255,255,0.4);

				left: 0;

			}

			.grid_1_h {top: 0;}

			.grid_2_h {top: 25%;}

			.grid_3_h {top: 50%;}

			.grid_4_h {top: 75%;}

			.grid_5_h {top: 100%;}

			.nz-tabs.horizontal:not(.tab-full) .tabset .tab {

				float: left;

				margin-bottom: 0;

			}

			.nz-tabs.horizontal:not(.tab-full) .tabset .tab {

				border-radius: 0px;

				border-right:none;

			}

			.nz-tabs.horizontal:not(.tab-full) .tabset .tab:first-child {

				border-radius: 3px 0 0 3px;

			}

			.nz-tabs.horizontal:not(.tab-full) .tabset .tab:last-child {

				border-radius: 0 3px 3px 0;

				border-right: 1px solid #e0e0e0;

			}

			.nz-tabs.horizontal:not(.tab-full) .tabset .tab:only-child {

				border-radius: 3px;

				border-right: 1px solid #e0e0e0;

			}

			.nz-row .col6 .nz-tabs.vertical .tabset,

			.nz-row .col6 .nz-tabs.vertical .tabs-container,

			.nz-row .col7 .nz-tabs.vertical .tabset,

			.nz-row .col7 .nz-tabs.vertical .tabs-container,

			.nz-row .col8 .nz-tabs.vertical .tabset,

			.nz-row .col8 .nz-tabs.vertical .tabs-container,

			.nz-row .col9 .nz-tabs.vertical .tabset,

			.nz-row .col9 .nz-tabs.vertical .tabs-container,

			.nz-row .col10 .nz-tabs.vertical .tabset,

			.nz-row .col10 .nz-tabs.vertical .tabs-container,

			.nz-row .col11 .nz-tabs.vertical .tabset,

			.nz-row .col11 .nz-tabs.vertical .tabs-container,

			.nz-row .col12 .nz-tabs.vertical .tabset,

			.nz-row .col12 .nz-tabs.vertical .tabs-container

			{float: left;}

			.nz-row .col6 .nz-tabs.vertical .tab,

			.nz-row .col7 .nz-tabs.vertical .tab,

			.nz-row .col8 .nz-tabs.vertical .tab,

			.nz-row .col9 .nz-tabs.vertical .tab,

			.nz-row .col10 .nz-tabs.vertical .tab,

			.nz-row .col11 .nz-tabs.vertical .tab,

			.nz-row .col12 .nz-tabs.vertical .tab {

				margin-bottom: 0;

				border-radius: 0;

				border-bottom-color: #e0e0e0 !important;

				text-align:center;

				margin-top: -1px;

			}

			.nz-row .col6 .nz-tabs.vertical .tabset .tab:first-child,

			.nz-row .col7 .nz-tabs.vertical .tabset .tab:first-child,

			.nz-row .col8 .nz-tabs.vertical .tabset .tab:first-child,

			.nz-row .col9 .nz-tabs.vertical .tabset .tab:first-child,

			.nz-row .col10 .nz-tabs.vertical .tabset .tab:first-child,

			.nz-row .col11 .nz-tabs.vertical .tabset .tab:first-child,

			.nz-row .col12 .nz-tabs.vertical .tabset .tab:first-child {

				border-radius: 3px 3px 0 0;

			}

			.nz-row .col6 .nz-tabs.vertical .tabset .tab:last-child,

			.nz-row .col7 .nz-tabs.vertical .tabset .tab:last-child,

			.nz-row .col8 .nz-tabs.vertical .tabset .tab:last-child,

			.nz-row .col9 .nz-tabs.vertical .tabset .tab:last-child,

			.nz-row .col10 .nz-tabs.vertical .tabset .tab:last-child,

			.nz-row .col11 .nz-tabs.vertical .tabset .tab:last-child,

			.nz-row .col12 .nz-tabs.vertical .tabset .tab:last-child {

				border-radius: 0 0 3px 3px;

			}

			.nz-row .col6 .nz-tabs.vertical .tabset .tab:only-child,

			.nz-row .col7 .nz-tabs.vertical .tabset .tab:only-child,

			.nz-row .col8 .nz-tabs.vertical .tabset .tab:only-child,

			.nz-row .col9 .nz-tabs.vertical .tabset .tab:only-child,

			.nz-row .col10 .nz-tabs.vertical .tabset .tab:only-child,

			.nz-row .col11 .nz-tabs.vertical .tabset .tab:only-child,

			.nz-row .col12 .nz-tabs.vertical .tabset .tab:only-child {

				border-radius: 3px;

			}

			.nz-row .col6 .nz-tabs.vertical .tabs-container,

			.nz-row .col7 .nz-tabs.vertical .tabs-container,

			.nz-row .col8 .nz-tabs.vertical .tabs-container,

			.nz-row .col9 .nz-tabs.vertical .tabs-container,

			.nz-row .col10 .nz-tabs.vertical .tabs-container,

			.nz-row .col11 .nz-tabs.vertical .tabs-container,

			.nz-row .col12 .nz-tabs.vertical .tabs-container{

				padding-top: 0;

				padding-left: 20px;

			}

			.nz-row .col6 .nz-tabs.vertical .tabset,

			.nz-row .col7 .nz-tabs.vertical .tabset,

			.nz-row .col8 .nz-tabs.vertical .tabset,

			.nz-row .col9 .nz-tabs.vertical .tabset,

			.nz-row .col10 .nz-tabs.vertical .tabset,

			.nz-row .col11 .nz-tabs.vertical .tabset,

			.nz-row .col12 .nz-tabs.vertical .tabset {

				width: 30%;

			}

			.nz-row .col6 .nz-tabs.vertical .tabs-container,

			.nz-row .col7 .nz-tabs.vertical .tabs-container,

			.nz-row .col8 .nz-tabs.vertical .tabs-container,

			.nz-row .col9 .nz-tabs.vertical .tabs-container,

			.nz-row .col10 .nz-tabs.vertical .tabs-container,

			.nz-row .col11 .nz-tabs.vertical .tabs-container,

			.nz-row .col12 .nz-tabs.vertical .tabs-container{

				width: 70%;

			}

			.nz-testimonials .flex-control-nav li {

				width: 80px;

				height: 80px;

				border-radius: 80px;

			}

			

			.nz-testimonials .flex-control-nav img {

				width: 70px;

				height: 70px;

				border-radius: 70px;

				margin: 0;

				display: block;

			}

			.nz-testimonials .flex-control-nav li a:before {

				width: 82px;

				height: 82px;

				border-radius: 82px;

				top: -6px;

				left: -6px;

			}

			.nz-testimonials {

				padding:0 70px 0 70px;

			}

			.nz-testimonials:before,

			.nz-testimonials:after {

				top:130px;

				left:30px;

				font-size: 40px;

				line-height: 40px;

			}

			.nz-testimonials:after {

				right:30px;

				left: auto;

			}

			/*GALLERY*/

			.nz-gallery[data-columns="1"].grid .gallery-item {width: 100%;}

			.nz-gallery[data-columns="2"].grid .gallery-item {width: 50%;}

			.nz-gallery[data-columns="3"].grid .gallery-item {width: 33.33333333333333%;}				

			.nz-gallery[data-columns="4"].grid .gallery-item {width: 25%;}

			.nz-gallery[data-columns="5"].grid .gallery-item {width: 20%;}

			.nz-gallery[data-columns="6"].grid .gallery-item {width: 16.66666666666667%;}

			.nz-gallery[data-columns="7"].grid .gallery-item {width: 14.28571428571429%;}

			.nz-gallery[data-columns="8"].grid .gallery-item {width: 12.5%;}

			.nz-gallery[data-columns="9"].grid .gallery-item {width: 11.11111111111111%;}

			.nz-gallery[data-columns="3"] .wp-caption-text,		

			.nz-gallery[data-columns="4"] .wp-caption-text {

				display:block;

			}

			.nz-gallery[data-columns="3"] .wp-caption:hover img,

			.nz-gallery[data-columns="3"] .wp-caption .ninzio-overlay:before,

			.nz-gallery[data-columns="4"] .wp-caption:hover img,

			.nz-gallery[data-columns="4"] .wp-caption .ninzio-overlay:before {

				-webkit-transform: translateY(-16px);

				-ms-transform: translateY(-16px);

				transform: translateY(-16px);

			}

			.nz-persons > .person {float: left;}

			.nz-persons[data-columns="1"] > .person {width: 100%;float: none;}

			.nz-persons[data-columns="2"] > .person {width: 50%;}

			.nz-persons[data-columns="3"] > .person {width: 33.33333333333333%;}

			.nz-persons[data-columns="4"] > .person {width: 50%;}

			.nz-persons[data-columns="3"] .social-links a {

				width: 30px;

				height: 30px;

				border-radius: 30px;

				font-size: 14px;

				line-height: 30px;

			}

			

			.page-standard-width .nz-recent-portfolio.grid,

			.page-standard-width .nz-recent-portfolio.masonry,

			.page-standard-width .nz-recent-posts,

			.page-standard-width .nz-persons,

			.page-standard-width .nz-carousel,

			.page-full-width .full-width-true .nz-recent-portfolio.grid,

			.page-full-width .full-width-true .nz-recent-portfolio.masonry,

			.page-full-width .full-width-true .nz-recent-posts,

			.page-full-width .full-width-true .nz-persons,

			.page-full-width .full-width-true .nz-carousel,

			.loop.width-false .blog-post,

			.loop.width-false .nz-portfolio-posts,

			.woocommerce .loop.width-false .products,

			.page-standard-width .woocommerce.columns-4 .products,

			.page-standard-width .woocommerce.columns-3 .products,

			.page-standard-width .woocommerce.columns-2 .products,

			.page-full-width .woocommerce.columns-4 .products,

			.page-full-width .woocommerce.columns-3 .products,

			.page-full-width .woocommerce.columns-2 .products {

				margin-right:-15px;

				margin-left: -15px;

			}

			.page-standard-width .nz-gallery,

			.page-full-width .full-width-true .nz-gallery {

				margin-right:-10px;

				margin-left: -10px;

			}

			.loop.width-true .container {

				width: 100%;

				max-width: 100%;

			}

			.loop.width-true .archive-titles {

				margin-left: 30px;

				margin-right: 30px;

			}

			.page-full-width .full-width-false .nz-recent-portfolio.nogap-false.grid,

			.page-full-width .full-width-false .nz-recent-portfolio.nogap-false.masonry,

			.page-full-width .full-width-false .nz-recent-posts,

			.page-full-width .full-width-false .nz-gallery,

			.page-full-width .full-width-false .nz-persons,

			.loop.width-true .blog-post,

			.loop.width-true .small .nz-portfolio-posts,

			.loop.width-true .medium .nz-portfolio-posts,

			.loop.width-true .large .nz-portfolio-posts,

			.loop.width-true .full .nz-portfolio-posts,

			.loop.width-true .image-grid-small .nz-portfolio-posts,

			.loop.width-true .image-grid-medium .nz-portfolio-posts,

			.loop.width-true .image-grid-large .nz-portfolio-posts,

			.page-full-width .full-width-false .woocommerce {

				margin-right:15px;

				margin-left: 15px;

			}

			.loop .blog-post .post,

			.loop .small .portfolio,

			.loop .medium .portfolio,

			.loop .large .portfolio,

			.loop .full .portfolio,

			.loop .image-grid-small .portfolio,

			.loop .image-grid-medium .portfolio,

			.loop .image-grid-large .portfolio {

				padding-right:15px;

				padding-left:15px;

			}

			.nz-recent-portfolio.grid.filter-false .post {

				float: left;

			}

			.nz-recent-portfolio.grid.grid_3 .project-details,

			.nz-recent-portfolio.masonry.grid_3 .project-details {

				padding:20px 10px;

			}

			.loop.width-false .large .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-false .image-grid-large .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-false .small .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-false .image-grid-small .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-true .large .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-true .image-grid-large .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-true .small .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-true .image-grid-small .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .large .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .image-grid-large .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .small .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .image-grid-small .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

			.woocommerce .loop .small .product,

			.woocommerce *[data-rpn='4'] .related .product,

			.woocommerce.columns-4 .products .product,

			.woocommerce.columns-2 .products .product,

			.nz-recent-portfolio.grid.grid_2 *[data-grid="ninzio_01"],

			.nz-recent-portfolio.grid.grid_4 *[data-grid="ninzio_01"]

			.nz-recent-portfolio.masonry.grid_2 *[data-grid="ninzio_01"],

			.nz-recent-portfolio.masonry.grid_4 *[data-grid="ninzio_01"],

			.nz-recent-posts.masonry.grid_2 *[data-grid="ninzio_01"],

			.nz-recent-posts.masonry.grid_4 *[data-grid="ninzio_01"],

			.loop.width-false .large .blog-post *[data-grid="ninzio_01"],

			.loop.width-false .small .blog-post *[data-grid="ninzio_01"],

			.loop.width-true .large .blog-post *[data-grid="ninzio_01"],

			.loop.width-true .small .blog-post *[data-grid="ninzio_01"],

			.loop .large .main-content .blog-post *[data-grid="ninzio_01"],

			.loop .small .main-content .blog-post *[data-grid="ninzio_01"],

			.loop .no-gap-grid-4 .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .masonry-4 .nz-portfolio-posts *[data-grid="ninzio_01"]

			{width: 50%;}

			.loop.width-false .medium .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-false .image-grid-medium .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-true .medium .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop.width-true .image-grid-medium .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .medium .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .image-grid-medium .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

			.woocommerce .loop .medium .product,

			.woocommerce *[data-rpn='3'] .related .product,

			.woocommerce.columns-3 .products .product,

			.loop .no-gap-grid-3 .nz-portfolio-posts *[data-grid="ninzio_01"],

			.loop .masonry-3 .nz-portfolio-posts *[data-grid="ninzio_01"],

			.nz-recent-portfolio.grid.grid_3 *[data-grid="ninzio_01"],

			.nz-recent-portfolio.masonry.grid_3 *[data-grid="ninzio_01"],

			.nz-recent-posts.masonry.grid_3 *[data-grid="ninzio_01"],

			.loop.width-false .medium .blog-post *[data-grid="ninzio_01"],

			.loop.width-true .medium .blog-post *[data-grid="ninzio_01"],

			.loop .medium .main-content .blog-post *[data-grid="ninzio_01"]

			{width: 33.33333333333333%;}

			.post-comments-area .comment-form-author,

			.post-comments-area .comment-form-email,

			.post-comments-area .comment-form-url {

				float: left;

				width: 33.33333333333333%;

				padding: 0 15px;

			}

			.post-comments-area .comment-form-author {padding-left: 0;}

			.post-comments-area .comment-form-url {padding-right: 0;}

			.post-comments-area .comment-form-url {

				margin-right: 0;

			}

			.comment-list ul.children {

				padding:0 0 0 70px;

			}

			#ninzio-slider > .ninzio-slides > .ninzio-slider > video {

				display: block;

			}

			.woocommerce .products .product {

				padding-right: 15px;

				padding-left: 15px;

			}

			.woocommerce .rh-true .woocommerce-result-count {

				position: relative;

				top: 38px;

			}

			.woocommerce .loop .woocommerce-ordering {

				position: absolute;

				right: 0;

			}

			.woocommerce .loop .main-content.left .woocommerce-ordering {

				position: absolute;

				right:30px;

			}

			.woocommerce .loop .main-content .woocommerce-ordering {top:0px;}

			.woocommerce .loop .woocommerce-ordering {top:0px;}

			.woocommerce .rh-true .loop .products {

				margin-top:80px;

			}

			.woocommerce .rh-true .loop .woocommerce-message {

				margin-top: 80px;

				margin-bottom: 0;

			}

			.woocommerce.single .woocommerce-message {

				margin-top:0px;

				margin-bottom:30px;

			}

			.woocommerce .rh-false .woocommerce-message {

				margin-top: 44px;

				margin-bottom: 0;

			}

			.woocommerce .loop.width-true .products {

				margin-left: -15px;

				margin-right: -15px;

			}

			.woocommerce .loop.width-true .products {

				margin-left: -15px;

				margin-right: -15px;

			}

			.woocommerce .loop.width-true .shop-layout {

				padding-left: 30px;

				padding-right: 30px;

			}

			.woocommerce .loop.width-true .woocommerce-ordering {right: 30px;}

			.single-product-image,

			.single-product-summary {

				width: 50%;

				float: left;

				padding: 0 15px;

			}

			.woocommerce.single .nz-shop-posts {

				margin-left: -15px;

				margin-right: -15px;

			}

			.woocommerce .quantity {

				width: 50%;

			}

			.woocommerce-tabs:not(.tab-full) .tabs > li {

				float: left;

				margin-bottom: 0;

				border-radius: 0px;

				border-right:none;

			}

			.woocommerce-tabs:not(.tab-full) .tabs > li:first-child {

				border-radius: 3px 0 0 3px;

			}

			.woocommerce-tabs:not(.tab-full) .tabs > li:last-child {

				border-radius: 0 3px 3px 0;

				border-right: 1px solid #e0e0e0;

			}

			.woocommerce-tabs:not(.tab-full) .tabs > li:only-child {

				border-radius: 3px;

				border-right: 1px solid #e0e0e0;

			}

			.coupon {

				display: inline-block;

			}

			.coupon input {

				width:auto;

				margin-right: 0;

				display: inline-block;

			}

			.actions input {margin-left: 0 !important;margin-right: 5px !important;}

			.woocommerce .shop_table.cart .quantity {

				display:inline-block;

				width:50%;

			}

			.woocommerce .cart-collaterals,

			.woocommerce .col2-set  {

				margin-left: -15px;

				margin-right: 15px;

			}

			.woocommerce .cart-collaterals .cart_totals,

			.woocommerce .cart-collaterals .shipping_calculator,

			.woocommerce .col2-set .col-1,

			.woocommerce .col2-set .col-2  {

				width:50%;

				float: left;

				padding-left: 15px;

				padding-right: 15px;

			}

			.woocommerce .related:after {

				content: "";

				display: table;

				clear: both;

			}

			.woocommerce .related .product {

				float: left;

			}

			.woocommerce .related > h2 {

				padding: 0 15px;

			}

		}

	/*	EVERYTHING BUT DESKTOP

	/*-------------*/

		

		@media only screen and (max-width: 1023px){

			.col .col-inner,

			.nz-column-text

			{padding: 0 !important;}

		}

	/*	ONLY TABLET PORTRAIT

	/*-------------*/

		@media only screen and (min-width: 768px) and (max-width: 1023px) {

			.nz-recent-portfolio .project-details {

				padding:20px 10px;

			}

			.widget_shopping_cart .cart_list > li,

			.widget_products .product_list_widget > li,

			.widget_recently_viewed_products .product_list_widget > li,

			.widget_recent_reviews .product_list_widget > li,

			.widget_top_rated_products .product_list_widget > li  {

				text-align: center;

			}

			.widget_shopping_cart .cart_list > li > a img,

			.widget_products .product_list_widget > li > a img,

			.widget_recently_viewed_products .product_list_widget > li > a img,

			.widget_recent_reviews .product_list_widget > li > a img,

			.widget_top_rated_products .product_list_widget > li > a img {

				display: block;

				float:none;

				margin: 0 auto 10px auto;

			}

			.widget_shopping_cart .buttons .button {

				width: 100%;

				margin-right: 0;

			}

			.widget_recent_reviews .star-rating,

			.widget_top_rated_products .star-rating {

				margin:5px auto 5px auto;

			}

		}

	/*	MIN TABLET LANDSCAPE

	/*-------------*/

		

		@media only screen and (min-width:1024px){

			.container,

			.solo-true .nz-related-products {

				max-width:960px;

				width:960px;

			}

			.page-title-content .single-post-title {

				font-size: 62px;

				line-height: 72px;

			}

			.main-content,

			.sidebar {

				float: left;

			}

			.main-content {width: 75%;}

			.sidebar      {width: 25%;}

			.main-content.right {padding-left: 30px;}

			.main-content.left {padding-right: 30px;}

			.widget_recent_portfolio .post {width:32%;}

			.widget_recent_portfolio .post:nth-child(3n+3) {margin-right:0%;}

			.widget_calendar caption,

			.widget_calendar th,

			.widget_calendar td,

			.widget_calendar td#prev,

			.widget_calendar td#next,

			.widget_calendar td#prev span,

			.widget_calendar td#next span {

				height: 30px;

				width: 30px;

				line-height:30px;

			}


      .footer-widget-area .nz-row{
        display: flex;
      }
			.footer-widget-area .widget {width:20%;}
      .footer-widget-area .widget.contact_box{width:38% }

			.footer-widget-area .widget_calendar caption,

			.footer-widget-area .widget_calendar th,

			.footer-widget-area .widget_calendar td,

			.footer-widget-area .widget_calendar td#prev,

			.footer-widget-area .widget_calendar td#next,

			.footer-widget-area .widget_calendar td#prev span,

			.footer-widget-area .widget_calendar td#next span {

				height: 29px;

				width: 29px;

				line-height:29px;

			}

			.photos_from_flickr .flickr_badge_image {

				width:75px;

				height:75px;

				margin-right:5px;

				margin-bottom:5px;

			}

			.photos_from_flickr #flickr_badge_image3,

			.photos_from_flickr #flickr_badge_image6,

			.photos_from_flickr #flickr_badge_image9 {

				margin-right:0px;

			}

			.photos_from_flickr #flickr_badge_image5,

			.photos_from_flickr #flickr_badge_image10 {

				margin-right: 5px;

			}

			.footer .social-links a {

				border-right-width: 1px;

				border-right-style:solid;

			}

			.footer .social-links a:first-child {

				border-left-width: 1px;

				border-left-style:solid;

			}

			.footer .social-links {float: right;}

			.footer-info {float: left;text-align: left;}

			.footer-menu {padding:0;float: right;}

			.footer-menu ul li {float: left;position: relative;}

			.footer-menu ul li a {

				line-height: inherit !important;

				padding: 0 10px;

				position: relative;

			}

			.footer-menu ul li:after {

				content: "|";

				display: block;

				position: absolute;

				height: 50px;

				width: 6px;

				right: -3px;

				top: 0;

			}

			.footer-menu ul li:last-child:after {display: none;}

			.footer-widget-area .photos_from_flickr .flickr_badge_image {

				width:68px;

				height:68px;

				margin-right:5px;

				margin-bottom:5px;

			}

			.footer-widget-area .photos_from_flickr #flickr_badge_image3,

			.footer-widget-area .photos_from_flickr #flickr_badge_image6,

			.footer-widget-area .photos_from_flickr #flickr_badge_image9 {

				margin-right:0px;

			}

			.footer-widget-area .photos_from_flickr #flickr_badge_image5,

			.footer-widget-area .photos_from_flickr #flickr_badge_image10 {

				margin-right: 5px;

			}

			.nz-row .col8 .nz-tabs.vertical .tabset,

			.nz-row .col9 .nz-tabs.vertical .tabset,

			.nz-row .col10 .nz-tabs.vertical .tabset,

			.nz-row .col11 .nz-tabs.vertical .tabset,

			.nz-row .col12 .nz-tabs.vertical .tabset {

				width: 25%;

			}

			.nz-row .col8 .nz-tabs.vertical .tabs-container,

			.nz-row .col9 .nz-tabs.vertical .tabs-container,

			.nz-row .col10 .nz-tabs.vertical .tabs-container,

			.nz-row .col11 .nz-tabs.vertical .tabs-container,

			.nz-row .col12 .nz-tabs.vertical .tabs-container{

				width: 75%;

			}

			.nz-table th,

			.nz-table td {

				padding:10px;

			}

			.nz-content-box,

			.nz-counter,

			.nz-timer,

			.nz-pricing-table {

				margin-left: -20px;

				margin-right: -20px;

			}

			.nz-content-box > .nz-box,

			.nz-counter > .nz-count,

			.nz-timer > .timer-item {

				padding-right: 20px;

				padding-left: 20px;

				float: left;

				margin-bottom: 25px;

				position: relative;

			}

			.nz-content-box.v1 > .nz-box:after,

			.nz-counter > .nz-count:after,

			.nz-timer > .timer-item:after {

				display: block;

				position: absolute;

				top: 0;

				right:0;

				content: "";

				width: 1px;

				height: 100%; 

				background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(219,219,219,1) 50%, rgba(255,255,255,0) 100%);

				background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(219,219,219,1)), color-stop(100%,rgba(255,255,255,0)));

				background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(219,219,219,1) 50%,rgba(255,255,255,0) 100%);

				background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(219,219,219,1) 50%,rgba(255,255,255,0) 100%);

				background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(219,219,219,1) 50%,rgba(255,255,255,0) 100%);

				background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(219,219,219,1) 50%,rgba(255,255,255,0) 100%);

			}

			.nz-timer > .timer-item {width: 25%;}

			.nz-timer > .timer-item:last-child:after

			{display:none;}

			.nz-content-box[data-columns="1"] > .nz-box {width: 100%;float: none;}

			.nz-content-box[data-columns="2"] > .nz-box {width: 50%;}

			.nz-content-box[data-columns="3"] > .nz-box {width: 33.33333333333333%;}

			.nz-content-box[data-columns="4"] > .nz-box {width: 25%;}

			.nz-content-box[data-columns="5"] > .nz-box {width: 20%;}

			.nz-content-box[data-columns="6"] > .nz-box {width: 16.66666666666667%;}

			.nz-content-box[data-columns="1"] > .nz-box:after,

			.nz-content-box[data-columns="2"] > .nz-box:nth-child(2n+2):after,

			.nz-content-box[data-columns="3"] > .nz-box:nth-child(3n+3):after,

			.nz-content-box[data-columns="4"] > .nz-box:nth-child(4n+4):after,

			.nz-content-box[data-columns="5"] > .nz-box:nth-child(5n+5):after,

			.nz-content-box[data-columns="6"] > .nz-box:nth-child(6n+6):after,

			.nz-counter[data-columns="1"] > .nz-count:after,

			.nz-counter[data-columns="2"] > .nz-count:nth-child(2n+2):after,

			.nz-counter[data-columns="3"] > .nz-count:nth-child(3n+3):after,

			.nz-counter[data-columns="4"] > .nz-count:nth-child(4n+4):after,

			.nz-counter[data-columns="5"] > .nz-count:nth-child(5n+5):after,

			.nz-counter[data-columns="6"] > .nz-count:nth-child(6n+6):after

			{display: none;}

			.nz-counter[data-columns="1"] > .nz-count,

			.nz-pricing-table[data-columns="1"] > .column

			{width: 100%;float: none;}

			.nz-counter[data-columns="2"] > .nz-count,

			.nz-pricing-table[data-columns="2"] > .column

			{width: 50%;}

			.nz-counter[data-columns="3"] > .nz-count,

			.nz-pricing-table[data-columns="3"] > .column 

			{width: 33.33333333333333%;}

			.nz-counter[data-columns="4"] > .nz-count,

			.nz-pricing-table[data-columns="4"] > .column 

			{width: 25%;}

			.nz-counter[data-columns="5"] > .nz-count,

			.nz-pricing-table[data-columns="5"] > .column

			{width: 20%;}

			.nz-counter[data-columns="6"] > .nz-count 

			{width: 16.66666666666667%;}

			.nz-pricing-table {

				margin-left:-10px;

				margin-right:-10px;

			}

			.nz-pricing-table > .column {

				padding-right: 10px;

				padding-left: 10px;

				float: left;

				margin-bottom: 25px;

			}

			.nz-pricing-table[data-columns="5"] .price {

				font-size: 36px;

				line-height: 36px;

			}

			.nz-persons[data-columns="1"] > .person {width: 100%;float: none;}

			.nz-persons[data-columns="2"] > .person {width: 50%;}

			.nz-persons[data-columns="3"] > .person {width: 33.33333333333333%;}

			.nz-persons[data-columns="4"] > .person {width: 25%;}

			.nz-persons[data-columns="3"] .social-links a {

				width: 40px;

				height: 40px;

				border-radius: 40px;

				font-size: 18px;

				line-height: 40px;

			}

			.nz-persons[data-columns="4"] .social-links a {

				width: 30px;

				height: 30px;

				border-radius: 30px;

				font-size: 14px;

				line-height: 30px;

			}

			.nz-persons[data-columns="4"] .person:hover .social-links {

				-webkit-transform: translateY(-60px);

				-ms-transform: translateY(-60px);

				transform: translateY(-60px);

			}

			.slick-prev{left:100px;display: block !important;} 

			.slick-next{right:100px;display: block !important;}

			.nz-recent-portfolio.grid.grid_3 .project-details,

			.nz-recent-portfolio.masonry.grid_3 .project-details {

				padding:30px 20px;

			}

			.nz-gallery[data-columns="5"] .wp-caption-text {

				display:block;

			}

			.nz-gallery[data-columns="5"] .wp-caption:hover img,

			.nz-gallery[data-columns="5"] .wp-caption .ninzio-overlay:before {

				-webkit-transform:translateY(-16px);

				-ms-transform:translateY(-16px);

				transform:translateY(-16px);

			}

			.single .portfolio .main-content {

				padding-right: 30px;

			}

			.nz-counter .nz-count {

				margin-bottom: 25px;

			}

			.nz-section-back-video {

				width: 130%;

			}

			 

		}

	/*	DESKTOP

	/*-------------*/

		@media only screen and (min-width:1025px){

			/*	DESK HEADER

			/*-------------*/

				.sidebar-toggle {margin-left:15px;}

				.desk-height-60 .sidebar-toggle {margin-top:22px;}

				.desk-height-70 .sidebar-toggle {margin-top:27px;}

				.desk-height-80 .sidebar-toggle {margin-top:32px;}

				.desk-height-90 .sidebar-toggle {margin-top:37px;}

				.desk-height-100 .sidebar-toggle {margin-top:42px;}

				.desk-height-110 .sidebar-toggle {margin-top:47px;}

				.desk-height-120 .sidebar-toggle {margin-top:52px;}

				.desk-fixed-true .logo-fixed,

				.desk-fixed-false .logo-fixed,

				.fixed.desk-fixed-true .logo-desk,

				.fixed.desk-fixed-true .logo-stuck,

				.stuck-false .logo-stuck,

				.stuck-true .logo-desk

				{display: none;}

				.fixed.desk-fixed-true .logo-fixed {display: block;}

				.desk {display: block;}

				.mob-header {display: none;}

				.desk-slogan > a {color: inherit;}

				.desk .social-links a {

					width: 40px;

					height: 40px;

					line-height: 40px;

					font-size: 16px;

					float: left;

					border-radius: 0;

					background-color: transparent;

					border-width:1px;

					border-style: solid;

					border-top:none;

					border-bottom: none;

					border-right: none;

					-webkit-transition: all 300ms ease-out;

					transition: all 300ms ease-out;

					margin: 0;

				}

				.desk-ls-false .social-links a:last-child {

					border-right-width:1px;

					border-right-style: solid;

				}

				.desk .ls > div > ul > li > a {

					border-width:1px !important;

					border-style: solid !important;

					border-top:none !important;

					border-bottom: none !important;

				}

				.desk .ls > div.lang_sel_list_vertical > ul > li > a,

				.desk .ls > div.lang_sel_list_horizontal > ul > li > a {

					border-right:none !important;

				}

				.desk .ls > div.lang_sel_list_vertical > ul > li:last-child > a,

				.desk .ls > div.lang_sel_list_horizontal > ul > li:last-child > a {

					border-right-width:1px !important;

					border-right-style: solid !important;

				}

				.header-top {

					height: 40px;

					line-height: 40px;

					-webkit-box-sizing: initial; 

					-moz-box-sizing: initial;

					box-sizing: initial;

				}

				.header-top .social-links {

					overflow: hidden;

				}

				.stuck-true.stuck-top-false .header-top {

					display: none;

				}

				.header-top .container {

					height:inherit;

				}

				.desk-slogan {float: left;}

				.header-top .social-links,

				.header-top .ls {

					float: right;

					height:100%;

				}

				.desk .social-links {text-align: center;}

				.desk .header-content > .container {height: inherit;position: relative;}

				.header-cont {

					-webkit-transition: opacity 300ms ease-out;

					transition: opacity 300ms ease-out;

					position: relative;

					z-index:98;

					opacity:1;

				}

				.header-cont.search-active {

					z-index:-1;

					opacity:0;

				}

				.desk .search {

					position: absolute;

					width: 100%;

					height: inherit;

					z-index:-1;

					opacity: 0;

					-webkit-transition: opacity 300ms ease-out;

					transition: opacity 300ms ease-out;

				}

				.desk .search .icon-search2 {display: none;}

				.desk .search.animated {

					z-index:98;

					opacity: 1;

				}

				.desk .search form,

				.desk .search fieldset {

					margin: 0;

					border:none;

					position: relative;

					height: inherit;

				}

				.desk .search input[type="text"] {

					width: 100%;

					height: inherit;

					padding: 0px 60px 0px 0px;

					outline: none;

					border:none;

					background-color: transparent;

					font-size: 36px;

					font-weight:400;

					text-transform: uppercase;

					margin-bottom: 0;

				}

				.desk .search input[type="submit"] {display: none;}

				.desk .search span:before,

				.desk .search span {

					display: block;

					height:60px;

					width:60px;

					line-height:60px;

					text-align: center;

					position: absolute;

					top: 0;

					right: 0;

					cursor: pointer;

				}

				.desk-height-60 .search span{top:0px;}

				.desk-height-70 .search span{top:5px;}

				.desk-height-80 .search span{top:10px;}

				.desk-height-90 .search span{top:15px;}

				.desk-height-100 .search span{top:20px;}

				.desk-height-110 .search span{top:25px;}

				.desk-height-120 .search span{top:30px;}

				.desk .cart-toggle,

				.desk-menu {

					float: right;

					height:inherit;

					line-height: inherit;

				}

				.desk .cart-toggle {

					position: relative;

				}

				.desk-menu > ul > li {

					margin-right: 3px;

					position: relative;

					float: left;

					-webkit-transition: all 300ms ease-out;

					transition: all 300ms ease-out;

				}

				.desk-menu > ul > li:last-child {

					margin-right: 0 !important;

				}

				.desk-menu > ul > li > a,

				.desk .cart-toggle .cart-contents {

					display: block;

					padding: 0 15px;

					height: 40px;

					line-height: 40px;

					z-index: 2;

					-webkit-transition-timing-function:ease-out;

					-webkit-transition-property: background-color, color;

					-webkit-transition-duration:300ms;

					transition-timing-function:ease-out;

					transition-property: background-color, color;

					transition-duration:300ms;

					position: relative;

				}

				.desk .cart-toggle .cart-contents {

					padding: 0 15px !important;

				}

				.desk-di-true .desk-menu > ul > li > a:not(:only-child) {

					padding: 0 30px 0 15px;

				}

				.desk .cart-toggle .cart-contents,

				.desk .search-toggle {

					margin-right: 0;

					margin-left: 3px;

				}

				.desk .cart-toggle .icon-cart3,

				.desk .search-toggle {

					font-size: 16px !important;

				}

				.desk .cart-info {

					display: block;

					border-radius: 200px;

					color: #ffffff;

					width: 18px;

					height: 18px;

					text-align: center;

					line-height: 18px;

					position: absolute;

					top:1px;

					right:2px;

					font-size:10px;

					font-weight: bold;

				}

				.desk .cart-dropdown {

					position:absolute;

					top: 0;

					right: 0;

					z-index: 99;

					position: absolute;

					min-width:270px;

					max-width:270px;

					height: auto;

					display: none;

					z-index: 99;

					-webkit-backface-visibility:hidden;

				}

				.desk .cart-dropdown .widgettitle {

					display: none;

				}

				.desk .cart-dropdown .widget_shopping_cart {

					margin-bottom: 0;

				}

				.desk .widget_shopping_cart_content:not(:empty) {

					padding: 15px;

				}

				.desk .cart-dropdown .widget_shopping_cart .cart_list > li > a {font-weight: 600;}

				.desk .cart-dropdown .widget_shopping_cart .cart_list > li.empty {

					border-bottom: none !important;

					padding: 0;

				}

				.desk-height-60 .desk-menu > ul > li > a,

				.desk-height-60 .cart-toggle .cart-contents,

				.desk-height-60 .search-toggle

				{margin-top:10px;}

				.desk-height-70 .desk-menu > ul > li > a,

				.desk-height-70 .cart-toggle .cart-contents,

				.desk-height-70 .search-toggle

				{margin-top: 15px;}

				.desk-height-80 .desk-menu > ul > li > a,

				.desk-height-80 .cart-toggle .cart-contents,

				.desk-height-80 .search-toggle

				{margin-top: 20px;}

				.desk-height-90 .desk-menu > ul > li > a,

				.desk-height-90 .cart-toggle .cart-contents,

				.desk-height-90 .search-toggle

				{margin-top: 25px;}

				.desk-height-100 .desk-menu > ul > li > a,

				.desk-height-100 .cart-toggle .cart-contents,

				.desk-height-100 .search-toggle

				{margin-top: 30px;}

				.desk-height-110 .desk-menu > ul > li > a,

				.desk-height-110 .cart-toggle .cart-contents,

				.desk-height-110 .search-toggle

				{margin-top: 35px;}

				.desk-height-120 .desk-menu > ul > li > a,

				.desk-height-120 .cart-toggle .cart-contents,

				.desk-height-120 .search-toggle

				{margin-top: 40px;}

				.desk .search-toggle {

					padding: 0 15px;

					cursor: pointer;

					float: right;

					height: 40px;

					line-height: 40px;

				}

				.desk-menu .mi {padding-right:10px;}

				.desk-di-false .desk-menu .di {display: none;}

				.desk-menu 	ul > li > a > .di {

					right: 10px;

					font-size: 12px;

					line-height: 12px;

					height: 12px;

					width: 12px;

					margin-top: -5px;

				}

				.desk-menu > ul > li > a > .txt {

					position: relative;

					display: inline-block;

				}

				.effect-fill-boxed .desk-menu > ul > li > a

				{border-radius: 3px;}

				.effect-underline .desk-menu > ul > li > a:after {

					position: absolute;

					bottom:0px;

					left:0;

					width:100%;

					height:3px;

					content: '';

					opacity: 0;

					-webkit-transition: opacity 300ms ease-out;

					transition: opacity 300ms ease-out;

				}

				.desk-height-60.effect-underline .desk-menu > ul > li > a:after

				{bottom:-10px;}

				.desk-height-70.effect-underline .desk-menu > ul > li > a:after

				{bottom:-15px;}

				.desk-height-80.effect-underline .desk-menu > ul > li > a:after

				{bottom:-20px;}

				.desk-height-90.effect-underline .desk-menu > ul > li > a:after

				{bottom:-25px;}

				.desk-height-100.effect-underline .desk-menu > ul > li > a:after

				{bottom:-30px;}

				.desk-height-110.effect-underline .desk-menu > ul > li > a:after

				{bottom:-35px;}

				.desk-height-120.effect-underline .desk-menu > ul > li > a:after

				{bottom:-40px;}

				.effect-underline .desk-menu > ul > li:hover > a:after,

				.effect-underline .desk-menu > ul > li.one-page-active > a:after,

				.effect-underline .desk-menu > ul > li.current-menu-item > a:after,

				.effect-underline .desk-menu > ul > li.current-menu-parent > a:after,

				.effect-underline .desk-menu > ul > li.current-menu-ancestor > a:after

				{opacity: 1;}

				.effect-outline .desk-menu > ul > li > a:after {

					position: absolute;

					top: 0;

					left: 0;

					width: 100%;

					height: 100%;

					content: '';

					opacity: 0;

					border-radius: 3px;

					border-width:2px;

					border-style: solid;

					-webkit-transition: all 300ms ease-out;

					transition: all 300ms ease-out;

				}

				.effect-outline .desk-menu > ul > li:hover > a:after,

				.effect-outline .desk-menu > ul > li.one-page-active > a:after,

				.effect-outline .desk-menu > ul > li.current-menu-item > a:after,

				.effect-outline .desk-menu > ul > li.current-menu-parent > a:after,

				.effect-outline .desk-menu > ul > li.current-menu-ancestor > a:after

				{opacity: 1;}

				.effect-line .desk-menu > ul > li > a:after {

					position: absolute;

					bottom:0px;

					left:50%;

					margin-left: -15px;

					width:0px;

					height:2px;

					content: '';

					opacity: 0;

					-webkit-transition: opacity,width 300ms ease-out;

					transition: opacity,width 300ms ease-out;

				}

				.effect-line .desk-menu > ul > li:hover > a:after,

				.effect-line .desk-menu > ul > li.one-page-active > a:after,

				.effect-line .desk-menu > ul > li.current-menu-item > a:after,

				.effect-line .desk-menu > ul > li.current-menu-parent > a:after,

				.effect-line .desk-menu > ul > li.current-menu-ancestor > a:after

				{opacity: 1;width:30px;}

				.desk-menu ul li {position:relative;}

				.desk-menu > ul ul {

					position:absolute;

					top: 0;

					left: 0;

					z-index: 99;

					position: absolute;

					min-width: 230px;

					max-width: 230px;

					height: auto;

					display: none;

					z-index: 99;

					-webkit-backface-visibility:hidden;

				}

				.desk-menu > ul ul ul {left:230px;}

				.no-js .desk-menu li:hover > ul {display: block;}

				.desk-menu .sub-menu li > a {

					padding:7px 15px 7px 15px;

					border-bottom-width: 1px;
					text-decoration:none;
					border-bottom-style: solid;

				}

				.desk-menu .sub-menu > li:last-child > a {border-bottom:none !important;}

				.sub-effect-ghost .sub-menu {

					margin-top: 40px;

					opacity: 0;

				}

				.desk-menu > ul > .megamenu {position: static !important;}

				.desk-menu > ul > .megamenu > ul {

					min-width:1170px;

					max-width:1170px;

					height: auto;

					left:0 !important;

				}

				.desk-menu > ul > .megamenu > ul ul {

					display: block !important;

					opacity: 1 !important;

					margin-top: 0 !important;

					position: static !important;

					top: auto !important;

					left: auto !important;

					height: auto !important;

					min-width:100% !important;

					max-width:100% !important;

				}

				.desk-menu > ul > .megamenu > ul > li {

					width: 390px;

					padding:10px;

					border-right-width: 1px;

					border-right-style: solid;

					display: table-cell!important;

				}

				.desk-menu > ul > .megamenu > ul > li {

					width: 390px;

					padding:10px;

					border-right-width: 1px;

					border-right-style: solid;

					display: table-cell!important;

				}

				.desk-menu > ul > .megamenu.columns-4 > ul > li {width: 292.5px;}

				.desk-menu > ul > .megamenu > ul > li:last-child {border-right: none !important;}

				.desk-menu .megamenu .sub-menu .di {display: none !important;}

				.desk-menu .megamenu > .sub-menu > li:last-child > a {

					border-bottom-width: 1px !important;

					border-bottom-style: solid !important;

				}

				.stuck-true {

					position: absolute;

					width: 100%;

					z-index: 99;

					opacity: 1;

					top: 0;

					left: 0;

					box-shadow:none;

				}

				.stuck-true.stuck-height-60 .header-content {line-height: 60px;}

				.stuck-true.stuck-height-70 .header-content {line-height: 70px;}

				.stuck-true.stuck-height-80 .header-content {line-height: 80px;}

				.stuck-true.stuck-height-90 .header-content {line-height: 65px;}

				.stuck-true.stuck-height-100 .header-content {line-height: 100px;}

				.stuck-true.stuck-height-110 .header-content {line-height: 110px;}

				.stuck-true.stuck-height-120 .header-content {line-height: 120px;}

				.stuck-true.stuck-height-60 .sidebar-toggle {margin-top:22px;}

				.stuck-true.stuck-height-70 .sidebar-toggle {margin-top:27px;}

				.stuck-true.stuck-height-80 .sidebar-toggle {margin-top:32px;}

				.stuck-true.stuck-height-90 .sidebar-toggle {margin-top:37px;}

				.stuck-true.stuck-height-100 .sidebar-toggle {margin-top:42px;}

				.stuck-true.stuck-height-110 .sidebar-toggle {margin-top:47px;}

				.stuck-true.stuck-height-120 .sidebar-toggle {margin-top:52px;}

				.stuck-true.stuck-height-60 .search span{top:0px;}

				.stuck-true.stuck-height-70 .search span{top:5px;}

				.stuck-true.stuck-height-80 .search span{top:10px;}

				.stuck-true.stuck-height-90 .search span{top:15px;}

				.stuck-true.stuck-height-100 .search span{top:20px;}

				.stuck-true.stuck-height-110 .search span{top:25px;}

				.stuck-true.stuck-height-120 .search span{top:30px;}

				.stuck-true.stuck-height-60 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-60 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-60 .search-toggle

				{margin-top:10px;}

				.stuck-true.stuck-height-70 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-70 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-70 .search-toggle

				{margin-top: 15px;}

				.stuck-true.stuck-height-80 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-80 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-80 .search-toggle

				{margin-top: 20px;}

				.stuck-true.stuck-height-90 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-90 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-90 .search-toggle

				{margin-top: 15px;}

				.stuck-true.stuck-height-100 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-100 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-100 .search-toggle

				{margin-top: 30px;}

				.stuck-true.stuck-height-110 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-110 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-110 .search-toggle

				{margin-top: 35px;}

				.stuck-true.stuck-height-120 .desk-menu > ul > li > a,

				.stuck-true.stuck-height-120 .cart-toggle .cart-contents,

				.stuck-true.stuck-height-120 .search-toggle

				{margin-top: 40px;}

				.stuck-true.stuck-height-60.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-10px;}

				.stuck-true.stuck-height-70.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-15px;}

				.stuck-true.stuck-height-80.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-20px;}

				.stuck-true.stuck-height-90.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-25px;}

				.stuck-true.stuck-height-100.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-30px;}

				.stuck-true.stuck-height-110.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-35px;}

				.stuck-true.stuck-height-120.effect-underline .stuck-menu > ul > li > a:after

				{bottom:-40px;}

				.header.fixed .header-top {display: none;}

				.header.fixed {

					position: fixed;

					opacity: 0 !important;

					left: 0;

					box-shadow: 0 1px 3px rgba(0,0,0,0.11);

					-webkit-transform: translateY(-100%);

					-ms-transform: translateY(-100%);

					transform: translateY(-100%);

					-webkit-transition: top 0.3s, left 0.3s, margin 0.3s;

					transition: top 0.3s, left 0.3s, margin 0.3s;

				}

				.header.active {

					opacity: 1 !important;

					-webkit-transition: opacity 0.3s,-webkit-transform 0.3s, left 0.3s, margin 0.3s;

					transition: opacity 0.3s, transform 0.3s, left 0.3s, margin 0.3s;

					-webkit-transform: translateY(0%);

					-ms-transform: translateY(0%);

					transform: translateY(0%);

				}

				.js #gen-wrap.animate .header.fixed {

					left: -300px;

				}

				.fixed.fixed-height-60 .search span{top:0px;}

				.fixed.fixed-height-70 .search span{top:5px;}

				.fixed.fixed-height-80 .search span{top:10px;}

				.fixed.fixed-height-90 .search span{top:15px;}

				.fixed.fixed-height-100 .search span{top:20px;}

				.fixed.fixed-height-110 .search span{top:25px;}

				.fixed.fixed-height-120 .search span{top:30px;}

				.fixed.fixed-height-60 .sidebar-toggle {margin-top:22px;}

				.fixed.fixed-height-70 .sidebar-toggle {margin-top:27px;}

				.fixed.fixed-height-80 .sidebar-toggle {margin-top:32px;}

				.fixed.fixed-height-90 .sidebar-toggle {margin-top:37px;}

				.fixed.fixed-height-100 .sidebar-toggle {margin-top:42px;}

				.fixed.fixed-height-110 .sidebar-toggle {margin-top:47px;}

				.fixed.fixed-height-120 .sidebar-toggle {margin-top:52px;}

				.fixed.fixed-height-60 .header-content {line-height: 60px;}

				.fixed.fixed-height-70 .header-content {line-height: 70px;}

				.fixed.fixed-height-80 .header-content {line-height: 80px;}

				.fixed.fixed-height-90 .header-content {line-height: 90px;}

				.fixed.fixed-height-100 .header-content {line-height: 100px;}

				.fixed.fixed-height-110 .header-content {line-height: 110px;}

				.fixed.fixed-height-120 .header-content {line-height: 120px;}

				.fixed.fixed-height-60.effect-underline .desk-menu > ul > li > a:after {bottom:-10px;}

				.fixed.fixed-height-70.effect-underline .desk-menu > ul > li > a:after {bottom:-15px;}

				.fixed.fixed-height-80.effect-underline .desk-menu > ul > li > a:after {bottom:-20px;}

				.fixed.fixed-height-90.effect-underline .desk-menu > ul > li > a:after {bottom:-25px;}

				.fixed.fixed-height-100.effect-underline .desk-menu > ul > li > a:after {bottom:-30px;}

				.fixed.fixed-height-110.effect-underline .desk-menu > ul > li > a:after {bottom:-35px;}

				.fixed.fixed-height-120.effect-underline .desk-menu > ul > li > a:after {bottom:-40px;}

				.fixed.fixed-height-60 .desk-menu > ul > li > a,

				.fixed.fixed-height-60 .cart-toggle .cart-contents,

				.fixed.fixed-height-60 .search-toggle{margin-top:10px;}

				.fixed.fixed-height-70 .desk-menu > ul > li > a,

				.fixed.fixed-height-70 .cart-toggle .cart-contents,

				.fixed.fixed-height-70 .search-toggle{margin-top: 15px;}

				.fixed.fixed-height-80 .desk-menu > ul > li > a,

				.fixed.fixed-height-80 .cart-toggle .cart-contents,

				.fixed.fixed-height-80 .search-toggle{margin-top: 25px;}

				.fixed.fixed-height-90 .desk-menu > ul > li > a,

				.fixed.fixed-height-90 .cart-toggle .cart-contents,

				.fixed.fixed-height-90 .search-toggle{margin-top: 25px;}

				.fixed.fixed-height-100 .desk-menu > ul > li > a,

				.fixed.fixed-height-100 .cart-toggle .cart-contents,

				.fixed.fixed-height-100 .search-toggle{margin-top: 30px;}

				.fixed.fixed-height-110 .desk-menu > ul > li > a,

				.fixed.fixed-height-110 .cart-toggle .cart-contents,

				.fixed.fixed-height-110 .search-toggle{margin-top: 35px;}

				.fixed.fixed-height-120 .desk-menu > ul > li > a,

				.fixed.fixed-height-120 .cart-toggle .cart-contents,

				.fixed.fixed-height-120 .search-toggle{margin-top: 40px;}

			/*	MIX

			/*-------------*/

				.container,

				.solo-true .nz-related-products {

					max-width:90%;

					width:1170px;

				}

				.widget_calendar caption,

				.widget_calendar th,

				.widget_calendar td,

				.widget_calendar td#prev,

				.widget_calendar td#next,

				.widget_calendar td#prev span,

				.widget_calendar td#next span {

					height: 41px;

					width: 41px;

					line-height:41px;

				}

				.photos_from_flickr .flickr_badge_image {

					width:69px;

					height:69px;

					margin-right:5px;

					margin-bottom:5px;

				}

				.photos_from_flickr #flickr_badge_image3,

				.photos_from_flickr #flickr_badge_image6,

				.photos_from_flickr #flickr_badge_image9 {

					margin-right:5px;

				}

				.photos_from_flickr #flickr_badge_image4,

				.photos_from_flickr #flickr_badge_image8 {

					margin-right: 0px;

				}

				.nz-row .col8 .nz-tabs.vertical .tabset,

				.nz-row .col9 .nz-tabs.vertical .tabset,

				.nz-row .col10 .nz-tabs.vertical .tabset,

				.nz-row .col11 .nz-tabs.vertical .tabset,

				.nz-row .col12 .nz-tabs.vertical .tabset {

					width: 20%;

				}

				.nz-row .col8 .nz-tabs.vertical .tabs-container,

				.nz-row .col9 .nz-tabs.vertical .tabs-container,

				.nz-row .col10 .nz-tabs.vertical .tabs-container,

				.nz-row .col11 .nz-tabs.vertical .tabs-container,

				.nz-row .col12 .nz-tabs.vertical .tabs-container{

					width: 80%;

				}

				.nz-table th,

				.nz-table td {

					padding:15px;

				}

				.nz-pricing-table[data-columns="5"] .price {

					font-size: 42px;

					line-height: 42px;

				}

				.nz-persons[data-columns="4"] .social-links a {

					width: 40px;

					height: 40px;

					border-radius: 40px;

					font-size: 18px;

					line-height: 40px;

				}

				.nz-persons[data-columns="4"] .person:hover .social-links {

					-webkit-transform: translateY(-63px);

					-ms-transform: translateY(-63px);

					transform: translateY(-63px);

				}

				.slick-prev{left:150px;} 

				.slick-next{right:150px;} 

				.nz-recent-portfolio.grid.grid_4 *[data-grid="ninzio_01"],

				.nz-recent-portfolio.masonry.grid_4 *[data-grid="ninzio_01"],

				.nz-recent-posts.masonry.grid_4 *[data-grid="ninzio_01"],

				.loop.width-false .small .blog-post *[data-grid="ninzio_01"],

				.loop.width-true .medium .blog-post *[data-grid="ninzio_01"],

				.loop.width-false .small .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop.width-true .medium .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop.width-false .image-grid-small .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop.width-true .image-grid-medium .nz-portfolio-posts *[data-grid="ninzio_01"],

				.woocommerce .loop.width-false .small .product,

				.woocommerce *[data-rpn='4'] .related .product,

				.woocommerce.columns-4 .products .product,

				.loop .no-gap-grid-4 .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop .masonry-4 .nz-portfolio-posts *[data-grid="ninzio_01"]

				{width: 25%;}

				.loop.width-true .large .blog-post *[data-grid="ninzio_01"],

				.loop .small .main-content .blog-post *[data-grid="ninzio_01"],

				.loop.width-true .large .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop .small .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop.width-true .image-grid-large .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop .image-grid-small .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

				.woocommerce .loop .medium .product

				{width: 33.33333333333333%;}

				.loop.width-true .small .blog-post *[data-grid="ninzio_01"],

				.loop.width-true .small .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop.width-true .image-grid-small .nz-portfolio-posts *[data-grid="ninzio_01"],

				.woocommerce .loop.width-true .small .product

				{width: 20%;}

				.loop .no-gap-grid-4 .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

				.loop .masonry-4 .main-content .nz-portfolio-posts *[data-grid="ninzio_01"],

				.woocommerce .loop .main-content .small .product

				{width: 50%;}

				.loop.width-true .image-grid-small .project-details {

					padding: 15px !important;

				}

				.nz-gallery[data-columns="6"] .wp-caption-text {

					display:block;

				}

				.nz-gallery[data-columns="6"] .wp-caption:hover img,

				.nz-gallery[data-columns="6"] .wp-caption .ninzio-overlay:before {

					-webkit-transform: translateY(-16px);

					-ms-transform: translateY(-16px);

					transform: translateY(-16px);

				}

				.nz-circle {

					width: 292px;

				}

				.woocommerce .quantity,

				.woocommerce .shop_table.cart .quantity {

					width: 30%;

				}

				.widget_price_filter .price_slider_amount .button {float: left; margin-right: 5px;width: auto;}

				.widget_price_filter .price_slider_amount .price_label {float: right;}

				.nz-section-back-video {

					width: 100%;

				}

			/*	FOOTER

			/*-------------*/

				.footer-widget-area .widget_calendar caption,

				.footer-widget-area .widget_calendar th,

				.footer-widget-area .widget_calendar td,

				.footer-widget-area .widget_calendar td#prev,

				.footer-widget-area .widget_calendar td#next,

				.footer-widget-area .widget_calendar td#prev span,

				.footer-widget-area .widget_calendar td#next span {

					height:38px;

					width:38px;

					line-height:38px;

				}

				.footer-widget-area .photos_from_flickr .flickr_badge_image {

					width:63px;

					height:63px;

					margin-right:6px;

					margin-bottom:6px;

				}

				.footer-widget-area .photos_from_flickr #flickr_badge_image5,

				.footer-widget-area .photos_from_flickr #flickr_badge_image10,

				.footer-widget-area .photos_from_flickr #flickr_badge_image3,

				.footer-widget-area .photos_from_flickr #flickr_badge_image6,

				.footer-widget-area .photos_from_flickr #flickr_badge_image9 {

					margin-right:6px;

				}

				.footer-widget-area .photos_from_flickr #flickr_badge_image4,

				.footer-widget-area .photos_from_flickr #flickr_badge_image8 {

					margin-right: 0;

				}

			/*	SLIDER

			/*-------------*/

				

				#ninzio-slider[data-arrow="true"] #slider-arrow {display: block;}

				#ninzio-slider[data-autoheight="true"] {height:100%;height: 100vh;}

		}

		@media only screen and (min-width: 1301px) {

			#wrap.nz-boxed { width: 1280px;}

			.nz-boxed .header.fixed {

				width: 1280px;

				left:50%;

				margin-left: -640px; 

			}

			.js #gen-wrap.animate .nz-boxed .header.fixed {

				left:-50%;

				margin-left: 409px;

			}

			.slick-prev{left:200px;} 

			.slick-next{right:200px;} 

		}

		@media only screen and (min-width: 1600px) {

			.slick-prev{left:300px;} 

			.slick-next{right:300px;}

		}

		@media only screen and (min-width: 1601px) {

			.slick-prev{left:400px;} 

			.slick-next{right:400px;}

		}

div.wpcf7{margin-top:20px !important;}





/*-------------------   Amit  ----------------------*/



.log-in{background: transparent !important;

    border: solid 2px #fff;

    padding-left: 55px !important;

    padding-right: 55px !important;

	padding-bottom: 13px !important;

    padding-top: 12px !important;

    font-size: 18px !important;
	opacity:inherit !important;
    font-weight: 600 !important;}

.sign-up{background: #fff !important;
		border: solid 2px #fff;		
		color:#FB7400 !important;

    padding-left: 55px !important;

    padding-right: 55px !important;

	padding-bottom: 13px !important;
	opacity:inherit !important;
    padding-top: 12px !important;

    font-size: 18px !important;

    font-weight: 600 !important;}

.why-servtel .vc_icon_element-icon{color:#FB7400 !important; }



#why-servtel .col2 .col-inner{

	background: #fff !important;

    box-shadow:0 0 8px #ddd;

    padding-top:40px;

    padding-bottom:35px;

}

	

#why-servtel .col2 .col-inner span.vc_icon_element-icon{font-size:55px !important;}

#why-servtel .col2 .vc_icon_element{margin-bottom:22px !important;}

	

.why-servtel .fa-headphones{font-size:4.5em !important;}

.custom_button1{background:#fb7400 !important;}



#why-servtel{text-align:center !important;}

#why-servtel .col2{ display:inline-block; float:none !important; width:20% !important; margin-bottom:0 !important;}

.features_btn{background:#fb7400 !important; margin:0 auto; display:table;font-size:17px !important;}

.testimonial_head{margin-top: 40px !important;}

.trial_btn{font-size:17px !important;background:#fb7400 !important;}

.custom_button1{font-size:17px !important;}

#abt_bx .person.active .person-meta{padding:0 12px;}

.virtual_sldr_txt{width:60% !important;}

.custom_button2 .vc_btn3-color-grey{font-size:17px !important; background:#fb7400 !important; color:white !important; font-weight:700 !important;padding: 22px 50px !important;}



/* ==============       Pricing Page     ===================== */



.price_bg{padding:0 4px !important;display:table !important; margin: 0 0 8px !important;}

.price_bx{padding:0;height:255px; border-radius:6px;background:#fff; }

.price_bx1{margin:0;padding:15px 0;height:255px; border:1px #5d5d5d solid; border-radius:6px;background:#fff; text-align:center; vertical-align:middle; display:table-cell;}

.best_sell{position:relative; border:1px #fb7400 solid;  border-radius:0 0 6px 6px;}

.best_sell .sell_txt{background:#fb7400; text-align:center;width:100%; position:absolute; top: -42px; padding: 9px;box-shadow: 0px 0px 0 1px #fb7400; color:#fff; font-size:15px; font-weight:300; border-radius:6px 6px 0 0;}

.price_bx1 h2{margin:26px 0;padding:0;font-size:24px; text-transform:uppercase;}

.price_bx1 .price_txt{ font-size:35px; font-weight:bold; color:#232323;}

.price_bx1 .mon_txt{margin:12px 0;padding:0; font-size:15px; text-transform:uppercase;}

.price_bx1 .pay_btn a{margin:12px 0;padding: 7px 20px;background:#fb7400; color:#fff; text-transform:uppercase; font-weight:bold; font-size:16px; border-radius:3px; color:#fff !important; display:inline-block;}



.price_value{ text-align:center; font-size:15px; color:#454545; padding:18px 0; border:1px #ddd solid; margin:0; border-right:none; border-bottom:none;margin:0 !important;}

.price_value.last{border-right:1px #ddd solid !important;}

.price_value.btm{border-bottom:1px #ddd solid !important;}

.bg_min{padding:0 8px 1px 0 !important; margin:0 !important;}

.min_time{text-align:left; font-size:15px; color:#454545; padding:18px 0 18px 12px; background:#f4f1ec; font-size:18px;}



.get_started .vc_btn3-color-warning{background-color: #fb7400 !important; font-size: 18px !important; padding: 13px 35px !important;}

.trail_days{margin:0px auto; border:solid 1px #000; border-radius:10px 10px 10px 10px; height:150px; width:150px;}

.t_date{font-size: 70px; text-align: center; font-weight: 700; padding-bottom: 25px;

    padding-top: 30px;}

.t_days{height:45px; background:#000; border-bottom-left-radius:10px; 

	border-bottom-right-radius:10px; width:150px;

	}

.t_days h2 {font-size:30px; font-weight:400; text-align:center; color:#fff; padding-top: 5px;}

	

/* 			========	 */



@media only screen and (max-width:1200px) {

.desk-menu > ul > li > a, .desk .cart-toggle .cart-contents{padding-right: 17px !important; padding-left: 17px !important;}

[data-id=nz-colorbox-1]{width:900px !important;}

[data-id=nz-colorbox-1] h2 span{font-size:50px !important;}

[data-id=nz-colorbox-2]{width:900px !important;}

[data-id=nz-colorbox-2] h2 span{font-size:50px !important;}

[data-id=nz-colorbox-3]{width:900px !important;}

[data-id=nz-colorbox-3] h2 span{font-size:50px !important;}

.toll_free_bx .border-active.nz-box{min-height:200px;}

.virtual_no_bx .border-active.nz-box{min-height:250px;}

.virtual_sldr_txt{width:100% !important;}



}





@media only screen and (max-width:1023px) {

#why-servtel .col2{ width:33.3% !important; margin-bottom:25px !important;}

#why-servtel .col2 .col-inner{ padding:40px 15px 35px !important;}

#services_bx #nz-box-1{width:50%; display:inline-block; vertical-align:top; padding:0 15px;}

#services_bx #nz-box-2{width:50%; display:inline-block; vertical-align:top; padding:0 15px;}

#services_bx #nz-box-3{width:50%; display:inline-block; vertical-align:top; padding:0 15px;}

#services_bx #nz-box-4{width:50%; display:inline-block; vertical-align:top; padding:0 15px;}

#detail_bx h2{line-height:61px !important;}

.heading_3{font-size:26px !important; line-height:33px !important;}

.log-in{padding-left:40px !important;padding-right:40px !important;}

.sign-up{padding-left:40px !important;padding-right:40px !important;}

.footer .social-links{display:none !important;}

#text-2{margin:40px 0 10px; min-height: 300px;}

#nav_menu-3{margin:40px 0 10px; min-height: 300px;}

#nav_menu-2{margin:0; min-height: 300px;}

#text-3{/*margin:0;*/ min-height: 300px;}

[data-id=nz-colorbox-1]{width:1050px !important;}

[data-id=nz-colorbox-2]{width:1050px !important;}

[data-id=nz-colorbox-3]{width:1050px !important;}

.abt_txt .col6{width:100% !important;}

.cloud_pbx_txt .col6{width:100% !important;}

.toll_free_txt1 .col6{width:100% !important;}

.toll_free_txt2 .col6{width:100% !important;}

.virtual_txt1 .col6{width:100% !important;}

.virtual_txt2 .col6{width:100% !important;}

.host_pg_txt1 .col6{width:100% !important;}

.host_pg_txt2 .col6{width:100% !important;}



.toll_free_bx .border-active.nz-box{min-height:inherit !important;}

.virtual_no_bx .border-active.nz-box{min-height:inherit !important;}

.head_title{font-size: 36px !important; line-height:normal !important;}





}

@media only screen and (max-width:768px) {

		#why-servtel .col2{ width:50% !important; padding:0 15px!important;}

		#services_bx #nz-box-1{width:100%;}

		#services_bx #nz-box-2{width:100%;}

		#services_bx #nz-box-3{width:100%;}

		#services_bx #nz-box-4{width:100%;}

		#detail_bx h2{font-size:31px !important; line-height:45px !important;}

		.log-in{padding-left:30px !important;padding-right:30px !important;}

		.sign-up{padding-left:30px !important;padding-right:30px !important;}

		.sub_title{font-size: 35px !important; line-height:38px !important;}

		.head_title{font-size: 30px !important; line-height:38px !important;}

		#text-2{margin:40px 0 0; min-height: inherit !important;}

		#nav_menu-3{margin:40px 0 0; min-height: inherit !important;}

		#nav_menu-2{margin:40px 0 0; min-height: inherit !important;}

		#text-3{margin:40px 0 30px; min-height: inherit !important;}

		.logo-mob img{width:180px !important; max-width:180px !important; margin-top: -10px !important;}

		

}

@media only screen and (max-width:480px) {

		#why-servtel .col2{ width:100% !important;}

		#detail_bx h2{font-size:24px !important; line-height:40px !important;}

		.head_title{font-size: 27px !important; line-height:34px !important;}

		.nz-testimonials .testimonial{font-size: 16px !important;line-height: 26px !important;}

		.testimonial_container_custom .flexslider.nz-testimonials.in .slides { padding-top: 100px !important;}

		

}



/*--------------- popup demo form   -----------------*/

.pum-theme-1129{background-color:rgba(251, 116, 0,0.3) !important;}

.pum-theme-1129 .pum-content + .pum-close{background-color:#FB7400 !important;}



 .wpcf7-not-valid-tip{margin-top:-25px !important;}

 div.wpcf7-response-output{margin:-15px 13px 0px 0px !important;}
 
 
 
 
 
 
/****************************custom.css*****************************/

p{font-size: 15px; color: #3a3a3a;line-height: 23px;}

.fixed.fixed-height-90 .desk-menu > ul > li > a, .fixed.fixed-height-90 .search-toggle {margin-top: 16px;}
.ivr-banner{text-align: center !important;}
.ivr-banner a{display: inline-block !important;line-height: 46px !important;}
.sub_title_bx{margin:0;padding:0;}
.sub_title_bx img{margin:0 auto 20px; display:table;}
.sub_title_bx h1{font-size:55px; font-weight:bold;text-align: center;line-height: 60px;color: #ffffff}
.sub_title_bx p{font-size:23px; font-weight:normal; text-align: center;color: #ffffff;line-height:normal !important;}
.sub_title_bx a{margin:25px auto 0; text-align:center; display:table;padding:0; font-size:20px; color:#df7610; background:#fff; border-radius: 23px 23px 23px 23px; width:200px; height:50px; line-height:50px; text-transform:uppercase;font-weight:bold; cursor:pointer !important; overflow:hidden !important;border:1px #fff solid;}


#about-us .vc_separator{margin-bottom: 0;}
#abt-row2{overflow: inherit !important;}
#abt-row2 .abt-row2-img{left: 32%;right: 0;margin-top: -100px;position: absolute;}
#abt-row2 .abt-row2-txt{top: 0;}
#abt-row2 .wpb_single_image{margin-bottom: 12px;}
#abt-row2 p{font-size: 30px;line-height: normal; font-weight: lighter;}

#our-team .vc_col-sm-2{width: 206px;margin: 0 1%;}
#our-team .vc_col-sm-2 .vc_column-inner {background: #f6f6f6; border: 1px #dfdfdf solid;padding: 0;border-radius: 3px;overflow: hidden;}
#our-team .vc_col-sm-2 .wpb_wrapper, #our-team .vc_col-sm-2 .wpb_wrapper figure, #our-team .vc_col-sm-2 .wpb_wrapper figure .vc_single_image-wrapper, #our-team .vc_col-sm-2 .wpb_wrapper figure img{width: 100%;}

.t_social{margin: 0;padding: 0;list-style: none;text-align: center;width: 100%;}
.t_social li{display: inline-block;margin: 0 3px;}



.about-header{margin:0;padding:0; text-align: center;}
.about-header img{margin:0 auto 20px; display:table;}
.about-header h1{font-size:55px; font-weight:bold;text-align: center;line-height: 60px;color: #ffffff}
.about-header ul{margin: 9px 0 25px; padding: 0;list-style: none; text-align: center;display: inline-block; border: 1px #fff solid;}
.about-header ul:after{content: '';clear: both;display: block;}
.about-header ul li{display: inline-block;}
.about-header ul li a{background: url(images/abt-nav-vr-line.png) right center no-repeat; display: block;padding: 0 30px;font-size:20px; color: #fff;height: 60px; line-height: 60px;}
.about-header ul li.last a{background: none !important;}
.about-header ul li.active a{background: #fff;color: #df7610;}
/*.about-header ul li a:hover{background: #fff;color: #df7610;}*/
.about-header ul li a:focus{outline: none;}
.about-header p{font-size:35px; font-weight:normal; text-align: center;color: #ffffff;line-height:normal !important; font-weight: bold;}



.sub_title_bx2{margin:0;padding:0; width:62% !important;}
.sub_title_bx2 h1{font-size:46px; font-weight:bold;text-align: left;line-height: 55px;color: #ffffff}
.sub_title_bx2 p{font-size:23px; font-weight:normal; text-align: left;color: #ffffff;line-height:normal !important;}

#sms-bx{/*background:#d34716;*/ background-color: rgba(136, 60, 41, 0.7); border-radius:6px;padding:12px 15px;}
#sms-bx table{margin:0 !important;}
#sms-bx table tr td{padding:3px; vertical-align:top;}
#sms-bx table tr  tr:last-child td{padding:0 !important;}
#sms-bx table tr td td{padding:0 0 5px; !important;}
#sms-bx table tr td input{width:100%; height:32px; text-align:left; font-size:13px; margin:0;padding-left:10px; border:none;}
#sms-bx .btn{ margin:8px 0 0 0;padding:0; height:54px !important; line-height:54px;background: #e85324;
    background: -webkit-linear-gradient(#ef8824, #e85324);
    background: -o-linear-gradient(#ef8824, #e85324);
    background: -moz-linear-gradient(#ef8824, #e85324);
    background: linear-gradient(#ef8824, #e85324); text-align:center; font-weight:normal; text-transform:uppercase; color:#fff; font-size:16px;}
#sms-bx table tr td textarea{width:100%; min-height:68px; text-align:left; font-size:13px;margin:0;padding-left:10px; border:none;}


#audio-bx{background-color: rgba(136, 60, 41, 0.7);border-radius:6px;padding:12px 15px;}
#audio-bx table{margin:0 !important;}
#audio-bx table tr td{padding:3px; vertical-align:top;}
#audio-bx table tr td input{width:100%; height:32px; text-align:left; font-size:13px; margin:0;padding-left:10px; border:none;}
#audio-bx .btn{ margin:0;padding:0; height:54px !important; line-height:54px;background: #e85324;
    background: -webkit-linear-gradient(#ef8824, #e85324);
    background: -o-linear-gradient(#ef8824, #e85324);
    background: -moz-linear-gradient(#ef8824, #e85324);
    background: linear-gradient(#ef8824, #e85324); text-align:center; font-weight:normal; text-transform:uppercase; color:#fff; font-size:16px;}



#tollfree_wrap1 .col.col12{margin:0;text-align:center; font-size:18px; font-weight:600; line-height:28px;color:#484646;}
#tollfree-wrap2 .col.col4 .wpb_content_element{    margin-bottom: 15px !important;}
#tollfree-wrap2 .col.col4 .nz-column-text{padding:10px 20px 0; text-align:center;font-size:15px; color:#3a3a3a;}
#tollfree-wrap3 .col.col4 .wpb_content_element{    margin-bottom: 15px !important;}
#tollfree-wrap3 .col.col4 .nz-column-text{padding:10px 20px 0; text-align:center;font-size:15px; color:#3a3a3a;}
.heading{letter-spacing: 7px;text-transform: uppercase; font-weight:600 !important;}
.sub-heading{font-weight:bold !important;}
.icon-img{margin:0 auto; display:table;}
#tollfree-wrap4 .col.col12{margin-bottom:0 !important;}

#tollfree-wrap5 .txt-bx-1{background:url(images/24-hour-img.png) no-repeat; padding-left:100px;}
#tollfree-wrap5 .txt-bx-1 div{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal; display:block;}
#tollfree-wrap5 .txt-bx-1 p{color: #3a3a3a;  font-size: 15px;}

#tollfree-wrap6 .txt-bx-2{padding-left:100px;background:url(images/music_img.png) no-repeat;}
#tollfree-wrap6 .txt-bx-2 div{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
#tollfree-wrap6 .txt-bx-2 p{color: #3a3a3a;  font-size: 15px;}

#tollfree-wrap5 .txt-bx-3{padding-left:100px; background:url(images/call-recording.png) no-repeat;}
#tollfree-wrap5 .txt-bx-3 div{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
#tollfree-wrap5 .txt-bx-3 p{color: #3a3a3a;  font-size: 15px;}

#tollfree-wrap5 .txt-bx-4{padding-left:100px; background:url(images/rout-img.png) no-repeat;}
#tollfree-wrap5 .txt-bx-4 div{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
#tollfree-wrap5 .txt-bx-4 p{color: #3a3a3a;  font-size: 15px;}

#tollfree-wrap6 .txt-bx-5{padding-left:100px; background:url(images/block-img.png) no-repeat;}
#tollfree-wrap6 .txt-bx-5 div{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
#tollfree-wrap6 .txt-bx-5 p{color: #3a3a3a;  font-size: 15px;}

#tollfree-wrap6 .txt-bx-6{padding-left:100px; background:url(images/call-analist-img.png) no-repeat;}
#tollfree-wrap6 .txt-bx-6 div{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
#tollfree-wrap6 .txt-bx-6 p{color: #3a3a3a;  font-size: 15px;}





.call-icon{background:url(images/call-img.png) no-repeat; padding-left:100px;}
.call-icon strong{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
.call-icon p{color: #3a3a3a;  font-size: 15px;}

.call-rout{padding-left:100px;background:url(images/call-rout-img.png) no-repeat;}
.call-rout strong{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 400; font-style: normal;display:block;}
.call-rout p{color: #3a3a3a;  font-size: 15px;}

.call-track{padding-left:100px; background:url(images/call-track-img.png) no-repeat;}
.call-trackp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.call-track p{color: #3a3a3a;  font-size: 15px;}

.email-track{padding-left:100px; background:url(images/emai-img.png) no-repeat;}
.email-trackp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.email-track p{color: #3a3a3a;  font-size: 15px;}

.number-choice{padding-left:100px; background:url(images/number-img.png) no-repeat;}
.number-choicep{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.number-choice p{color: #3a3a3a;  font-size: 15px;}

.agent-sec{padding-left:100px; background:url(images/agent-img.png) no-repeat;}
.agent-secp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.agent-sec p{color: #3a3a3a;  font-size: 15px;}


.ivr-icon1{background:url(images/ivr-icon1.png) no-repeat; padding-left:100px;}
.ivr-icon1p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-icon1 p{color: #3a3a3a;  font-size: 15px;}

.ivr-icon2{    padding-left: 51px;
    background: url(images/ivr-icon2.png) no-repeat;
    margin-top: 147px;}
.ivr-icon2p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-icon2 p{color: #3a3a3a;  font-size: 15px;}

.ivr-icon3{padding-left:100px; background:url(images/ivr-icon3.png) no-repeat;}
.ivr-icon3p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-icon3 p{color: #3a3a3a;  font-size: 15px;}

.ivr-icon4{padding-left:100px; background:url(https://skycalls.in/images/ivr-icon4.png) no-repeat;}
.ivr-icon4p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-icon4 p{color: #3a3a3a;  font-size: 15px;}

.ivr-icon5{padding-left:100px; background:url(images/ivr-icon5.png) no-repeat;}
.ivr-icon5p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-icon5 p{color: #3a3a3a;  font-size: 15px;}

.ivr-icon6{padding-left:100px; background:url(images/group-agent-icon.png) no-repeat;}
.ivr-icon6p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-icon6 p{color: #3a3a3a;  font-size: 15px;}


.list{margin: 10px 0 0 0;padding:0 0 0 50px;list-style:none;}
.list li{display:block;padding:5px 0;background:url(images/bullet.png) 0 13px no-repeat;font-size:15px; color:#3a3a3a; padding-left: 15px;}


#tollfree-wrap6 .col.col4 .nz-column-text{color:#3a3a3a; font-size:15px;}
#tollfree-wrap7 .col.col6{margin-bottom:0 !important;}
#tollfree-wrap7 .col.col6 + .col.col6{padding-top:0px;padding-bottom:30px;}
#tollfree-wrap7 .col.col6 + .col.col6 .col-inner .nz-column-text {padding-top:15px; font-size:18px; color:#3a3a3a; line-height:28px;}
.toggle-btn{    margin: 15px 0 !important;
    border-left: 7px #69372b solid;
    background: #f6f6f5 !important;
    padding: 10px;}
.toggle-btn a{padding-left:20px !important; padding-right:40px !important;}
.toggle-btn a span.vc_tta-title-text{font-size: 21px; color: #757373;  line-height:30px !important;}
.toggle-btn .vc_tta-panel-heading{border:none !important;padding:10px 10px 10px 0;}
.toggle-btn .vc_tta-panel-body{border:none !important;}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon {right: 10px !important; left: inherit !important; width: 26px; border-radius: 50%; height: 26px;
    background: #df7610 !important; border: 8px #df7610 solid; color:#fff !important;}
i.vc_tta-controls-icon.vc_tta-controls-icon-plus:after{    border-color: #fff !important;}
i.vc_tta-controls-icon.vc_tta-controls-icon-plus:before{    border-color: #fff !important;}
.tollfree-wrap8{border-top:1px #e0e0df solid}
.custom_button2{    background: #69372b !important;
    border-radius: 24px 24px 24px 24px !important;
    padding: 12px 40px !important;
    margin: 0;
    border: 1px #69372b solid;
    margin-top: 32px;
}}
.custom_button5{background: #de730b; border-radius: 24px 24px 24px 24px !important; padding: 12px 40px !important;  margin: 35px auto 0 !important; display:table !important; border:1px #de730b solid;}
.widget_title {font-size:20px;color:#faf9f7; border-bottom:none;}


.sms-content{margin:0;}
.sms-content .col.col6{background:#fceee0;padding:15px 30px 30px;min-height:690px;}
.sms-content .col.col6 h3{margin:0;padding:0;font-size:25px; color:#3a3a3a; font-weight:600; }
.sms-content .col.col6 p{font-size:15px; color:#3a3a3a; line-height:22px;margin:10px 0;}
.sms-content .col.col6 ul{margin:0;padding:0;list-style:none;}
.sms-content .col.col6 ul li strong{font-weight:600; font-size:18px;line-height:24px;}
.sms-content .col.col6 ul li{display:block;padding:20px 30px 20px 50px; font-size:15px;line-height:22px;color:#3a3a3a;border-top:1px #eebb89 solid;}
.sms-content .col.col6 ul li:nth-child(1){background:url(images/time-bullet.png) no-repeat 5px 23px;}
.sms-content .col.col6 ul li:nth-child(2){background:url(images/mail-bullet.png) no-repeat left 23px;}
.sms-content .col.col6 ul li:nth-child(3){background:url(images/brand-bullet.png) no-repeat 5px 23px;}
.sms-content .col.col6 ul li:nth-child(4){background:url(images/sms-bullet.png) no-repeat 5px 23px;}
.sms-content .col.col6 ul li:nth-child(5){background:url(images/template-bullet.png) no-repeat 5px 23px;}
.sms-content .col.col6 .wpb_content_element{margin:0 !important;}

.sms-content .col.col6 h3 span{background:url(images/sms-icon.png) no-repeat right center; padding: 75px 75px 0 0; display: inline-block;}
.sms-content .col.col6 + .col.col6{background:#f9dabb;}
.sms-content .col.col6 + .col.col6 ul li{display:block;padding:20px 0 20px 70px; font-size:15px;line-height:22px;color:#3a3a3a;border-top:1px #fdf8f2 solid;}
.sms-content .col.col6 + .col.col6 ul li:nth-child(1){background:url(images/timer-bullet.png) no-repeat 8px 23px;}
.sms-content .col.col6 + .col.col6 ul li:nth-child(2){background:url(images/track-bullet.png) no-repeat left 23px;}
.sms-content .col.col6 + .col.col6 ul li:nth-child(3){background:url(images/label-bullet.png) no-repeat 5px 23px;}
.sms-content .col.col6 + .col.col6 ul li:nth-child(4){background:url(images/language-bullet.png) no-repeat 5px 23px;}
.sms-content .col.col6 + .col.col6 ul li:nth-child(5){background:url(images/contact-bullet.png) no-repeat 5px 23px;}

.skycalls-sel{margin:0;}
.skycalls-sel .container{width:75%;}
.skycalls-sel .col.col4{
	min-height:290px;
	margin:0;
	padding:20px 20px;
	background: #ebebeb;
	background: -webkit-linear-gradient(#ebebeb, #f6f6f5);
	background: -o-linear-gradient(#ebebeb, #f6f6f5);
	background: -moz-linear-gradient(#ebebeb, #f6f6f5);
	background: linear-gradient(#ebebeb, #f6f6f5);
}
.skycalls-sel .col.col4 + .col.col4{
	background: #f6f6f5;
	background: -webkit-linear-gradient(#f6f6f5, #ebebeb);
	background: -o-linear-gradient(#f6f6f5, #ebebeb);
	background: -moz-linear-gradient(#f6f6f5, #ebebeb);
	background: linear-gradient(#f6f6f5, #ebebeb);
}
.skycalls-sel .col.col4 + .col.col4 + .col.col4{
	background: #ebebeb;
	background: -webkit-linear-gradient(#ebebeb, #f6f6f5);
	background: -o-linear-gradient(#ebebeb, #f6f6f5);
	background: -moz-linear-gradient(#ebebeb, #f6f6f5);
	background: linear-gradient(#ebebeb, #f6f6f5);
}
.skycalls-sel .col.col4 .wpb_content_element{margin:0;}
.skycalls-sel .col.col4 figure{margin:0 auto; display:table;}
.skycalls-sel .col.col4 .nz-column-text{font-size:15px; color:#3a3a3a; line-height:22px; text-align:justify;}
audio::-webkit-media-controls-volume-slider {display:none;}
audio::-moz-media-controls-volume-slider {display:none;}
audio::-o-media-controls-volume-slider {display:none;}
audio::-ms-media-controls-volume-slider {display:none;}
.audio-txt{display:inline-block;font-size: 15px;padding: 5px 0 5px 30px; vertical-align:top; color:#3a3a3a;margin-right:10px;background:url(images/audio-icon.png) 0 10px no-repeat;}
.bg-audio{background:#fff;display:block;width:100%; height:100%; border-radius:3px; border:#ec6d00 3px solid;height:58px; padding: 9px 10px;}
#audio-bx p{font-size:13px; margin:0 0 4px;}
.input-field{margin:0;padding:0; height:34px; border-radius:3px; width:100%;}
.broadcast-voice-message .container{width:80%;}
.broadcast-voice-message{text-align:center !important;}
.broadcast-voice-message .col.col4{float:none !important; display:inline-block !important;}
.broadcast-voice-message .col.col4 .nz-column-text { padding: 0 20px; text-align: center;font-size: 15px; color: #3a3a3a;}
.grade-bx{margin:0;padding:0; text-align:center;}
.grade-bx .col.col2{width:20% !important; float:none !important; display:inline-block; vertical-align:top;}
.grade-bx .col.col2 .wpb_content_element{margin:0 0 15px;}
.grade-bx .col.col2 figure{margin:0 auto; width:103px; display:table;}
.grade-bx .col.col2 img{width: 103px;height: 103px !important; margin: 10px 0 0; border-radius: 50%; box-shadow: 0 0 11px #ddd;}
.grade-bx .col.col2 .nz-column-text{font-size:16px; color:#3a3a3a; line-height:22px; text-align:center;margin:10px 0 0 0;}
.wrapper-1{
background: #ef8824;
background: -webkit-linear-gradient(#ef8824, #e85324);
background: -o-linear-gradient(#ef8824, #e85324);
background: -moz-linear-gradient(#ef8824, #e85324);
background: linear-gradient(#ef8824, #e85324);	
}


.ivr-bx{background:url(https://skycalls.in/images/ivr-icon4.png) no-repeat; padding-left:100px;}
.ivr-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;display:block;}
.ivr-bx p{color: #3a3a3a;  font-size: 15px;}

.agent-bx{padding-left:100px;background:url(images/agent-icon3.png) no-repeat;}
.agent-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.agent-bx p{color: #3a3a3a;  font-size: 15px;}

.recording-bx{padding-left:100px; background:url(images/record-icon3.png) no-repeat;}
.recording-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.recording-bx p{color: #3a3a3a;  font-size: 15px;}

.fordword-bx{padding-left:100px; background:url(images/forword-icon3.png) no-repeat;}
.fordword-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.fordword-bx p{color: #3a3a3a;  font-size: 15px;}

.call-bx{padding-left:100px; background:url(images/call-icon3.png) no-repeat;}
.call-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.call-bx p{color: #3a3a3a;  font-size: 15px;}

.rout-bx{padding-left:100px; background:url(images/call-rout-icon3.png) no-repeat;}
.rout-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.rout-bx p{color: #3a3a3a;  font-size: 15px;}

.sms-alert{padding-left:100px; background:url(images/SMS-alert-icon.png) no-repeat;}
.sms-alertp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.sms-alert p{color: #3a3a3a;  font-size: 15px;}

.Analytic-bx{padding-left:100px; background:url(images/analystic-icon3.png) no-repeat;}
.Analytic-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.Analytic-bx p{color: #3a3a3a;  font-size: 15px;}

.update-bx{padding-left:100px; background:url(images/update-icon3.png) no-repeat;}
.update-bxp{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.update-bx p{color: #3a3a3a;  font-size: 15px;}

.agent-bx-2{padding-left:100px; background:url(images/agent2-icon3.png) no-repeat;}
.agent-bx-2p{margin:0 !important;font-family: sans-serif;font-size: 20px;color: #3a3a3a; line-height: 40px; text-align: left;font-family: sans-serif; font-weight: 600; font-style: normal;}
.agent-bx-2 p{color: #3a3a3a;  font-size: 15px;}
.fixed .header-content{background:#fff !important;}

.wrapper3 .col.col12 figure{margin:0 auto; display:table;}
.last-wrapper .col.col2 figure{margin:0 auto; display:table;}
.last-wrapper .col.col2 .wpb_content_element{margin-bottom:15px;}
.ivr-audio{margin:0 auto; width:35%; border:3px #de730b solid;border-radius:3px;padding: 8px 0 2px;}

#ninzio-slides .button.rounded {border-radius: 30px 30px 30px 30px;}

.slider-canvas .button.button-normal.rounded{border-radius: 30px 30px 30px 30px; background:#fff !important; color:#333; padding: 15px 40px !important;}
.slider-canvas .button.button-normal.rounded + .button.button-normal.rounded{border-radius: 30px 30px 30px 30px;background:#de730b !important; color:#fff !important;}

footer .container{width:90% !important;}
#nav_menu-4 .widget_title{margin:0 !important}
#nav_menu-4 ul{margin:0;padding:0;}
#nav_menu-4 ul li a{padding:0 !important;color:#ababab; font-size:13px; font-weight:bold; line-height:26px;}
#nav_menu-4 ul li a:hover{color:#fff !important;}

#nav_menu-3 .widget_title{margin:0 !important}
#nav_menu-3 ul{margin:0;padding:0;}
#nav_menu-3 ul li a{padding:0 !important;color:#ababab; font-size:13px; font-weight:bold; line-height:26px;}
#nav_menu-3 ul li a:hover{color:#fff !important;}
#text-3 h6.widget_title{margin:0 !important}
#text-3 h5{font-size:16px;color:#ffffff; font-weight:600; font-size:16px;color:#ffffff;margin:0;}
.footer-widget-area{background:#1a1a1a !important;}
.footer-content{background:#2b2b2b;}
.ftr-list{margin:5px 0 0 0;padding:0; list-style:none;}
.ftr-list li{display:block; width:100%; padding:3px 0; font-size:14px;}
.ftr-list li:nth-child(1){background: url(https://skycalls.in/images/phone-small-icon.png) 0 5px no-repeat; padding-left: 23px;}
.ftr-list li:nth-child(2){background: url(https://skycalls.in/images/phone-small-icon.png) 0 8px no-repeat; padding-left: 23px;}
.ftr-list li:nth-child(3){background: url(https://skycalls.in/images/sales-small-icon.png) 0 8px no-repeat; padding-left: 23px;}
.ftr-list li:nth-child(4){background: url(https://skycalls.in/images/sales-small-icon.png) 0 8px no-repeat; padding-left: 23px;}

.footer-info .copy-right-txt{line-height:40px;}
.social-bx{margin:0px 11% 0px 0px;padding:0;list-style:none;text-align:right; width:240px;}
.social-bx li{ display:inline-block;margin: 0 2px;}
.social-bx li img{width:41px; height:38px !important; border-radius:50%;border:2px #515050 solid; vertical-align:top;}


.top-nav{margin: 0; position: relative; top: 8px; width: 100%;}
.top-nav ul{width:100%; margin:0;padding:0 15px 0 0; text-align:right;}
.top-nav ul li{display:inline-block;}
.top-nav ul li a{margin:0;padding:0 15px 0 20px; color:#fff; font-size:12px; font-weight:600;}
.top-nav ul li:last-child a{padding:0 !important;}
/*.top-nav ul li:nth-child(1) a{background: url(images/chat-icon.png) 0 1px no-repeat;}*/
.top-nav ul li:nth-child(3) a{background: url(https://skycalls.in/images/suport-icon2.png) 0 4px no-repeat;}
.top-nav ul li:nth-child(4) a{background: url(https://skycalls.in/images/phone-icon2.png) 0 1px no-repeat;}
.top-nav ul li:nth-child(5) a{background: url(https://skycalls.in/images/phone-icon2.png) 0 1px no-repeat;}
.contact_bx1 {float: left;margin: 0;padding: 0 5px;width: 100%;}
.contact_bx1 div {text-align: center;}
.contact_bx1 div {border: 1px solid #eee;border-radius: 3px;padding: 15px 0 0;text-align: center;box-shadow:5px 25px 15px -23px black;}
.contact_bx1 div h5 {    background-color: rgb(105 54 42);color: #fff;font-size: 16px;font-weight: normal;padding: 14px 0;margin-bottom:0px;border-radius:0 0 5px 5px;}
.get-in-touch{background-color:#f6f6f5;padding:15px;}
.get-in-input {-moz-border-bottom-colors: none !important;-moz-border-left-colors: none !important;-moz-border-right-colors: none !important;-moz-border-top-colors: none !important;
background: #f6f6f5 none repeat scroll 0 0 !important;border-color: currentcolor !important;border-image: none !important;border-style: none none solid !important;border-width: medium medium 1px !important;}
.contact-add {color: #3a3a3a;display: block; font-family:sans-serif;font-size: 15px;font-style: normal; font-weight: bold; line-height:normal;  margin: 0;  text-align: left;}
.get-in-sub{background: #f6f6f5 none repeat scroll 0 0 !important;border: 1px solid black !important;border-radius: 48px !important;text-align: center !important;color:black !important;}
header.fixed .top-nav{display:none !important;}
.fixed .header-content{height:90px !important;border-bottom: 1px #eee solid; box-shadow: 0 0 5px #ddd;}
.chat-btn-bottom{position:fixed; bottom:34px; right:20px; z-index:999;    text-align: center;z-index: 999;color: #666; font-weight:bold;font-size:14px;}
.chat-btn-bottom img{cursor:pointer !important;}
.contact-pg .col.col12{margin-bottom:0 !important;}
/*.rotate img {-webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s; -o-transition-duration: 0.8s; -ms-transition-duration: 0.8s; transition-duration: 0.8s; -webkit-transition-property: -webkit-transform;    -moz-transition-property: -moz-transform;  -o-transition-property: -o-transform; -ms-transition-property: -ms-transform;  transition-property: transform;  overflow: hidden;}
.rotate:hover img {-webkit-transform:rotate(360deg); -moz-transform:rotate(360deg);  -o-transform:rotate(360deg); -ms-transform:rotate(360deg);}*/
.terms-pg p{font-size:14px !important; line-height:27px;}
.terms-pg h3{font-weight:600; color:#de730b; font-size:21px;}
.terms-pg h4{font-weight:600; color:#de730b; font-size:17px;}

.policy-pg h3{font-weight:600; color:#de730b; font-size:21px;}
.policy-pg h4{font-weight:600; color:#de730b; font-size:17px;}
.policy-pg p{font-size:14px !important; line-height:27px;}

.bg-bulk-sms{background:url(https://www.skycalls.in/images/phone-img2.png) no-repeat right 10% bottom;}
/*.bg-voice-broadcasting{background:url(https://www.skycalls.in/images/broadcast-rt-img.png) no-repeat right 5% bottom;}*/
.fup-pg p{font-size: 14px !important; line-height: 27px;}
.fup-pg ol li{font-size: 14px !important; line-height: 27px;}

.price-bx-1 .nz-column-text{text-align:center; font-size:16px; color:#3a3a3a;margin:6px 0;}
.price-bx-2 .col.col3{padding:10px;}
.price-bx-2 .col.col3 .col-inner{background:#fff; padding:40px 15px !important;}
.price-bx-2 .col.col3 .col-inner:hover{box-shadow:0 0 10px #ccc;}
.price-bx-2 figure{margin:0 auto !important; display:table !important;}
.price-bx-2 img{margin:5px auto;}
.price-bx-3 p{text-align:center; font-size:16px; line-height:24px; color:#3a3a3a;}
.price-bx-3 .price-btn-bx{text-align:center; margin-top:50px;}
.price-bx-3 .price-btn-bx a.btn1{display:inline-block;margin:0;text-align: center;padding: 0;font-size: 20px;color: #fff;background: #de730b;border-radius: 23px 23px 23px 23px;width: 230px;height: 50px;line-height: 50px;text-transform: uppercase; font-weight: bold; cursor: pointer !important; overflow: hidden !important; border: 1px #de730b solid;box-shadow: 0px 4px 0px 0px #cbc2b8;}
.price-bx-3 .price-btn-bx a.btn2{display:inline-block;margin:0;text-align: center;padding: 0;font-size: 25px;color: #df7610;background: #fff;border-radius: 23px 23px 23px 23px;width: 280px;height: 50px;line-height: 50px;text-transform: uppercase; font-weight: bold; cursor: pointer !important; overflow: hidden !important; border: 1px #fff solid;box-shadow: 0px 4px 0px 0px #f6d8bd;}
.price-bx-3 .price-btn-bx p{display:inline-block;margin:0; margin: 0 35px; height: 50px; font-size: 20px;  padding-top: 12px;}
.chat-btn-3{cursor:pointer !important;}
.channel-partner .col.col6{margin-bottom:0 !important;}
.channel-partner .col.col6 p>span{font-size: 15px; color: #484949; line-height: 30px;}
.channel-partner .col.col6 p{margin:0 !important;}
.channel-partner .col.col12{margin-bottom:0 !important;}
.channel-partner .col.col12 p{margin:0 !important;}
.channel-partner .col.col12 p>span{font-size: 15px; color: #484949; line-height: 30px;}

/***************case-studies******************/
#case-studies-pg #nz-recent-portfolio-1{background:#fff !important;}
#case-studies-pg .nz-portfolio-filter{padding:0 !important; line-height:10px !important;background:#fcf0e4;margin-bottom:30px;}
#case-studies-pg .nz-portfolio-filter span.button{box-shadow:none !important; color:#3a3a3a !important;margin-bottom:0 !important;border-top:3px #fcf0e4 solid;}
#case-studies-pg .nz-portfolio-filter span.active{background:#fff;color:#de730b !important; border-top:3px #de730b solid;}
#case-studies-pg .nz-portfolio-filter span.button:hover, #case-studies-pg .nz-portfolio-filter span.button:focus{background:#fff;color:#de730b !important; border-top:3px #de730b solid;}
#case-studies-pg .nz-portfolio-posts.shuffle{width:96%;margin:0 auto;}
#case-studies-pg .mix.post img{width:100% !important;}
#case-studies-pg a .ninzio-overlay{display:none !important;}
#case-studies-pg .nz-portfolio-filter span[data-group='all']{background: url(/images/all-icon.png) center top 10px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='all']:hover{background: url(/images/all-icon-hover.png) center top 10px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='all'].active{background: url(/images/all-icon-hover.png) center top 10px no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='advertising']{background: url(/images/advertising-icon.png) center top 10px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='advertising']:hover{background: url(/images/advertising-icon-hover.png) center top 10px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='advertising'].active{background: url(/images/advertising-icon-hover.png) center top 10px no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='e-commerce']{background: url(/images/e-commerce-icon.png) center top 10px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='e-commerce']:hover{background: url(/images/e-commerce-icon-hover.png) center top 10px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='e-commerce'].active{background: url(/images/e-commerce-icon-hover.png) center top 10px no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='education']{background: url(/images/education.png) center top 10px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='education']:hover{background: url(/images/education-hover.png) center top 10px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='education'].active{background: url(/images/education-hover.png) center top 10px no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='home-decor']{background: url(/images/home-decor-icon.png) center top 10px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='home-decor']:hover{background: url(/images/home-decor-icon-hover.png) center top 10px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='home-decor'].active{background: url(/images/home-decor-icon-hover.png) center top 10px no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='hospitals']{background: url(/images/hospital-icon.png) center top 10px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='hospitals']:hover{background: url(/images/hospital-icon-hover.png) center top 10px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='hospitals'].active{background: url(/images/hospital-icon-hover.png) center top 10px no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='political-parties']{background: url(/images/political-icon.png) center top 6px no-repeat; padding-top: 53px;}
#case-studies-pg .nz-portfolio-filter span[data-group='political-parties']:hover{background: url(/images/political-icon-hover.png) center top 6px no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='political-parties'].active{background: url(/images/political-icon-hover.png) center top 6px no-repeat #fff;}

#case-studies-last-para{border-top:none !important;}
.page-full-width{padding:0;}

.bg-conference-call{background:url(images/confrence-banner-img.png) no-repeat right 1% bottom 30%;}
.conference-banner h1{font-size: 40px;line-height: 50px;}
.conference-banner h4{font-size: 25px;font-weight:normal;color:#fff;margin-bottom:10px;}
.conference-banner ul{margin:0 0 15px;padding:0;list-style:none;}
.conference-banner ul li{display:block; color:#fff; font-size:15px;padding: 2px 0 2px 20px;font-weight:lighter;background:url(images/white-bullet.png) left top 9px no-repeat;}

#CallConference{display:none;}
#conference-call-bx{/*background: #d34716;*/ background-color: rgba(136, 60, 41, 0.7); border-radius: 6px;padding: 12px 15px 1px;width:100%;margin-top: 20px;}
#conference-call-bx div.wpcf7{margin:0 !important;}
#conference-call-bx .fld{width:24.5%;display:inline-block;vertical-align: top;padding:0;}
#conference-call-bx .fld input{padding-left:10px;font-size:14px !important;}
#conference-call-bx .fld.captcha{width:auto;}
#conference-call-bx .fld.btn{width:auto;padding:0;}
#conference-call-bx .fld.btn input{text-transform:capitalize !important;height:75px;padding: 18px 36px;margin:0 !important;}
#conference-call-bx .fld.btn span{display:none;}
#conference-call-bx p{font-size:13px; font-weight:lighter;}
#conference-call-bx span{width:100%;padding-right:3px;}
#conference-call-bx span input{margin-bottom:4px;float:left;height:44px;border:1px #ec6e00 solid;width:100%;}

#conference-call-bx table{margin:0 !important;padding:0;}
#conference-call-bx table tr{padding:0 !important;}
#conference-call-bx table tr td:nth-child(1){width:40%;}
#conference-call-bx table tr td:nth-child(2){width:25%;}
#conference-call-bx table tr td:nth-child(3){width:35%;}
#conference-call-bx table tr td{padding:0 6px 6px 0; vertical-align:top !important;}
#conference-call-bx table tr td:last-child{padding-right:0 !important;}
#conference-call-bx table tr:last-child td{padding-bottom:0 !important;}
#conference-call-bx table tr td input{width:100%; height:45px; text-align:left; font-size:13px; margin:0;padding-left:10px; border:none;border-radius:3px;}
#conference-call-bx table tr td .form-group {margin-bottom: 7px;}
#conference-call-bx tr td .btn{ margin:0;padding:0; height:45px !important; line-height:45px;background: #e85324; width:100%;
    background: -webkit-linear-gradient(#ef8824, #e85324);
    background: -o-linear-gradient(#ef8824, #e85324);
    background: -moz-linear-gradient(#ef8824, #e85324);
    background: linear-gradient(#ef8824, #e85324); text-align:center; font-weight:normal; text-transform:capitalize; color:#fff; font-size:15px;border-radius:3px;}

#click-to-call{/*background: #d34716;*/background-color: rgba(136, 60, 41, 0.7);border-radius: 6px;padding: 12px 15px 1px;width:70%;}
#click-to-call table{margin:0 !important;padding:0;}
#click-to-call table tr{padding:0 !important;}
#click-to-call table tr td{padding:0; vertical-align:top !important;}
#click-to-call table tr:nth-child(2) td:first-child{width:275px !important;}
#click-to-call table tr td input{width:100%; height:39px; text-align:left; font-size:13px; margin:0;padding-left:10px; border:none;border-radius:3px;}
#click-to-call table tr td .form-group {margin-bottom: 7px;}
.bg-click-to-call .note{font-size:12px;color:#fff;margin: 4px 0 0 4px;width:70%;}
#click-to-call tr td button{ margin:0;padding:0; height:68px !important; line-height:68px;background: #e85324; width:100%;
    background: -webkit-linear-gradient(#ef8824, #e85324);
    background: -o-linear-gradient(#ef8824, #e85324);
    background: -moz-linear-gradient(#ef8824, #e85324);
    background: linear-gradient(#ef8824, #e85324); text-align:center; font-weight:normal; text-transform:uppercase; color:#fff; font-size:16px;border-radius:3px;}
#conference-call-wrapper .container{width:70%;}
#conference-call-wrapper{text-align:center !important;}
#conference-call-wrapper .col.col3{float:none !important; display:inline-block !important;width:45%; vertical-align:top;margin-bottom:50px;}
#conference-call-wrapper .col.col3 .col-inner .wpb_raw_code{margin-bottom:22px;}
#conference-call-wrapper .col.col3 .nz-column-text { padding: 0 20px; text-align: center;font-size: 15px; color: #3a3a3a;}
#conference-call-wrapper .col.col3 p.vc_custom_heading{margin-bottom:12px !important;}
.hvr-shutter-out-horizontal2{text-decoration:none !important;}

.TollFreeContactNumber{text-align:center;}
.TollFreeContactNumber a{font-weight: normal !important;font-size: 20px;text-decoration: none;color: #fff !important;border: 1px #fff solid; border-radius: 3px; display: inline-block; padding: 5px 15px; margin: 0 5px; background:none;height: auto; line-height:normal;width:auto; transition : all 0.25s; }

.TollFreeContactNumber a:hover{ background-color: #FFF; color: #e95724 !important ;  }

a{text-decoration:none !important;}
.stuck-true .desk-menu > ul > li:last-child:hover > a{color:#df7610;}
.header.fixed .desk-menu > ul > li:last-child:hover > a{color:#fff !important;}
.bg-missed-call{background:url(images/miss-call-banner-img.png) no-repeat right 10% bottom;}
.bg-missed-call .conference-banner p{width:80%;}
.bg-missed-call .conference-banner p a{font-weight:bold !important; font-size:22px; text-decoration:none;color:#fff;border: 1px #fff solid;border-radius: 3px;display: inline-block;padding: 4px 15px;margin: 0 5px;}
.bg-click-to-call{background:url(images/click-to-call-banner-img.png) no-repeat right 5% bottom 35%;}
.bg-click-to-call p{width:70%;}

#click-to-call-wrapper .col6:nth-child(1){margin:0;padding:30px 20px 30px 190px;background:url(images/business-img.png) no-repeat left 15px center #fceee0;}
#click-to-call-wrapper .col6:nth-child(2){margin:0;padding:30px 20px 30px 190px; background:url(images/web-console-img.png) no-repeat left 15px center #f9dabb;}
#click-to-call-wrapper .col6 .nz-column-text{font-size:16px; color:#1c1b1b;line-height:28px;}

.testimonialsserv {text-align:right;}
.testimonialsserv h2{margin: 0 !important;}
.testimonialsserv h3{margin: 0 !important;}
.testimonialsserv p{margin: 0 !important;color:#e95a24;}
.testimonials_con >div.container {text-decoration: none; transition: border 1s; border: 1px solid #eee !important;  box-shadow: 0px 6px 18px -6px #ccc !important;border-radius: 5px !important;}
.testimonials_con >div.container:hover, .testimonials_con >div.container:focus {border: 1px solid #e85324 !important;box-shadow: 0px 6px 18px -6px #e85324 !important;}
.testimonials_con .col3 img{border: 1px #ddd solid;}

.team-img1{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -10px no-repeat;}
.team-img2{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -10px no-repeat;}
.team-img3{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -186px no-repeat;}
.team-img4{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -186px no-repeat;}
.team-img5{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -362px no-repeat;}

.team-img6{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -362px no-repeat;}
.team-img7{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -538px no-repeat;}
.team-img8{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -538px no-repeat;}
.team-img9{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -714px no-repeat;}
.team-img10{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -714px no-repeat;}

.team-img11{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -890px no-repeat;}
.team-img12{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -890px no-repeat;}
.team-img13{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -1066px no-repeat;}
.team-img14{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -1066px no-repeat;}
.team-img15{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -1242px no-repeat;}

.team-img16{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -1242px no-repeat;}
.team-img17{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -1418px no-repeat;}
.team-img18{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -1418px no-repeat;}
.team-img19{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -1594px no-repeat;}
.team-img20{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -1594px no-repeat;}

.team-img21{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -2954px no-repeat;}
.team-img22{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -2954px no-repeat;}
.team-img23{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -10px -3135px no-repeat;}
.team-img24{width: 204px;height: 166px;display: block; background: url(images/sprite-img.png) -234px -3135px no-repeat;}



.brand-img1{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 26px -1781px no-repeat;}
.brand-img2{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -210px -1781px no-repeat;}
.brand-img3{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -2px -1901px no-repeat;}
.brand-img4{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -249px -1901px no-repeat;}

.brand-img5{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 60px -2028px no-repeat;}
.brand-img6{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -185px -2028px no-repeat;}
.brand-img7{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 26px -2170px no-repeat;}
.brand-img8{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -210px -2170px no-repeat;}

.brand-img9{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 32px -2305px no-repeat;}
.brand-img10{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -202px -2300px no-repeat;}
.brand-img11{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 26px -2464px no-repeat;}
.brand-img12{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -207px -2464px no-repeat;}

.brand-img13{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 71px -2619px no-repeat;}
.brand-img14{width: 269px; height: 135px; display: block; background: url(images/sprite-img.png) -179px -2619px no-repeat;}
.brand-img15{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) 15px -2783px no-repeat;}
.brand-img16{width: 250px; height: 135px; display: block; background: url(images/sprite-img.png) -224px -2783px no-repeat;}




.testi_txt{font-size: 18px;color: #3a3a3a;margin-bottom: 15px; line-height: 30px;font-family: sans-serif; font-weight: lighter;}
.testi_quote{font-weight: bold;color: #777;}
.testimonialsserv h2{font-size: 18px; font-weight: bold !important;color: #3a3a3a; font-weight: bold;}
.testimonialsserv h2{font-size: 18px; font-weight: normal;}
.testimonialsserv p{font-size: 14px;}

.grade-bx .col2 p.vc_custom_heading a{color: #de730b !important;} 



.rocket {display: flex; animation: shimmy 4s infinite; animation-direction: alternate;}
@keyframes shimmy {
  0% {
    transform: translate(0, 0);    
  }
  100% {
    transform: translate(10px, 10px);
  }
}


#wrapper-brand-slider .bx-wrapper{box-shadow: none;border: none;}
.brand-slider img{margin: 0 auto;}
.bx-wrapper .bx-prev{left: -15px !important;background: url(images/prev-arrow.png) no-repeat !important;}
.bx-wrapper .bx-next{right: -15px !important;background: url(images/next-arrow.png) no-repeat !important;}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus{background: url(images/next-arrow.png) no-repeat;}
.bg-testimonial .col3, .bg-testimonial .col9{margin-bottom: 0;}
.bg-testimonial .col3 img{margin: 0 auto; display: table; border-radius: 50%;box-shadow: 10px 2px 5px -4px #ccc; border: 1px #ddd solid;}
.bg-testimonial .bx-wrapper{border: 1px #ddd solid !important; border-radius: 10px; padding: 25px 25px 0 0;}
.bg-testimonial .bx-wrapper .info{margin-top: 20px;}
.bg-testimonial .bx-wrapper .info h5{margin: 0; font-size: 18px; color: #222;}
.bg-testimonial .bx-wrapper .info em{margin: 0; font-size: 15px; color: #3a3a3a;}
.bg-testimonial .bx-wrapper .info p{margin: 0; font-size: 15px; color: #de730b;}
.bg-testimonial .bx-wrapper .bx-pager{position: relative;bottom: 15px;}
.bg-testimonial .bx-wrapper .bx-pager.bx-default-pager a:hover, .bg-testimonial .bx-wrapper .bx-pager.bx-default-pager a.active{background: #de730b;}
#sec-last-wrapper .nz-column-text{margin-bottom: 5px;}
#sec-last-wrapper .col4 h4{font-size: 18px;color: #3a3a3a; text-align: left; font-family:sans-serif; font-weight: 600; font-style: normal;margin-bottom: 8px;}
#sec-last-wrapper .col4 .nz-column-text{padding-left: 95px !important;min-height: 120px;}
#sec-last-wrapper .col4:nth-child(2) .nz-column-text:nth-child(1){background: url(images/best-icon.png) 0 5px no-repeat;}
#sec-last-wrapper .col4:nth-child(2) .nz-column-text:nth-child(2){background: url(images/suport-icon.png) 0 5px no-repeat;}
#sec-last-wrapper .col4:nth-child(2) .nz-column-text:nth-child(3){background: url(images/cost-icon.png) 0 5px no-repeat;}
#sec-last-wrapper .col4:nth-child(3) .nz-column-text:nth-child(1){background: url(images/report-icon.png) 0 5px no-repeat;}
#sec-last-wrapper .col4:nth-child(3) .nz-column-text:nth-child(2){background: url(images/plan-icon.png) 0 5px no-repeat;}
#sec-last-wrapper .col4:nth-child(3) .nz-column-text:nth-child(3){background: url(images/satisfaction-icon.png) 0 5px no-repeat;}
#sec-last-wrapper .col4 p{font-size: 15px; color: #3a3a3a;}
.home-page-banner .col8{float: left;width: 65%;}
.home-page-banner .col8 h2{font-size: 50px;color: #fff;font-family: sans-serif;line-height: 60px; font-weight: bold;}
.home-page-banner .col8 p{font-size: 23px;color: #fff;font-family: sans-serif;line-height: 40px;}
.home-page-banner .col4{float: left;width: 35%;background-color: rgba(136, 60, 41, 0.7);padding:30px 35px 35px;    border-radius: 20px;box-shadow: 0 0 15px rgba(66, 13, 0, 0.8);}
.home-page-banner .col4 .wpcf7{margin: 0 !important;}
.home-page-banner .col4 .wpcf7-form{margin-bottom: 0 !important;}
.home-page-banner .col4 .wpcf7-form > p{margin-bottom: 0 !important;}
.home-page-banner .col4 input[type="email"], .home-page-banner .col4 input[type="tel"]{padding-left: 12px;}
.home-page-banner .col4 input{height: 48px;border: none; margin: 0;padding: 0;width: 100%;}
.home-page-banner .col4 label{font-size: 15px !important; color: #fff !important; font-weight: normal !important;}
.home-page-banner .col4 div.wpcf7-response-output{color: #fff !important;}

.rich-header ::selection {background-color: rgba(136, 60, 41, 0.7);color: #ffffff;}

#our-team .team{-webkit-filter: grayscale(100%); filter: gray;}
#our-team .vc_col-sm-2:hover .team{-webkit-filter: inherit !important; filter: !inherit !important;}


/***************end-case-studies******************/
@media only screen and (max-width: 1297px){
.bg-voice-broadcasting{background:none !important;}
.bg-bulk-sms .sub_title_bx2 { width: 61% !important;}	
.sub_title_bx2 { width: 80% !important;}
#conference-call-bx {width: 85%;}
}

@media only screen and (max-width: 1200px){
	.sldr-bx {width: 75% !important;}
}

@media only screen and (min-width: 1025px){
	header .header-menu .sub-menu{box-shadow: 0px 1px 3px 0px #ddd !important; /*border-radius: 20px 0 20px !important;*/}
	header .header-menu > ul > li:last-child a{background:#fff;color:#df7610; border-radius: 24px 24px 24px 24px;}
	header .header-menu > ul > li:last-child a:hover{color:#df7610;}
	header .header-menu > ul > li:last-child:hover{color:#df7610 !important;}
	header.fixed .header-menu > ul > li:last-child a{background:#de730b;color:#fff; border-radius: 24px 24px 24px 24px;}
	header.fixed .header-menu li:last-child a:after{background:#de730b !important;}
	.sub-menu > li a{background:#fff !important; color:#333 !important; border-bottom:1px #ddd dotted !important;}
	.sub-menu > li a:hover{color:#de730b !important;}
	.sub-menu > li:first-child a{background:#fff !important; /*border-radius: 20px 0 0 0;*/}
	.sub-menu > li:last-child a{background:#fff !important; /*border-radius: 0 0 20px 0;*/}
	.desk-menu > ul > li > a{padding-right: 13px !important; padding-left: 12px !important;}
}

@media only screen and (max-width: 1026px){
	.home-page-banner .col8{width: 100%;}
	.home-page-banner .col4{width: 100%;margin: 0 auto; display: table;float: none;}
	.home-page-banner .col8 h1 br{display: none;}
	.home-page-banner .col8 h1 {font-size: 40px; line-height: 50px; text-align: center;}
	.home-page-banner .col8 p{text-align: center;}
}

@media only screen and (max-width: 1025px){
	.grade-bx .col.col2{width:33.33% !important;}
	.rec-heading{padding:10px 0 !important; font-size:25px !important; line-height:32px !important;}
	.rec-heading2{padding:10px 0 !important; font-size:35px !important; line-height:40px !important;}
	.sub_title_bx h1 {font-size: 31px;line-height: 40px;}
	.sub_title_bx p {font-size: 19px;}
	.rich-header, .rich-header .container {height:auto !important;}
	.sub_title_bx img {max-width: 50%;margin: 0 auto 10px;}
	.rich-header .page-title-content { top: 50%;}
	.bg-bulk-sms{background:none !important;}
	.sub_title_bx2{width:100% !important;}
	.bg-bulk-sms .sub_title_bx2 { width: 100% !important;}
	.bg-conference-call{background:none !important;}	
	.bg-missed-call{background:none !important;}
	.bg-click-to-call{background:none !important;}
	#conference-call-wrapper .container {width: 100%;}
	#conference-call-wrapper .col.col3 {width: 50%;}
	#conference-call-wrapper .col.col3 p.vc_custom_heading{text-align:center !important;}
	#click-to-call-wrapper .col6:nth-child(1){padding:190px 20px 30px 20px;background-position:center top 20px;}
	#click-to-call-wrapper .col6:nth-child(2){padding:190px 20px 30px 20px;background-position:center top 20px;}
	#conference-call-bx{width:100%;}
	.about-header p {font-size: 33px;}
	
}

@media only screen and (max-width: 1023px){
#tollfree-wrap2 .col.col4 .nz-column-text{padding:10px 20px 0 !important;}
#tollfree-wrap3 .col.col4 .nz-column-text{padding:10px 20px 0 !important;}	
#our-team .vc_col-sm-2{width: 206px; float: left;margin-bottom: 15px;}
#services .vc_col-sm-3{width: 48%;}
}

@media only screen and (max-width: 991px){
.home-page-banner .col8 h2 {font-size: 35px;line-height: 37px;text-align: center;}
.skycalls-sel .container{width:100%;}	
.broadcast-voice-message .container{width:100%;}
footer .container{width:100% !important;}
.footer-info{margin:0 auto;display:table; float:none !important;}
.sldr-bx {width: 75% !important;}
.sldr-bx h1 {font-size: 40px !important;}
}

@media only screen and (min-width: 768px){
	.footer-widget-area .widget { width: 25%; border-right:1px #6c6b6b dotted;  min-height: 370px;}
	#text-3{border-right:none;}
}

@media only screen and (max-width: 768px){
	.home-page-banner .col8 h2 {font-size: 30px;line-height: 34px;text-align: center;}
	.industry .col6 .col-inner {padding: 30px 15px !important;}
	.sldr-bx {width: 100% !important;}
	.sldr-bx h1 {font-size: 31px !important;}
	.bg-testimonial .bx-wrapper {padding: 25px 25px 0 25px;}
	.home-page-banner .col8 p {font-size: 18px;line-height: 30px;}
	.home-page-banner .col8 h1 {font-size: 30px; line-height: 36px;}
	#abt-row2 .abt-row2-img {left: 0;}
	#services .vc_row.wpb_row{text-align: center; width: 100%;}
	#services .vc_col-sm-3{display: inline-block; width: 50%;}

	#abt-row2 .abt-row2-img {left: 0;}
	#services .vc_row.wpb_row{text-align: center; width: 100%;}
	#services .vc_col-sm-3{display: inline-block; width: 50%;}

	.about-header h1 {font-size: 35px; line-height:normal;}
	.about-header p {font-size: 33px;}
	#abt-row2 p {font-size: 20px;}

	#our-team .vc_col-sm-2{width: 206px; float: left;margin-bottom: 15px;}
	.grade-bx .col.col2{width:100% !important;}
	#sms-bx table tr td {display: block !important; width: 100% !important; }
	#audio-bx table tr td {width: 100% !important;display: block !important;}
	.price-bx-3 .price-btn-bx p {display: block !important;}
	.price-bx-3 .price-btn-bx a.btn1{display:block !important;margin:0 auto !important;}
	.price-bx-3 .price-btn-bx a.btn2{display:block !important;margin:0 auto !important;}
	#case-studies-pg .nz-portfolio-filter span.button{width:100% !important; display:block;margin-left:0 !important;}
	
	#case-studies-pg .nz-portfolio-filter span[data-group='all']{background: url(/images/all-icon.png) left 25px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='all']:hover{background: url(/images/all-icon-hover.png) left 25px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='all'].active{background: url(/images/all-icon-hover.png) left 25px center no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='advertising']{background: url(/images/advertising-icon.png) left 20px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='advertising']:hover{background: url(/images/advertising-icon-hover.png) left 20px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='advertising'].active{background: url(/images/advertising-icon-hover.png) left 20px center no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='e-commerce']{background: url(/images/e-commerce-icon.png) left 15px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='e-commerce']:hover{background: url(/images/e-commerce-icon-hover.png) left 15px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='e-commerce'].active{background: url(/images/e-commerce-icon-hover.png) left 15px center no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='education']{background: url(/images/education.png) left 15px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='education']:hover{background: url(/images/education-hover.png) left 15px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='education'].active{background: url(/images/education-hover.png) left 15px center no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='home-decor']{background: url(/images/home-decor-icon.png) left 15px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='home-decor']:hover{background: url(/images/home-decor-icon-hover.png) left 15px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='home-decor'].active{background: url(/images/home-decor-icon-hover.png) left 15px center no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='hospitals']{background: url(/images/hospital-icon.png) left 15px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='hospitals']:hover{background: url(/images/hospital-icon-hover.png) left 15px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='hospitals'].active{background: url(/images/hospital-icon-hover.png) left 15px center no-repeat #fff;}

#case-studies-pg .nz-portfolio-filter span[data-group='political-parties']{background: url(/images/political-icon.png) left 15px center no-repeat; padding-top: 15px;text-align: left;padding-left:70px;}
#case-studies-pg .nz-portfolio-filter span[data-group='political-parties']:hover{background: url(/images/political-icon-hover.png) left 15px center no-repeat #fff;}
#case-studies-pg .nz-portfolio-filter span[data-group='political-parties'].active{background: url(/images/political-icon-hover.png) left 15px center no-repeat #fff;}
#conference-call-wrapper .col.col3 {width:100%;}
.rec-heading2 {font-size: 23px !important;line-height: 30px !important;}
#conference-call-bx {width: 100%;}
.conference-banner h4 {font-size: 21px;}
#conference-call-bx table tr td:last-child{padding:0;}
.bg-click-to-call p{width:100%;}
#click-to-call table tr td{display:block;width:100% !important;padding-bottom:6px;}
#click-to-call table tr td .form-group {margin-bottom:0;}
#click-to-call tr td button {height: 55px !important;line-height: 55px !important;}
#click-to-call {width: 80%;}
.bg-click-to-call .note{width:80%;}
#conference-call-bx table tr td{display:block !important;}
#conference-call-bx table tr td:nth-child(1){width:100% !important;display:block !important;}
#conference-call-bx table tr td:nth-child(2){width:50%;display:inline-block !important;padding-top:5px !important;}
#conference-call-bx table tr td:nth-child(3){width:49%;display:inline-block !important;padding-top:5px !important;}
#conference-call-bx .fld {width:100% !important;}
#conference-call-bx .fld {display: inline-flex !important;}
#conference-call-bx .fld.btn input{height: 52px;padding: 10px 20px;margin: 3px 0 0 0 !important;}
}


@media only screen and (max-width: 480px){
.home-page-banner .col8 h2 {font-size: 25px;line-height: 32px;}
#services .vc_col-sm-3{width: 100%;}
#our-team .vc_col-sm-2{width: 206px;float: none;margin: 0 auto 15px;}
.container, .solo-true .nz-related-products {max-width:310px;width: 310px;}
.bg-audio {height:inherit !important;}	
#audio-bx audio{width:100% !important;}
#conference-call-bx table tr td {width: 100%;display: block;}
#conference-call-bx table tr td:first-child{width:100%;padding-bottom:5px !important;}
#conference-call-bx table tr td:last-child{width:50%;}
#conference-call-bx table tr td:nth-child(2){width:100%;display:block !important;}
#conference-call-bx table tr td:nth-child(3){width:100%;display:block !important;}
#click-to-call {width: 100%;}
.bg-click-to-call .note{width:100%;}
#conference-call-bx {padding:7px 7px 1px;}

.home-page-banner .col8 h1 {font-size: 25px; line-height: 30px;}
.home-page-banner .col8 p { font-size: 15px;  line-height: 22px;}
.home-page-banner .col8 p br{display: none;}
.home-page-banner .col4 {padding: 20px 25px 15px;}
}

/*E-commerece page start*/
.e-txt{margin: 0; text-align: center;font-size: 18px;line-height: 28px;}
.industry .col6 .col-inner{box-shadow: 0 0 10px #ccc;padding: 30px 40px; min-height: 390px;background:url(images/bg-industry.jpg) repeat-x #fff;}
.industry .col6 .col-inner .wpb_single_image{margin-bottom: 25px;}
.industry .col6 .col-inner img{width: 107px;height: 107px !important;border-radius: 50%;}
.industry.last .container .nz-row{text-align: center;}
.industry.last .col6{float: none; display: inline-block;}
.industry.healthcare .col6 .col-inner{min-height: 445px !important;}




/*E-commerece page end*/


/****************************end custom.css*****************************/