/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* Vendors */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated, .helpie-animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

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

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Custom CSS */
/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

.anchor-reset, .helpie-main-content-area a {
  cursor: pointer;
  border: 0;
  box-shadow: none; }
  .anchor-reset:visited, .helpie-main-content-area a:visited {
    border: none; }
  .anchor-reset img, .helpie-main-content-area a img {
    outline: none;
    border: 0; }

.three-columned-boxed-root ul.category-list li, #helpie-categories-section-boxed .three-columned ul.category-list li {
  width: 31%;
  margin-right: 3.5%;
  border: solid 1px #eee; }

.three-columned-boxed-root ul.category-list li:nth-child(3n), #helpie-categories-section-boxed .three-columned ul.category-list li:nth-child(3n) {
  margin-right: 0; }

@media screen and (max-width: 1024px) {
  .three-columned-boxed-root1 ul.category-list li {
    width: 33%; }
  .three-columned-boxed-root1 ul.category-list li:nth-child(4n) {
    border-right: solid 1px #eee;
    border-bottom: solid 1px #eee; }
  .three-columned-boxed-root1 ul.category-list li:nth-child(3n) {
    border-right: 0; } }

.pauple-helpie-components {
  position: relative;
  float: left;
  width: 100%; }
  .pauple-helpie-components.wrapper {
    margin: 0 auto;
    float: none;
    width: 980px;
    max-width: 100%;
    height: 100%; }

.helpie-animated {
  line-height: 20px;
  animation-iteration-count: 1 !important;
  -moz-animation-iteration-count: 1 !important;
  -webkit-animation-iteration-count: 1 !important; }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

.anchor-reset, .helpie-main-content-area a {
  cursor: pointer;
  border: 0;
  box-shadow: none; }
  .anchor-reset:visited, .helpie-main-content-area a:visited {
    border: none; }
  .anchor-reset img, .helpie-main-content-area a img {
    outline: none;
    border: 0; }

.pauple_helpie.ui.modal {
  max-width: none;
  z-index: 1500;
  bottom: auto; }
  .pauple_helpie.ui.modal .actions > .button {
    height: auto;
    width: auto; }
  .pauple_helpie.ui.modal .content {
    box-sizing: border-box;
    margin-top: 0; }
  .pauple_helpie.ui.modal .password-status {
    display: inline-block;
    padding-left: 10px;
    padding-top: 10px;
    font-size: 15px; }
    .pauple_helpie.ui.modal .password-status.correct {
      color: rgba(41, 162, 91, 0.79); }
    .pauple_helpie.ui.modal .password-status.wrong {
      color: #fe6c61; }
    .pauple_helpie.ui.modal .password-status .redirect-gif {
      width: 100px; }
  .pauple_helpie.ui.modal input[type=password] {
    font-size: 16px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box; }
    .pauple_helpie.ui.modal input[type=password]:focus {
      border-color: #7dc246; }

.ui.dimmer {
  z-index: 100000; }

.helpie_helpdesk {
  position: relative;
  float: left;
  width: 100%;
  padding: 80px 0;
  z-index: 10;
  background: #F4F3F3; }
  .helpie_helpdesk h1 {
    font-family: 'Raleway', sans-serif;
    color: #03363d;
    font-size: 58px;
    font-weight: 500;
    text-align: center;
    display: block !important; }
  .helpie_helpdesk h4 {
    color: #03363d;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 44px;
    margin-top: 0;
    padding-top: 0; }
  .helpie_helpdesk form {
    position: relative; }
  .helpie_helpdesk .main-search-img {
    position: absolute;
    left: -100px;
    height: 30px;
    width: auto; }

@media screen and (max-width: 1200px) {
  .helpie_helpdesk h1 {
    font-size: 38px; } }

@media screen and (max-width: 768px) {
  .helpie_helpdesk h1 {
    font-size: 24px; } }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

.anchor-reset, .helpie-main-content-area a {
  cursor: pointer;
  border: 0;
  box-shadow: none; }
  .anchor-reset:visited, .helpie-main-content-area a:visited {
    border: none; }
  .anchor-reset img, .helpie-main-content-area a img {
    outline: none;
    border: 0; }

.pauple-helpie-search-box {
  position: relative;
  display: block;
  width: 500px;
  max-width: 95%;
  float: none;
  margin: 20px auto 30px; }
  .pauple-helpie-search-box input[type=text] {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    font-weight: 300;
    -webkit-box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
    -moz-box-shadow: 2px 1px 3px 0 rgba(120, 120, 120, 0.1);
    box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
    width: 100%;
    padding: 10px 20px;
    border: solid 1px white;
    background: white;
    height: 62px;
    margin-bottom: 0;
    float: none; }
    .pauple-helpie-search-box input[type=text]::-webkit-input-placeholder {
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 12px;
      font-weight: 300;
      color: #cdcdcd; }
    .pauple-helpie-search-box input[type=text]:-moz-placeholder {
      /* Firefox 18- */
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 12px;
      font-weight: 300;
      color: #cdcdcd; }
    .pauple-helpie-search-box input[type=text]::-moz-placeholder {
      /* Firefox 19+ */
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 12px;
      font-weight: 300;
      color: #cdcdcd; }
    .pauple-helpie-search-box input[type=text]:-ms-input-placeholder {
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 12px;
      font-weight: 300;
      color: #cdcdcd; }
  .pauple-helpie-search-box .input-group-addon {
    position: absolute;
    top: calc((100% - 28px) / 2);
    right: 10px;
    color: #b4b3b3;
    color: #b4b4b4;
    border: 0;
    /* color: white; */
    background: none;
    width: auto;
    height: auto;
    padding: 0; }
    .pauple-helpie-search-box .input-group-addon i.fa {
      font-size: 26px; }
    .pauple-helpie-search-box .input-group-addon:hover {
      cursor: pointer; }
      .pauple-helpie-search-box .input-group-addon:hover i.fa {
        color: #666; }

.helpie-autocomplete-suggestions-container {
  position: relative;
  z-index: 9999; }

.helpie-autocomplete-suggestions {
  -webkit-box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
  -moz-box-shadow: 2px 1px 3px 0 rgba(120, 120, 120, 0.1);
  box-shadow: 2px 2px 3px 0 rgba(120, 120, 120, 0.1);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  border: solid 1px #f4f4f4; }
  .helpie-autocomplete-suggestions .autocomplete-suggestion {
    padding: 7px 20px;
    color: #777;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0; }
    .helpie-autocomplete-suggestions .autocomplete-suggestion strong {
      color: #4e4d4d;
      font-weight: 600; }
    .helpie-autocomplete-suggestions .autocomplete-suggestion:hover {
      cursor: pointer;
      text-decoration: underline; }

.helpie_helpdesk .main-search {
  box-sizing: border-box; }

.helpie_helpdesk h1 {
  display: block; }

.helpie-search-listing h2 {
  margin: 45px;
  font-weight: bold; }

.helpie-search-listing ul {
  padding-left: 0; }
  .helpie-search-listing ul li.search-item {
    list-style: none;
    float: none;
    display: block;
    padding-left: 0;
    border-bottom: solid 1px #f1f1f1;
    padding-bottom: 20px;
    margin-bottom: 25px; }
    .helpie-search-listing ul li.search-item h3 {
      font-size: 24px;
      text-decoration: none;
      margin-top: 0;
      margin-bottom: 5px;
      font-weight: 600; }
    .helpie-search-listing ul li.search-item p {
      font-size: 15px;
      line-height: 1.6;
      margin-top: 5px; }
    .helpie-search-listing ul li.search-item .link-more a {
      color: #2D95F1; }
    .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting {
      padding: 0;
      padding-bottom: 20px;
      border: none; }
      .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .icon-tray {
        margin-left: 0; }
      .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon {
        padding: 0 5px;
        padding-right: 20px; }
        .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-down, .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-up {
          border-width: 0; }
          .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-down.selected, .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-up.selected {
            border-width: 0px; }
        .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-down i,
        .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-down count {
          color: #e64e4e; }
        .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-up i,
        .helpie-search-listing ul li.search-item .pauple-helpie-module.article-voting .voting-icon.thumbs-o-up count {
          color: #157dec; }
    .helpie-search-listing ul li.search-item .pre-post-info {
      margin: 0;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 600;
      color: #555;
      padding-bottom: 2px;
      letter-spacing: 0.5px; }
      .helpie-search-listing ul li.search-item .pre-post-info .term {
        color: #2D95F1; }
    .helpie-search-listing ul li.search-item .helpie-article-link {
      padding-right: 10px;
      font-size: 13px; }
    .helpie-search-listing ul li.search-item i.fa {
      padding-right: 10px; }
    .helpie-search-listing ul li.search-item a {
      display: inline-block;
      color: #9a9a9a;
      text-decoration: none; }
      .helpie-search-listing ul li.search-item a:hover {
        cursor: pointer;
        color: #4e4d4d;
        text-decoration: underline; }

@media screen and (max-width: 799px) {
  .helpie_helpdesk .main-search {
    width: 100%;
    padding: 0 20px; }
    .helpie_helpdesk .main-search .input-group-addon {
      right: 30px; }
  .helpie-search-listing h2 {
    font-size: 28px; } }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

.anchor-reset, .helpie-main-content-area a {
  cursor: pointer;
  border: 0;
  box-shadow: none; }
  .anchor-reset:visited, .helpie-main-content-area a:visited {
    border: none; }
  .anchor-reset img, .helpie-main-content-area a img {
    outline: none;
    border: 0; }

.helpie-single-page-module {
  position: relative;
  float: left;
  width: 100%; }
  .helpie-single-page-module .helpie-primary-view {
    position: relative;
    background: white;
    float: left;
    width: 100%;
    height: auto; }
    .helpie-single-page-module .helpie-primary-view .wrapper {
      margin: 0 auto;
      float: none;
      width: 980px;
      max-width: 100%; }
  .helpie-single-page-module .helpie-primary-view #primary {
    position: relative;
    padding-left: 25px; }
    .helpie-single-page-module .helpie-primary-view #primary.right-sidebar {
      padding-left: 0;
      padding-right: 25px; }
  .helpie-single-page-module .article-title-outer {
    position: relative; }
    .helpie-single-page-module .article-title-outer small.helpie-edit-button {
      position: absolute;
      top: 5px;
      left: -20px; }
  .helpie-single-page-module .article-content-outer {
    position: relative; }
    .helpie-single-page-module .article-content-outer small.helpie-edit-button {
      position: absolute;
      top: 5px;
      left: -20px; }
  .helpie-single-page-module .helpie-edit-content {
    display: none; }
  .helpie-single-page-module .helpie-wp-editor-container {
    display: none; }
  .helpie-single-page-module .last-updated {
    border: solid 1px #e4e4e4;
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 15px;
    float: right;
    color: #b4b3b3;
    font-size: 13px; }
    .helpie-single-page-module .last-updated img {
      /* Safari 3-4, iOS 1-3.2, Android 1.6- */
      -webkit-border-radius: 20px;
      /* Firefox 1-3.6 */
      -moz-border-radius: 20px;
      /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
      border-radius: 20px;
      width: 20px;
      height: 20px;
      margin: -5px 5px 0;
      vertical-align: middle; }
    .helpie-single-page-module .last-updated .value {
      font-size: 15px;
      font-weight: bold;
      color: #333;
      text-transform: capitalize; }

.helpie-single-page-module #main {
  position: relative;
  padding: 0px; }

.helpie-single-page-module.page-scroll-module #primary #main {
  position: relative;
  width: 100%;
  padding: 0px; }

.helpie-row {
  position: relative;
  margin: 45px 0; }

.helpie-syntax-highlight {
  position: relative;
  margin: 30px 0;
  overflow: visible; }
  .helpie-syntax-highlight code {
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 5px;
    /* Firefox 1-3.6 */
    -moz-border-radius: 5px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 5px;
    padding: 20px;
    border: solid 1px transparent; }
  .helpie-syntax-highlight .helpie-copy-icon {
    position: absolute;
    top: -20px;
    right: 15px; }
    .helpie-syntax-highlight .helpie-copy-icon i {
      font-size: 15px;
      color: #3abdff; }
    .helpie-syntax-highlight .helpie-copy-icon span.label {
      position: absolute;
      top: -22px;
      left: -42px;
      font-size: 10px;
      color: #9a9a9a;
      width: auto;
      width: 103px;
      text-align: center;
      letter-spacing: 0.3px;
      text-align: center;
      font-weight: 500;
      font-family: Arial;
      display: none;
      background: none; }
    .helpie-syntax-highlight .helpie-copy-icon:hover {
      cursor: pointer; }
      .helpie-syntax-highlight .helpie-copy-icon:hover span.label {
        display: inline; }
      .helpie-syntax-highlight .helpie-copy-icon:hover i {
        color: #2D95F1;
        cursor: pointer; }

.post-type-archive-pauple_helpie .helpie-single-page-module .helpie-primary-view .wrapper {
  width: 100%; }

.post-type-archive-pauple_helpie .helpie-single-page-module .helpie-primary-view.left-sidebar .wrapper {
  width: 980px; }

.post-type-archive-pauple_helpie .helpie-single-page-module .helpie-primary-view.right-sidebar .wrapper {
  width: 980px; }

.post-type-archive-pauple_helpie .helpie-single-page-module .helpie-primary-view.boxed-width .wrapper {
  width: 980px; }

.helpie-single-page-module .article-tags-container {
  width: 100%;
  text-align: left; }
  .helpie-single-page-module .article-tags-container .tag-title {
    padding-bottom: 10px;
    color: #888; }
  .helpie-single-page-module .article-tags-container .single-tag {
    background: #2D95F1;
    padding: 3px 10px;
    color: white;
    border-radius: 15px;
    font-size: 13px;
    text-transform: capitalize; }

.helpie-single-page-info .info-span {
  display: inline-block;
  width: 100%; }

.pauple-helpie-pageviews {
  border: solid 1px #e4e4e4;
  border-radius: 5px;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 15px; }
  .pauple-helpie-pageviews .icon.circle {
    border: solid 1px #ccc;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    position: relative; }
    .pauple-helpie-pageviews .icon.circle i.fa {
      position: absolute;
      top: 10px;
      left: 11px; }
  .pauple-helpie-pageviews .value {
    font-size: 17px;
    font-weight: bold;
    color: #333; }

button.helpie-sp-edit-button {
  margin-top: 15px;
  background: #5DB6F0;
  color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  border: none;
  padding: 10px 15px;
  font-size: 16px; }
  button.helpie-sp-edit-button:hover {
    background: #4c85ab; }

body.tax-helpdesk_category .helpie-primary-view {
  background: white; }
  body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list {
    width: 47.5%;
    margin-left: 0; }
    body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list:nth-child(2n + 1) {
      margin-right: 5%; }
    body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list li {
      position: relative;
      width: 100%;
      margin-bottom: 18px;
      box-sizing: border-box; }
      body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list li a {
        position: relative;
        background: white;
        width: 100%;
        display: inline-block;
        min-height: 54px;
        color: #555459;
        text-decoration: none;
        border: 1px solid #E3E3E3;
        border-radius: 6px;
        padding: 16px 40px 16px 20px; }
        body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list li a::after {
          position: absolute;
          font-family: 'FontAwesome';
          content: '\f054';
          right: 12px;
          top: 16px;
          font-size: 20px;
          font-style: normal;
          font-weight: 300;
          color: #178CCC; }
        body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list li a:hover {
          color: #178CCC;
          border: 1px solid #178CCC; }
  body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list.child {
    margin-left: 0; }
    body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list.child:first-child {
      margin-right: 5%; }

body.tax-helpdesk_category .pauple-helpie-single-sidebar ul {
  display: block;
  float: left;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box; }

@media screen and (max-width: 768px) {
  body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list {
    width: 100%; }
    body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list:first-child {
      margin-right: 0; }
    body.tax-helpdesk_category .helpie-primary-view #primary ul.child-category-list li {
      width: 100%; } }

/*
 *  STYLE 3
 */
#helpie-scroll-style-3::-webkit-scrollbar-track, .pauple-helpie-single-sidebar.fixed-sidebar .helpie-sidebar-fixer::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f9f9f9; }

#helpie-scroll-style-3::-webkit-scrollbar, .pauple-helpie-single-sidebar.fixed-sidebar .helpie-sidebar-fixer::-webkit-scrollbar {
  width: 6px;
  background-color: #f9f9f9; }

#helpie-scroll-style-3::-webkit-scrollbar-thumb, .pauple-helpie-single-sidebar.fixed-sidebar .helpie-sidebar-fixer::-webkit-scrollbar-thumb {
  background-color: #888; }

.pauple-helpie-single-sidebar {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  float: left;
  margin-left: 0;
  width: 23%;
  min-height: 200px;
  padding: 0;
  margin-top: 0;
  background: white;
  /* Sidebars that are registered from other places */ }
  .pauple-helpie-single-sidebar .sidebar {
    margin: 0;
    width: 100%; }
  .pauple-helpie-single-sidebar .page-scroll-nav,
  .pauple-helpie-single-sidebar .recent-articles {
    float: left;
    width: 100%;
    margin-bottom: 20px; }
  .pauple-helpie-single-sidebar ol {
    margin-left: 0;
    padding: 0;
    list-style: none; }
    .pauple-helpie-single-sidebar ol li {
      list-style-position: inside;
      padding: 6px 0;
      line-height: 1.2; }
      .pauple-helpie-single-sidebar ol li a {
        text-decoration: none;
        color: #4e4d4d;
        font-size: 13px;
        line-height: 1.2;
        padding-bottom: 8px;
        font-weight: 400; }
        .pauple-helpie-single-sidebar ol li a:hover {
          color: #777;
          cursor: pointer; }
      .pauple-helpie-single-sidebar ol li.active a {
        font-weight: 600; }
    .pauple-helpie-single-sidebar ol li.protected .fa-lock {
      padding-right: 10px; }
    .pauple-helpie-single-sidebar ol li.protected .title {
      opacity: 0.5; }
    .pauple-helpie-single-sidebar ol ol.in-page {
      margin-left: 10px; }
  .pauple-helpie-single-sidebar ol.level1 > li {
    margin-top: 20px;
    font-weight: bold;
    color: #343434;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px; }
    .pauple-helpie-single-sidebar ol.level1 > li > a {
      font-weight: bold; }
  .pauple-helpie-single-sidebar ol.level1 ol.level2 > li {
    color: #777;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase; }
  .pauple-helpie-single-sidebar ol.level1 ol.level3 > li {
    font-size: 12px; }
    .pauple-helpie-single-sidebar ol.level1 ol.level3 > li > a {
      color: #777;
      text-transform: capitalize; }
      .pauple-helpie-single-sidebar ol.level1 ol.level3 > li > a + i {
        visibility: hidden;
        padding-left: 5px; }
      .pauple-helpie-single-sidebar ol.level1 ol.level3 > li > a:hover {
        color: #ffa1a1;
        cursor: pointer; }
        .pauple-helpie-single-sidebar ol.level1 ol.level3 > li > a:hover + i {
          visibility: visible;
          color: #ffa1a1;
          -webkit-animation: fadeInLeft 0.5s;
          animation: fadeInLeft 0.5s; }
  .pauple-helpie-single-sidebar .page-scroll-nav.cat-toggle ol.level1 > li:hover {
    cursor: pointer;
    color: #ffa1a1; }
  .pauple-helpie-single-sidebar .page-scroll-nav.cat-toggle ol.level1 > li.active {
    color: #ffa1a1; }
  .pauple-helpie-single-sidebar .page-scroll-nav.cat-toggle ol.level1 .primary-term-children {
    display: none; }
  .pauple-helpie-single-sidebar ol.level1 li.current-post,
  .pauple-helpie-single-sidebar ol.level1 li.current-post > a {
    color: #ffa1a1 !important; }
  .pauple-helpie-single-sidebar ol.current-ol {
    padding-top: 6px; }
    .pauple-helpie-single-sidebar ol.current-ol > li {
      margin: 5px 0;
      padding: 0 20px; }
      .pauple-helpie-single-sidebar ol.current-ol > li.active {
        color: #2D95F1; }
  .pauple-helpie-single-sidebar ul {
    color: #2D95F1; }
    .pauple-helpie-single-sidebar ul {
      padding: 8px 0; }
  .pauple-helpie-single-sidebar h3 {
    color: #343434;
    font-size: 16px;
    padding: 0;
    margin-bottom: 5px;
    font-weight: bold; }

.mobile-toc-button {
  display: none; }

.pauple-helpie-single-sidebar .helpie-sidebar-fixer {
  padding-top: 14px;
  padding-left: 10px;
  height: calc(100% - 150px);
  overflow-y: hidden;
  border-right: solid 1px #f1f1f1;
  padding-right: 10px; }
  .pauple-helpie-single-sidebar .helpie-sidebar-fixer:hover {
    overflow-y: auto; }

@media screen and (max-width: 1024px) {
  .mobile-toc-button {
    position: relative;
    display: block;
    padding: 20px;
    border: solid 1px #f4f4f4;
    box-shadow: 0 1px 2px #E8E8E8;
    margin-top: 15px;
    background: white;
    margin-bottom: 20px; }
    .mobile-toc-button:hover {
      cursor: pointer; }
    .mobile-toc-button .title {
      color: #333;
      font-size: 14px; }
    .mobile-toc-button .icon {
      position: relative;
      float: right;
      width: 20px;
      overflow: visible;
      color: #333; }
      .mobile-toc-button .icon:before {
        content: "\f0d7";
        font-family: FontAwesome;
        left: -5px;
        position: absolute;
        top: 0; }
    .mobile-toc-button.open .icon:before {
      content: "\f0d8";
      font-family: FontAwesome;
      left: -5px;
      position: absolute;
      color: #157dec; }
  .pauple-helpie-single-sidebar {
    width: 100%;
    display: none;
    min-height: 30px;
    max-height: 250px;
    overflow: scroll;
    border: solid 1px #f4f4f4;
    box-shadow: 0 1px 2px #E8E8E8;
    margin-top: -20px; }
    .pauple-helpie-single-sidebar .helpie-sidebar-fixer {
      overflow: visible;
      height: 250px;
      border: none; }
      .pauple-helpie-single-sidebar .helpie-sidebar-fixer:hover {
        overflow: visible; }
      .pauple-helpie-single-sidebar .helpie-sidebar-fixer h3 {
        text-align: center; } }

.helpie-single-page-module .helpie-primary-view .content-area {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  float: left;
  margin-right: 0;
  width: 70%;
  color: #4e4d4d; }
  .helpie-single-page-module .helpie-primary-view .content-area.right-sidebar {
    margin-right: 7%; }
  .helpie-single-page-module .helpie-primary-view .content-area.left-sidebar {
    margin-left: 7%; }
  .helpie-single-page-module .helpie-primary-view .content-area.both-side-sidebars {
    width: 47% !important;
    margin-right: 3.5%;
    margin-left: 3.5%; }
  .helpie-single-page-module .helpie-primary-view .content-area.full-width {
    width: 100%;
    margin-left: 0; }
  .helpie-single-page-module .helpie-primary-view .content-area.boxed-width {
    width: 100%;
    margin-left: 0; }
  .helpie-single-page-module .helpie-primary-view .content-area h1,
  .helpie-single-page-module .helpie-primary-view .content-area h3 {
    color: #343434;
    color: #343434; }
  .helpie-single-page-module .helpie-primary-view .content-area h1 {
    margin-bottom: 25px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: -0.5px; }
  .helpie-single-page-module .helpie-primary-view .content-area .added_tag {
    position: relative;
    padding: 2px 4px;
    margin-left: 5px;
    color: white;
    font-size: 13px;
    border-radius: 5px;
    background: #2cd2a8;
    display: inline-block; }
    .helpie-single-page-module .helpie-primary-view .content-area .added_tag:after {
      content: 'added';
      position: absolute;
      font-size: 11px;
      top: 0px;
      right: -40px;
      color: #aaa;
      visibility: hidden; }
    .helpie-single-page-module .helpie-primary-view .content-area .added_tag:hover {
      cursor: pointer; }
      .helpie-single-page-module .helpie-primary-view .content-area .added_tag:hover:after {
        visibility: visible; }
  .helpie-single-page-module .helpie-primary-view .content-area .updated_tag {
    position: relative;
    padding: 2px 4px;
    margin-left: 5px;
    color: white;
    font-size: 13px;
    border-radius: 5px;
    background: #00b9eb;
    display: inline-block; }
    .helpie-single-page-module .helpie-primary-view .content-area .updated_tag:after {
      content: 'updated';
      position: absolute;
      font-size: 11px;
      top: 0px;
      right: -50px;
      color: #aaa;
      visibility: hidden; }
    .helpie-single-page-module .helpie-primary-view .content-area .updated_tag:hover {
      cursor: pointer; }
      .helpie-single-page-module .helpie-primary-view .content-area .updated_tag:hover:after {
        visibility: visible; }
  .helpie-single-page-module .helpie-primary-view .content-area h3 {
    font-size: 15px; }
  .helpie-single-page-module .helpie-primary-view .content-area p {
    color: #6f6f6f; }
  .helpie-single-page-module .helpie-primary-view .content-area p strong {
    color: #555; }

@media screen and (max-width: 1024px) {
  .helpie-single-page-module .content-area {
    width: 100%;
    margin: 0; }
    .helpie-single-page-module .content-area.left-sidebar {
      margin-left: 0; }
    .helpie-single-page-module .content-area.right-sidebar {
      margin-right: 0; }
    .helpie-single-page-module .content-area h1 {
      font-size: 28px; } }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

/* Color Ideas */
/* MAin Colors */
/* Text */
.blend-gradient {
  background: linear-gradient(90deg, #ed1679, #e37cbe);
  background: -webkit-linear-gradient(90deg, #ed1679, #e37cbe); }

.anchor-reset, .helpie-main-content-area a {
  cursor: pointer;
  border: 0;
  box-shadow: none; }
  .anchor-reset:visited, .helpie-main-content-area a:visited {
    border: none; }
  .anchor-reset img, .helpie-main-content-area a img {
    outline: none;
    border: 0; }

#helpie-categories-section {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  float: left;
  width: 100%;
  margin-top: 35px; }
  #helpie-categories-section .category-sidebar {
    width: 27%; }
    #helpie-categories-section .category-sidebar ul.category-list {
      width: 100%;
      border-right: solid 1px #f1f1f1; }
      #helpie-categories-section .category-sidebar ul.category-list li {
        display: block;
        float: left;
        width: 100%;
        padding: 0;
        background: white;
        padding: 4px 10px; }
      #helpie-categories-section .category-sidebar ul.category-list li.active {
        border-bottom: 0; }
  #helpie-categories-section .category-main-content {
    float: left;
    margin-left: 7%;
    width: 65%; }
    #helpie-categories-section .category-main-content .category-section {
      display: none; }
      #helpie-categories-section .category-main-content .category-section:first-child {
        display: block; }
      #helpie-categories-section .category-main-content .category-section h2 {
        float: left;
        color: #343434;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        margin: 15px 0 5px; }
    #helpie-categories-section .category-main-content ul.child-category-list {
      float: left;
      display: block;
      padding: 0;
      width: 100%;
      margin-bottom: 10px; }
      #helpie-categories-section .category-main-content ul.child-category-list .added_tag {
        position: relative;
        padding: 2px 4px;
        margin-left: 5px;
        color: white;
        font-size: 13px;
        border-radius: 5px;
        background: #2cd2a8;
        display: inline-block; }
        #helpie-categories-section .category-main-content ul.child-category-list .added_tag:after {
          content: 'added';
          position: absolute;
          font-size: 11px;
          top: 0px;
          right: -40px;
          color: #aaa;
          visibility: hidden; }
        #helpie-categories-section .category-main-content ul.child-category-list .added_tag:hover {
          cursor: pointer; }
          #helpie-categories-section .category-main-content ul.child-category-list .added_tag:hover:after {
            visibility: visible; }
      #helpie-categories-section .category-main-content ul.child-category-list .updated_tag {
        position: relative;
        padding: 2px 4px;
        margin-left: 5px;
        color: white;
        font-size: 13px;
        border-radius: 5px;
        background: #00b9eb;
        display: inline-block; }
        #helpie-categories-section .category-main-content ul.child-category-list .updated_tag:after {
          content: 'updated';
          position: absolute;
          font-size: 11px;
          top: 0px;
          right: -50px;
          color: #aaa;
          visibility: hidden; }
        #helpie-categories-section .category-main-content ul.child-category-list .updated_tag:hover {
          cursor: pointer; }
          #helpie-categories-section .category-main-content ul.child-category-list .updated_tag:hover:after {
            visibility: visible; }

@media screen and (max-width: 799px) {
  #helpie-categories-section {
    margin-top: 35px; }
    #helpie-categories-section .category-sidebar {
      width: 100%; }
      #helpie-categories-section .category-sidebar ul.category-list {
        padding-bottom: 25px;
        border-bottom: solid 1px #f1f1f1;
        border-right: 0; }
    #helpie-categories-section .category-main-content {
      margin-left: 0;
      width: 100%;
      padding-left: 40px;
      padding-top: 40px; } }

#helpie-categories-section-boxed {
  margin-top: 35px; }
  #helpie-categories-section-boxed * {
    box-sizing: border-box; }
  #helpie-categories-section-boxed .category-main-content-boxed,
  #helpie-categories-section-boxed ul.category-list {
    float: left;
    width: 100%;
    padding-left: 0;
    margin-left: 0; }
  #helpie-categories-section-boxed ul.category-list li {
    float: left;
    width: 24%;
    border: solid 1px #eee;
    min-height: 220px;
    margin-bottom: 40px;
    padding: 25px;
    text-align: center;
    list-style: none;
    margin-left: 0; }
    #helpie-categories-section-boxed ul.category-list li a {
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      padding: 35px 10px 10px;
      color: #9a9a9a; }
      #helpie-categories-section-boxed ul.category-list li a:hover {
        color: #4e4d4d; }
      #helpie-categories-section-boxed ul.category-list li a .sicon {
        float: none;
        margin: 0 auto;
        width: auto;
        height: auto;
        min-height: 70px;
        max-height: 70px;
        height: 70px; }
        #helpie-categories-section-boxed ul.category-list li a .sicon img {
          height: 100%;
          width: auto; }
      #helpie-categories-section-boxed ul.category-list li a i.fa {
        padding-right: 10px; }
      #helpie-categories-section-boxed ul.category-list li a .title {
        padding-top: 15px;
        width: 100%;
        text-transform: capitalize;
        font-size: 24px;
        font-weight: 600;
        color: #333;
        min-height: 70px;
        text-align: center; }
      #helpie-categories-section-boxed ul.category-list li a .description {
        font-size: 16px;
        line-height: 1.3;
        margin-top: 15px;
        color: #888;
        min-height: 60px;
        margin-bottom: 10px; }
        #helpie-categories-section-boxed ul.category-list li a .description p {
          margin-bottom: 0; }
      #helpie-categories-section-boxed ul.category-list li a button {
        margin-top: 15px;
        background: #5DB6F0;
        color: white;
        border-radius: 4px;
        box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
        border: none;
        padding: 15px;
        font-size: 16px; }

/* Overwrites specifcs for .one-columned */
#helpie-categories-section-boxed .one-columned ul.category-list li {
  width: 100%; }

#helpie-categories-section-boxed .two-columned ul.category-list li {
  width: 47.5%;
  margin-right: 5%;
  padding: 50px; }

#helpie-categories-section-boxed .two-columned ul.category-list li:nth-child(2n) {
  margin-right: 0; }

#helpie-categories-section-boxed .four-columned ul.category-list li {
  width: 22%;
  margin-right: 4%; }

#helpie-categories-section-boxed .four-columned ul.category-list li:nth-child(4n) {
  margin-right: 0; }

@media screen and (max-width: 1024px) {
  #helpie-categories-section-boxed ul.category-list li {
    width: 49%; }
  #helpie-categories-section-boxed ul.category-list .title {
    font-size: 16px; }
  /* Overwrites specifcs for .*-columned */
  #helpie-categories-section-boxed .four-columned ul.category-list li {
    width: 30%;
    margin-right: 5%; }
  #helpie-categories-section-boxed .four-columned ul.category-list li:nth-child(4n) {
    margin-right: 5%; }
  #helpie-categories-section-boxed .four-columned ul.category-list li:nth-child(3n) {
    margin-right: 0%; } }

@media screen and (max-width: 767px) {
  #helpie-categories-section-boxed ul.category-list li button {
    font-size: 14px; }
  #helpie-categories-section-boxed .four-columned ul.category-list li {
    width: 47.5%;
    margin-right: 5%; }
  #helpie-categories-section-boxed .four-columned ul.category-list li:nth-child(4n) {
    margin-right: 5%; }
  #helpie-categories-section-boxed .four-columned ul.category-list li:nth-child(3n) {
    margin-right: 5%; }
  #helpie-categories-section-boxed .four-columned ul.category-list li:nth-child(2n) {
    margin-right: 0%; }
  #helpie-categories-section-boxed .three-columned ul.category-list li {
    width: 47.5%;
    margin-right: 5%; }
  #helpie-categories-section-boxed .three-columned ul.category-list li:nth-child(3n) {
    margin-right: 5%; }
  #helpie-categories-section-boxed .three-columned ul.category-list li:nth-child(2n) {
    margin-right: 0%; } }

@media screen and (max-width: 599px) {
  #helpie-categories-section-boxed ul.category-list li {
    width: 100%; }
  /* Overwrites specifcs for .*-columned */
  #helpie-categories-section-boxed .four-columned ul.category-list li,
  #helpie-categories-section-boxed .one-columned ul.category-list li,
  #helpie-categories-section-boxed .three-columned ul.category-list li,
  #helpie-categories-section-boxed .two-columned ul.category-list li {
    width: 100%; }
  #helpie-categories-section-boxed .four-columned ul.category-list .title,
  #helpie-categories-section-boxed .one-columned ul.category-list .title,
  #helpie-categories-section-boxed .three-columned ul.category-list .title,
  #helpie-categories-section-boxed .two-columned ul.category-list .title {
    font-size: 14px; } }

#helpie-categories-section-boxed1 * {
  box-sizing: border-box; }

#helpie-categories-section-boxed1 ul.category-list {
  padding-left: 0;
  margin-left: 0; }
  #helpie-categories-section-boxed1 ul.category-list > li {
    position: relative;
    float: left;
    min-height: 250px;
    margin-top: 60px;
    border: solid 1px #f4f4f4;
    padding: 25px 25px 40px;
    box-sizing: border-box;
    list-style: none;
    margin-left: 0; }
  #helpie-categories-section-boxed1 ul.category-list .title {
    color: #555;
    font-size: 20px;
    padding-bottom: 15px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600; }
  #helpie-categories-section-boxed1 ul.category-list i.fa {
    padding-right: 5px; }
  #helpie-categories-section-boxed1 ul.category-list .sicon {
    float: left; }
    #helpie-categories-section-boxed1 ul.category-list .sicon img {
      width: 35px;
      margin-top: -6px;
      margin-right: 10px; }
  #helpie-categories-section-boxed1 ul.category-list a.more {
    position: absolute;
    bottom: 10px;
    width: 100%;
    color: #555;
    text-decoration: none;
    text-align: right;
    right: 0;
    padding: 0 25px;
    box-sizing: border-box; }
    #helpie-categories-section-boxed1 ul.category-list a.more i {
      position: absolute;
      top: 7px;
      right: 15px;
      color: #555;
      font-size: 11px; }

#helpie-categories-section-boxed1 ul.article-preview-list li {
  width: 100%;
  padding: 0; }
  #helpie-categories-section-boxed1 ul.article-preview-list li a {
    text-decoration: none;
    color: #4e4d4d;
    color: #777;
    font-size: 13px;
    letter-spacing: 0; }
    #helpie-categories-section-boxed1 ul.article-preview-list li a i {
      padding-left: 25px; }
    #helpie-categories-section-boxed1 ul.article-preview-list li a:hover {
      color: #555;
      text-decoration: underline; }
  #helpie-categories-section-boxed1 ul.article-preview-list li .added_tag {
    position: relative;
    padding: 2px 4px;
    margin-left: 5px;
    color: white;
    font-size: 11px;
    border-radius: 5px;
    background: #2cd2a8;
    display: inline-block; }
    #helpie-categories-section-boxed1 ul.article-preview-list li .added_tag:after {
      content: 'added';
      position: absolute;
      top: 0px;
      right: -40px;
      color: #aaa;
      visibility: hidden; }
    #helpie-categories-section-boxed1 ul.article-preview-list li .added_tag:hover {
      cursor: pointer; }
      #helpie-categories-section-boxed1 ul.article-preview-list li .added_tag:hover:after {
        visibility: visible; }
  #helpie-categories-section-boxed1 ul.article-preview-list li .updated_tag {
    position: relative;
    padding: 2px 4px;
    margin-left: 5px;
    color: white;
    font-size: 11px;
    border-radius: 5px;
    background: #00b9eb;
    display: inline-block; }
    #helpie-categories-section-boxed1 ul.article-preview-list li .updated_tag:after {
      content: 'updated';
      position: absolute;
      top: 0px;
      right: -50px;
      color: #aaa;
      visibility: hidden; }
    #helpie-categories-section-boxed1 ul.article-preview-list li .updated_tag:hover {
      cursor: pointer; }
      #helpie-categories-section-boxed1 ul.article-preview-list li .updated_tag:hover:after {
        visibility: visible; }

/* *-.columned overwrites */
#helpie-categories-section-boxed1 .one-columned ul.category-list > li {
  width: 46%;
  margin-right: 8%; }
  #helpie-categories-section-boxed1 .one-columned ul.category-list > li:nth-child(2n) {
    margin-right: 0; }

#helpie-categories-section-boxed1 .two-columned ul.category-list > li {
  width: 46%;
  margin-right: 8%;
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15); }
  #helpie-categories-section-boxed1 .two-columned ul.category-list > li:nth-child(2n) {
    margin-right: 0; }

#helpie-categories-section-boxed1 .three-columned ul.category-list > li {
  width: 28%;
  margin-right: 8%; }
  #helpie-categories-section-boxed1 .three-columned ul.category-list > li:nth-child(3n) {
    margin-right: 0; }

#helpie-categories-section-boxed1 .four-columned ul.category-list > li {
  width: 22%;
  margin-right: 4%; }
  #helpie-categories-section-boxed1 .four-columned ul.category-list > li:nth-child(4n) {
    margin-right: 0; }

@media screen and (max-width: 1024px) {
  #helpie-categories-section-boxed1 .two-columned ul.category-list > li,
  #helpie-categories-section-boxed1 .three-columned ul.category-list > li,
  #helpie-categories-section-boxed1 .four-columned ul.category-list > li {
    width: 46%;
    margin-right: 8%; }
    #helpie-categories-section-boxed1 .two-columned ul.category-list > li:nth-child(3n),
    #helpie-categories-section-boxed1 .three-columned ul.category-list > li:nth-child(3n),
    #helpie-categories-section-boxed1 .four-columned ul.category-list > li:nth-child(3n) {
      margin-right: 8%; }
    #helpie-categories-section-boxed1 .two-columned ul.category-list > li:nth-child(2n),
    #helpie-categories-section-boxed1 .three-columned ul.category-list > li:nth-child(2n),
    #helpie-categories-section-boxed1 .four-columned ul.category-list > li:nth-child(2n) {
      margin-right: 0; }
  #helpie-categories-section-boxed1 .two-columned .one-columned ul.category-list li,
  #helpie-categories-section-boxed1 .three-columned .one-columned ul.category-list li,
  #helpie-categories-section-boxed1 .four-columned .one-columned ul.category-list li {
    width: 100%; } }

@media screen and (max-width: 599px) {
  #helpie-categories-section-boxed1 ul.category-list li {
    width: 100%; }
  /* *-.columned overwrites */
  #helpie-categories-section-boxed1 .one-columned ul.category-list li,
  #helpie-categories-section-boxed1 .two-columned ul.category-list li,
  #helpie-categories-section-boxed1 .three-columned ul.category-list li,
  #helpie-categories-section-boxed1 .four-columned ul.category-list li {
    width: 100%; } }

#helpie-categories-section-modern {
  margin-top: 35px; }
  #helpie-categories-section-modern * {
    box-sizing: border-box; }
  #helpie-categories-section-modern .category-main-content-boxed,
  #helpie-categories-section-modern ul.category-list {
    float: left;
    width: 100%;
    padding: 0;
    margin-left: 0; }
  #helpie-categories-section-modern ul.category-list > li {
    box-sizing: border-box;
    float: left;
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 40px;
    border: solid 1px #6AC4FF;
    min-height: 170px;
    text-align: left;
    list-style: none;
    padding: 20px 35px;
    min-height: 260px;
    margin-left: 0; }
    #helpie-categories-section-modern ul.category-list > li:nth-child(2n) {
      margin-right: 0; }
    #helpie-categories-section-modern ul.category-list > li:hover {
      border-width: 2px; }
  #helpie-categories-section-modern .left-section {
    float: left;
    width: 25%; }
    #helpie-categories-section-modern .left-section i {
      font-size: 48px;
      color: #3fa3e4;
      padding-top: 32px; }
  #helpie-categories-section-modern .right-section {
    float: left;
    width: 75%; }
    #helpie-categories-section-modern .right-section .title,
    #helpie-categories-section-modern .right-section .title a {
      font-size: 21px;
      text-transform: capitalize;
      color: #3fa3e4;
      padding-bottom: 10px;
      text-decoration: none; }
      #helpie-categories-section-modern .right-section .title:hover,
      #helpie-categories-section-modern .right-section .title a:hover {
        text-decoration: underline;
        cursor: pointer; }
    #helpie-categories-section-modern .right-section .description {
      font-size: 14px;
      color: #95989A;
      line-height: 1.4; }
    #helpie-categories-section-modern .right-section .subtopic-title {
      font-size: 14px;
      padding-top: 15px;
      padding-bottom: 10px;
      color: #95989A; }
    #helpie-categories-section-modern .right-section ul.sub-topics {
      padding: 0; }
      #helpie-categories-section-modern .right-section ul.sub-topics > li,
      #helpie-categories-section-modern .right-section ul.sub-topics > li a {
        font-size: 15px;
        color: #3fa3e4;
        line-height: 1.6;
        text-decoration: none; }
        #helpie-categories-section-modern .right-section ul.sub-topics > li i,
        #helpie-categories-section-modern .right-section ul.sub-topics > li a i {
          padding-right: 5px;
          color: #3fa3e4; }
        #helpie-categories-section-modern .right-section ul.sub-topics > li:hover,
        #helpie-categories-section-modern .right-section ul.sub-topics > li a:hover {
          cursor: pointer;
          text-decoration: underline; }

@media screen and (max-width: 900px) {
  #helpie-categories-section-modern ul.category-list > li {
    width: 100%;
    margin-right: 0; } }

@media screen and (max-width: 520px) {
  #helpie-categories-section-modern ul.category-list > li {
    padding-left: 10px; }
  #helpie-categories-section-modern .left-section {
    float: left;
    width: 20%; }
    #helpie-categories-section-modern .left-section i {
      font-size: 24px;
      color: #3fa3e4;
      padding-top: 32px; } }

.helpie-recent-articles {
  margin-top: 80px; }
  .helpie-recent-articles h2 {
    color: black;
    font-size: 21px;
    display: inline-block;
    border-bottom: solid 2px black;
    padding-bottom: 10px;
    margin-bottom: 0; }
  .helpie-recent-articles hr {
    margin-top: -1px;
    margin-bottom: 80px; }
  .helpie-recent-articles .single-article {
    box-sizing: border-box;
    margin-top: 0px;
    position: relative;
    background: white;
    float: left;
    width: 30%;
    margin-right: 5%;
    padding: 0;
    padding-bottom: 20px;
    border: solid 1px #E8E8E8;
    min-height: 200px;
    transition: all 0.3s ease-in-out; }
    .helpie-recent-articles .single-article:hover {
      cursor: pointer;
      box-shadow: 0 4px 6px 0 rgba(34, 36, 38, 0.15);
      transition: all 0.3s ease-in-out; }
    .helpie-recent-articles .single-article a {
      text-decoration: none; }
      .helpie-recent-articles .single-article a:hover {
        cursor: pointer; }
    .helpie-recent-articles .single-article:nth-child(3n) {
      margin-right: 0; }
    .helpie-recent-articles .single-article .featured-image-container {
      float: left;
      width: 100%;
      overflow: hidden;
      height: 100px; }
      .helpie-recent-articles .single-article .featured-image-container .featured-image {
        position: relative;
        transition: all 0.3s ease-in-out;
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100px; }
    .helpie-recent-articles .single-article .content-container {
      position: relative;
      padding: 15px; }
    .helpie-recent-articles .single-article h3 {
      float: left;
      width: 100%;
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-top: 15px;
      min-height: 75px;
      padding: 0; }
    .helpie-recent-articles .single-article p {
      font-size: 13px;
      line-height: 1.3; }
    .helpie-recent-articles .single-article .pre-post-info {
      float: left;
      margin: 0;
      margin-top: 12px;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 600;
      color: #555;
      padding-bottom: 2px;
      letter-spacing: 0.5px;
      min-height: 35px; }
      .helpie-recent-articles .single-article .pre-post-info .term {
        color: #2D95F1; }
    .helpie-recent-articles .single-article .author-img-container,
    .helpie-recent-articles .single-article .author-img-container img {
      position: relative;
      width: 40px;
      height: auto;
      overflow: hidden;
      border-radius: 40px;
      float: left; }
    .helpie-recent-articles .single-article .article-info {
      float: left;
      height: 40px;
      width: 200px;
      max-width: calc(100% - 55px); }
      .helpie-recent-articles .single-article .article-info span {
        padding-left: 10px;
        float: left;
        font-size: 13px;
        font-weight: 600;
        width: 100%;
        color: #444; }
        .helpie-recent-articles .single-article .article-info span.read-time {
          font-weight: 400;
          color: #888; }

@media screen and (max-width: 900px) {
  .helpie-recent-articles .single-article {
    width: 45%;
    margin-right: 10%;
    margin-bottom: 40px; }
    .helpie-recent-articles .single-article:nth-child(2n) {
      margin-right: 0; }
    .helpie-recent-articles .single-article:nth-child(3n) {
      margin-right: 5%; } }

@media screen and (max-width: 700px) {
  .helpie-recent-articles .single-article {
    width: 100%;
    margin-right: 0; }
    .helpie-recent-articles .single-article:nth-child(2n), .helpie-recent-articles .single-article:nth-child(3n), .helpie-recent-articles .single-article:nth-child(4n) {
      margin-right: 0; } }

@media screen and (max-width: 520px) {
  .helpie-recent-articles .single-article {
    width: 100%;
    margin-right: 0; }
    .helpie-recent-articles .single-article:nth-child(2n), .helpie-recent-articles .single-article:nth-child(3n), .helpie-recent-articles .single-article:nth-child(4n) {
      margin-right: 0; }
    .helpie-recent-articles .single-article h3 {
      font-size: 15px;
      font-weight: 600;
      min-height: auto; }
    .helpie-recent-articles .single-article p {
      font-size: 13px;
      line-height: 1.3;
      min-height: auto; }
    .helpie-recent-articles .single-article .featured-image-container {
      height: 170px; }
      .helpie-recent-articles .single-article .featured-image-container .featured-image {
        height: 170px; } }

.pauple-helpie-module.article-voting {
  /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 5px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 5px;
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 5px;
  float: left;
  padding: 30px;
  border: solid 1px #EBEBEB; }
  .pauple-helpie-module.article-voting.light .icon-tray .voting-icon:hover {
    cursor: default; }
  .pauple-helpie-module.article-voting .icon-tray,
  .pauple-helpie-module.article-voting .label {
    float: left;
    display: inline-block; }
  .pauple-helpie-module.article-voting .label {
    padding-top: 4px; }
  .pauple-helpie-module.article-voting count {
    position: absolute;
    bottom: -30px;
    left: 40%;
    font-size: 11px;
    color: #9a9a9a; }
  .pauple-helpie-module.article-voting .icon-tray {
    margin-left: 50px; }
    .pauple-helpie-module.article-voting .icon-tray .voting-icon {
      /* Safari 3-4, iOS 1-3.2, Android 1.6- */
      -webkit-border-radius: 4px;
      /* Firefox 1-3.6 */
      -moz-border-radius: 4px;
      /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
      border-radius: 4px;
      position: relative;
      padding: 5px;
      height: 30px;
      width: 30px;
      display: inline-block;
      text-align: center;
      line-height: 30px;
      margin-right: 5px;
      box-sizing: border-box; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon:hover {
        cursor: pointer; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.frown:before {
        content: "frown";
        position: absolute;
        top: -30px;
        left: 0;
        color: #9a9a9a;
        font-size: 11px;
        display: none; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.frown:hover:before {
        display: inline-block; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.frown i.fa {
        color: #F87C7C; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.meh:before {
        content: "meh!";
        position: absolute;
        top: -30px;
        left: 0;
        color: #9a9a9a;
        font-size: 11px;
        display: none; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.meh:hover:before {
        display: inline-block; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.meh i.fa {
        color: #FFB258; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.smile:before {
        content: "smile";
        position: absolute;
        top: -30px;
        left: 0;
        color: #9a9a9a;
        font-size: 11px;
        display: none; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.smile:hover:before {
        display: inline-block; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.smile i.fa {
        color: #44D084; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.heart:before {
        content: "love";
        position: absolute;
        top: -30px;
        left: 0;
        color: #9a9a9a;
        font-size: 11px;
        display: none; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.heart:hover:before {
        display: inline-block; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.heart i.fa {
        color: #FF5F90; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon.selected {
        color: black; }
        .pauple-helpie-module.article-voting .icon-tray .voting-icon.selected i.fa {
          color: black; }
      .pauple-helpie-module.article-voting .icon-tray .voting-icon i {
        color: white;
        font-size: 24px;
        height: 20px;
        line-height: 20px;
        float: left;
        width: 20px;
        text-align: center; }

@media screen and (max-width: 1024px) {
  .pauple-helpie-module.article-voting .label {
    width: 100%;
    text-align: center; }
  .pauple-helpie-module.article-voting .icon-tray {
    margin: 0 auto;
    margin-top: 35px;
    width: 100%;
    text-align: center; } }

.pauple-helpie-module.article-voting.classic {
  padding: 0;
  padding-bottom: 40px;
  border: 0; }
  .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon {
    padding: 0 20px;
    padding-right: 40px;
    padding-top: 4px;
    background: none; }
    .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.thumbs-o-up i, .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.thumbs-o-up count {
      color: #157dec; }
    .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.thumbs-o-down i, .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.thumbs-o-down count {
      color: #e64e4e; }
    .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.selected {
      border: solid 1px #157dec; }
      .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.selected.thumbs-o-down {
        border: solid 1px #e64e4e; }
      .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon.selected.thumbs-o-up {
        border: solid 1px #157dec; }
    .pauple-helpie-module.article-voting.classic .icon-tray .voting-icon i {
      color: #777;
      font-size: 20px; }

.helpie-frontend-stats-section {
  margin-top: 60px; }
  .helpie-frontend-stats-section .stats-wrapper {
    width: 100%;
    margin: 0 auto;
    float: none; }
  .helpie-frontend-stats-section .single-stat {
    position: relative;
    float: left;
    width: calc( (100% - 120px) / 3);
    padding: 25px 15px 25px 0px;
    border: solid 1px #e1e1e1;
    border-radius: 10px;
    margin: 20px 0;
    margin-right: 60px;
    height: 130px;
    padding: 0;
    box-sizing: border-box;
    min-width: 200px;
    white-space: nowrap; }
    .helpie-frontend-stats-section .single-stat:nth-child(3n) {
      margin-right: 0; }
    .helpie-frontend-stats-section .single-stat:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      margin-right: -0.25em;
      /* Adjusts for spacing */ }
    .helpie-frontend-stats-section .single-stat .stat-col {
      position: relative;
      width: 50%;
      text-align: center;
      display: inline-block;
      vertical-align: middle; }
      .helpie-frontend-stats-section .single-stat .stat-col span {
        position: relative;
        display: inline-block;
        float: left;
        width: 100%;
        font-size: 16px;
        color: #BABABA; }
        .helpie-frontend-stats-section .single-stat .stat-col span.count {
          font-size: 38px;
          color: #3E3E3E;
          font-weight: 600;
          line-height: 1.2; }
      .helpie-frontend-stats-section .single-stat .stat-col i {
        font-size: 58px;
        color: #95989A; }

@media screen and (max-width: 1024px) {
  .helpie-frontend-stats-section {
    padding: 0 20px; }
    .helpie-frontend-stats-section .single-stat {
      min-width: 150px; }
      .helpie-frontend-stats-section .single-stat .stat-col {
        width: 60%; }
        .helpie-frontend-stats-section .single-stat .stat-col:first-child {
          width: 40%; }
        .helpie-frontend-stats-section .single-stat .stat-col span {
          font-size: 14px; }
          .helpie-frontend-stats-section .single-stat .stat-col span.count {
            font-size: 34px; }
        .helpie-frontend-stats-section .single-stat .stat-col i {
          font-size: 32px;
          color: #95989A; } }

@media screen and (max-width: 599px) {
  .helpie-frontend-stats-section .single-stat {
    width: 100%;
    margin-bottom: 20px; }
    .helpie-frontend-stats-section .single-stat .stat-col.count {
      font-size: 28px; }
    .helpie-frontend-stats-section .single-stat .stat-col i {
      font-size: 38px;
      color: #95989A; } }

/* The7 theme fix for helpdesk-category page where page content goes into footer because .wf-wrap doesn't take children height. */
.tax-helpdesk_category .wf-wrap:after {
  content: '';
  display: table;
  clear: both; }

/* Fix Issue #48 :
In some themes, Content going into footer in single, archive, search pages */
.helpie-single-page-module {
  float: none; }

.helpie-single-page-module .helpie-frontened-module button.helpie-buttons {
  background: #2D95F1;
  padding: 5px 10px;
  font-size: 14px;
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white; }
  .helpie-single-page-module .helpie-frontened-module button.helpie-buttons.cancel {
    background: #333; }

.helpie-editor-fields {
  float: right;
  width: 300px;
  text-align: right; }
  .helpie-editor-fields .add-new-article {
    background: transparent;
    border: 0;
    color: #19CC95;
    padding: 12px;
    border-radius: 3px;
    border: solid 2px #19CC95;
    font-size: 14px;
    margin-bottom: 20px; }
    .helpie-editor-fields .add-new-article:hover {
      background: #19CC95;
      color: white;
      cursor: pointer; }
    .helpie-editor-fields .add-new-article i {
      padding-right: 5px; }
  .helpie-editor-fields .option-icon {
    position: relative;
    border: solid 1px #484848;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: inline-block;
    padding: 4px 8px; }
    .helpie-editor-fields .option-icon:before {
      font-family: FontAwesome;
      font-weight: normal;
      font-style: normal;
      display: inline-block;
      text-decoration: inherit;
      content: '\f141'; }
    .helpie-editor-fields .option-icon .single-ticket-options {
      position: absolute;
      top: 0;
      left: -150px;
      box-shadow: 0 2px 4px #E8E8E8;
      border: solid 1px #E8E8E8;
      border-radius: 5px;
      background: white;
      text-align: left;
      font-size: 13px;
      z-index: 100; }
      .helpie-editor-fields .option-icon .single-ticket-options ul {
        list-style-type: none;
        padding: 15px;
        margin-bottom: 0; }
        .helpie-editor-fields .option-icon .single-ticket-options ul li {
          padding: 12px 8px;
          width: 100px;
          border-bottom: solid 1px #E8E8E8; }
          .helpie-editor-fields .option-icon .single-ticket-options ul li:last-child {
            border: none; }
          .helpie-editor-fields .option-icon .single-ticket-options ul li a {
            text-decoration: none;
            border-bottom: none; }
            .helpie-editor-fields .option-icon .single-ticket-options ul li a:hover {
              cursor: pointer; }

.pauple_helpie.add-article .header,
.pauple_helpie.delete-article .header {
  font-size: 1em !important;
  text-align: center;
  color: #777;
  font-weight: 300 !important;
  background: #F9FAFB;
  border-bottom: 0; }
  .pauple_helpie.add-article .header i,
  .pauple_helpie.delete-article .header i {
    padding-right: 5px;
    font-size: 29px;
    color: #2D95F1; }

.pauple_helpie.add-article .actions,
.pauple_helpie.delete-article .actions {
  border: 0;
  border-top: solid 1px #eee;
  background: white;
  font-size: 13px; }
  .pauple_helpie.add-article .actions .buttons,
  .pauple_helpie.delete-article .actions .buttons {
    margin-left: 0.75em;
    font-weight: 500;
    font-size: 14px;
    margin-top: 0.25em; }
  .pauple_helpie.add-article .actions .helpie-notice,
  .pauple_helpie.delete-article .actions .helpie-notice {
    padding-right: 50px; }
    .pauple_helpie.add-article .actions .helpie-notice .loading,
    .pauple_helpie.delete-article .actions .helpie-notice .loading {
      display: inline-block;
      position: relative;
      padding-left: 10px;
      width: 100px; }
      .pauple_helpie.add-article .actions .helpie-notice .loading img,
      .pauple_helpie.delete-article .actions .helpie-notice .loading img {
        display: inline-block;
        position: absolute;
        left: 10px;
        top: -9px; }

.pauple_helpie.add-article .content .wrapper,
.pauple_helpie.delete-article .content .wrapper {
  float: none;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  padding: 0 3rem;
  background-color: #FFFFFF; }

.pauple_helpie.add-article .helpie-wp-editor-container,
.pauple_helpie.add-article .article-categories-field,
.pauple_helpie.delete-article .helpie-wp-editor-container,
.pauple_helpie.delete-article .article-categories-field {
  margin-top: 40px; }

.pauple_helpie.add-article input[type="text"],
.pauple_helpie.delete-article input[type="text"] {
  border: none;
  background: none;
  background-color: white !important;
  border-bottom: solid 1px #ccc;
  padding: 0;
  padding-bottom: 2px;
  padding-left: 4px;
  text-transform: capitalize; }

.pauple_helpie.add-article input:-webkit-autofill,
.pauple_helpie.delete-article input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important; }

.pauple_helpie.add-article #add-article-title,
.pauple_helpie.delete-article #add-article-title {
  font-size: 1.875rem;
  font-weight: 300;
  color: #343434 !important;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
  text-transform: none;
  padding-bottom: 10px;
  height: 40px; }
  .pauple_helpie.add-article #add-article-title::placeholder, .pauple_helpie.add-article #add-article-title::-webkit-input-placeholder,
  .pauple_helpie.delete-article #add-article-title::placeholder,
  .pauple_helpie.delete-article #add-article-title::-webkit-input-placeholder {
    color: #bbb !important; }

.pauple_helpie.add-article #wp-add-article-editor-wrap,
.pauple_helpie.delete-article #wp-add-article-editor-wrap {
  border-top: none;
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15); }

.pauple_helpie.add-article #insert-media-button,
.pauple_helpie.delete-article #insert-media-button {
  position: absolute;
  right: 12px;
  border: none;
  box-shadow: none;
  border: solid 1px #ddd;
  top: 14px; }

.pauple_helpie.add-article .wp-editor-container,
.pauple_helpie.delete-article .wp-editor-container {
  border: none; }

.pauple_helpie.add-article .helpie-wp-editor-container .tmce-active .mce-tinymce .mce-toolbar-grp,
.pauple_helpie.delete-article .helpie-wp-editor-container .tmce-active .mce-tinymce .mce-toolbar-grp {
  background: #F7F7F8;
  border-bottom: none;
  padding: 10px 0; }

.pauple_helpie.add-article .article-categories-field .single-field,
.pauple_helpie.add-article .article-tags-field .single-field,
.pauple_helpie.delete-article .article-categories-field .single-field,
.pauple_helpie.delete-article .article-tags-field .single-field {
  width: 350px; }

.pauple_helpie.add-article .article-categories-field .dropdown,
.pauple_helpie.delete-article .article-categories-field .dropdown {
  font-size: 14px; }
  .pauple_helpie.add-article .article-categories-field .dropdown .item,
  .pauple_helpie.delete-article .article-categories-field .dropdown .item {
    font-size: 14px; }

.pauple_helpie.add-article .article-tags-field input[type=text],
.pauple_helpie.delete-article .article-tags-field input[type=text] {
  font-size: 14px; }
  .pauple_helpie.add-article .article-tags-field input[type=text]::placeholder, .pauple_helpie.add-article .article-tags-field input[type=text]::-webkit-input-placeholder,
  .pauple_helpie.delete-article .article-tags-field input[type=text]::placeholder,
  .pauple_helpie.delete-article .article-tags-field input[type=text]::-webkit-input-placeholder {
    color: #bbb !important; }

.pauple_helpie.add-article .article-tags-field .single-field,
.pauple_helpie.add-article .article-tags-field .tags-container,
.pauple_helpie.delete-article .article-tags-field .single-field,
.pauple_helpie.delete-article .article-tags-field .tags-container {
  float: left; }

.pauple_helpie.add-article .article-tags-field .tags-container,
.pauple_helpie.delete-article .article-tags-field .tags-container {
  margin-top: 20px;
  margin-left: 20px;
  font-size: 13px; }
  .pauple_helpie.add-article .article-tags-field .tags-container span.single-tag-cont .label,
  .pauple_helpie.delete-article .article-tags-field .tags-container span.single-tag-cont .label {
    color: white;
    border-radius: 5px;
    background: #2D95F1;
    padding: 4px;
    margin-left: 5px; }
    .pauple_helpie.add-article .article-tags-field .tags-container span.single-tag-cont .label:hover,
    .pauple_helpie.delete-article .article-tags-field .tags-container span.single-tag-cont .label:hover {
      background: red;
      cursor: pointer; }

.pauple_helpie.add-article .article-tags-field:after,
.pauple_helpie.delete-article .article-tags-field:after {
  clear: both; }

.pauple_helpie.delete-article .header i {
  color: #DD282B; }

.pauple_helpie.delete-article .actions .positive {
  background: #DD282B; }

@media screen and (max-width: 699px) {
  .pauple_helpie.add-article .actions .helpie-notice {
    width: 100%;
    max-width: 100%;
    display: inline-block;
    text-align: center;
    padding: 20px 0; } }

.pauple-login-form-container,
.pauple-register-form-container {
  float: none;
  margin: 0 auto;
  width: 500px; }

.single-field {
  margin-bottom: 20px; }

/* Resets */
.ui.fluid.dropdown {
  box-sizing: border-box; }

table.xdebug-error th {
  color: black; }

body .helpie-primary,
body .helpie-primary#primary {
  width: 100%; }

body .helpie-single-page-module * {
  box-sizing: border-box; }

@media screen and (min-width: 48em) {
  body .helpie-primary,
  body .helpie-primary#primary {
    width: 100% !important; } }

.pauple-helpie-search-row-type2 {
  z-index: 10;
  position: relative;
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 40px;
  background: #F4F3F3; }
  .pauple-helpie-search-row-type2 .search-container {
    margin: 0 auto;
    float: none; }

.helpie-anchor-props, #helpie-categories-section a {
  text-decoration: none;
  box-shadow: none; }
  .helpie-anchor-props:hover, #helpie-categories-section a:hover {
    cursor: pointer;
    color: #777; }

.helpie-ul, .pauple-helpie-single-sidebar ul, #helpie-categories-section ul {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  list-style: none;
  float: left;
  display: block;
  margin: 0; }
  .helpie-ul li, .pauple-helpie-single-sidebar ul li, #helpie-categories-section ul li {
    display: block;
    float: left;
    width: 100%;
    padding: 0;
    background: white; }
  .helpie-ul li a, .pauple-helpie-single-sidebar ul li a, #helpie-categories-section ul li a {
    text-decoration: none;
    box-shadow: none; }
  .helpie-ul .helpie-article-link, .pauple-helpie-single-sidebar ul .helpie-article-link, #helpie-categories-section ul .helpie-article-link {
    padding-right: 10px;
    font-size: 13px; }
  .helpie-ul li, .pauple-helpie-single-sidebar ul li, #helpie-categories-section ul li,
  .helpie-ul li a, .pauple-helpie-single-sidebar ul li a, #helpie-categories-section ul li a {
    color: #2D95F1;
    font-size: 13px;
    line-height: 1.4;
    padding-bottom: 8px;
    text-transform: capitalize; }
    .helpie-ul li:hover, .pauple-helpie-single-sidebar ul li:hover, #helpie-categories-section ul li:hover,
    .helpie-ul li a:hover, .pauple-helpie-single-sidebar ul li a:hover, #helpie-categories-section ul li a:hover {
      color: #777; }
      .helpie-ul li:hover i, .pauple-helpie-single-sidebar ul li:hover i, #helpie-categories-section ul li:hover i,
      .helpie-ul li a:hover i, .pauple-helpie-single-sidebar ul li a:hover i, #helpie-categories-section ul li a:hover i {
        color: #777; }
  .helpie-ul li.active, .pauple-helpie-single-sidebar ul li.active, #helpie-categories-section ul li.active,
  .helpie-ul li.active a, .pauple-helpie-single-sidebar ul li.active a, #helpie-categories-section ul li.active a {
    font-weight: 600;
    color: #4e4d4d; }

.post-type-archive-pauple_helpie {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 15px;
  -webkit-font-smoothing: antialiased; }
  .post-type-archive-pauple_helpie #page {
    margin: 0;
    max-width: 100%; }
  .post-type-archive-pauple_helpie .site-inner {
    max-width: none; }
  .post-type-archive-pauple_helpie #content,
  .post-type-archive-pauple_helpie #content #primary {
    width: 100%;
    padding: 0; }

.helpie-main-section .wrapper,
.single-pauple_helpie .wrapper,
.tax-helpdesk_category .wrapper {
  width: 1056px;
  max-width: 100%;
  float: none;
  margin: 0 auto;
  box-sizing: border-box;
  background: none; }

.helpie-main-section .wrapper {
  overflow: auto;
  background: white; }

.single-pauple_helpie .wrapper {
  overflow: visible; }

.helpie-primary-view .full-width .helpie-main-content-area .content-section {
  padding: 0 20px; }

@media screen and (max-width: 1024px) {
  .helpie-primary-view .full-width .helpie-main-content-area .content-section {
    padding: 0; }
  .helpie-main-section .wrapper,
  .single-pauple_helpie .wrapper,
  .tax-helpdesk_category .wrapper {
    padding: 0 20px; } }

.tax-helpdesk_category h2 {
  clear: both;
  font-weight: bold;
  letter-spacing: -0.5px;
  font-size: 20px;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-top: 25px; }

.tax-helpdesk_category ul.child-category-list {
  float: left;
  float: left;
  width: 100%;
  padding-left: 0; }
  .tax-helpdesk_category ul.child-category-list li .helpie-article-link {
    padding-right: 10px; }

.helpie-main-section ul {
  list-style: none; }
  .helpie-main-section ul li {
    float: left;
    display: inline-block;
    padding: 10px 15px; }
    .helpie-main-section ul li.active {
      border-bottom: solid 2px rgba(132, 206, 255, 0.61); }
    .helpie-main-section ul li a {
      cursor: pointer;
      border: 0;
      box-shadow: none; }
      .helpie-main-section ul li a:visited {
        border: none; }
      .helpie-main-section ul li a img {
        outline: none;
        border: 0; }
  .helpie-main-section ul li,
  .helpie-main-section ul li a {
    color: #9a9a9a; }
    .helpie-main-section ul li:hover,
    .helpie-main-section ul li a:hover {
      color: #777; }
      .helpie-main-section ul li:hover i,
      .helpie-main-section ul li a:hover i {
        color: #777; }
  .helpie-main-section ul li.active,
  .helpie-main-section ul li.active a {
    font-weight: 600;
    color: #4e4d4d; }

.helpie-main-content-area {
  float: left;
  width: 100%; }
  .helpie-main-content-area .content-section {
    float: left;
    width: 100%;
    margin: 50px 0; }
    .helpie-main-content-area .content-section ul {
      list-style: none;
      float: left;
      display: block;
      margin: 0;
      width: 100%;
      padding-left: 0; }
      .helpie-main-content-area .content-section ul li {
        display: block;
        float: left;
        width: 100%;
        padding: 0;
        background: white; }
    .helpie-main-content-area .content-section .helpie-article-link {
      padding-right: 10px;
      font-size: 13px; }
    .helpie-main-content-area .content-section#helpie-categories-section {
      display: none; }
  .helpie-main-content-area #helpie-popular-section.content-section ul {
    width: 100%;
    text-align: left; }

.helpie-search-listing h3 {
  font-family: 'Open sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #9a9a9a; }

.pauple_helpie_breadcrumbs {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  float: left;
  width: 100%;
  padding: 20px 10px 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #888888;
  text-align: center; }
  .pauple_helpie_breadcrumbs a {
    color: #888888;
    font-weight: 500; }

body.post-type-archive-pauple_helpie .site-content {
  padding: 0;
  margin: 0; }

/* Vendors Autocomplete reset */
